Package: release.debian.org Severity: normal User: [email protected] Usertags: unblock
Dear release team, Please unblock rhash/1.2.9-8, uploaded by Aleksey Kravchenko. It fixes an FTBFS. Debdiff between testing and unstable attached. unblock rhash/1.2.9-8 Cheers, Ivo
diff -Nru rhash-1.2.9/debian/changelog rhash-1.2.9/debian/changelog --- rhash-1.2.9/debian/changelog 2012-06-17 14:11:36.000000000 +0200 +++ rhash-1.2.9/debian/changelog 2012-11-28 17:39:41.000000000 +0100 @@ -1,3 +1,20 @@ +rhash (1.2.9-8) unstable; urgency=medium + + [ Aleksey Kravchenko ] + * Removed DMUA field to switch to new DM permissions management interface + [ Asheesh Laroia ] + * Slight simplification of debian/rules that aims to fix + parallel builds. In particular, we used to build a dynamically + linked rhash binary as 'rhash'; now, we build it as 'rhash-shared' + like the default of the upstream build system, and later rename it + to 'rhash' as needed. (Closes: #687398) + [ Gregor Herrmann ] + * debian/control: remove alternative build dependency on + c-sharp-2.0-compiler, which gets satisfied by mono-devel, and then the + needed mono-gmcs is missing. Thanks, Andrey Rahmatullin. + + -- Aleksey Kravchenko <[email protected]> Wed, 28 Nov 2012 01:47:19 +0700 + rhash (1.2.9-7) unstable; urgency=low * Fixed dependencies of ruby-rhash diff -Nru rhash-1.2.9/debian/control rhash-1.2.9/debian/control --- rhash-1.2.9/debian/control 2012-06-17 14:12:03.000000000 +0200 +++ rhash-1.2.9/debian/control 2012-11-28 17:20:10.000000000 +0100 @@ -3,9 +3,8 @@ Priority: optional Maintainer: Aleksey Kravchenko <[email protected]> Build-Depends: debhelper (>= 8), dpkg-dev (>= 1.16.2), libssl-dev (>= 1.0.0), default-jdk, junit4, default-jdk-doc, perl, python (>= 2.6.6-3~), ruby1.8, ruby1.8-dev, ruby1.9.1, ruby1.9.1-dev, chrpath -Build-Depends-Indep: cli-common-dev (>= 0.8~), mono-gmcs (>= 1.1.8) | c-sharp-2.0-compiler, monodoc-base +Build-Depends-Indep: cli-common-dev (>= 0.8~), mono-gmcs (>= 1.1.8), monodoc-base Standards-Version: 3.9.3 -DM-Upload-Allowed: yes Homepage: http://rhash.sourceforge.net/ Vcs-Git: git://git.debian.org/git/collab-maint/rhash.git Vcs-Browser: http://git.debian.org/?p=collab-maint/rhash.git diff -Nru rhash-1.2.9/debian/rules rhash-1.2.9/debian/rules --- rhash-1.2.9/debian/rules 2012-06-16 06:54:00.000000000 +0200 +++ rhash-1.2.9/debian/rules 2012-11-28 15:56:58.000000000 +0100 @@ -63,7 +63,10 @@ build-rhash: # Compile static/shared libraries and the program. +$(MAKE) lib-static lib-shared rhash-shared CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" \ - LIBCFLAGS="$(LIBCFLAGS)" LIBLDFLAGS="$(LIBLDFLAGS)" SHARED_TRG=rhash + LIBCFLAGS="$(LIBCFLAGS)" LIBLDFLAGS="$(LIBLDFLAGS)" + # Move the rhash_shared binary to be called rhash, so that the tests use that + # (and also since that is the binary name we will install into /usr/bin) + cp rhash_shared rhash # Compile language bindings. mkdir -p $(DESTDIR) && ln -fs $(CURDIR)/librhash $(DESTDIR)/rhash ln -fs $(CURDIR)/librhash/librhash.so.0 $(DESTDIR)/ && ln -fs $(DESTDIR)/librhash.so.0 $(DESTDIR)/librhash.so

