[Python-apps-commits] r8348 - in packages/beets/trunk/debian (4 files)

laarmen-guest at users.alioth.debian.org laarmen-guest at users.alioth.debian.org
Mon Mar 19 16:03:29 UTC 2012


    Date: Monday, March 19, 2012 @ 16:03:24
  Author: laarmen-guest
Revision: 8348

New upstream release (1.0~b13)

Modified:
  packages/beets/trunk/debian/changelog
  packages/beets/trunk/debian/patches/series
Deleted:
  packages/beets/trunk/debian/patches/integer-timestamps
  packages/beets/trunk/debian/patches/unittest2

Modified: packages/beets/trunk/debian/changelog
===================================================================
--- packages/beets/trunk/debian/changelog	2012-03-18 21:48:12 UTC (rev 8347)
+++ packages/beets/trunk/debian/changelog	2012-03-19 16:03:24 UTC (rev 8348)
@@ -1,9 +1,10 @@
-beets (1.0~b12-2) UNRELEASED; urgency=low
+beets (1.0~b13-1) UNRELEASED; urgency=low
 
-  [ Simon Chopin ]
+  * New upstream release. 
+    - patches unittest2 and integer-timestamps included upstream
   * Add python-pylast to the Suggests: field for the lastgenre plugin.
 
- -- Simon Chopin <chopin.simon at gmail.com>  Wed, 15 Feb 2012 15:46:23 +0100
+ -- Simon Chopin <chopin.simon at gmail.com>  Mon, 19 Mar 2012 17:01:32 +0100
 
 beets (1.0~b12-1) unstable; urgency=low
 

Deleted: packages/beets/trunk/debian/patches/integer-timestamps
===================================================================
--- packages/beets/trunk/debian/patches/integer-timestamps	2012-03-18 21:48:12 UTC (rev 8347)
+++ packages/beets/trunk/debian/patches/integer-timestamps	2012-03-19 16:03:24 UTC (rev 8348)
@@ -1,19 +0,0 @@
-Description: mtime tests at integral second resolution
- Avoids test failure on ext4 filesystems with extra_isize enabled.
-Bug-Upstream: http://code.google.com/p/beets/issues/detail?id=298
-Bug-Debian: http://bugs.debian.org/655732
-Origin: Upstream, http://code.google.com/p/beets/source/detail?r=d8b9a078b6212fdbf5a9c8d315b88d8fcc51ffb9
-Author: Adrian Sampson <adrian at radbox.org>
-Last-Update: 2012-01-19
-
---- a/test/test_db.py
-+++ b/test/test_db.py
-@@ -750,7 +750,7 @@
-             os.remove(self.ipath)
- 
-     def _mtime(self):
--        return os.path.getmtime(self.ipath)
-+        return int(os.path.getmtime(self.ipath))
- 
-     def test_mtime_initially_up_to_date(self):
-         self.assertGreaterEqual(self.i.mtime, self._mtime())

Modified: packages/beets/trunk/debian/patches/series
===================================================================
--- packages/beets/trunk/debian/patches/series	2012-03-18 21:48:12 UTC (rev 8347)
+++ packages/beets/trunk/debian/patches/series	2012-03-19 16:03:24 UTC (rev 8348)
@@ -1,3 +1 @@
-integer-timestamps
-unittest2
 private-module

