r29583 - in /trunk/libclass-xsaccessor-perl/debian: ./ changelog compat control copyright patches/ patches/series patches/use-local-AutoXS.h.patch rules watch

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Mon Jan 12 10:01:34 UTC 2009


Author: dmn
Date: Mon Jan 12 10:01:30 2009
New Revision: 29583

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=29583
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libclass-xsaccessor-perl/debian/
    trunk/libclass-xsaccessor-perl/debian/changelog
    trunk/libclass-xsaccessor-perl/debian/compat
    trunk/libclass-xsaccessor-perl/debian/control
    trunk/libclass-xsaccessor-perl/debian/copyright
    trunk/libclass-xsaccessor-perl/debian/patches/
    trunk/libclass-xsaccessor-perl/debian/patches/series
    trunk/libclass-xsaccessor-perl/debian/patches/use-local-AutoXS.h.patch
    trunk/libclass-xsaccessor-perl/debian/rules   (with props)
    trunk/libclass-xsaccessor-perl/debian/watch

Added: trunk/libclass-xsaccessor-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-xsaccessor-perl/debian/changelog?rev=29583&op=file
==============================================================================
--- trunk/libclass-xsaccessor-perl/debian/changelog (added)
+++ trunk/libclass-xsaccessor-perl/debian/changelog Mon Jan 12 10:01:30 2009
@@ -1,0 +1,5 @@
+libclass-xsaccessor-perl (0.14-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #511386)
+
+ -- Damyan Ivanov <dmn at debian.org>  Mon, 12 Jan 2009 11:16:00 +0200

Added: trunk/libclass-xsaccessor-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-xsaccessor-perl/debian/compat?rev=29583&op=file
==============================================================================
--- trunk/libclass-xsaccessor-perl/debian/compat (added)
+++ trunk/libclass-xsaccessor-perl/debian/compat Mon Jan 12 10:01:30 2009
@@ -1,0 +1,1 @@
+7

Added: trunk/libclass-xsaccessor-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-xsaccessor-perl/debian/control?rev=29583&op=file
==============================================================================
--- trunk/libclass-xsaccessor-perl/debian/control (added)
+++ trunk/libclass-xsaccessor-perl/debian/control Mon Jan 12 10:01:30 2009
@@ -1,0 +1,23 @@
+Source: libclass-xsaccessor-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7), perl (>= 5.6.0-12), quilt
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Damyan Ivanov <dmn at debian.org>
+Standards-Version: 3.8.0
+Homepage: http://search.cpan.org/dist/Class-XSAccessor/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libclass-xsaccessor-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libclass-xsaccessor-perl/
+
+Package: libclass-xsaccessor-perl
+Architecture: any
+Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}
+Description: Generate fast XS accessors without runtime compilation
+ Class::XSAccessor implements fast read, write and read/write accessors in XS.
+ Additionally, it can provide predicates such as has_foo() for testing whether
+ the attribute foo is defined in the object. It only works with objects that
+ are implemented as ordinary hashes.
+ .
+ The XS accessor methods were between 1.6 and 2.5 times faster than typical
+ pure-perl accessors in some simple benchmarking. If you usually write clear
+ code, a factor of two speed-up is a good estimate.

