[Python-apps-commits] r9227 - in packages/beets/trunk/debian (changelog control rules)

stefanor at users.alioth.debian.org stefanor at users.alioth.debian.org
Sat Nov 10 16:48:06 UTC 2012


    Date: Saturday, November 10, 2012 @ 16:48:04
  Author: stefanor
Revision: 9227

* New upstream release.
  - Album art downloading has been moved into the "fetchart" plugin.
* Upload to experimental, as Debian is frozen for wheezy.
* Use the C.UTF-8 locale instead of generating a UTF-8 locale at build time.
  - Build-Depend on libc-bin (>= 2.13).
* Bump Standards-Version to 3.9.4.
  - Bump debhelpers Build-Depend to 8.1, for build-{arch,indep} support.

Modified:
  packages/beets/trunk/debian/changelog
  packages/beets/trunk/debian/control
  packages/beets/trunk/debian/rules

Modified: packages/beets/trunk/debian/changelog
===================================================================
--- packages/beets/trunk/debian/changelog	2012-11-10 15:03:20 UTC (rev 9226)
+++ packages/beets/trunk/debian/changelog	2012-11-10 16:48:04 UTC (rev 9227)
@@ -1,7 +1,14 @@
-beets (1.0~b14-3) UNRELEASED; urgency=low
+beets (1.0~b15-1) UNRELEASED; urgency=low
 
+  * New upstream release.
+    - Album art downloading has been moved into the "fetchart" plugin.
+  * Upload to experimental, as Debian is frozen for wheezy.
   * Use --ignore-namespace instead of patching setup.py
     - Bump python Build-Depends to >= 2.7.2-2.
+  * Use the C.UTF-8 locale instead of generating a UTF-8 locale at build time.
+    - Build-Depend on libc-bin (>= 2.13).
+  * Bump Standards-Version to 3.9.4.
+    - Bump debhelpers Build-Depend to 8.1, for build-{arch,indep} support.
 
  -- Stefano Rivera <stefanor at debian.org>  Sun, 03 Jun 2012 19:33:14 +0100
 

Modified: packages/beets/trunk/debian/control
===================================================================
--- packages/beets/trunk/debian/control	2012-11-10 15:03:20 UTC (rev 9226)
+++ packages/beets/trunk/debian/control	2012-11-10 16:48:04 UTC (rev 9227)
@@ -6,8 +6,8 @@
  Stefano Rivera <stefanor at debian.org>,
  Simon Chopin <chopin.simon at gmail.com>
 Build-Depends:
- debhelper (>= 7.0.50~),
- locales,
+ debhelper (>= 8.1),
+ libc-bin (>= 2.13),
  python-all (>= 2.7.2-2~),
  python-docutils,
  python-munkres,
@@ -18,7 +18,7 @@
  python-unidecode,
  python-unittest2
 X-Python-Version: >= 2.5
-Standards-Version: 3.9.3
+Standards-Version: 3.9.4
 Homepage: http://beets.radbox.org/
 Vcs-Svn: svn://svn.debian.org/python-apps/packages/beets/trunk/
 Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/beets/trunk/

Modified: packages/beets/trunk/debian/rules
===================================================================
--- packages/beets/trunk/debian/rules	2012-11-10 15:03:20 UTC (rev 9226)
+++ packages/beets/trunk/debian/rules	2012-11-10 16:48:04 UTC (rev 9227)
@@ -11,13 +11,10 @@
 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
 	# Tests (non-destructively) open the database
 	mkdir -p build/home
-	# Tests need UTF-8 locale
-	mkdir -p build/locale
-	localedef -f UTF-8 -i en_US build/locale/en_US.UTF-8/
 	set -e -x; \
 	for python in $(shell pyversions -r); do \
 		HOME=$(CURDIR)/build/home \
-		LOCPATH=$(CURDIR)/build/locale LC_ALL=en_US.UTF-8 \
+		LC_ALL=C.UTF-8 \
 		$$python setup.py test; \
 	done
 endif




More information about the Python-apps-commits mailing list