Deleted: packages/beets/trunk/debian/patches/unittest2
===================================================================
--- packages/beets/trunk/debian/patches/unittest2	2012-03-18 21:48:12 UTC (rev 8347)
+++ packages/beets/trunk/debian/patches/unittest2	2012-03-19 16:03:24 UTC (rev 8348)
@@ -1,170 +0,0 @@
-Description: Use unittest2 to get new Python 2.7 unittest features on 2.6
-Author: Stefano Rivera <stefanor at debian.org>
-Bug-Upstream: http://code.google.com/p/beets/issues/detail?id=275
-Last-Update: 2011-12-13
-
---- a/test/test_art.py
-+++ b/test/test_art.py
-@@ -14,7 +14,7 @@
- 
- """Tests for the album art fetchers."""
- 
--import unittest
-+import unittest2 as unittest
- 
- import _common
- from beets.autotag import art
---- a/test/test_autotag.py
-+++ b/test/test_autotag.py
-@@ -14,7 +14,7 @@
- 
- """Tests for autotagging functionality.
- """
--import unittest
-+import unittest2 as unittest
- import os
- import shutil
- import re
---- a/test/test_files.py
-+++ b/test/test_files.py
-@@ -15,7 +15,7 @@
- """Test file manipulation functionality of Item.
- """
- 
--import unittest
-+import unittest2 as unittest
- import shutil
- import os
- import stat
---- a/test/test_importer.py
-+++ b/test/test_importer.py
-@@ -14,7 +14,7 @@
- 
- """Tests for the general importer functionality.
- """
--import unittest
-+import unittest2 as unittest
- import os
- import shutil
- 
---- a/test/test_mb.py
-+++ b/test/test_mb.py
-@@ -14,7 +14,7 @@
- 
- """Tests for MusicBrainz API wrapper.
- """
--import unittest
-+import unittest2 as unittest
- 
- import _common
- from beets.autotag import mb
---- a/test/test_mediafile.py
-+++ b/test/test_mediafile.py
-@@ -15,7 +15,7 @@
- """Specific, edge-case tests for the MediaFile metadata layer.
- """
- 
--import unittest
-+import unittest2 as unittest
- import os
- import shutil
- 
---- a/test/test_mediafile_basic.py
-+++ b/test/test_mediafile_basic.py
-@@ -16,7 +16,7 @@
- layer.
- """
- 
--import unittest
-+import unittest2 as unittest
- import os
- import shutil
- import datetime
---- a/test/test_pipeline.py
-+++ b/test/test_pipeline.py
-@@ -15,7 +15,7 @@
- """Test the "pipeline.py" restricted parallel programming library.
- """
- 
--import unittest
-+import unittest2 as unittest
- 
- import _common
- from beets.util import pipeline
---- a/test/test_player.py
-+++ b/test/test_player.py
-@@ -15,7 +15,7 @@
- """Tests for BPD and music playing.
- """
- 
--import unittest
-+import unittest2 as unittest
- 
- import _common
- from beetsplug import bpd
---- a/test/test_query.py
-+++ b/test/test_query.py
-@@ -14,7 +14,7 @@
- 
- """Various tests for querying the library database.
- """
--import unittest
-+import unittest2 as unittest
- import os
- 
- import _common
---- a/test/test_ui.py
-+++ b/test/test_ui.py
-@@ -14,7 +14,7 @@
- 
- """Tests for the command-line interface.
- """
--import unittest
-+import unittest2 as unittest
- import os
- import shutil
- import textwrap
---- a/test/test_vfs.py
-+++ b/test/test_vfs.py
-@@ -13,7 +13,7 @@
- # included in all copies or substantial portions of the Software.
- 
- """Tests for the virtual filesystem builder.."""
--import unittest
-+import unittest2 as unittest
- 
- import _common
- from beets import library
---- a/test/testall.py
-+++ b/test/testall.py
-@@ -14,7 +14,7 @@
- # The above copyright notice and this permission notice shall be
- # included in all copies or substantial portions of the Software.
- 
--import unittest
-+import unittest2 as unittest
- import os
- import re
- import sys
---- a/test/test_db.py
-+++ b/test/test_db.py
-@@ -14,7 +14,7 @@
- 
- """Tests for non-query database functions of Item.
- """
--import unittest
-+import unittest2 as unittest
- import os
- import sqlite3
- import ntpath
---- a/test/test_template.py
-+++ b/test/test_template.py
-@@ -14,7 +14,7 @@
- 
- """Tests for template engine.
- """
--import unittest
-+import unittest2 as unittest
- 
- import _common
- from beets.util import functemplate




More information about the Python-apps-commits mailing list