--- /dev/null
+This package uses quilt for its patch management, see
+/usr/share/doc/quilt/README.source if you are unfamiliar with it.
+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
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
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
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.
--- /dev/null
+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 &&
+++ /dev/null
-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 &&
--- /dev/null
+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
-01search_ctrl-d_segfault_fix
+01_search_ctrl-d_segfault_fix
+02_fix-manpage
# 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"
"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."
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"
--- /dev/null
+# 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"
--- /dev/null
+# 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."
-# 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"
#!/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
#!/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
#!/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)
endif
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
INSTALL_PROGRAM += -s
+ STRIP = true
endif
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)
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.
-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