[Pkg-mono-svn-commits] rev 4060 - in mod-mono/trunk/debian: . patches po

Jo Shields directhex at alioth.debian.org
Tue Dec 15 23:37:07 UTC 2009


Author: directhex
Date: 2009-12-15 23:37:07 +0000 (Tue, 15 Dec 2009)
New Revision: 4060

Added:
   mod-mono/trunk/debian/patches/
   mod-mono/trunk/debian/patches/dont_use_sigabrt_on_kfreebsd.patch
   mod-mono/trunk/debian/patches/series
Modified:
   mod-mono/trunk/debian/changelog
   mod-mono/trunk/debian/compat
   mod-mono/trunk/debian/control
   mod-mono/trunk/debian/po/cs.po
   mod-mono/trunk/debian/po/de.po
   mod-mono/trunk/debian/po/es.po
   mod-mono/trunk/debian/po/eu.po
   mod-mono/trunk/debian/po/fi.po
   mod-mono/trunk/debian/po/fr.po
   mod-mono/trunk/debian/po/it.po
   mod-mono/trunk/debian/po/pt.po
   mod-mono/trunk/debian/po/ru.po
   mod-mono/trunk/debian/po/sv.po
   mod-mono/trunk/debian/rules
Log:
Previous NMU changes - but move raw file change to quilt


