aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorKen VanDine <ken.vandine@canonical.com>2011-08-26 10:44:10 -0400
committerKen VanDine <ken.vandine@canonical.com>2011-08-26 10:44:10 -0400
commit9e698820479b2854678ce985dfdd5383cbd29ab7 (patch)
tree316d4fad0f91ac8333ba3fb921bed716fa01a392 /debian
parent0625c789127bf7685873791596a9d59cc6131af4 (diff)
parent455e7e483041b4641522a477ba00ca720b3a519c (diff)
downloadayatana-indicator-session-9e698820479b2854678ce985dfdd5383cbd29ab7.tar.gz
ayatana-indicator-session-9e698820479b2854678ce985dfdd5383cbd29ab7.tar.bz2
ayatana-indicator-session-9e698820479b2854678ce985dfdd5383cbd29ab7.zip
releasing version 0.3.3.2-0ubuntu1
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog9
-rwxr-xr-xdebian/rules6
2 files changed, 15 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index 2f54a40..77489ad 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+indicator-session (0.3.3.2-0ubuntu1) oneiric; urgency=low
+
+ * New upstream release.
+ - Don't set LC_ALL to C
+ * debian/rules
+ - dh_translations doesn't handle multibuilds, so manually add the domain
+
+ -- Ken VanDine <ken.vandine@canonical.com> Fri, 26 Aug 2011 09:49:37 -0400
+
indicator-session (0.3.3.1-0ubuntu1) oneiric; urgency=low
* New upstream release.
diff --git a/debian/rules b/debian/rules
index bee840d..a393364 100755
--- a/debian/rules
+++ b/debian/rules
@@ -23,4 +23,10 @@ common-install-arch::
find debian/tmp -name \*.a -delete
find debian/tmp -name classic-desktop.sh | xargs chmod +x
cd po; intltool-update --pot --verbose
+ # Language packs
+ for d in $$(find debian/tmp -type f \( -name "*.desktop" -o -name "*.directory" \) ); do \
+ sed -ri '/^(Name|GenericName|Comment|X-GNOME-FullName)\[/d' $$d; \
+ echo "X-Ubuntu-Gettext-Domain=indicator-session" >> $$d; \
+ done;
+