Package: reprepro Version: 3.8.2-1 Severity: wishlist Tags: patch User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu jaunty ubuntu-patch
Hi, As reprepro is compatible with libdb4.7 since january, can you please update the packaging of reprepro to make use of libdb-dev instead of libdb4.6-dev, and also update the rules file to take into account libdb4.7? As attachement, here is the patch we apply in Ubuntu *** /tmp/tmpG90gyD In Ubuntu, we've applied the attached patch to achieve the following: * Merge from Debian unstable (LP: #329830). Remaining Ubuntu changes: + debian/control: libdb-dev transition + debian/rules: added some magic to accept bdb 4.7 We thought you might be interested in doing the same. -- System Information: Debian Release: 5.0 APT prefers jaunty-updates APT policy: (500, 'jaunty-updates'), (500, 'jaunty-security'), (500, 'jaunty') Architecture: amd64 (x86_64) Kernel: Linux 2.6.28-11-generic (SMP w/2 CPU cores) Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) Shell: /bin/sh linked to /bin/dash
diff -u reprepro-3.8.2/debian/control reprepro-3.8.2/debian/control --- reprepro-3.8.2/debian/control +++ reprepro-3.8.2/debian/control @@ -1,8 +1,9 @@ Source: reprepro Section: utils Priority: extra -Maintainer: Bernhard R. Link <brl...@debian.org> -Build-Depends: debhelper (>= 5), libgpgme11-dev, libdb4.6-dev, libz-dev, libbz2-dev, libarchive-dev +Maintainer: Ubuntu MOTU Developers <ubuntu-m...@lists.ubuntu.com> +XSBC-Original-Maintainer: Bernhard R. Link <brl...@debian.org> +Build-Depends: debhelper (>= 5), libgpgme11-dev, libdb-dev, libz-dev, libbz2-dev, libarchive-dev Standards-Version: 3.8.0 Vcs-Browser: http://alioth.debian.org/plugins/scmcvs/cvsweb.php/mirrorer/?cvsroot=mirrorer Vcs-Cvs: :pserver:anonym...@cvs.alioth.debian.org:/cvsroot/mirrorer reprepro diff -u reprepro-3.8.2/debian/rules reprepro-3.8.2/debian/rules --- reprepro-3.8.2/debian/rules +++ reprepro-3.8.2/debian/rules @@ -28,7 +28,11 @@ ifneq (,$(filter reprepro-libdb4.4,$(BUILDOPTS))) DBFLAGS = --with-libdb=4.4 else +ifneq (,$(filter reprepro-libdb4.6,$(BUILDOPTS))) DBFLAGS = --with-libdb=4.6 +else + DBFLAGS = --with-libdb=4.7 +endif endif endif endif