Added: trunk/libclass-xsaccessor-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-xsaccessor-perl/debian/copyright?rev=29583&op=file
==============================================================================
--- trunk/libclass-xsaccessor-perl/debian/copyright (added)
+++ trunk/libclass-xsaccessor-perl/debian/copyright Mon Jan 12 10:01:30 2009
@@ -1,0 +1,43 @@
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Steffen Mueller <smueller at cpan.org>
+Upstream-Source: http://search.cpan.org/dist/Class-XSAccessor/
+Upstream-Name: Class-XSAccessor
+
+Files: *
+Copyright: Copyright (C) 2008 Steffen Mueller <smueller at cpan.org>
+License-Alias: Perl
+License: Artistic | GPL-1+
+ This library is free software; you can redistribute it and/or modify it under
+ the same terms as Perl itself, either Perl version 5.8 or, at your option, any
+ later version of Perl 5 you may have available.
+
+Files: ppport.h
+Copyright: Version 3.x, Copyright (c) 2004-2008, Marcus Holland-Moritz.
+           Version 2.x, Copyright (C) 2001, Paul Marquess.
+           Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
+License: Artistic | GPL-1+
+ This program is free software; you can redistribute it and/or modify it under
+ the same terms as Perl itself.
+
+
+Files: debian/*
+Copyright: 2009, Damyan Ivanov <dmn at debian.org>
+License: Artistic | GPL-1+
+ Packaging is free software; you can redistribute it and/or modify it under the
+ same terms as Perl itself, either Perl version 5.8 or, at your option, any
+ later version of Perl 5 you may have available.
+
+License: Artistic
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the Artistic License, which comes with Perl.
+    On Debian GNU/Linux systems, the complete text of the Artistic License
+    can be found in `/usr/share/common-licenses/Artistic'
+
+License: GPL-1+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 1, or (at your option)
+    any later version.
+    On Debian GNU/Linux systems, the complete text of the GNU General
+    Public License can be found in `/usr/share/common-licenses/GPL'

Added: trunk/libclass-xsaccessor-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-xsaccessor-perl/debian/patches/series?rev=29583&op=file
==============================================================================
--- trunk/libclass-xsaccessor-perl/debian/patches/series (added)
+++ trunk/libclass-xsaccessor-perl/debian/patches/series Mon Jan 12 10:01:30 2009
@@ -1,0 +1,1 @@
+use-local-AutoXS.h.patch

Added: trunk/libclass-xsaccessor-perl/debian/patches/use-local-AutoXS.h.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-xsaccessor-perl/debian/patches/use-local-AutoXS.h.patch?rev=29583&op=file
==============================================================================
--- trunk/libclass-xsaccessor-perl/debian/patches/use-local-AutoXS.h.patch (added)
+++ trunk/libclass-xsaccessor-perl/debian/patches/use-local-AutoXS.h.patch Mon Jan 12 10:01:30 2009
@@ -1,0 +1,21 @@
+# Author: Damyan Ivanov <dmn at debian.org>
+# Purpose: remove the call to AutoXS::Header and use the local copy of AutoXS.h
+#          AutoXS::Header's destiny is to ... just supply that file.
+#          By using the locally shipped (by upstream) copy, we avoid the build-time
+#          dependency on AutoXS::Header, which also looks ridiculous as a package
+#          AutoXS.h is not shipped in AutoXS, but here, in Class::XSAccessor. Bummer!
+--- a/Makefile.PL
++++ b/Makefile.PL
+@@ -18,12 +18,3 @@ WriteMakefile(
+ 	# Un-comment this if you add C files to link with later:
+     # OBJECT            => '$(O_FILES)', # link all the C files too
+ );
+-
+-sub MY::post_constants {
+-  return <<'MAKE_FRAG';
+-linkext ::
+-	$(PERL) -MAutoXS::Header -e AutoXS::Header::WriteAutoXSHeader
+-
+-MAKE_FRAG
+-}
+-

Added: trunk/libclass-xsaccessor-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-xsaccessor-perl/debian/rules?rev=29583&op=file
==============================================================================
--- trunk/libclass-xsaccessor-perl/debian/rules (added)
+++ trunk/libclass-xsaccessor-perl/debian/rules Mon Jan 12 10:01:30 2009
@@ -1,0 +1,29 @@
+#!/usr/bin/make -f
+
+include /usr/share/quilt/quilt.make
+
+build: build-stamp
+build-stamp: $(QUILT_STAMPFN)
+	dh build
+	touch $@
+
+clean: unpatch
+	# unpatch changed Makefile.PL.
+	# touch Makefile to avoid its re-creation
+	! [ -e Makefile ] || touch Makefile
+
+	dh $@
+
+install: install-stamp
+install-stamp: build-stamp
+	dh install
+	touch $@
+
+binary-arch: install
+	dh $@
+
+binary-indep:
+
+binary: binary-arch binary-indep
+
+.PHONY: binary binary-arch binary-indep install clean build

Propchange: trunk/libclass-xsaccessor-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libclass-xsaccessor-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-xsaccessor-perl/debian/watch?rev=29583&op=file
==============================================================================
--- trunk/libclass-xsaccessor-perl/debian/watch (added)
+++ trunk/libclass-xsaccessor-perl/debian/watch Mon Jan 12 10:01:30 2009
@@ -1,0 +1,4 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+# URL to the package page followed by a regex to search
+http://search.cpan.org/dist/Class-XSAccessor/   .*/Class-XSAccessor-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




More information about the Pkg-perl-cvs-commits mailing list