r36820 - in /packages/code-aster/astk/trunk/debian: astk-server.postinst astk-server.postrm astk.config astk.postinst astk.postrm astk.templates changelog po/es.po rules source/lintian-overrides
trophime-guest at users.alioth.debian.org
trophime-guest at users.alioth.debian.org
Mon Aug 16 13:07:13 UTC 2010
Author: trophime-guest
Date: Mon Aug 16 13:07:11 2010
New Revision: 36820
URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=36820
Log:
fix pending l10n issues and debconf scripts
Added:
packages/code-aster/astk/trunk/debian/po/es.po
packages/code-aster/astk/trunk/debian/source/lintian-overrides
Modified:
packages/code-aster/astk/trunk/debian/astk-server.postinst
packages/code-aster/astk/trunk/debian/astk-server.postrm
packages/code-aster/astk/trunk/debian/astk.config
packages/code-aster/astk/trunk/debian/astk.postinst
packages/code-aster/astk/trunk/debian/astk.postrm
packages/code-aster/astk/trunk/debian/astk.templates
packages/code-aster/astk/trunk/debian/changelog
packages/code-aster/astk/trunk/debian/rules
Modified: packages/code-aster/astk/trunk/debian/astk-server.postinst
URL: http://svn.debian.org/wsvn/debian-science/packages/code-aster/astk/trunk/debian/astk-server.postinst?rev=36820&op=diff
==============================================================================
--- packages/code-aster/astk/trunk/debian/astk-server.postinst (original)
+++ packages/code-aster/astk/trunk/debian/astk-server.postinst Mon Aug 16 13:07:11 2010
@@ -1,6 +1,6 @@
#!/bin/sh
-set -e
+set -ex
# Source debconf library.
. /usr/share/debconf/confmodule
Modified: packages/code-aster/astk/trunk/debian/astk-server.postrm
URL: http://svn.debian.org/wsvn/debian-science/packages/code-aster/astk/trunk/debian/astk-server.postrm?rev=36820&op=diff
==============================================================================
--- packages/code-aster/astk/trunk/debian/astk-server.postrm (original)
+++ packages/code-aster/astk/trunk/debian/astk-server.postrm Mon Aug 16 13:07:11 2010
@@ -1,6 +1,6 @@
#!/bin/sh
-set -e
+set -ex
if [ "$1" = "purge" -a -e /usr/share/debconf/confmodule ]; then
# Source debconf library.
Modified: packages/code-aster/astk/trunk/debian/astk.config
URL: http://svn.debian.org/wsvn/debian-science/packages/code-aster/astk/trunk/debian/astk.config?rev=36820&op=diff
==============================================================================
--- packages/code-aster/astk/trunk/debian/astk.config (original)
+++ packages/code-aster/astk/trunk/debian/astk.config Mon Aug 16 13:07:11 2010
@@ -1,52 +1,51 @@
#!/bin/sh
-set -e
+set -ex
alias stripwhitespace="sed -e 's/^[[:blank:]]*//' -e 's/[[:blank:]]*$//'"
# Source debconf library.
. /usr/share/debconf/confmodule
+DEB_HOST_ARCH_OS="$(dpkg-architecture -qDEB_HOST_ARCH_OS | tr '[:lower:]' '[:upper:]')"
+DEB_HOST_ARCH_BITS="$(dpkg-architecture -qDEB_HOST_ARCH_BITS)"
+
#Set default platform
if [ "${dc_platform}" = "" ] ; then
- DEB_HOST_ARCH_OS = $(dpkg-architecture -qDEB_HOST_ARCH_OS)
- DEB_HOST_ARCH_BITS = $(dpkg-architecture -qDEB_HOST_ARCH_BITS)
- dc_platform= "$(printf '%s\n' $DEB_HOST_ARCH_OS | tr '[:lower:]' '[:upper:]')"
- if [ "${DEB_HOST_ARCH_BITS}" = "64" ; then
- dc_platform= "$(printf '%s%d\n' $DEB_HOST_ARCH_OS$DEB_HOST_ARCH_BITS | tr '[:lower:]' '[:upper:]')"
+ dc_platform= "${DEB_HOST_ARCH_OS}" && \
+ db_set astk/platform "${dc_platform}"
+ if [ "${DEB_HOST_ARCH_BITS}" = "64" ] ; then
+ dc_platform= "${DEB_HOST_ARCH_OS}${DEB_HOST_ARCH_BITS}" && \
+ db_set astk/platform "${dc_platform}"
fi
- db_set astk/platform "${dc_platform}"
fi
#Set default domain name
if [ "${dc_domainname}" = "" ] ; then
- dc_domainname="$(hostname --domain 2>/dev/null)" || dc_domainname="$(hostname)" && \
- dc_domainname="$(printf '%s\n' "${dc_domainname}" | stripwhitespace)" && \
+ dc_domainname="$(hostname --domain 2>/dev/null)" && \
db_set astk/domainname "${dc_domainname}"
fi
#Set default server name
if [ "${dc_servername}" = "" ] ; then
- dc_servername="$(hostname -s 2>/dev/null)" || dc_servername="$(hostname)" && \
- dc_servername="$(printf '%s\n' "${dc_servername}" | stripwhitespace)" && \
+ dc_servername="$(hostname 2>/dev/null)" && \
db_set astk/servername "${dc_servername}"
fi
#Set default node name
if [ "${dc_node}" = "" ] ; then
- dc_node="$(hostname -s 2>/dev/null)" || dc_node="$(hostname)" && \
- dc_node="$(printf '%s\n' "${dc_node}" | stripwhitespace)" && \
+ dc_node="$(hostname -s 2>/dev/null)" && \
db_set astk/node "${dc_node}"
fi
#Set default editor name
if [ "${dc_editor}" = "" ] ; then
- dc_editor="gedit --display=@D" && \
+ dc_editor="/usr/bin/gedit --display=\@D" && \
db_set astk/EDITOR "${dc_editor}"
fi
#Set default terminal name
if [ "${dc_terminal}" = "" ] ; then
- dc_editor="gnome-terminal --display=@D --command=@E" && \
+ dc_terminal="/usr/bin/gnome-terminal --display=\@D --command=\@E" && \
db_set astk/TERMINAL "${dc_terminal}"
fi
Modified: packages/code-aster/astk/trunk/debian/astk.postinst
URL: http://svn.debian.org/wsvn/debian-science/packages/code-aster/astk/trunk/debian/astk.postinst?rev=36820&op=diff
==============================================================================
--- packages/code-aster/astk/trunk/debian/astk.postinst (original)
+++ packages/code-aster/astk/trunk/debian/astk.postinst Mon Aug 16 13:07:11 2010
@@ -1,6 +1,6 @@
#!/bin/sh
-set -e
+set -ex
# Source debconf library.
. /usr/share/debconf/confmodule
@@ -30,7 +30,7 @@
db_get astk/EDITOR || true
editor=${RET}
- perl -pi -le "s|editeur : .*|editeur : $seditor|" /etc/codeaster/astkrc/prefs
+ perl -pi -le "s|editeur : .*|editeur : $editor|" /etc/codeaster/astkrc/prefs
perl -pi -le "s|editeur : .*|editeur : $editor|" /etc/codeaster/astkrc/config_serveurs
db_get astk/TERMINAL || true
Modified: packages/code-aster/astk/trunk/debian/astk.postrm
URL: http://svn.debian.org/wsvn/debian-science/packages/code-aster/astk/trunk/debian/astk.postrm?rev=36820&op=diff
==============================================================================
--- packages/code-aster/astk/trunk/debian/astk.postrm (original)
+++ packages/code-aster/astk/trunk/debian/astk.postrm Mon Aug 16 13:07:11 2010
@@ -1,6 +1,6 @@
#!/bin/sh
-set -e
+set -ex
if [ "$1" = "purge" -a -e /usr/share/debconf/confmodule ]; then
# Source debconf library.
Modified: packages/code-aster/astk/trunk/debian/astk.templates
URL: http://svn.debian.org/wsvn/debian-science/packages/code-aster/astk/trunk/debian/astk.templates?rev=36820&op=diff
==============================================================================
--- packages/code-aster/astk/trunk/debian/astk.templates (original)
+++ packages/code-aster/astk/trunk/debian/astk.templates Mon Aug 16 13:07:11 2010
@@ -34,16 +34,16 @@
Template: astk/EDITOR
Type: select
-Choices: nedit, gedit --display=@D, kwrite --display @D, xemacs -display @D, emacs -display @D, xedit -display @D, xterm -display @D -e @E -e vi
-Default: nedit
+Choices: /usr/bin/nedit, /usr/bin/gedit --display=\@D, /usr/bin/kwrite --display \@D, /usr/bin/xemacs -display \@D, /usr/bin/emacs -display \@D, /usr/bin/xedit -display \@D, /usr/bin/xterm -display \@D -e \@E -e vi
+Default: /usr/bin/nedit
_Description: Standard editor:
Please select the command line that ASTK should use to launch an
editor.
Template: astk/TERMINAL
Type: select
-Choices: /usr/bin/xterm -display @D -e @E, /usr/bin/gnome-terminal --display=@D --command=@E, /usr/bin/konsole --display @D -e @E
-Default: /usr/bin/gnome-terminal --display=@D --command=@E
+Choices: /usr/bin/xterm -display \@D -e \@E, /usr/bin/gnome-terminal --display=\@D --command=\@E, /usr/bin/konsole --display \@D -e \@E
+Default: /usr/bin/gnome-terminal --display=\@D --command=\@E
_Description: Standard terminal emulator:
Please select the command line that ASTK should use to launch a
terminal window.
Modified: packages/code-aster/astk/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/code-aster/astk/trunk/debian/changelog?rev=36820&op=diff
==============================================================================
--- packages/code-aster/astk/trunk/debian/changelog (original)
+++ packages/code-aster/astk/trunk/debian/changelog Mon Aug 16 13:07:11 2010
@@ -1,3 +1,26 @@
+astk (1.8.1-3) unstable; urgency=low
+
+ * Added source lintian overrides about Adam Powell's name.
+
+ [Christian Perrier]
+ * Non-maintainer upload to fix pending l10n issues
+ * Debconf templates and debian/control reviewed by the debian-l10n-
+ english team as part of the Smith review project. Closes: #584616
+
+ * [Debconf translation updates]
+ - Swedish (Martin Bagge / brother). Closes: #585112
+ - Russian (Yuri Kozlov). Closes: #585150
+ - Simplified Chinese (YunQiang Su). Closes: #585151
+ - Danish (Joe Hansen). Closes: #585486
+ - Czech (Michal Simunek). Closes: #585630
+ - French (Julien Patriarca). Closes: #586097
+ - German (Chris Leick). Closes: #586282
+ - Portuguese (Miguel Figueiredo). Closes: #586979
+ - Spanish (Camaleón). Closes: #591507
+
+
+ -- Christophe Trophime <christophe.trophime at grenoble.cnrs.fr> Fri, 23 Jul 2010 17:30:24 +0200
+
astk (1.8.1-2) unstable; urgency=low
* Complete postinst configuration
Added: packages/code-aster/astk/trunk/debian/po/es.po
URL: http://svn.debian.org/wsvn/debian-science/packages/code-aster/astk/trunk/debian/po/es.po?rev=36820&op=file
==============================================================================
--- packages/code-aster/astk/trunk/debian/po/es.po (added)
+++ packages/code-aster/astk/trunk/debian/po/es.po Mon Aug 16 13:07:11 2010
@@ -1,0 +1,168 @@
+# astk po-debconf translation to Spanish
+# Copyright (C) 2010 Software in the Public Interest
+# This file is distributed under the same license as the astk package.
+#
+# Changes:
+# - Initial translation
+# Camaleón <noelamac at gmail.com>, 2010
+#
+# - Updates
+#
+#
+# Traductores, si no conocen 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'
+#
+# Equipo de traducción al español, por favor lean antes de traducir
+# los siguientes documentos:
+#
+# - 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 debconf:
+# /usr/share/doc/po-debconf/README-trans
+# o http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: astk_1.8.0-1\n"
+"Report-Msgid-Bugs-To: astk at packages.debian.org\n"
+"POT-Creation-Date: 2010-06-11 18:10+0200\n"
+"PO-Revision-Date: 2010-08-03 20:11+0100\n"
+"Last-Translator: Camaleón <noelamac at gmail.com>\n"
+"Language-Team: Debian Spanish <debian-l10n-spanish at lists.debian.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Spanish\n"
+
+#. Type: select
+#. Description
+#: ../astk.templates:2001
+msgid "Aster platform:"
+msgstr "Plataforma Aster:"
+
+#. Type: select
+#. Description
+#: ../astk.templates:2001
+msgid "Select Aster platform."
+msgstr "Seleccione la plataforma Aster."
+
+#. Type: string
+#. Description
+#: ../astk.templates:3001
+msgid "ASTK server domain name:"
+msgstr "Nombre de dominio del servidor ASTK:"
+
+#. Type: string
+#. Description
+#: ../astk.templates:3001
+msgid ""
+"Please enter the domain name of the server that this ASTK client should "
+"connect to."
+msgstr ""
+"Por favor, introduzca el nombre de dominio del servidor al que se debe "
+"conectar este cliente ASTK."
+
+#. Type: string
+#. Description
+#: ../astk.templates:4001
+msgid "ASTK server host name:"
+msgstr "Nombre del equipo del servidor ASTK:"
+
+#. Type: string
+#. Description
+#: ../astk.templates:4001
+msgid ""
+"Please enter the host name (without domain name) of the server that this "
+"ASTK client should connect to."
+msgstr ""
+"Por favor, introduzca el nombre del equipo (sin el nombre de dominio) del "
+"servidor al que se debe conectar este cliente ASTK."
+
+#. Type: string
+#. Description
+#: ../astk.templates:5001
+msgid "ASTK client node name:"
+msgstr "Nombre del nodo del cliente ASTK:"
+
+#. Type: string
+#. Description
+#: ../astk.templates:5001
+msgid ""
+"Please enter the public name by which this client will be known on the "
+"network. It must be a unique name within the domain."
+msgstr ""
+"Por favor, introduzca el nombre público que se utilizará para este cliente "
+"en la red. Tiene que ser un nombre único dentro del dominio."
+
+#. Type: select
+#. Description
+#: ../astk.templates:6001
+msgid "Standard editor:"
+msgstr "Editor estándar:"
+
+#. Type: select
+#. Description
+#: ../astk.templates:6001
+msgid ""
+"Please select the command line that ASTK should use to launch an editor."
+msgstr ""
+"Por favor, introduzca la lÃnea de órdenes que debe utilizar ASTK para "
+"iniciar el editor."
+
+#. Type: select
+#. Description
+#: ../astk.templates:7001
+msgid "Standard terminal emulator:"
+msgstr "Emulador de terminal estándar:"
+
+#. Type: select
+#. Description
+#: ../astk.templates:7001
+msgid ""
+"Please select the command line that ASTK should use to launch a terminal "
+"window."
+msgstr ""
+"Por favor, introduzca la lÃnea de órdenes que debe utilizar ASTK para "
+"iniciar la ventana de terminal."
+
+#. Type: select
+#. Description
+#: ../astk.templates:8001
+msgid "ASTK server MPI implementation:"
+msgstr "Implementación MPI del servidor ASTK:"
+
+#. Type: select
+#. Description
+#: ../astk.templates:8001
+msgid ""
+"Please select the MPI implementation used by the server that this ASTK "
+"client should connect to."
+msgstr ""
+"Por favor, seleccione la implementación MPI del servidor al que se debe "
+"conectar este cliente ASTK."
+
+#. Type: select
+#. Description
+#: ../astk.templates:9001
+msgid "ASTK server bit width:"
+msgstr "Amplitud de bits del servidor ASTK:"
+
+#. Type: select
+#. Description
+#: ../astk.templates:9001
+msgid ""
+"Please select the bit width of the server that this ASTK client should "
+"connect to."
+msgstr ""
+"Por favor, seleccione la amplitud de bits del servidor al que se debe "
+"conectar este cliente ASTK."
+
+#~ msgid "string"
+#~ msgstr "Cadena"
Modified: packages/code-aster/astk/trunk/debian/rules
URL: http://svn.debian.org/wsvn/debian-science/packages/code-aster/astk/trunk/debian/rules?rev=36820&op=diff
==============================================================================
--- packages/code-aster/astk/trunk/debian/rules (original)
+++ packages/code-aster/astk/trunk/debian/rules Mon Aug 16 13:07:11 2010
@@ -60,7 +60,6 @@
install -m 0644 ASTK_SERV/etc/config_nodename debian/astk-server/etc/codeaster
install -m 0644 ASTK_SERV//etc/aster debian/astk-server/etc/codeaster
install -m 0644 ASTK_SERV//etc/profile.csh debian/astk-server/etc/codeaster
- install -m 0644 ASTK_SERV//etc/.mysql_connect_REX debian/astk-server/etc/codeaster
install -m 0644 ASTK_SERV//etc/asrun debian/astk-server/etc/codeaster
install -d debian/astk-server/usr/share/codeaster/asrun
Added: packages/code-aster/astk/trunk/debian/source/lintian-overrides
URL: http://svn.debian.org/wsvn/debian-science/packages/code-aster/astk/trunk/debian/source/lintian-overrides?rev=36820&op=file
==============================================================================
--- packages/code-aster/astk/trunk/debian/source/lintian-overrides (added)
+++ packages/code-aster/astk/trunk/debian/source/lintian-overrides Mon Aug 16 13:07:11 2010
@@ -1,0 +1,3 @@
+# Lintian thinks uploader Adam Powell's name violates policy
+astk source: uploader-address-missing "Adam C. Powell
+astk source: uploader-not-full-name IV"
More information about the debian-science-commits
mailing list