r38943 - in /trunk/libkiokudb-perl/debian: README.source control patches/ patches/remove_libhash-util-fieldhash-compat.patch patches/series rules

franck-guest at users.alioth.debian.org franck-guest at users.alioth.debian.org
Mon Jun 29 19:21:17 UTC 2009


Author: franck-guest
Date: Mon Jun 29 19:21:11 2009
New Revision: 38943

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=38943
Log:
add patch, update control and rules

Added:
    trunk/libkiokudb-perl/debian/README.source
    trunk/libkiokudb-perl/debian/patches/
    trunk/libkiokudb-perl/debian/patches/remove_libhash-util-fieldhash-compat.patch
    trunk/libkiokudb-perl/debian/patches/series
Modified:
    trunk/libkiokudb-perl/debian/control
    trunk/libkiokudb-perl/debian/rules

Added: trunk/libkiokudb-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libkiokudb-perl/debian/README.source?rev=38943&op=file
==============================================================================
--- trunk/libkiokudb-perl/debian/README.source (added)
+++ trunk/libkiokudb-perl/debian/README.source Mon Jun 29 19:21:11 2009
@@ -1,0 +1,5 @@
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+See /usr/share/doc/quilt/README.source for a detailed explanation.

Modified: trunk/libkiokudb-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libkiokudb-perl/debian/control?rev=38943&op=diff
==============================================================================
--- trunk/libkiokudb-perl/debian/control (original)
+++ trunk/libkiokudb-perl/debian/control Mon Jun 29 19:21:11 2009
@@ -13,8 +13,8 @@
   libmoosex-yaml-perl (>= 0.03), libmoosex-clone-perl (>= 0.04),
   libsearch-gin-perl (>= 0.03), libmoosex-types-path-class-perl (>= 0.05),
   libmoosex-app-cmd-perl (>= 0.04), libdata-uuid-libuuid-perl (>= 0.04),
-  libyaml-libyaml-perl, libhash-util-fieldhash-compat-perl (>= 0.03),
-  libtest-use-ok-perl, libtie-toobject-perl, perl (>= 5.6.0-12)
+  libyaml-libyaml-perl, libtest-use-ok-perl, 
+  libtie-toobject-perl, perl (>= 5.6.0-12), quilt (>= 0.46-7)
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: franck cuny <franck at lumberjaph.net>
 Standards-Version: 3.8.1

