Dear maintainer, I've prepared an NMU for libphone-utils (versioned as 0.1+git20110523-2.1) and uploaded it to DELAYED/2. Please feel free to tell me if I should delay it longer.
For your convenience, actual debdiff from Wheezy also attached. Regards.
diff -Nru libphone-utils-0.1+git20110523/debian/changelog libphone-utils-0.1+git20110523/debian/changelog --- libphone-utils-0.1+git20110523/debian/changelog 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/changelog 2012-12-26 21:38:07.000000000 -0400 @@ -1,3 +1,14 @@ +libphone-utils (0.1+git20110523-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Ignore maintainer change from 0.1+git20110523-2 that introduce many + changes not in line with the current freeze policy, and lose the fix from + 0.1+git20110523-1.1. (Closes: #684758) + * Remove multi-arch support for libphone-utils0, a less intrusive way to fix + #695272 as advised by Helmut Grohne, and underlined by the release team. + + -- David Prévot <taf...@debian.org> Wed, 26 Dec 2012 21:31:46 -0400 + libphone-utils (0.1+git20110523-2) unstable; urgency=low [ Dominik George ] @@ -45,14 +56,6 @@ -- Sebastian Reichel <s...@debian.org> Tue, 18 Oct 2011 23:37:13 +0200 -libphone-utils (0.1+git20100630-1.1) unstable; urgency=low - - * Non-maintainer upload. - * Add patch remove_unusued_variables to remove unusued variables to build - with GCC 4.6.1. (Closes: #625372) - - -- Ana Beatriz Guerrero Lopez <a...@debian.org> Sat, 10 Sep 2011 13:35:57 +0200 - libphone-utils (0.1+git20100630-1) unstable; urgency=low * New upstream release diff -Nru libphone-utils-0.1+git20110523/debian/control libphone-utils-0.1+git20110523/debian/control --- libphone-utils-0.1+git20110523/debian/control 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/control 2012-12-26 21:19:26.000000000 -0400 @@ -4,39 +4,25 @@ Maintainer: Debian freesmartphone.org Team <pkg-fso-ma...@lists.alioth.debian.org> Uploaders: Sebastian Reichel <s...@debian.org>, Rico Rommel <r...@bierrommel.de> DM-Upload-Allowed: yes -Build-Depends: debhelper (>= 9), +Build-Depends: debhelper (>= 8), dh-autoreconf, libglib2.0-dev, po-debconf -Standards-Version: 3.9.4 +Standards-Version: 3.9.2 Homepage: http://shr-project.org Vcs-git: git://git.debian.org/pkg-fso/libphone-utils.git Vcs-browser: http://git.debian.org/?p=pkg-fso/libphone-utils.git Package: libphone-utils0 Architecture: any -Depends: libphone-utils-common (>= ${source:Version}), - ${shlibs:Depends}, +Depends: ${shlibs:Depends}, ${misc:Depends} Pre-Depends: ${misc:Pre-Depends} -Multi-Arch: same Breaks: fso-frameworkd (<= 0.9.5.9+git20100117) Description: library for basic phone operations This library contains basic functions needed by SHR phone software and the freesmartphone.org opimd daemon. It is used for handling international numbers. - -Package: libphone-utils-common -Architecture: all -Depends: ${misc:Depends} -Pre-Depends: ${misc:Pre-Depends} -Multi-Arch: foreign -Description: Common files for libphone-utils - This package contains common files for the libphone-utils library. - . - This library contains basic functions needed by SHR phone software - and the freesmartphone.org opimd daemon. It is used for handling - international numbers. Package: libphone-utils0-dbg Section: debug diff -Nru libphone-utils-0.1+git20110523/debian/copyright libphone-utils-0.1+git20110523/debian/copyright --- libphone-utils-0.1+git20110523/debian/copyright 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/copyright 2011-10-18 18:08:47.000000000 -0400 @@ -1,4 +1,4 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Format: http://dep.debian.net/deps/dep5/ Source: http://git.shr-project.org/git/?p=libphone-utils.git Files: * @@ -7,7 +7,7 @@ License: LGPL-3+ Files: debian/* -Copyright: 2009-2012, Sebastian Reichel <s...@debian.org> +Copyright: 2009-2011, Sebastian Reichel <s...@debian.org> License: LGPL-3+ License: LGPL-3+ diff -Nru libphone-utils-0.1+git20110523/debian/libphone-utils0.config libphone-utils-0.1+git20110523/debian/libphone-utils0.config --- libphone-utils-0.1+git20110523/debian/libphone-utils0.config 1969-12-31 20:00:00.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/libphone-utils0.config 2011-10-18 18:08:47.000000000 -0400 @@ -0,0 +1,35 @@ +#!/bin/sh -e +# config script for libphone-utils +. /usr/share/debconf/confmodule + +if [ -s /etc/phone-utils.conf ] ; then + INTERNATIONAL=$(cat /etc/phone-utils.conf | grep -E "^international_prefix" | head -n 1 | cut -d "=" -f 2) + NATIONAL=$(cat /etc/phone-utils.conf | grep -E "^national_prefix" | head -n 1 | cut -d "=" -f 2) + COUNTRY=$(cat /etc/phone-utils.conf | grep country_code | head -n 1 | cut -d "=" -f 2) + AREA=$(cat /etc/phone-utils.conf | grep area_code | head -n 1 | cut -d "=" -f 2) + + if [ -n "$INTERNATIONAL" ] ; then + db_set libphone-utils/international_prefix "$INTERNATIONAL" + fi + if [ -n "$NATIONAL" ] ; then + db_set libphone-utils/national_prefix "$NATIONAL" + fi + if [ -n "$COUNTRY" ] ; then + db_set libphone-utils/country_code "$COUNTRY" + fi + if [ -n "$AREA" ] ; then + db_set libphone-utils/area_code "$AREA" + fi +fi + +db_input high libphone-utils/international_prefix || true +db_go + +db_input high libphone-utils/national_prefix || true +db_go + +db_input high libphone-utils/country_code || true +db_go + +db_input high libphone-utils/area_code || true +db_go diff -Nru libphone-utils-0.1+git20110523/debian/libphone-utils0.docs libphone-utils-0.1+git20110523/debian/libphone-utils0.docs --- libphone-utils-0.1+git20110523/debian/libphone-utils0.docs 1969-12-31 20:00:00.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/libphone-utils0.docs 2011-10-18 18:08:47.000000000 -0400 @@ -0,0 +1 @@ +data/phoneprefix diff -Nru libphone-utils-0.1+git20110523/debian/libphone-utils0.postinst libphone-utils-0.1+git20110523/debian/libphone-utils0.postinst --- libphone-utils-0.1+git20110523/debian/libphone-utils0.postinst 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/libphone-utils0.postinst 2011-10-18 18:08:47.000000000 -0400 @@ -1,14 +1,40 @@ #!/bin/sh +# postinst script for libphone-utils + set -e -# Replace documentation directory with symlink -docdir="/usr/share/doc/libphone-utils0" -if [ -d $docdir ] && [ ! -L $docdir ]; then - if rmdir $docdir 2>/dev/null; then - ln -sf libphone-utils-common $docdir - fi +. /usr/share/debconf/confmodule + +cfgpath=/etc/phone-utils.conf + +cfg_prep() { + [ -f "$cfgpath" ] || touch "$cfgpath" + grep -q '^\[local\]' "$cfgpath" || echo '[local]' >> "$cfgpath" +} + +cfg_set() { + var="$1" val="$2" perl -i -ple ' + s/^($ENV{var})[ \t]*=.*/$1 = $ENV{val}/ and $seen++; + print STDERR "WARNING: option \"$ENV{var}\" set multiple times!\n" if ( $seen > 1 ); + s/$/\n$ENV{var} = $ENV{val}/ if (eof and ! $seen); + ' "$cfgpath" +} + +if [ "$1" = "configure" ] ; then + cfg_prep + db_get libphone-utils/international_prefix + cfg_set international_prefix $RET + db_get libphone-utils/national_prefix + cfg_set national_prefix $RET + db_get libphone-utils/country_code + cfg_set country_code $RET + db_get libphone-utils/area_code + cfg_set area_code $RET fi +# tell debconf we are done +db_stop; + #DEBHELPER# -exit 0 +exit 0; diff -Nru libphone-utils-0.1+git20110523/debian/libphone-utils0.postrm libphone-utils-0.1+git20110523/debian/libphone-utils0.postrm --- libphone-utils-0.1+git20110523/debian/libphone-utils0.postrm 1969-12-31 20:00:00.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/libphone-utils0.postrm 2011-10-18 18:08:47.000000000 -0400 @@ -0,0 +1,14 @@ +#!/bin/sh +# postrm script for libphone-utils + +set -e + +if [ "$1" = "purge" ] ; then + if [ -f /etc/phone-utils.conf ] ; then + rm /etc/phone-utils.conf + fi +fi + +#DEBHELPER# + +exit 0; diff -Nru libphone-utils-0.1+git20110523/debian/libphone-utils0.templates libphone-utils-0.1+git20110523/debian/libphone-utils0.templates --- libphone-utils-0.1+git20110523/debian/libphone-utils0.templates 1969-12-31 20:00:00.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/libphone-utils0.templates 2011-10-18 18:08:47.000000000 -0400 @@ -0,0 +1,38 @@ +# These templates have been reviewed by the debian-l10n-english +# team +# +# If modifications/additions/rewording are needed, please ask +# debian-l10n-engl...@lists.debian.org for advice. +# +# Even minor modifications require translation updates and such +# changes should be coordinated with translators and reviewers. + +Template: libphone-utils/international_prefix +Type: string +Default: 00 +_Description: International phone prefix: + Please enter the prefix to dial for international calls. + This prefix is "00" in most countries. + +Template: libphone-utils/national_prefix +Type: string +Default: 0 +_Description: National phone prefix: + Please enter the prefix to dial for national calls. + This prefix is "0" in most countries. + +Template: libphone-utils/country_code +Type: string +_Default: 49 +_Description: Telephone country code: + Please enter the international telephone code for the local country + (for instance, "49" for Germany). + +Template: libphone-utils/area_code +Type: string +Default: 0 +_Description: Area code: + Please enter the telephone code for the local area (for instance, + "30" for Berlin in Germany). + . + This is normally only needed with landline phones. diff -Nru libphone-utils-0.1+git20110523/debian/libphone-utils-common.config libphone-utils-0.1+git20110523/debian/libphone-utils-common.config --- libphone-utils-0.1+git20110523/debian/libphone-utils-common.config 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/libphone-utils-common.config 1969-12-31 20:00:00.000000000 -0400 @@ -1,38 +0,0 @@ -#!/bin/sh -e -# config script for libphone-utils - -set -e - -. /usr/share/debconf/confmodule - -if [ -s /etc/phone-utils.conf ] ; then - INTERNATIONAL=$(cat /etc/phone-utils.conf | grep -E "^international_prefix" | head -n 1 | cut -d "=" -f 2) - NATIONAL=$(cat /etc/phone-utils.conf | grep -E "^national_prefix" | head -n 1 | cut -d "=" -f 2) - COUNTRY=$(cat /etc/phone-utils.conf | grep country_code | head -n 1 | cut -d "=" -f 2) - AREA=$(cat /etc/phone-utils.conf | grep area_code | head -n 1 | cut -d "=" -f 2) - - if [ -n "$INTERNATIONAL" ] ; then - db_set libphone-utils/international_prefix "$INTERNATIONAL" - fi - if [ -n "$NATIONAL" ] ; then - db_set libphone-utils/national_prefix "$NATIONAL" - fi - if [ -n "$COUNTRY" ] ; then - db_set libphone-utils/country_code "$COUNTRY" - fi - if [ -n "$AREA" ] ; then - db_set libphone-utils/area_code "$AREA" - fi -fi - -db_input high libphone-utils/international_prefix || true -db_go - -db_input high libphone-utils/national_prefix || true -db_go - -db_input high libphone-utils/country_code || true -db_go - -db_input high libphone-utils/area_code || true -db_go diff -Nru libphone-utils-0.1+git20110523/debian/libphone-utils-common.docs libphone-utils-0.1+git20110523/debian/libphone-utils-common.docs --- libphone-utils-0.1+git20110523/debian/libphone-utils-common.docs 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/libphone-utils-common.docs 1969-12-31 20:00:00.000000000 -0400 @@ -1 +0,0 @@ -data/phoneprefix diff -Nru libphone-utils-0.1+git20110523/debian/libphone-utils-common.postinst libphone-utils-0.1+git20110523/debian/libphone-utils-common.postinst --- libphone-utils-0.1+git20110523/debian/libphone-utils-common.postinst 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/libphone-utils-common.postinst 1969-12-31 20:00:00.000000000 -0400 @@ -1,40 +0,0 @@ -#!/bin/sh -# postinst script for libphone-utils - -set -e - -. /usr/share/debconf/confmodule - -cfgpath=/etc/phone-utils.conf - -cfg_prep() { - [ -f "$cfgpath" ] || touch "$cfgpath" - grep -q '^\[local\]' "$cfgpath" || echo '[local]' >> "$cfgpath" -} - -cfg_set() { - var="$1" val="$2" perl -i -ple ' - s/^($ENV{var})[ \t]*=.*/$1 = $ENV{val}/ and $seen++; - print STDERR "WARNING: option \"$ENV{var}\" set multiple times!\n" if ( $seen > 1 ); - s/$/\n$ENV{var} = $ENV{val}/ if (eof and ! $seen); - ' "$cfgpath" -} - -if [ "$1" = "configure" ] ; then - cfg_prep - db_get libphone-utils/international_prefix - cfg_set international_prefix $RET - db_get libphone-utils/national_prefix - cfg_set national_prefix $RET - db_get libphone-utils/country_code - cfg_set country_code $RET - db_get libphone-utils/area_code - cfg_set area_code $RET -fi - -# tell debconf we are done -db_stop; - -#DEBHELPER# - -exit 0; diff -Nru libphone-utils-0.1+git20110523/debian/libphone-utils-common.postrm libphone-utils-0.1+git20110523/debian/libphone-utils-common.postrm --- libphone-utils-0.1+git20110523/debian/libphone-utils-common.postrm 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/libphone-utils-common.postrm 1969-12-31 20:00:00.000000000 -0400 @@ -1,14 +0,0 @@ -#!/bin/sh -# postrm script for libphone-utils - -set -e - -if [ "$1" = "purge" ] ; then - if [ -f /etc/phone-utils.conf ] ; then - rm /etc/phone-utils.conf - fi -fi - -#DEBHELPER# - -exit 0; diff -Nru libphone-utils-0.1+git20110523/debian/libphone-utils-common.templates libphone-utils-0.1+git20110523/debian/libphone-utils-common.templates --- libphone-utils-0.1+git20110523/debian/libphone-utils-common.templates 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/libphone-utils-common.templates 1969-12-31 20:00:00.000000000 -0400 @@ -1,38 +0,0 @@ -# These templates have been reviewed by the debian-l10n-english -# team -# -# If modifications/additions/rewording are needed, please ask -# debian-l10n-engl...@lists.debian.org for advice. -# -# Even minor modifications require translation updates and such -# changes should be coordinated with translators and reviewers. - -Template: libphone-utils/international_prefix -Type: string -Default: 00 -_Description: International phone prefix: - Please enter the prefix to dial for international calls. - This prefix is "00" in most countries. - -Template: libphone-utils/national_prefix -Type: string -Default: 0 -_Description: National phone prefix: - Please enter the prefix to dial for national calls. - This prefix is "0" in most countries. - -Template: libphone-utils/country_code -Type: string -_Default: 49 -_Description: Telephone country code: - Please enter the international telephone code for the local country - (for instance, "49" for Germany). - -Template: libphone-utils/area_code -Type: string -Default: 0 -_Description: Area code: - Please enter the telephone code for the local area (for instance, - "30" for Berlin in Germany). - . - This is normally only needed with landline phones. diff -Nru libphone-utils-0.1+git20110523/debian/libphone-utils-dev.postinst libphone-utils-0.1+git20110523/debian/libphone-utils-dev.postinst --- libphone-utils-0.1+git20110523/debian/libphone-utils-dev.postinst 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/libphone-utils-dev.postinst 2012-09-27 09:09:26.000000000 -0400 @@ -5,7 +5,7 @@ docdir="/usr/share/doc/libphone-utils-dev" if [ -d $docdir ] && [ ! -L $docdir ]; then if rmdir $docdir 2>/dev/null; then - ln -sf libphone-utils-common $docdir + ln -sf libphone-utils0 $docdir fi fi diff -Nru libphone-utils-0.1+git20110523/debian/po/cs.po libphone-utils-0.1+git20110523/debian/po/cs.po --- libphone-utils-0.1+git20110523/debian/po/cs.po 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/po/cs.po 2011-10-18 18:08:47.000000000 -0400 @@ -17,14 +17,14 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 #| msgid "international phone prefix:" msgid "International phone prefix:" msgstr "Mezinárodní telefonní předčíslí:" #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 #| msgid "" #| "You can setup the prefix for international calls here. This prefix is \"00" #| "\" in a lot of countries." @@ -37,14 +37,14 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 #| msgid "national phone prefix:" msgid "National phone prefix:" msgstr "Vnitrostátní telefonní předčíslí:" #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 #| msgid "" #| "You can setup the prefix for national calls here. This prefix is \"0\" in " #| "a lot of countries." @@ -57,20 +57,20 @@ #. Type: string #. Default -#: ../libphone-utils-common.templates:4001 +#: ../libphone-utils0.templates:4001 msgid "49" msgstr "420" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 #| msgid "country code:" msgid "Telephone country code:" msgstr "Kód země:" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." @@ -80,14 +80,14 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 #| msgid "area code:" msgid "Area code:" msgstr "Kód oblasti:" #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." @@ -97,7 +97,7 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "To je obvykle potřeba pouze u pevných linek." diff -Nru libphone-utils-0.1+git20110523/debian/po/da.po libphone-utils-0.1+git20110523/debian/po/da.po --- libphone-utils-0.1+git20110523/debian/po/da.po 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/po/da.po 2011-10-18 18:08:47.000000000 -0400 @@ -17,13 +17,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Internationalt telefonpræfiks:" #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." @@ -33,13 +33,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Nationalt telefonpræfiks:" #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." @@ -49,19 +49,19 @@ #. Type: string #. Default -#: ../libphone-utils-common.templates:4001 +#: ../libphone-utils0.templates:4001 msgid "49" msgstr "45" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Landekode for telefon:" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." @@ -71,13 +71,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Områdekode:" #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." @@ -87,7 +87,7 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Dette er normalt kun krævet for fastnetstelefoner." diff -Nru libphone-utils-0.1+git20110523/debian/po/de.po libphone-utils-0.1+git20110523/debian/po/de.po --- libphone-utils-0.1+git20110523/debian/po/de.po 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/po/de.po 2011-10-18 18:08:47.000000000 -0400 @@ -18,13 +18,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Internationale Vorwahl:" #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." @@ -34,13 +34,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Nationale Vorwahl:" #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." @@ -50,19 +50,19 @@ #. Type: string #. Default -#: ../libphone-utils-common.templates:4001 +#: ../libphone-utils0.templates:4001 msgid "49" msgstr "49" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Landesvorwahl:" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." @@ -72,13 +72,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Ortsvorwahl:" #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." @@ -86,6 +86,6 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Diese ist üblicherweise nur bei Festnetztelefonen notwendig." diff -Nru libphone-utils-0.1+git20110523/debian/po/es.po libphone-utils-0.1+git20110523/debian/po/es.po --- libphone-utils-0.1+git20110523/debian/po/es.po 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/po/es.po 2011-10-18 18:08:47.000000000 -0400 @@ -38,13 +38,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Prefijo telefónico internacional:" #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." @@ -54,13 +54,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Prefijo telefónico nacional:" #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." @@ -70,19 +70,19 @@ #. Type: string #. Default -#: ../libphone-utils-common.templates:4001 +#: ../libphone-utils0.templates:4001 msgid "49" msgstr "34" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Código telefónico del país:" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." @@ -92,13 +92,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Código de área:" #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." @@ -108,6 +108,6 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Normalmente sólo se necesita en teléfonos en líneas de tierra." diff -Nru libphone-utils-0.1+git20110523/debian/po/fr.po libphone-utils-0.1+git20110523/debian/po/fr.po --- libphone-utils-0.1+git20110523/debian/po/fr.po 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/po/fr.po 2011-10-18 18:08:47.000000000 -0400 @@ -20,13 +20,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Préfixe téléphonique pour l'accès à l'international :" #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." @@ -36,13 +36,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Préfixe téléphonique pour les appels nationaux :" #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." @@ -52,19 +52,19 @@ #. Type: string #. Default -#: ../libphone-utils-common.templates:4001 +#: ../libphone-utils0.templates:4001 msgid "49" msgstr "33" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Code téléphonique du pays :" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." @@ -74,13 +74,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Code régional :" #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." @@ -90,6 +90,6 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Ce code est utilisé en général avec les téléphones fixes." diff -Nru libphone-utils-0.1+git20110523/debian/po/it.po libphone-utils-0.1+git20110523/debian/po/it.po --- libphone-utils-0.1+git20110523/debian/po/it.po 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/po/it.po 2011-10-18 18:08:47.000000000 -0400 @@ -18,13 +18,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Prefisso telefonico internazionale:" #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." @@ -34,13 +34,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Prefisso telefonico nazionale:" #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." @@ -50,19 +50,19 @@ #. Type: string #. Default -#: ../libphone-utils-common.templates:4001 +#: ../libphone-utils0.templates:4001 msgid "49" msgstr "39" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Codice telefonico della nazione:" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." @@ -72,13 +72,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Prefisso:" #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." @@ -90,6 +90,6 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Normalmente questo è necessario solo per i telefoni fissi." diff -Nru libphone-utils-0.1+git20110523/debian/po/ja.po libphone-utils-0.1+git20110523/debian/po/ja.po --- libphone-utils-0.1+git20110523/debian/po/ja.po 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/po/ja.po 2011-10-18 18:08:47.000000000 -0400 @@ -17,13 +17,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "国際プレフィックス:" #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." @@ -33,13 +33,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "国内プレフィックス:" #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." @@ -49,19 +49,19 @@ #. Type: string #. Default -#: ../libphone-utils-common.templates:4001 +#: ../libphone-utils0.templates:4001 msgid "49" msgstr "81" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "国番号:" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." @@ -69,13 +69,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "市外局番:" #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." @@ -84,6 +84,6 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "通常、これは固定電話にのみ必要となります。" diff -Nru libphone-utils-0.1+git20110523/debian/po/POTFILES.in libphone-utils-0.1+git20110523/debian/po/POTFILES.in --- libphone-utils-0.1+git20110523/debian/po/POTFILES.in 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/po/POTFILES.in 2011-10-18 18:08:47.000000000 -0400 @@ -1 +1 @@ -[type: gettext/rfc822deb] libphone-utils-common.templates +[type: gettext/rfc822deb] libphone-utils0.templates diff -Nru libphone-utils-0.1+git20110523/debian/po/pt.po libphone-utils-0.1+git20110523/debian/po/pt.po --- libphone-utils-0.1+git20110523/debian/po/pt.po 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/po/pt.po 2011-10-18 18:08:47.000000000 -0400 @@ -17,13 +17,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Prefixo telefónico internacional:" #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." @@ -33,13 +33,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Prefixo de telefone nacional:" #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." @@ -49,19 +49,19 @@ #. Type: string #. Default -#: ../libphone-utils-common.templates:4001 +#: ../libphone-utils0.templates:4001 msgid "49" msgstr "351" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Código telefónico de país:" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." @@ -71,13 +71,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Indicativo regional:" #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." @@ -87,6 +87,6 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Normalmente isto só é necessário para telefone fixo." diff -Nru libphone-utils-0.1+git20110523/debian/po/ru.po libphone-utils-0.1+git20110523/debian/po/ru.po --- libphone-utils-0.1+git20110523/debian/po/ru.po 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/po/ru.po 2011-10-18 18:08:47.000000000 -0400 @@ -20,13 +20,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Префикс для международных телефонных звонков:" #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." @@ -35,13 +35,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Префикс для телефонных звонков внутри страны:" #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." @@ -50,19 +50,19 @@ #. Type: string #. Default -#: ../libphone-utils-common.templates:4001 +#: ../libphone-utils0.templates:4001 msgid "49" msgstr "7" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Телефонный код страны:" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." @@ -71,13 +71,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Код региона:" #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." @@ -85,6 +85,6 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Обычно, он требуется только для проводных телефонов." diff -Nru libphone-utils-0.1+git20110523/debian/po/sv.po libphone-utils-0.1+git20110523/debian/po/sv.po --- libphone-utils-0.1+git20110523/debian/po/sv.po 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/po/sv.po 2011-10-18 18:08:47.000000000 -0400 @@ -19,13 +19,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Utlandsprefix:" #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." @@ -35,13 +35,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Prefix nationellt:" #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." @@ -51,19 +51,19 @@ #. Type: string #. Default -#: ../libphone-utils-common.templates:4001 +#: ../libphone-utils0.templates:4001 msgid "49" msgstr "46" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Landskod:" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." @@ -73,14 +73,14 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Riktnummer:" # go 035! Halmstad <3 #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." @@ -88,7 +88,7 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Detta behövs vanligen bara vid fast telefoni." diff -Nru libphone-utils-0.1+git20110523/debian/po/templates.pot libphone-utils-0.1+git20110523/debian/po/templates.pot --- libphone-utils-0.1+git20110523/debian/po/templates.pot 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/po/templates.pot 2011-10-18 18:08:47.000000000 -0400 @@ -18,13 +18,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "" #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "" "Please enter the prefix to dial for international calls. This prefix is \"00" "\" in most countries." @@ -32,13 +32,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "" #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "" "Please enter the prefix to dial for national calls. This prefix is \"0\" in " "most countries." @@ -46,19 +46,19 @@ #. Type: string #. Default -#: ../libphone-utils-common.templates:4001 +#: ../libphone-utils0.templates:4001 msgid "49" msgstr "" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "" "Please enter the international telephone code for the local country (for " "instance, \"49\" for Germany)." @@ -66,13 +66,13 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "" #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "" "Please enter the telephone code for the local area (for instance, \"30\" for " "Berlin in Germany)." @@ -80,6 +80,6 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "" diff -Nru libphone-utils-0.1+git20110523/debian/po/vi.po libphone-utils-0.1+git20110523/debian/po/vi.po --- libphone-utils-0.1+git20110523/debian/po/vi.po 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/po/vi.po 2011-10-18 18:08:47.000000000 -0400 @@ -18,61 +18,61 @@ #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "International phone prefix:" msgstr "Tiền tố điện thoại quốc tế:" #. Type: string #. Description -#: ../libphone-utils-common.templates:2001 +#: ../libphone-utils0.templates:2001 msgid "Please enter the prefix to dial for international calls. This prefix is \"00\" in most countries." msgstr "Hãy gõ tiền tố cần quay số khi gọi cho người ngoài nước. Tiền tố này là « 00 » trong phần lớn các quốc gia." #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "National phone prefix:" msgstr "Tiền tố điện thoại trong nước:" #. Type: string #. Description -#: ../libphone-utils-common.templates:3001 +#: ../libphone-utils0.templates:3001 msgid "Please enter the prefix to dial for national calls. This prefix is \"0\" in most countries." msgstr "Hãy gõ tiền tố cần quay số khi gọi cho người ở trong nước này. Tiền tố này là « 0 » trong phần lớn các quốc gia." #. Type: string #. Defaultchoice -#: ../libphone-utils-common.templates:4001 +#: ../libphone-utils0.templates:4001 msgid "49" msgstr "49" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "Telephone country code:" msgstr "Mã quốc gia điện thoại:" #. Type: string #. Description -#: ../libphone-utils-common.templates:4002 +#: ../libphone-utils0.templates:4002 msgid "Please enter the international telephone code for the local country (for instance, \"49\" for Germany)." msgstr "Hãy gõ mã điện thoại quốc tế cho nước này (v.d. « 84 » cho Việt Nam)." #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "Area code:" msgstr "Mã vùng:" #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "Please enter the telephone code for the local area (for instance, \"30\" for Berlin in Germany)." msgstr "Hãy gõ mã điện thoại cho vùng này (v.d. « 4 » cho Hà Nội)." #. Type: string #. Description -#: ../libphone-utils-common.templates:5001 +#: ../libphone-utils0.templates:5001 msgid "This is normally only needed with landline phones." msgstr "Giá trị này bình thường chỉ yêu cầu cho điện thoại dây (không phải điện thoại di động)." diff -Nru libphone-utils-0.1+git20110523/debian/rules libphone-utils-0.1+git20110523/debian/rules --- libphone-utils-0.1+git20110523/debian/rules 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/rules 2011-10-18 18:08:47.000000000 -0400 @@ -4,7 +4,6 @@ override_dh_strip: dh_strip -plibphone-utils0 --dbg-package=libphone-utils0-dbg - dh_strip -plibphone-utils-dev override_dh_installdocs: - dh_installdocs --link-doc=libphone-utils-common + dh_installdocs --link-doc=libphone-utils0 diff -Nru libphone-utils-0.1+git20110523/debian/source/lintian-overrides libphone-utils-0.1+git20110523/debian/source/lintian-overrides --- libphone-utils-0.1+git20110523/debian/source/lintian-overrides 2012-12-09 15:28:38.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/source/lintian-overrides 2011-10-18 18:08:47.000000000 -0400 @@ -1 +1,3 @@ -libphone-utils source: translated-default-field libphone-utils-common.templates: 26 +libphone-utils source: translated-default-field libphone-utils0.templates: 26 +# we use experimental multi-arch support +libphone-utils source: package-needs-versioned-debhelper-build-depends 9
diff -Nru libphone-utils-0.1+git20110523/debian/changelog libphone-utils-0.1+git20110523/debian/changelog --- libphone-utils-0.1+git20110523/debian/changelog 2012-09-27 09:10:22.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/changelog 2012-12-26 21:38:07.000000000 -0400 @@ -1,3 +1,28 @@ +libphone-utils (0.1+git20110523-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Ignore maintainer change from 0.1+git20110523-2 that introduce many + changes not in line with the current freeze policy, and lose the fix from + 0.1+git20110523-1.1. (Closes: #684758) + * Remove multi-arch support for libphone-utils0, a less intrusive way to fix + #695272 as advised by Helmut Grohne, and underlined by the release team. + + -- David Prévot <taf...@debian.org> Wed, 26 Dec 2012 21:31:46 -0400 + +libphone-utils (0.1+git20110523-2) unstable; urgency=low + + [ Dominik George ] + * Added a new libphone-utils-common binary package to contain + the /etc/phone-utils.conf config file for better multi-arch + support as reported by Helmut Grohne (Closes: #695272). + + [ Sebastian Reichel ] + * Use Debian Copyright Format 1.0 + * Bump Debian Standards Version to 3.9.4 + * Move phoneprefix file to libphone-utils-common + + -- Sebastian Reichel <s...@debian.org> Sun, 09 Dec 2012 20:28:21 +0100 + libphone-utils (0.1+git20110523-1.2) unstable; urgency=low * Non-maintainer upload. diff -Nru libphone-utils-0.1+git20110523/debian/control libphone-utils-0.1+git20110523/debian/control --- libphone-utils-0.1+git20110523/debian/control 2011-10-18 18:08:47.000000000 -0400 +++ libphone-utils-0.1+git20110523/debian/control 2012-12-26 21:19:26.000000000 -0400 @@ -18,7 +18,6 @@ Depends: ${shlibs:Depends}, ${misc:Depends} Pre-Depends: ${misc:Pre-Depends} -Multi-Arch: same Breaks: fso-frameworkd (<= 0.9.5.9+git20100117) Description: library for basic phone operations This library contains basic functions needed by SHR phone software
signature.asc
Description: Digital signature