[Python-modules-commits] r25155 - in packages/mutagen/trunk/debian (6 files)

laarmen-guest at users.alioth.debian.org laarmen-guest at users.alioth.debian.org
Thu Jul 11 14:46:29 UTC 2013


    Date: Thursday, July 11, 2013 @ 14:46:28
  Author: laarmen-guest
Revision: 25155

  + Add a patch to fix an undefined name
* Bump Standard-Version to 3.9.4:
  + Bump debhelper dependency to >= 9 to benefit from -arch/-indep targets
* Add Christoph Reiter to the copyright file.

Added:
  packages/mutagen/trunk/debian/patches/undefined-name
Modified:
  packages/mutagen/trunk/debian/changelog
  packages/mutagen/trunk/debian/compat
  packages/mutagen/trunk/debian/control
  packages/mutagen/trunk/debian/copyright
  packages/mutagen/trunk/debian/patches/series

Modified: packages/mutagen/trunk/debian/changelog
===================================================================
--- packages/mutagen/trunk/debian/changelog	2013-07-11 10:03:16 UTC (rev 25154)
+++ packages/mutagen/trunk/debian/changelog	2013-07-11 14:46:28 UTC (rev 25155)
@@ -11,6 +11,10 @@
       -remove-hashbang.diff
       -mpeg-length.diff
       -mpeg-length-remove.diff
+    + Add a patch to fix an undefined name
+  * Bump Standard-Version to 3.9.4:
+    + Bump debhelper dependency to >= 9 to benefit from -arch/-indep targets
+  * Add Christoph Reiter to the copyright file.
 
  -- Simon Chopin <chopin.simon at gmail.com>  Sat, 22 Jun 2013 22:27:20 +0200
 

Modified: packages/mutagen/trunk/debian/compat
===================================================================
--- packages/mutagen/trunk/debian/compat	2013-07-11 10:03:16 UTC (rev 25154)
+++ packages/mutagen/trunk/debian/compat	2013-07-11 14:46:28 UTC (rev 25155)
@@ -1 +1 @@
-7
+9

Modified: packages/mutagen/trunk/debian/control
===================================================================
--- packages/mutagen/trunk/debian/control	2013-07-11 10:03:16 UTC (rev 25154)
+++ packages/mutagen/trunk/debian/control	2013-07-11 14:46:28 UTC (rev 25155)
@@ -3,9 +3,9 @@
 Priority: optional
 Maintainer: Tristan Seligmann <mithrandi at mithrandi.net>
 Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.6.6-3~), faad, flac,
+Build-Depends: debhelper (>= 9), python-all (>= 2.6.6-3~), faad, flac,
     oggz-tools, vorbis-tools, python-pyvorbis
-Standards-Version: 3.9.2
+Standards-Version: 3.9.4
 X-Python-Version: >= 2.3
 Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/mutagen/trunk/
 Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/mutagen/trunk/
@@ -14,8 +14,6 @@
 Package: python-mutagen
 Architecture: all
 Depends: ${python:Depends}, ${misc:Depends}
-Provides: ${python:Provides}
-XB-Python-Version: ${python:Versions}
 Description: audio metadata editing library
  Mutagen is a Python module to handle audio metadata. It supports FLAC,
  M4A, MP3, Ogg FLAC, Ogg Speex, Ogg Theora, Ogg Vorbis, True Audio, and

Modified: packages/mutagen/trunk/debian/copyright
===================================================================
--- packages/mutagen/trunk/debian/copyright	2013-07-11 10:03:16 UTC (rev 25154)
+++ packages/mutagen/trunk/debian/copyright	2013-07-11 14:46:28 UTC (rev 25155)
@@ -25,10 +25,15 @@
 Copyright: 2005 Michael Urman
 License: GPL-2
 
-Files: monkeysaudio.py, musepack.py, optimfrog.py
+Files: monkeysaudio.py, optimfrog.py
 Copyright: 2006 Lukas Lalinsky <lalinsky at gmail.com>
 License: GPL-2
 
+Files: mutagen/musepack.py
+Copyright: 2006 Lukas Lalinsky <lalinsky at gmail.com>
+           2012 Christoph Reiter <christoph.reiter at gmx.at>
+License: GPL-2
+
 Files: asf.py
 Copyright: 2005-2006 Joe Wreschnig, 2006-2007 Lukas Lalinsky
 License: GPL-2

Modified: packages/mutagen/trunk/debian/patches/series
===================================================================
--- packages/mutagen/trunk/debian/patches/series	2013-07-11 10:03:16 UTC (rev 25154)
+++ packages/mutagen/trunk/debian/patches/series	2013-07-11 14:46:28 UTC (rev 25155)
@@ -1 +1,2 @@
 manpage-hyphens.diff
+undefined-name

Added: packages/mutagen/trunk/debian/patches/undefined-name
===================================================================
--- packages/mutagen/trunk/debian/patches/undefined-name	                        (rev 0)
+++ packages/mutagen/trunk/debian/patches/undefined-name	2013-07-11 14:46:28 UTC (rev 25155)
@@ -0,0 +1,14 @@
+Description: Fix undefined name in EasyID3
+Origin: upstream, http://code.google.com/p/mutagen/source/detail?r=c6a143d85dc7eafe658821fcf61e70aff775a6cc
+
+--- mutagen-1.21.orig/mutagen/easyid3.py
++++ mutagen-1.21/mutagen/easyid3.py
+@@ -176,7 +176,7 @@ class EasyID3(DictMixin, Metadata):
+                         lambda s, fn: setattr(s.__id3, 'filename', fn))
+ 
+     size = property(lambda s: s.__id3.size,
+-                    lambda s, fn: setattr(s.__id3, 'size', v))
++                    lambda s, fn: setattr(s.__id3, 'size', s))
+ 
+     def __getitem__(self, key):
+         key = key.lower()




More information about the Python-modules-commits mailing list