]> git.deb.at Git - pkg/abook.git/commitdiff
Imported Debian patch 0.5.6-6 debian/0.5.6-6
authorGerfried Fuchs <rhonda@debian.at>
Thu, 24 Jul 2008 13:17:28 +0000 (15:17 +0200)
committerGerfried Fuchs <rhonda@debian.org>
Thu, 22 Mar 2012 16:33:34 +0000 (17:33 +0100)
18 files changed:
debian/README.source [new file with mode: 0644]
debian/changelog
debian/control
debian/copyright
debian/patches/01_search_ctrl-d_segfault_fix [new file with mode: 0644]
debian/patches/01search_ctrl-d_segfault_fix [deleted file]
debian/patches/02_fix-manpage [new file with mode: 0644]
debian/patches/series
debian/po/ca.po
debian/po/de.po
debian/po/es.po [new file with mode: 0644]
debian/po/pt.po [new file with mode: 0644]
debian/po/templates.pot
debian/postinst
debian/postrm
debian/rules
debian/templates
debian/watch

diff --git a/debian/README.source b/debian/README.source
new file mode 100644 (file)
index 0000000..3556bbc
--- /dev/null
@@ -0,0 +1,2 @@
+This package uses quilt for its patch management, see
+/usr/share/doc/quilt/README.source if you are unfamiliar with it.
index 38cb3d9999c3ad424c3da2371aeac2691b1c88a3..819762b8e9a9569f2b0a78ce3fec5ec636916c5e 100644 (file)
@@ -1,8 +1,24 @@
+abook (0.5.6-6) unstable; urgency=low
+
+  * Made copyright file more clear.
+  * Updated watch file to use special uscan hack for sourceforge.
+  * Updated Standards-Version to 3.8.0, added README.source file.
+  * New debconf translations:
+    - Spanish by Carlos Eduardo Sotelo Pinto (closes: #484848)
+    - Portuguese by Miguel Figueiredo (closes: #489036)
+  * Fixed Catalan po file encoding.
+  * Put proper headers into the templates.pot file.
+  * Use versioned Build-Depends on quilt for quilt.make usage.
+  * Also strip sections .comment and .note
+  * Add patch fix-manpage to escape hyphens where they should be minus signs.
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Thu, 24 Jul 2008 15:17:28 +0200
+
 abook (0.5.6-5) unstable; urgency=low
 
   * Add Homepage to source control stanca.
   * Bump Standards-Version to 3.7.3, menu file was already updated.
-  * New debconf translation: Russion by Yuri Kozlov (closes: #451813)
+  * New debconf translation: Russian by Yuri Kozlov (closes: #451813)
   * Pull search_ctrl-d_segfault_fix patch from upstream (closes: #462145)
 
  -- Gerfried Fuchs <rhonda@debian.at>  Thu, 24 Jan 2008 20:01:26 +0100
index ba175a9dc02be8fb19f19901a23d28713256cfeb..a1e092519b6ba6e3414f6fbbc062d6c5d2046ac2 100644 (file)
@@ -2,8 +2,9 @@ Source: abook
 Section: mail
 Priority: optional
 Maintainer: Gerfried Fuchs <rhonda@debian.at>
-Standards-Version: 3.7.3
-Build-Depends: libncursesw5-dev, libreadline5-dev | libreadline-dev, po-debconf, quilt
+Standards-Version: 3.8.0
+Build-Depends: libncursesw5-dev, libreadline5-dev | libreadline-dev,
+  po-debconf, quilt (>= 0.40)
 Homepage: http://abook.sourceforge.net/
 
 Package: abook
index bf23ad36b339bb40d97fb1082e4761afd0507837..4a059f5a0819200bb21050595b9cea27230fc657 100644 (file)
@@ -8,6 +8,8 @@ http://abook.sourceforge.net/
 Upstream Author: Jaakko Heinonen <jheinonen@bigfoot.com>
 
 Copyright:
+    Copyright (c) 2005 Jaakko Heinonen
+
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation; either version 2 of the License, or
@@ -23,5 +25,9 @@ Copyright:
     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
     MA 02110-1301 USA.
 
+The debianization of the package is licensed likewise and
+Copyright (c) 2003-2008 by Gerfried Fuchs <rhonda@debian.at>
+
 On Debian GNU/Linux systems, the complete text of the GNU General
-Public License can be found in `/usr/share/common-licenses/GPL'.
+Public License version 2 can be found in `/usr/share/common-licenses/GPL-2',
+later versions can be found in the same directory.
diff --git a/debian/patches/01_search_ctrl-d_segfault_fix b/debian/patches/01_search_ctrl-d_segfault_fix
new file mode 100644 (file)
index 0000000..0c18f2c
--- /dev/null
@@ -0,0 +1,23 @@
+Author: Cedric Duval <cedricduval@free.fr>     vim:ft=diff:
+Description: Don't let ctrl-d in search segfault abook (closes: #462145)
+
+Index: abook-0.5.6/ui.c
+===================================================================
+--- abook-0.5.6.orig/ui.c
++++ abook-0.5.6/ui.c
+@@ -569,9 +569,13 @@ ui_find(int next)
+       } else {
+               char *s;
+               s = ui_readline("/", findstr, MAX_FIELD_LEN - 1, 0);
+-              strncpy(findstr, s, MAX_FIELD_LEN);
+-              free(s);
+               refresh_screen();
++              if(s == NULL) {
++                      return; /* user cancelled (ctrl-G) */
++              } else {
++                      strncpy(findstr, s, MAX_FIELD_LEN);
++                      free(s);
++              }
+       }
+       if( (item = find_item(findstr, curitem + !!next, search_fields)) < 0 &&
diff --git a/debian/patches/01search_ctrl-d_segfault_fix b/debian/patches/01search_ctrl-d_segfault_fix
deleted file mode 100644 (file)
index e5924d2..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-Index: abook-0.5.6/ui.c
-===================================================================
---- abook-0.5.6.orig/ui.c
-+++ abook-0.5.6/ui.c
-@@ -569,9 +569,13 @@ ui_find(int next)
-       } else {
-               char *s;
-               s = ui_readline("/", findstr, MAX_FIELD_LEN - 1, 0);
--              strncpy(findstr, s, MAX_FIELD_LEN);
--              free(s);
-               refresh_screen();
-+              if(s == NULL) {
-+                      return; /* user cancelled (ctrl-G) */
-+              } else {
-+                      strncpy(findstr, s, MAX_FIELD_LEN);
-+                      free(s);
-+              }
-       }
-       if( (item = find_item(findstr, curitem + !!next, search_fields)) < 0 &&
diff --git a/debian/patches/02_fix-manpage b/debian/patches/02_fix-manpage
new file mode 100644 (file)
index 0000000..45b4345
--- /dev/null
@@ -0,0 +1,53 @@
+Author: Gerfried Fuchs <rhonda@debian.at>      vim:ft=diff:
+Description: Escape hyphens in manpage where they mean the minus sign
+
+Index: abook-0.5.6/abook.1
+===================================================================
+--- abook-0.5.6.orig/abook.1
++++ abook-0.5.6/abook.1
+@@ -80,11 +80,11 @@ The following \fIoutputformats\fR are su
+ .br
+ - \fBwl\fP Wanderlust address book
+ .TP
+-\fB\-\-add-email\fP
++\fB\-\-add\-email\fP
+ Read an e-mail message from stdin and add the sender to the addressbook.
+ .TP
+-\fB\-\-add-email-quiet\fP
+-Same as --add-email but doesn't confirm adding.
++\fB\-\-add\-email\-quiet\fP
++Same as \-\-add\-email but doesn't confirm adding.
+ .TP
+ \fB\-\-formats\fP
+ List available formats.
+Index: abook-0.5.6/abookrc.5
+===================================================================
+--- abook-0.5.6.orig/abookrc.5
++++ abook-0.5.6/abookrc.5
+@@ -47,7 +47,7 @@ Defines the field to display in the extr
+ .br
+ \fIfield\fP can be any of the following:
+ .br
+--1                    disabled
++\-1                   disabled
+ .br
+ phone         Home Phone
+ .br
+@@ -125,7 +125,7 @@ set emailpos=25
+ # Field to be used in the extra column
+ set extra_column=phone
+ # frequently used values:
+-#     -1          disabled
++#     \-1          disabled
+ #     phone       Home Phone
+ #     workphone   Work Phone
+ #     fax         Fax
+@@ -134,7 +134,7 @@ set extra_column=phone
+ #     url         URL
+ #
+-set extra_alternative=-1
++set extra_alternative=\-1
+ # Screen column for the extra field to start
+ set extrapos=65
index 083b0fdd5aafa9ee7a8a5ad5c7147651387c9995..0014b15f9e838a89c4e7b074a70af8ba509ce857 100644 (file)
@@ -1 +1,2 @@
-01search_ctrl-d_segfault_fix
+01_search_ctrl-d_segfault_fix
+02_fix-manpage
index eab8f412ba2eebaa653947d2ea0f2b856302e467..24cc768a93b348c93c94736bcb5afbe21731abbe 100644 (file)
@@ -3,16 +3,16 @@
 # Copyright (C) 2006 Gerfried Fuchs.
 # This file is distributed under the same license as the abook package.
 #
-# JordÃ\83  Polo <jorda@ettin.org>, 2006.
+# Jordà Polo <jorda@ettin.org>, 2006.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: 2.1.1\n"
 "Report-Msgid-Bugs-To: abook@packages.debian.org\n"
 "POT-Creation-Date: 2007-01-22 23:01+0100\n"
-"PO-Revision-Date: 2007-01-22 23:00+0100\n"
-"Last-Translator: JordÃ\83  Polo <jorda@ettin.org>\n"
-"Language-Team: CatalÃ\83  <debian-l10n-catalan@lists.debian.org>\n"
+"PO-Revision-Date: 2008-07-07 21:47+0200\n"
+"Last-Translator: Jordà Polo <jorda@ettin.org>\n"
+"Language-Team: Català <debian-l10n-catalan@lists.debian.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -33,6 +33,6 @@ msgid ""
 "addresses to abook with pressing \"A\" from pager mode."
 msgstr ""
 "abook ofereix la possibilitat de ser utilitzat des de mutt a l'hora de "
-"realitzar consultes. Si accepteu, el paquet crearÃ\83  un fitxer /etc/Muttrc.d/"
-"abook.rc que permetrÃ\83  fer consultes sobre la base de dades de abook i "
-"afegir noves adreces de correu prement \"A\" des del mode paginador."
+"realitzar consultes. Si accepteu, el paquet crearà un fitxer /etc/Muttrc.d/"
+"abook.rc que permetrà fer consultes sobre la base de dades de abook i afegir "
+"noves adreces de correu prement \"A\" des del mode paginador."
index a15a24703d2bd9c8371c7437ba35c7fa66c13520..a0b64434d5aabefcb7bb131e6e341474597f668a 100644 (file)
@@ -15,9 +15,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: abook 0.5.0\n"
 "Report-Msgid-Bugs-To: abook@packages.debian.org\n"
-"POT-Creation-Date: 2007-01-22 23:01+0100\n"
-"PO-Revision-Date: 2007-01-22 23:00+0100\n"
-"Last-Translator: Gerfried Fuchs <alfie@debian.org>\n"
+"POT-Creation-Date: 2006-08-18 10:38-0500\n"
+"PO-Revision-Date: 2008-07-07 22:03+0200\n"
+"Last-Translator: Gerfried Fuchs <rhonda@debian.at>\n"
 "Language-Team: German <debian-l10n-german@lists.debian.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=ISO-8859-15\n"
diff --git a/debian/po/es.po b/debian/po/es.po
new file mode 100644 (file)
index 0000000..ff73c5a
--- /dev/null
@@ -0,0 +1,61 @@
+# abook translation to spanish 
+# Copyright (C) 2008 Software in the Public Interest, SPI Inc.
+# This file is distributed under the same license as the abook package.
+#
+# Changes
+# - Initial translation
+# Carlos Eduardo Sotelo Pinto <csotelop@debian.org>, 2008
+#
+# Traductores, si no estan familiarizados con el formato PO, merece la 
+# pena leer la documentación de gettext, especialmente las secciones 
+# dedicadas a este formato, por ejemplo ejecutando
+# 
+#   info -n '(gettext)PO Files'
+#   info -n '(gettext)Header Entry'
+#
+# - El proyecto de traducción de Debian al español
+#   http://www.debian.org/intl/spanish/
+# especialmente las notas y normas de traducción en
+#   http://www.debian.org/intl/spanish/notas
+# 
+# - La guía de traducción de po's de debconof
+#   /usr/share/doc/po-debconf/README-trans
+# o
+#   http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+# Si tiene dudas o consultas sobre esta traducción consulte con el último
+# traductor (campo Last-Translator) y ponga en copia a la lista de
+# traducción de Debian al español (<debian-l10n-spanish@lists.debian.org>)
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: abook 0.5.6-5\n"
+"Report-Msgid-Bugs-To: abook@packages.debian.org\n"
+"POT-Creation-Date: 2007-01-22 23:01+0100\n"
+"PO-Revision-Date: 2008-06-02 15:27-0500\n"
+"Last-Translator: Carlos Eduardo Sotelo Pinto <csotelop@gmail.com>\n"
+"Language-Team: Spanish <debian-l10n-spanish@list.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want to enable abook system wide for mutt?"
+msgstr "¿Desea habilitar la extensión de abook para mutt?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"abook offers the possibility to be used as query backend from within mutt.  "
+"If you acknowledge this question the package will create an /etc/Muttrc.d/"
+"abook.rc file that enables querying the abook database and adding mail "
+"addresses to abook with pressing \"A\" from pager mode."
+msgstr "abook brinda la posibilidad de utilizarse como origen de consultas "
+"desde mutt. "
+"Si acepta esta pregunta el paquete creará un fichero «/etc/Muttrc.d/abook.rc» "
+"que habilita las consultas a la base de datos de abook y agrega "
+"la dirección de correo a abook presionando \"A\" desde el modo paginador"
diff --git a/debian/po/pt.po b/debian/po/pt.po
new file mode 100644 (file)
index 0000000..23c0fc1
--- /dev/null
@@ -0,0 +1,36 @@
+# Portuguese translation for abook (debconf)
+# This file is distributed under the same license as the abook package.
+# Miguel Figueiredo <elmig@debianpt.org>, 2006-2008.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: abook\n"
+"Report-Msgid-Bugs-To: abook@packages.debian.org\n"
+"POT-Creation-Date: 2007-01-22 23:01+0100\n"
+"PO-Revision-Date: 2008-07-02 23:05+0100\n"
+"Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n"
+"Language-Team: Portuguese <traduz@debianpt.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want to enable abook system wide for mutt?"
+msgstr "Deseja utilizar o abook em todo o sistema para o mutt?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"abook offers the possibility to be used as query backend from within mutt.  "
+"If you acknowledge this question the package will create an /etc/Muttrc.d/"
+"abook.rc file that enables querying the abook database and adding mail "
+"addresses to abook with pressing \"A\" from pager mode."
+msgstr ""
+"O abook oferece a possibilidade de ser utilizado como backend de consultas a "
+"partir do mutt.  Se responder afirmativamente a esta questão o pacote irá "
+"criar um ficheiro /etc/Muttrc.d/abook.rc que permite fazer consultas à base "
+"de dados do abook e adicionar endereços de mail ao abook ao premir \"A\" no "
+"modo pager."
index cb19edc4b14aa7fe3f3a26e1359797506f79b87c..50391d13e99fc0555ef97070a97c9b8bb1089433 100644 (file)
@@ -1,14 +1,14 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
+# po-debconf translation for abook.
+# Copyright (C) 2006 Gerfried Fuchs <rhonda@debian.at>
+# This file is distributed under the same license as the abook package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: abook VERSION\n"
 "Report-Msgid-Bugs-To: abook@packages.debian.org\n"
-"POT-Creation-Date: 2007-01-22 23:01+0100\n"
+"POT-Creation-Date: 2006-08-18 10:38-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index 408f6dcd34194516ca79586f09ab9ab71d9ad794..057954df9c81b35caf86493bf80e079e07330465 100644 (file)
@@ -1,5 +1,7 @@
 #!/bin/sh -e
 # postinst for abook
+# copyright 2003-2008 by Gerfried Fuchs <rhonda@debian.at>
+# Licenced the same way as abook itself
 
 # Source debconf library.
 if [ -e /usr/share/debconf/confmodule ]; then
index 76b38705d259e250ff50998636cb145e5d67abf7..f45490ee1fe77d974bd58a93ab53c8ccd090c290 100644 (file)
@@ -1,5 +1,7 @@
 #!/bin/sh -e
 # postrm for abook
+# copyright 2003-2008 by Gerfried Fuchs <rhonda@debian.at>
+# Licenced the same way as abook itself
 
 if [ -x "`which update-menus 2>/dev/null`" ]; then
        update-menus
index 21ac1efde4ae04606e3de84a33783d3516994a06..ab966e2f12f4ca788f934beb6d9cf160ab3f1e00 100755 (executable)
@@ -1,5 +1,8 @@
 #!/usr/bin/make -f
 # debian/rules for abook
+# copyright 2003-2008 by Gerfried Fuchs <rhonda@debian.at>
+# Licenced the same way as abook itself
+
 PKG = abook
 TMP = $(CURDIR)/debian/$(PKG)
 
@@ -19,6 +22,7 @@ else
 endif
 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
        INSTALL_PROGRAM += -s
+       STRIP = true
 endif
 
 
@@ -50,6 +54,9 @@ install: build
        cd $(TMP) && $(INSTALL_DIR) usr/share/doc/$(PKG)/examples \
                usr/share/doc/$(PKG)/contrib
        $(MAKE) prefix=$(TMP)/usr install INSTALL_PROGRAM="$(INSTALL_PROGRAM)"
+       test "$(STRIP)" != true || strip \
+               --remove-section=.comment --remove-section=.note \
+               $(TMP)/usr/bin/abook
        $(INSTALL_FILE) ChangeLog $(TMP)/usr/share/doc/$(PKG)/changelog
        $(INSTALL_FILE) ANNOUNCE AUTHORS BUGS FAQ README THANKS TODO \
                $(TMP)/usr/share/doc/$(PKG)
index 60e3b1107b3651767600d1e95bfbda6d0e9e07c7..2c09dcbdc1483e36b6196cfdb9ad78ebf5d77871 100644 (file)
@@ -2,7 +2,7 @@ Template: abook/muttrc.d
 Type: boolean
 Default: true
 _Description: Do you want to enable abook system wide for mutt?
- abook offers the possibility to be used as query backend from within mutt.  If
- you acknowledge this question the package will create an
+ abook offers the possibility to be used as query backend from within
mutt.  If you acknowledge this question the package will create an
  /etc/Muttrc.d/abook.rc file that enables querying the abook database and
  adding mail addresses to abook with pressing "A" from pager mode.
index 87cf19ad53444ff515421c8e05efb3dae46a1870..b8b68b4fc3c486c28351c7a50b6071adb35b8a6e 100644 (file)
@@ -1,3 +1,2 @@
-version=2
-# Site/Directory                                     Pattern                   Version Script
-http://heanet.dl.sourceforge.net/sourceforge/abook/  abook-([\d\.]*)\.tar\.gz  debian uupdate
+version=3
+http://sf.net/abook/abook-([\d.]+)\.tar\.gz