r18024 - in /tools/gnome-pkg-tools: 1/rules/patch-translations.mk debian/changelog debian/control debian/control.in

joss at users.alioth.debian.org joss at users.alioth.debian.org
Sun Dec 28 02:27:12 UTC 2008


Author: joss
Date: Sun Dec 28 02:27:12 2008
New Revision: 18024

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=18024
Log:
* patch-translations.mk: add support for multi-line translations by 
  only including lines starting with + and removing the said +. This 
  will widely broaden the range of patches this hack can support.
* Improve description a bit.

Modified:
    tools/gnome-pkg-tools/1/rules/patch-translations.mk
    tools/gnome-pkg-tools/debian/changelog
    tools/gnome-pkg-tools/debian/control
    tools/gnome-pkg-tools/debian/control.in

Modified: tools/gnome-pkg-tools/1/rules/patch-translations.mk
URL: http://svn.debian.org/wsvn/pkg-gnome/tools/gnome-pkg-tools/1/rules/patch-translations.mk?rev=18024&op=diff
==============================================================================
--- tools/gnome-pkg-tools/1/rules/patch-translations.mk (original)
+++ tools/gnome-pkg-tools/1/rules/patch-translations.mk Sun Dec 28 02:27:12 2008
@@ -7,8 +7,19 @@
 	-mv po.saved/*.po po/
 	if [ -d po.saved ]; then rmdir po.saved; fi
 
+infiles = $(shell cat debian/po-up/POTFILES.in)
+
 update-po::
+	cd debian && for i in $(infiles); do \
+		if [ $${i##*.} = patch ]; then \
+			mv $$i $$i.saved ; \
+			sed -n 's/^\+//p' $$i.saved > $$i ; \
+		fi; done
 	cd debian/po-up && intltool-update --pot -g patches
+	cd debian && for i in $(infiles); do \
+		if [ -f $$i.saved ]; then \
+			mv $$i.saved $$i ; \
+		fi; done
 	cd debian/po-up && for i in *.po; do \
 		if [ -f $$i ]; then \
 			intltool-update -g patches --dist $${i%.po}; \

Modified: tools/gnome-pkg-tools/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/tools/gnome-pkg-tools/debian/changelog?rev=18024&op=diff
==============================================================================
--- tools/gnome-pkg-tools/debian/changelog (original)
+++ tools/gnome-pkg-tools/debian/changelog Sun Dec 28 02:27:12 2008
@@ -1,10 +1,17 @@
-gnome-pkg-tools (0.13.7) UNRELEASED; urgency=low
-
+gnome-pkg-tools (0.14) unstable; urgency=low
+
+  [ Loic Minier ]
   * Drop Homepage from description.
   * Bump up Standards-Version to 3.7.3.
   * Remove Ondřej Surý from the team at his request.
 
- -- Loic Minier <lool at dooz.org>  Sat, 03 May 2008 23:12:42 +0200
+  [ Josselin Mouette ]
+  * patch-translations.mk: add support for multi-line translations by 
+    only including lines starting with + and removing the said +. This 
+    will widely broaden the range of patches this hack can support.
+  * Improve description a bit.
+
+ -- Josselin Mouette <joss at debian.org>  Sun, 28 Dec 2008 03:25:36 +0100
 
 gnome-pkg-tools (0.13.6) unstable; urgency=low
 

Modified: tools/gnome-pkg-tools/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/tools/gnome-pkg-tools/debian/control?rev=18024&op=diff
==============================================================================
--- tools/gnome-pkg-tools/debian/control (original)
+++ tools/gnome-pkg-tools/debian/control Sun Dec 28 02:27:12 2008
@@ -6,7 +6,7 @@
                debhelper (>= 5)
 Build-Depends-Indep: xmlto
 Uploaders: Josselin Mouette <joss at debian.org>, Julian Andres Klode <jak at jak-linux.org>, Loic Minier <lool at dooz.org>, Ross Burton <ross at debian.org>, Sebastian Dröge <slomo at debian.org>
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 
 Package: gnome-pkg-tools
 Architecture: all
@@ -14,5 +14,7 @@
 Description: Tools for the Debian GNOME Packaging Team
  This packages contains some useful tools for the Debian GNOME Packaging Team
  including:
-   * documentation
-   * list of team members
+   * Documentation.
+   * The list of team members.
+   * A number of rules files for CDBS that are helpful for GNOME 
+     packages - but may also be useful for others.

Modified: tools/gnome-pkg-tools/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/tools/gnome-pkg-tools/debian/control.in?rev=18024&op=diff
==============================================================================
--- tools/gnome-pkg-tools/debian/control.in (original)
+++ tools/gnome-pkg-tools/debian/control.in Sun Dec 28 02:27:12 2008
@@ -6,7 +6,7 @@
                debhelper (>= 5)
 Build-Depends-Indep: xmlto
 Uploaders: @GNOME_TEAM@
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 
 Package: gnome-pkg-tools
 Architecture: all
@@ -14,5 +14,7 @@
 Description: Tools for the Debian GNOME Packaging Team
  This packages contains some useful tools for the Debian GNOME Packaging Team
  including:
-   * documentation
-   * list of team members
+   * Documentation.
+   * The list of team members.
+   * A number of rules files for CDBS that are helpful for GNOME 
+     packages - but may also be useful for others.




More information about the pkg-gnome-commits mailing list