Hi. Please allow eject into testing. It only contains a translation update and some very minor fixes, but due to me moving some files around in the .orig.tar.gz the debdiff is very huge.
I realize that me finally fixing the upstream tarball to make live of translators easier coinsided badly with the freeze, so if wanted I can upload only the debconf translation update to lenny-proposed-updates instead if wanted. Anyway, here is a debdiff *without* the effects of the repacking: diff -Nru eject-2.1.5/debian/changelog eject-2.1.5+deb1/debian/changelog --- eject-2.1.5/debian/changelog 2008-07-31 18:39:25.000000000 +0200 +++ eject-2.1.5+deb1/debian/changelog 2008-07-31 18:39:26.000000000 +0200 @@ -1,3 +1,14 @@ +eject (2.1.5+deb1-1) unstable; urgency=low + + * Create new upstream tar ball so that we can get rid of + these strange named .po files. Closes: #336792, #336810 + * New git repository online, add Vcs-* fields. + * Add Homepage field. + * Debconf translations: + - Lithuanian added. Closes: #490779 + + -- Frank Lichtenheld <[EMAIL PROTECTED]> Sun, 20 Jul 2008 23:42:07 +0200 + eject (2.1.5-10) unstable; urgency=medium * Debconf translations: diff -Nru eject-2.1.5/debian/control eject-2.1.5+deb1/debian/control --- eject-2.1.5/debian/control 2008-07-31 18:39:25.000000000 +0200 +++ eject-2.1.5+deb1/debian/control 2008-07-31 18:39:26.000000000 +0200 @@ -4,6 +4,9 @@ Build-Depends: gettext, debhelper (>= 6.0.7), dpkg-dev (>= 1.13.2), libdevmapper-dev [!kfreebsd-i386 !kfreebsd-amd64] Maintainer: Frank Lichtenheld <[EMAIL PROTECTED]> Standards-Version: 3.8.0 +Vcs-Git: git://git.debian.org/git/collab-maint/eject.git +Vcs-Browser: http://git.debian.org/?p=collab-maint/eject.git +Homepage: http://www.pobox.com/~tranter/eject.html Package: eject Architecture: any diff -Nru eject-2.1.5/debian/po/lt.po eject-2.1.5+deb1/debian/po/lt.po --- eject-2.1.5/debian/po/lt.po 1970-01-01 01:00:00.000000000 +0100 +++ eject-2.1.5+deb1/debian/po/lt.po 2008-07-31 18:39:26.000000000 +0200 @@ -0,0 +1,23 @@ +# Lithuanian messages for eject package. +# Copyright (C) 2003 Software in the Public Interest, Inc. +# This file is distributed under the same license as package eject. +# Kęstutis Biliūnas <[EMAIL PROTECTED]> 2008. + +msgid "" +msgstr "" +"Project-Id-Version: eject\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-04-11 23:40+0200\n" +"PO-Revision-Date: 2008-07-14 12:20+0300\n" +"Last-Translator: Kęstutis Biliūnas <[EMAIL PROTECTED]>\n" +"Language-Team: Lithuanian <[EMAIL PROTECTED]>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit" + +#. Type: text +#. description +#: ../eject-udeb.templates:3 +msgid "Eject a CD from the drive" +msgstr "Išimti diską iš CD įrenginio" + diff -Nru eject-2.1.5/eject.c eject-2.1.5+deb1/eject.c --- eject-2.1.5/eject.c 2008-07-31 18:39:25.000000000 +0200 +++ eject-2.1.5+deb1/eject.c 2008-07-31 18:39:26.000000000 +0200 @@ -665,7 +665,7 @@ printf("\n"); #else - fprintf(stderr, _("%s: CD-ROM select speed command not supported by thiskernel\n"), programName); + fprintf(stderr, _("%s: CD-ROM select speed command not supported by this kernel\n"), programName); #endif } @@ -1058,7 +1058,7 @@ const char* dev = GetDevmapperDevice (s1); if (dev) { if (v_option) - printf(_("%s: %s is encrypted on real device %s\n"), + printf(_("%s: %s is encrypted on real device %s\n"), programName, s1, dev); } else dev = s1; @@ -1131,10 +1131,10 @@ const char* dev = GetDevmapperDevice (name); if (dev) { if (v_option) - printf(_("%s: %s is encrypted on real device %s\n"), + printf(_("%s: %s is encrypted on real device %s\n"), programName, name, dev); name = dev; - } + } for (i = 0; partitionDevice[i] != 0; i++) { /* look for ^/dev/foo[a-z]([0-9]?[0-9])?$, e.g. /dev/hda1 */ And a diffstat for the full debdiff: debian/changelog | 11 + debian/control | 3 debian/po/lt.po | 23 ++ eject.c | 8 po/Makefile | 22 -- po/cs.po | 436 ++++++++++++++++++++++++++++++++++++++++++++ po/cs_CZ.po | 431 -------------------------------------------- po/de.po | 445 +++++++++++++++++++++++++++++++++++++++++++++ po/de_DE.po | 516 ---------------------------------------------------- po/eject.pot | 91 ++++----- po/es.po | 515 ++++++++++++++++++++++++++++++++++++++++++++++++++++ po/es_ES.po | 510 ---------------------------------------------------- po/fr.po | 520 +++++++++++++++++++++++++++++++++++++++++++++++++++++ po/fr_FR.po | 515 ---------------------------------------------------- po/it.po | 91 ++++----- po/ja.po | 516 ++++++++++++++++++++++++++++++++++++++++++++++++++++ po/ja_JP.eucJP.po | 511 ---------------------------------------------------- po/pt_BR.po | 91 ++++----- po/sv.po | 518 +++++++++++++++++++++++++++++++++++++++++++++++++++++ po/sv_SE.po | 513 ---------------------------------------------------- po/tr.po | 526 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/tr_TR.po | 521 ----------------------------------------------------- po/zh_TW.UTF-8.po | 509 ---------------------------------------------------- po/zh_TW.po | 514 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 24 files changed, 4176 insertions(+), 4180 deletions(-) -- Frank Lichtenheld <[EMAIL PROTECTED]> www: http://www.djpig.de/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]