Your message dated Thu, 09 Aug 2007 22:47:07 +0000 with message-id <[EMAIL PROTECTED]> and subject line Bug#433081: fixed in devscripts 2.10.7 has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database)
--- Begin Message ---Package: devscripts Version: 2.10.6 Severity: normal File: /usr/bin/debcommit Tags: patch This patch does three things: - it stops the use of commit -a and instead expects proper use of the index (diff --cached is already being used). - adds to the "unable to determine commit message" a note about git add, if git is being used. - it uses git diff, since git-diff is being deprecated. --- /usr/bin/debcommit 2007-06-30 16:18:14.000000000 +0200 +++ /tmp/debcommit 2007-07-14 10:35:28.000000000 +0200 @@ -180,7 +180,7 @@ } } elsif ($prog eq 'git') { - if (! action($prog, "commit", "-a", "-m", $message, @files_to_commit)) { + if (! action($prog, "commit", "-m", $message, @files_to_commit)) { die "debcommit: commit failed\n"; } } @@ -284,7 +284,7 @@ if ($prog eq 'tla' || $prog eq 'baz') { @diffcmd = ($prog, 'file-diff'); } elsif ($prog eq 'git') { - @diffcmd = ('git-diff', '--cached'); + @diffcmd = ('git', 'diff', '--cached'); } else { @diffcmd = ($prog, 'diff'); } @@ -300,7 +300,11 @@ } if (! length $ret) { - die "debcommit: unable to determine commit message using $prog\nTry using the -m flag.\n"; + my $info; + if ($prog eq 'git') { + $info = ' (did you forget to run git add?)'; + } + die "debcommit: unable to determine commit message using $prog$info\nTry using the -m flag.\n"; } } else { -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.21-2-686 (SMP w/1 CPU core) Locale: LANG=en_GB, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages devscripts depends on: ii debianutils 2.22.1 Miscellaneous utilities specific t ii dpkg-dev 1.14.5 package building tools for Debian ii libc6 2.6-2 GNU C Library: Shared libraries ii perl 5.8.8-7 Larry Wall's Practical Extraction ii sed 4.1.5-2 The GNU sed stream editor Versions of packages devscripts recommends: ii fakeroot 1.7.1 Gives a fake root environment -- no debconf information -- .''`. martin f. krafft <[EMAIL PROTECTED]> : :' : proud Debian developer, author, administrator, and user `. `'` http://people.debian.org/~madduck - http://debiansystem.info `- Debian - when you have better things to do than fixing systems
signature.asc
Description: Digital signature (GPG/PGP)
--- End Message ---
--- Begin Message ---Source: devscripts Source-Version: 2.10.7 We believe that the bug you reported is fixed in the latest version of devscripts, which is due to be installed in the Debian FTP archive: devscripts_2.10.7.dsc to pool/main/d/devscripts/devscripts_2.10.7.dsc devscripts_2.10.7.tar.gz to pool/main/d/devscripts/devscripts_2.10.7.tar.gz devscripts_2.10.7_i386.deb to pool/main/d/devscripts/devscripts_2.10.7_i386.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Mohammed Adnène Trojette <[EMAIL PROTECTED]> (supplier of updated devscripts package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Fri, 10 Aug 2007 00:35:06 +0200 Source: devscripts Binary: devscripts Architecture: source i386 Version: 2.10.7 Distribution: unstable Urgency: low Maintainer: Devscripts Devel Team <[EMAIL PROTECTED]> Changed-By: Mohammed Adnène Trojette <[EMAIL PROTECTED]> Description: devscripts - Scripts to make the life of a Debian Package maintainer easier Closes: 315409 402539 417609 419657 423669 426584 427429 428827 431303 431840 433081 433169 433385 433419 433492 434145 434183 435011 Changes: devscripts (2.10.7) unstable; urgency=low . [ Adam D. Barratt ] * debian/control: Add libsoap-lite-perl to the Suggests and description for bts * README + Add libcrypt-ssleay-perl to the description for uscan + Add libsoap-lite-perl to the description for bts + Mention the SOAP interface in the description for bts * debchange: Fix NMU versioning for Debian native packages * dd-list: Sort developer names case-insensitively. Thanks to Steinar H. Gunderson for the suggestion * bts + Fix test for libwww-perl not being installed + Only pass -c to mail(1) if there are Cc: addresses (Closes: #433385) + Add support for selecting bug lists via the SOAP interface. This requires libsoap-lite-perl. Thanks to Don Armstrong for the patch (Closes: #433169) * deb-reversion: Apply patch from Adeodato Simó to ensure -v is honoured (Closes: #433492) * debcommit: When using git, allow either all files or only those in the index to be committed. Thanks to Martin F Krafft and Junichi Uekawa for the patch. (Closes: #402539, #427429, #433081) * uscan + Allow a user agent string to be specified (Closes: #433419) + Fix https support (Closes: #423669) + Correctly set exit status after downloading (Closes: #431840) * licensecheck + Allow directories to be passed as arguments + Allow a pattern to be specified indicating files / directories which should be excluded from checking. The default is the same as dpkg-source's -i option + Allow the set of files to be checked to be specified via a regular expression + Optionally attempt to find copyright statements . [ Christoph Berg ] * rmadison: Support ubuntu and querying multiple archives, suggested by Loïc Minier. (Closes: #431303) * dget: Downloading multiple binaries was broken. (Closes: #428827) . [ Stefano Zacchiroli ] * dd-list: list Uploaders per default, added --nouploaders option to force the old behaviour . [ Mohammed Adnène Trojette ] * debi: add svn-buildpackage support. Thanks to Raphaël Hertzog for the patch. (Closes: #315409, #417609) * dch: add --bpo support. (Closes: #434183) * debcommit: add debian/changelog to the list of files to commit. Thanks Damyan Ivanov for the patch. (Closes: #419657) * bts: add file:// to local urls. (Closes: #435011) * checkbashims: add a -n/--newline option (disabled by default) to also check "echo -n" as Debian Policy 10.4 requires /bin/sh to support it. (Closes: #426584) * tagpending: add a -t/--to option that adds a -v option to the dpkg-parsechangelog call. (Closes: #434145) * debian/rules: use [ ! -f Makefile ] || $(MAKE) clean instead of -$(MAKE) clean. Files: 594232ecafd6bbcfc99245c8efedc16b 1089 devel optional devscripts_2.10.7.dsc e02552323b796d9d2b05dd51efea2f6e 464869 devel optional devscripts_2.10.7.tar.gz f1672a113e113ec5e28a3c4a421da5dc 400912 devel optional devscripts_2.10.7_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGu5dyOU3FkQ7XBOoRAtCVAKDbjajwrQhXg3Xg8mWyNXosPfkGOQCgpskR BzBGEvLxKbQHWdcp9m/dI4I= =QbNt -----END PGP SIGNATURE-----
--- End Message ---