Modified: mod-mono/trunk/debian/changelog
===================================================================
--- mod-mono/trunk/debian/changelog	2009-12-15 23:02:59 UTC (rev 4059)
+++ mod-mono/trunk/debian/changelog	2009-12-15 23:37:07 UTC (rev 4060)
@@ -1,3 +1,25 @@
+mod-mono (2.4.2-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Protect SIGPWR use on kFreeBSD. Closes: #542798
+  * Bump debhelper compatibility level to 7
+  * As a consequence, replace "dh_clean -k" by "dh_prep"
+  * Add ${misc:Depends} to libapache2-mod-mono dependencies to properly
+    copy with debhelper-triggerred dependencies
+  * Fix pending l10n issues. Debconf translations:
+    - Russian (Yuri Kozlov).  Closes: #537515
+    - German (Helge Kreutzmann).  Closes: #537521
+    - French (Christian Perrier).  Closes: #537578
+    - Spanish (Francisco Javier Cuadrado).  Closes: #538426
+    - Swedish (Martin Bagge).  Closes: #539073
+    - Italian (Luca Monducci).  Closes: #540630
+    - Basque (Iñaki Larrañaga Murgoitio).  Closes: #553147
+    - Finnish (Esko Arajärvi).  Closes: #553641
+    - Czech (Miroslav Kure).  Closes: #553662
+    - Portuguese (Miguel Figueiredo).  Closes: #554101
+
+ -- Christian Perrier <bubulle at debian.org>  Wed, 04 Nov 2009 21:21:22 +0100
+
 mod-mono (2.4.2-1) unstable; urgency=low
 
   * New upstream release

Modified: mod-mono/trunk/debian/compat
===================================================================
--- mod-mono/trunk/debian/compat	2009-12-15 23:02:59 UTC (rev 4059)
+++ mod-mono/trunk/debian/compat	2009-12-15 23:37:07 UTC (rev 4060)
@@ -1 +1 @@
-4
+7

Modified: mod-mono/trunk/debian/control
===================================================================
--- mod-mono/trunk/debian/control	2009-12-15 23:02:59 UTC (rev 4059)
+++ mod-mono/trunk/debian/control	2009-12-15 23:37:07 UTC (rev 4060)
@@ -6,13 +6,13 @@
 Vcs-Svn: svn://svn.debian.org/pkg-mono/mod-mono/trunk
 Maintainer: Debian Mono Group <pkg-mono-group at lists.alioth.debian.org>
 Uploaders: Dylan R. E. Moonfire <debian at mfgames.com>, Mirco Bauer <meebey at debian.org>, Jo Shields <directhex at apebox.org>
-Build-Depends: debhelper (>= 4.1.16), apache2-threaded-dev (>= 2.2), libmono-dev, po-debconf
+Build-Depends: debhelper (>= 7), apache2-threaded-dev (>= 2.2), libmono-dev, po-debconf, quilt
 Standards-Version: 3.8.2
 
 Package: libapache2-mod-mono
 Architecture: any
 Section: web
-Depends: ${shlibs:Depends}, debconf (>= 1.2.0), apache2.2-common, mono-runtime (>= 2.4), mono-apache-server (>= ${current-version}) | mono-apache-server2 (>= ${current-version}) | mono-apache-server1 (>= ${current-version}), mono-apache-server (<< ${next-version}) | mono-apache-server2 (<< ${next-version}) | mono-apache-server1 (<< ${next-version})
+Depends: ${misc:Depends}, ${shlibs:Depends}, debconf (>= 1.2.0), apache2.2-common, mono-runtime (>= 2.4), mono-apache-server (>= ${current-version}) | mono-apache-server2 (>= ${current-version}) | mono-apache-server1 (>= ${current-version}), mono-apache-server (<< ${next-version}) | mono-apache-server2 (<< ${next-version}) | mono-apache-server1 (<< ${next-version})
 Description: Apache module for running ASP.NET applications on Mono
  The mod_mono module for Apache allows ASP.NET web applications to be
  run with the Mono .NET implementation.

Added: mod-mono/trunk/debian/patches/dont_use_sigabrt_on_kfreebsd.patch
===================================================================
--- mod-mono/trunk/debian/patches/dont_use_sigabrt_on_kfreebsd.patch	                        (rev 0)
+++ mod-mono/trunk/debian/patches/dont_use_sigabrt_on_kfreebsd.patch	2009-12-15 23:37:07 UTC (rev 4060)
@@ -0,0 +1,15 @@
+Index: mod-mono-2.4.2/src/mod_mono.c
+===================================================================
+--- mod-mono-2.4.2.orig/src/mod_mono.c	2009-12-15 23:26:41.000000000 +0000
++++ mod-mono-2.4.2/src/mod_mono.c	2009-12-15 23:27:07.000000000 +0000
+@@ -1772,7 +1772,10 @@
+ 
+ 	/* Unblock signals Mono uses: see bug #472732 */
+ 	sigemptyset (&sigset);
++#ifdef SIGPWR
++	/* SIGPWR signal does not exist on GNU/kFreeBSD */
+ 	sigaddset (&sigset, SIGPWR);
++#endif
+ 	sigaddset (&sigset, SIGXCPU);
+ 	sigaddset (&sigset, 33);
+ 	sigaddset (&sigset, 35);

Added: mod-mono/trunk/debian/patches/series
===================================================================
--- mod-mono/trunk/debian/patches/series	                        (rev 0)
+++ mod-mono/trunk/debian/patches/series	2009-12-15 23:37:07 UTC (rev 4060)
@@ -0,0 +1 @@
+dont_use_sigabrt_on_kfreebsd.patch

Modified: mod-mono/trunk/debian/po/cs.po
===================================================================
--- mod-mono/trunk/debian/po/cs.po	2009-12-15 23:02:59 UTC (rev 4059)
+++ mod-mono/trunk/debian/po/cs.po	2009-12-15 23:37:07 UTC (rev 4060)
@@ -16,7 +16,7 @@
 "Project-Id-Version: mod-mono\n"
 "Report-Msgid-Bugs-To: mod-mono at packages.debian.org\n"
 "POT-Creation-Date: 2009-07-16 15:24+0100\n"
-"PO-Revision-Date: 2007-07-29 11:46+0200\n"
+"PO-Revision-Date: 2009-11-01 17:00+0100\n"
 "Last-Translator: Miroslav Kure <kurem at debian.cz>\n"
 "Language-Team: Czech <debian-l10n-czech at lists.debian.org>\n"
 "MIME-Version: 1.0\n"
@@ -32,12 +32,6 @@
 #. Type: select
 #. Description
 #: ../libapache2-mod-mono.templates:2001
-#, fuzzy
-#| msgid ""
-#| "The libapache2-mod-mono module can be used with one of two different Mono "
-#| "ASP.NET backends:\n"
-#| " - mod-mono-server : implements ASP.NET 1.1 features;\n"
-#| " - mod-mono-server2: implements ASP.NET 2.0 features."
 msgid ""
 "The libapache2-mod-mono module can be used with one of two different Mono "
 "ASP.NET backends:\n"

Modified: mod-mono/trunk/debian/po/de.po
===================================================================
--- mod-mono/trunk/debian/po/de.po	2009-12-15 23:02:59 UTC (rev 4059)
+++ mod-mono/trunk/debian/po/de.po	2009-12-15 23:37:07 UTC (rev 4060)
@@ -1,20 +1,19 @@
 # German translation of mod-mono templates
 # Alwin Meschede <ameschede at gmx.de>, 2006.
-# Helge Kreutzmann <debian at helgefjell.de>, 2007.
+# Helge Kreutzmann <debian at helgefjell.de>, 2007, 2009.
 # This file is distributed under the same license as the mod-mono package.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: mod-mono 1.2.4-1\n"
+"Project-Id-Version: mod-mono 2.4.2-1\n"
 "Report-Msgid-Bugs-To: mod-mono at packages.debian.org\n"
 "POT-Creation-Date: 2009-07-16 15:24+0100\n"
-"PO-Revision-Date: 2007-07-23 19:12+0200\n"
+"PO-Revision-Date: 2009-07-19 09:07+0200\n"
 "Last-Translator: Helge Kreutzmann <debian at helgefjell.de>\n"
 "Language-Team: german <debian-l10n-german at lists.debian.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
 "Plural-Forms:  nplurals=2; plural=(n != 1);\n"
 
 #. Type: select
@@ -26,12 +25,6 @@
 #. Type: select
 #. Description
 #: ../libapache2-mod-mono.templates:2001
-#, fuzzy
-#| msgid ""
-#| "The libapache2-mod-mono module can be used with one of two different Mono "
-#| "ASP.NET backends:\n"
-#| " - mod-mono-server : implements ASP.NET 1.1 features;\n"
-#| " - mod-mono-server2: implements ASP.NET 2.0 features."
 msgid ""
 "The libapache2-mod-mono module can be used with one of two different Mono "
 "ASP.NET backends:\n"
@@ -40,8 +33,8 @@
 msgstr ""
 "Das Modul libapache2-mod-mono kann mit einem von zwei verschiedenen Mono-ASP."
 "NET-Backends verwendet werden:\n"
-" - mod-mono-server1: implementiert ASP.NET 1.1-Funktionen;\n"
-" - mod-mono-server2: implementiert ASP.NET 2.0-Funktionen."
+" - mod-mono-server : implementiert ASP.NET 1.1-Funktionen\n"
+" - mod-mono-server2: implementiert ASP.NET 2.0-Funktionen"
 
 #~ msgid "Use mono-server:"
 #~ msgstr "Verwende Mono-Server:"

Modified: mod-mono/trunk/debian/po/es.po
===================================================================
--- mod-mono/trunk/debian/po/es.po	2009-12-15 23:02:59 UTC (rev 4059)
+++ mod-mono/trunk/debian/po/es.po	2009-12-15 23:37:07 UTC (rev 4060)
@@ -1,43 +1,40 @@
-# mod-mono translation to spanish
-# Copyright (C) 2007 Software in the Public Interest, SPI Inc.
+# mod-mono po-debconf translation to Spanish
+# Copyright (C) 2007, 2009 Software in the Public Interest, SPI Inc.
 # This file is distributed under the same license as the mod-mono package.
 #
 # Changes:
-# - Initial translation
-#      Steve Lord Flaubert , 2007
+#   - Initial translation
+#       Steve Lord Flaubert <stonescenter at gmail.com>, 2007
 #
+#   - Updates
+#       Francisco Javier Cuadrado <fcocuadrado at gmail.com>, 2009
 #
-#  Traductores, si no conoce 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'
+# 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
+#   - 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
+#   - 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
 #
-# 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 at lists.debian.org>)
-#
-#
 msgid ""
 msgstr ""
-"Project-Id-Version: mod-mono 1.2.1-1\n"
+"Project-Id-Version: mod-mono 2.4.2-1\n"
 "Report-Msgid-Bugs-To: mod-mono at packages.debian.org\n"
 "POT-Creation-Date: 2009-07-16 15:24+0100\n"
-"PO-Revision-Date: 2007-08-01 14:54-0500\n"
-"Last-Translator: Steve Lord Flaubert <stonescenter at gmail.com>\n"
-"Language-Team: Debian Spanish <debian-l10n-spanish at lists.debian.org>\n"
+"PO-Revision-Date: 2009-07-25 20:21+0100\n"
+"Last-Translator: Francisco Javier Cuadrado <fcocuadrado at gmail.com>\n"
+"Language-Team: Debian l10n Spanish <debian-l10n-spanish at lists.debian.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -51,22 +48,16 @@
 #. Type: select
 #. Description
 #: ../libapache2-mod-mono.templates:2001
-#, fuzzy
-#| msgid ""
-#| "The libapache2-mod-mono module can be used with one of two different Mono "
-#| "ASP.NET backends:\n"
-#| " - mod-mono-server : implements ASP.NET 1.1 features;\n"
-#| " - mod-mono-server2: implements ASP.NET 2.0 features."
 msgid ""
 "The libapache2-mod-mono module can be used with one of two different Mono "
 "ASP.NET backends:\n"
 " - mod-mono-server1: implements ASP.NET 1.1 features;\n"
 " - mod-mono-server2: implements ASP.NET 2.0 features."
 msgstr ""
-"El módulo «libapache2-mod-mono» puede utilizarse con uno de dos motores "
-"distintos de ASP.NET:\n"
-" - «mod-mono-server1»: Implementa funcionalidades de ASP.NET 1.1;\n"
-" - «mod-mono-server2»: Implementa funcionalidades de ASP.NET 2.0."
+"El módulo «libapache2-mod-mono» se puede utilizar con uno de los dos motores "
+"distintos de Mono ASP.NET:\n"
+" - «mod-mono-server1»: Implementa las funcionalidades de ASP.NET 1.1;\n"
+" - «mod-mono-server2»: Implementa las funcionalidades de ASP.NET 2.0."
 
 #~ msgid "Activate module?"
 #~ msgstr "¿Desea activar el módulo?"

Modified: mod-mono/trunk/debian/po/eu.po
===================================================================
--- mod-mono/trunk/debian/po/eu.po	2009-12-15 23:02:59 UTC (rev 4059)
+++ mod-mono/trunk/debian/po/eu.po	2009-12-15 23:37:07 UTC (rev 4060)
@@ -1,42 +1,40 @@
+# translation of mod-mono_eu.po to
 # translation of mod-mono to Euskara
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-#
-# Piarres Beobide <pi at beobide.net>, 2007.
+# Piarres Beobide <pi at beobide.net>, 2007, 2009.
+# Iñaki Larrañaga Murgoitio <dooteo at euskalgnu.org>, 2009.
 msgid ""
 msgstr ""
-"Project-Id-Version: mod-mono-debconf-templates\n"
+"Project-Id-Version: mod-mono_eu\n"
 "Report-Msgid-Bugs-To: mod-mono at packages.debian.org\n"
 "POT-Creation-Date: 2009-07-16 15:24+0100\n"
-"PO-Revision-Date: 2007-07-24 12:36+0200\n"
-"Last-Translator: Piarres Beobide <pi at beobide.net>\n"
-"Language-Team: Euskara <Librezale at librezale.org>\n"
+"PO-Revision-Date: 2009-10-29 12:35+0100\n"
+"Last-Translator: Iñaki Larrañaga Murgoitio <dooteo at euskalgnu.org>\n"
+"Language-Team: Basque <debian-l10n-basque at lists.debian.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: eu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: KBabel 1.11.4\n"
 
 #. Type: select
 #. Description
 #: ../libapache2-mod-mono.templates:2001
 msgid "Mono server to use:"
-msgstr "Erabili behar den mono zerbitzaria:"
+msgstr "Mono zerbitzaria:"
 
 #. Type: select
 #. Description
 #: ../libapache2-mod-mono.templates:2001
-#, fuzzy
-#| msgid ""
-#| "The libapache2-mod-mono module can be used with one of two different Mono "
-#| "ASP.NET backends:\n"
-#| " - mod-mono-server : implements ASP.NET 1.1 features;\n"
-#| " - mod-mono-server2: implements ASP.NET 2.0 features."
 msgid ""
 "The libapache2-mod-mono module can be used with one of two different Mono "
 "ASP.NET backends:\n"
 " - mod-mono-server1: implements ASP.NET 1.1 features;\n"
 " - mod-mono-server2: implements ASP.NET 2.0 features."
 msgstr ""
-"libapache2-mod-mono modulua ASP.NET euskarri ezberdinekin erabili daiteke\n"
+"'libapache2-mod-mono' modulua Mono ASP.NET motor desberdinetako batekin "
+"erabili daiteke:\n"
 " - mod-mono-server1: ASP.NET 1.1 ezaugarriak inplementatzen ditu;\n"
 " - mod-mono-server2: ASP.NET 2.0 ezaugarriak inplementatzen ditu."

Modified: mod-mono/trunk/debian/po/fi.po
===================================================================
--- mod-mono/trunk/debian/po/fi.po	2009-12-15 23:02:59 UTC (rev 4059)
+++ mod-mono/trunk/debian/po/fi.po	2009-12-15 23:37:07 UTC (rev 4060)
@@ -21,12 +21,6 @@
 #. Type: select
 #. Description
 #: ../libapache2-mod-mono.templates:2001
-#, fuzzy
-#| msgid ""
-#| "The libapache2-mod-mono module can be used with one of two different Mono "
-#| "ASP.NET backends:\n"
-#| " - mod-mono-server : implements ASP.NET 1.1 features;\n"
-#| " - mod-mono-server2: implements ASP.NET 2.0 features."
 msgid ""
 "The libapache2-mod-mono module can be used with one of two different Mono "
 "ASP.NET backends:\n"

Modified: mod-mono/trunk/debian/po/fr.po
===================================================================
--- mod-mono/trunk/debian/po/fr.po	2009-12-15 23:02:59 UTC (rev 4059)
+++ mod-mono/trunk/debian/po/fr.po	2009-12-15 23:37:07 UTC (rev 4060)
@@ -2,18 +2,20 @@
 # This file is licensed under the same license as the mod-mono package
 #
 # Copyright: Christian Perrier <bubulle at debian.org>, 2006, 2007.
+# Christian Perrier <bubulle at debian.org>, 2009.
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: mod-mono at packages.debian.org\n"
 "POT-Creation-Date: 2009-07-16 15:24+0100\n"
-"PO-Revision-Date: 2007-07-23 07:46+0200\n"
+"PO-Revision-Date: 2009-07-19 16:45+0200\n"
 "Last-Translator: Christian Perrier <bubulle at debian.org>\n"
 "Language-Team: French <debian-l10n-french at lists.debian.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
+"X-Generator: Lokalize 0.3\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. Type: select
 #. Description
@@ -24,12 +26,6 @@
 #. Type: select
 #. Description
 #: ../libapache2-mod-mono.templates:2001
-#, fuzzy
-#| msgid ""
-#| "The libapache2-mod-mono module can be used with one of two different Mono "
-#| "ASP.NET backends:\n"
-#| " - mod-mono-server : implements ASP.NET 1.1 features;\n"
-#| " - mod-mono-server2: implements ASP.NET 2.0 features."
 msgid ""
 "The libapache2-mod-mono module can be used with one of two different Mono "
 "ASP.NET backends:\n"

Modified: mod-mono/trunk/debian/po/it.po
===================================================================
--- mod-mono/trunk/debian/po/it.po	2009-12-15 23:02:59 UTC (rev 4059)
+++ mod-mono/trunk/debian/po/it.po	2009-12-15 23:37:07 UTC (rev 4060)
@@ -1,14 +1,14 @@
 # Italian (it) translation of debconf templates for mod-mono
 # Copyright (C) 2006 Software in the Public Interest
 # This file is distributed under the same license as the mod-mono package.
-# Luca Monducci <luca.mo at tiscali.it>, 2006, 2007.
+# Luca Monducci <luca.mo at tiscali.it>, 2006 - 2009.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: mod-mono 1.2.4 italian debconf templates\n"
+"Project-Id-Version: mod-mono 2.4.2 italian debconf templates\n"
 "Report-Msgid-Bugs-To: mod-mono at packages.debian.org\n"
 "POT-Creation-Date: 2009-07-16 15:24+0100\n"
-"PO-Revision-Date: 2007-07-24 10:48+0200\n"
+"PO-Revision-Date: 2009-08-09 10:48+0200\n"
 "Last-Translator: Luca Monducci <luca.mo at tiscali.it>\n"
 "Language-Team: Italian <tp at lists.linux.it>\n"
 "MIME-Version: 1.0\n"
@@ -24,12 +24,6 @@
 #. Type: select
 #. Description
 #: ../libapache2-mod-mono.templates:2001
-#, fuzzy
-#| msgid ""
-#| "The libapache2-mod-mono module can be used with one of two different Mono "
-#| "ASP.NET backends:\n"
-#| " - mod-mono-server : implements ASP.NET 1.1 features;\n"
-#| " - mod-mono-server2: implements ASP.NET 2.0 features."
 msgid ""
 "The libapache2-mod-mono module can be used with one of two different Mono "
 "ASP.NET backends:\n"

Modified: mod-mono/trunk/debian/po/pt.po
===================================================================
--- mod-mono/trunk/debian/po/pt.po	2009-12-15 23:02:59 UTC (rev 4059)
+++ mod-mono/trunk/debian/po/pt.po	2009-12-15 23:37:07 UTC (rev 4060)
@@ -1,14 +1,14 @@
 # Portuguese translation for mod-mono's debconf messages
 # Copyright (C) 2007 Miguel Figueiredo
 # This file is distributed under the same license as the mod-mono package.
-# Miguel Figueiredo <elmig at debianpt.org>, 2007-2008.
+# Miguel Figueiredo <elmig at debianpt.org>, 2007-2009.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: mod-mono 1.2.1-1\n"
+"Project-Id-Version: mod-mono\n"
 "Report-Msgid-Bugs-To: mod-mono at packages.debian.org\n"
 "POT-Creation-Date: 2009-07-16 15:24+0100\n"
-"PO-Revision-Date: 2008-03-26 20:16+0000\n"
+"PO-Revision-Date: 2009-11-02 22:38+0000\n"
 "Last-Translator: Miguel Figueiredo <elmig at debianpt.org>\n"
 "Language-Team: Portuguese <traduz at debianpt.org>\n"
 "MIME-Version: 1.0\n"
@@ -24,12 +24,6 @@
 #. Type: select
 #. Description
 #: ../libapache2-mod-mono.templates:2001
-#, fuzzy
-#| msgid ""
-#| "The libapache2-mod-mono module can be used with one of two different Mono "
-#| "ASP.NET backends:\n"
-#| " - mod-mono-server : implements ASP.NET 1.1 features;\n"
-#| " - mod-mono-server2: implements ASP.NET 2.0 features."
 msgid ""
 "The libapache2-mod-mono module can be used with one of two different Mono "
 "ASP.NET backends:\n"
@@ -39,7 +33,7 @@
 "O módulo libapache2-mod-mono pode ser utilizado com um de dois diferentes "
 "backends Mono de ASP.NET.\n"
 " - mod-mono-server1: implementa funcionalidades ASP.NET 1.1;\n"
-" - mod-mono-server2: implementa funcionalidades ASP.NET 2.0.2.0."
+" - mod-mono-server2: implementa funcionalidades ASP.NET 2.0."
 
 #~ msgid "Use mono-server:"
 #~ msgstr "Usar o mono-server:"

Modified: mod-mono/trunk/debian/po/ru.po
===================================================================
--- mod-mono/trunk/debian/po/ru.po	2009-12-15 23:02:59 UTC (rev 4059)
+++ mod-mono/trunk/debian/po/ru.po	2009-12-15 23:37:07 UTC (rev 4060)
@@ -1,15 +1,16 @@
-# translation of templates-1.po to Russian
+# translation of ru.po to Russian
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Yuri Kozlov <kozlov.y at gmail.com>, 2007.
+# Yuri Kozlov <yuray at komyakino.ru>, 2009.
 msgid ""
 msgstr ""
-"Project-Id-Version: 1.2.4-1\n"
+"Project-Id-Version: mod-mono 2.4.2-1\n"
 "Report-Msgid-Bugs-To: mod-mono at packages.debian.org\n"
 "POT-Creation-Date: 2009-07-16 15:24+0100\n"
-"PO-Revision-Date: 2007-07-23 21:17+0400\n"
-"Last-Translator: Yuri Kozlov <kozlov.y at gmail.com>\n"
+"PO-Revision-Date: 2009-07-19 08:53+0400\n"
+"Last-Translator: Yuri Kozlov <yuray at komyakino.ru>\n"
 "Language-Team: Russian <debian-l10n-russian at lists.debian.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,17 +23,11 @@
 #. Description
 #: ../libapache2-mod-mono.templates:2001
 msgid "Mono server to use:"
-msgstr "Сервер Mono, который будет использоваться:"
+msgstr "Используемый сервер Mono:"
 
 #. Type: select
 #. Description
 #: ../libapache2-mod-mono.templates:2001
-#, fuzzy
-#| msgid ""
-#| "The libapache2-mod-mono module can be used with one of two different Mono "
-#| "ASP.NET backends:\n"
-#| " - mod-mono-server : implements ASP.NET 1.1 features;\n"
-#| " - mod-mono-server2: implements ASP.NET 2.0 features."
 msgid ""
 "The libapache2-mod-mono module can be used with one of two different Mono "
 "ASP.NET backends:\n"

Modified: mod-mono/trunk/debian/po/sv.po
===================================================================
--- mod-mono/trunk/debian/po/sv.po	2009-12-15 23:02:59 UTC (rev 4059)
+++ mod-mono/trunk/debian/po/sv.po	2009-12-15 23:37:07 UTC (rev 4060)
@@ -1,45 +1,38 @@
-# translation of mod-mono_sv.po to swedish
+# translation of mod-mono to swedish
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
+# This file is distributed under the same license as the mod-mono package.
 #
-# Martin Bagge <martin.bagge at bthstudent.se>, 2008.
+# Martin Bagge Martin Bagge <brother at bsnet.se>, 2008, 2009.
 msgid ""
 msgstr ""
 "Project-Id-Version: mod-mono_sv\n"
 "Report-Msgid-Bugs-To: mod-mono at packages.debian.org\n"
 "POT-Creation-Date: 2009-07-16 15:24+0100\n"
-"PO-Revision-Date: 2008-06-17 09:48+0200\n"
-"Last-Translator: Martin Bagge <martin.bagge at bthstudent.se>\n"
-"Language-Team: swedish <sv at li.org>\n"
+"PO-Revision-Date: 2009-07-28 22:53+0100\n"
+"Last-Translator: Martin Bagge <brother at bsnet.se>\n"
+"Language-Team: swedish <debian-l10-swedish at lists.debian.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Poedit-Language: Swedish\n"
 "X-Poedit-Country: SWEDEN\n"
-"X-Generator: KBabel 1.11.4\n"
 
 #. Type: select
 #. Description
 #: ../libapache2-mod-mono.templates:2001
 msgid "Mono server to use:"
-msgstr "Välj mono-server:"
+msgstr "Mono-server som ska användas:"
 
 #. Type: select
 #. Description
 #: ../libapache2-mod-mono.templates:2001
-#, fuzzy
-#| msgid ""
-#| "The libapache2-mod-mono module can be used with one of two different Mono "
-#| "ASP.NET backends:\n"
-#| " - mod-mono-server : implements ASP.NET 1.1 features;\n"
-#| " - mod-mono-server2: implements ASP.NET 2.0 features."
 msgid ""
 "The libapache2-mod-mono module can be used with one of two different Mono "
 "ASP.NET backends:\n"
 " - mod-mono-server1: implements ASP.NET 1.1 features;\n"
 " - mod-mono-server2: implements ASP.NET 2.0 features."
 msgstr ""
-"Modulen libapache2-mod-mono kan användas med två olika Mono ASP.NET-"
+"Modulen libapache2-mod-mono kan användas med en av två olika Mono ASP.NET-"
 "motorer:\n"
-" - mod-mono-server1: med funktioner i ASP.NET 1.1\n"
-" - mod-mono-server2: med funktioner i ASP.NET 2.0"
+" - mod-mono-server1: funktioner motsvarande ASP.NET 1.1\n"
+" - mod-mono-server2: funktioner motsvarande ASP.NET 2.0"

Modified: mod-mono/trunk/debian/rules
===================================================================
--- mod-mono/trunk/debian/rules	2009-12-15 23:02:59 UTC (rev 4059)
+++ mod-mono/trunk/debian/rules	2009-12-15 23:37:07 UTC (rev 4060)
@@ -45,6 +45,7 @@
 configure: configure-apache2-stamp
 configure-apache2-stamp:
 	dh_testdir
+	dh_quilt_patch
 	if [ -d apache2-build ]; then rm -rf apache2-build; fi
 	-mkdir apache2-build
 	cd apache2-build && \
@@ -59,6 +60,7 @@
 
 clean:
 	dh_testdir
+	dh_quilt_unpatch
 	dh_testroot
 	rm -f *-stamp *-stamp-*
 	rm -rf apache-build apache2-build
@@ -69,7 +71,7 @@
 install-prereq: build
 	dh_testdir
 	dh_testroot
-	dh_clean -k
+	dh_prep
 install-apache2:
 	dh_installdirs -plibapache2-mod-mono
 




More information about the Pkg-mono-svn-commits mailing list