Added: trunk/libkiokudb-perl/debian/patches/remove_libhash-util-fieldhash-compat.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libkiokudb-perl/debian/patches/remove_libhash-util-fieldhash-compat.patch?rev=38943&op=file
==============================================================================
--- trunk/libkiokudb-perl/debian/patches/remove_libhash-util-fieldhash-compat.patch (added)
+++ trunk/libkiokudb-perl/debian/patches/remove_libhash-util-fieldhash-compat.patch Mon Jun 29 19:21:11 2009
@@ -1,0 +1,70 @@
+Index: libkiokudb-perl/META.yml
+===================================================================
+--- libkiokudb-perl.orig/META.yml	2009-06-29 21:08:52.000000000 +0200
++++ libkiokudb-perl/META.yml	2009-06-29 21:09:03.000000000 +0200
+@@ -13,7 +13,7 @@
+     Data::Stream::Bulk:   0.03
+     Data::UUID::LibUUID:  0
+     Data::Visitor:        0.24
+-    Hash::Util::FieldHash::Compat:  0
++    Hash::Util::FieldHash:  0
+     IO:                   1.23
+     JSON:                 2.12
+     JSON::XS:             2.231
+Index: libkiokudb-perl/Makefile.PL
+===================================================================
+--- libkiokudb-perl.orig/Makefile.PL	2009-06-29 21:09:10.000000000 +0200
++++ libkiokudb-perl/Makefile.PL	2009-06-29 21:09:40.000000000 +0200
+@@ -49,12 +49,7 @@
+         'Data::Stream::Bulk' => "0.03",
+ 
+         # live objects
+-        'Hash::Util::FieldHash::Compat' => 0,
+-        ( eval { require Hash::Util::FieldHash } ? () : (
+-            # for 5.8 we need some specific versions of fieldhash deps
+-            'Tie::RefHash::Weak' => '0.09',
+-            'Variable::Magic'    => '0.24',
+-        )),
++        'Hash::Util::FieldHash' => 0,
+         'Scope::Guard' => 0,
+ 
+         'Set::Object' => '1.26',
+Index: libkiokudb-perl/lib/KiokuDB.pm
+===================================================================
+--- libkiokudb-perl.orig/lib/KiokuDB.pm	2009-06-29 21:10:24.000000000 +0200
++++ libkiokudb-perl/lib/KiokuDB.pm	2009-06-29 21:10:32.000000000 +0200
+@@ -16,7 +16,7 @@
+ use KiokuDB::TypeMap::Resolver;
+ use KiokuDB::Stream::Objects;
+ 
+-use Hash::Util::FieldHash::Compat qw(idhash);
++use Hash::Util::FieldHash qw(idhash);
+ use Carp qw(croak);
+ 
+ use namespace::clean -except => [qw(meta SERIAL_IDS)];
+Index: libkiokudb-perl/lib/KiokuDB/Collapser/Buffer.pm
+===================================================================
+--- libkiokudb-perl.orig/lib/KiokuDB/Collapser/Buffer.pm	2009-06-29 21:09:51.000000000 +0200
++++ libkiokudb-perl/lib/KiokuDB/Collapser/Buffer.pm	2009-06-29 21:09:57.000000000 +0200
+@@ -1,7 +1,7 @@
+ package KiokuDB::Collapser::Buffer;
+ use Moose;
+ 
+-use Hash::Util::FieldHash::Compat qw(idhash);
++use Hash::Util::FieldHash qw(idhash);
+ use Set::Object;
+ 
+ use namespace::clean -except => 'meta';
+Index: libkiokudb-perl/lib/KiokuDB/LiveObjects.pm
+===================================================================
+--- libkiokudb-perl.orig/lib/KiokuDB/LiveObjects.pm	2009-06-29 21:10:08.000000000 +0200
++++ libkiokudb-perl/lib/KiokuDB/LiveObjects.pm	2009-06-29 21:10:14.000000000 +0200
+@@ -5,7 +5,7 @@
+ 
+ use Scalar::Util qw(weaken);
+ use KiokuDB::LiveObjects::Guard;
+-use Hash::Util::FieldHash::Compat qw(fieldhash);
++use Hash::Util::FieldHash qw(fieldhash);
+ use Carp qw(croak);
+ BEGIN { local $@; eval 'use Devel::PartialDump qw(croak)' };
+ use Set::Object;

Added: trunk/libkiokudb-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libkiokudb-perl/debian/patches/series?rev=38943&op=file
==============================================================================
--- trunk/libkiokudb-perl/debian/patches/series (added)
+++ trunk/libkiokudb-perl/debian/patches/series Mon Jun 29 19:21:11 2009
@@ -1,0 +1,1 @@
+remove_libhash-util-fieldhash-compat.patch

Modified: trunk/libkiokudb-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libkiokudb-perl/debian/rules?rev=38943&op=diff
==============================================================================
--- trunk/libkiokudb-perl/debian/rules (original)
+++ trunk/libkiokudb-perl/debian/rules Mon Jun 29 19:21:11 2009
@@ -1,23 +1,4 @@
 #!/usr/bin/make -f
 
-build: build-stamp
-build-stamp:
-	dh build
-	touch $@
-
-clean:
-	dh $@
-
-install: install-stamp
-install-stamp: build-stamp
-	dh install
-	touch $@
-
-binary-arch:
-
-binary-indep: install
-	dh $@
-
-binary: binary-arch binary-indep
-
-.PHONY: binary binary-arch binary-indep install clean build
+%:
+	dh --with quilt $@




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