[arch-commits] Commit in python2-eyed3/repos/community-any (4 files)
Bartłomiej Piotrowski
bpiotrowski at nymeria.archlinux.org
Tue Feb 25 15:14:38 UTC 2014
Date: Tuesday, February 25, 2014 @ 16:14:38
Author: bpiotrowski
Revision: 106216
archrelease: copy trunk to community-any
Added:
python2-eyed3/repos/community-any/PKGBUILD
(from rev 106215, python2-eyed3/trunk/PKGBUILD)
python2-eyed3/repos/community-any/fix_setting_tcmp_frame.patch
(from rev 106215, python2-eyed3/trunk/fix_setting_tcmp_frame.patch)
Deleted:
python2-eyed3/repos/community-any/PKGBUILD
python2-eyed3/repos/community-any/fix_setting_tcmp_frame.patch
------------------------------+
PKGBUILD | 54 +++++++++++++++++++++--------------------
fix_setting_tcmp_frame.patch | 42 +++++++++++++++----------------
2 files changed, 49 insertions(+), 47 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2014-02-25 15:14:36 UTC (rev 106215)
+++ PKGBUILD 2014-02-25 15:14:38 UTC (rev 106216)
@@ -1,26 +0,0 @@
-#$Id$
-#Maintainer: Aaron Griffin <aaron at archlinux.org>
-#Contributor: Federico Quagliata (quaqo) <quaqo at despammed.com>
-#Contributor: cdhotfire <cdhotfire at gmail.com>
-
-pkgname=python2-eyed3
-pkgver=0.7.3
-pkgrel=2
-pkgdesc="A Python module and program for processing information about mp3 files"
-arch=(any)
-url="http://eyed3.nicfit.net/"
-license=('GPL')
-depends=('python2')
-makedepends=('python2-setuptools')
-source=(http://eyed3.nicfit.net/releases/eyeD3-$pkgver.tgz)
-options=(!emptydirs)
-md5sums=('584431de2a8439039890e02b69a377d5')
-build() {
- cd $srcdir/eyeD3-$pkgver
- python2 setup.py build
-}
-package() {
- cd $srcdir/eyeD3-$pkgver
- python2 setup.py install --root="${pkgdir}" --optimize=1
- sed -i 's/python/python2/' $pkgdir/usr/bin/eyeD3
-}
Copied: python2-eyed3/repos/community-any/PKGBUILD (from rev 106215, python2-eyed3/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2014-02-25 15:14:38 UTC (rev 106216)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Aaron Griffin <aaron at archlinux.org>
+# Contributor: Federico Quagliata (quaqo) <quaqo at despammed.com>
+# Contributor: cdhotfire <cdhotfire at gmail.com>
+
+pkgname=python2-eyed3
+pkgver=0.7.4
+pkgrel=1
+pkgdesc="A Python module and program for processing information about mp3 files"
+arch=(any)
+url="http://eyed3.nicfit.net/"
+license=('GPL')
+depends=('python2')
+makedepends=('python2-setuptools')
+source=(http://eyed3.nicfit.net/releases/eyeD3-$pkgver.tgz)
+options=(!emptydirs)
+md5sums=('80d71338f53243cba1a2e2a86cde5635')
+
+build() {
+ cd $srcdir/eyeD3-$pkgver
+ python2 setup.py build
+}
+
+package() {
+ cd $srcdir/eyeD3-$pkgver
+ python2 setup.py install --root="${pkgdir}" --optimize=1
+ sed -i 's/python/python2/' $pkgdir/usr/bin/eyeD3
+}
Deleted: fix_setting_tcmp_frame.patch
===================================================================
--- fix_setting_tcmp_frame.patch 2014-02-25 15:14:36 UTC (rev 106215)
+++ fix_setting_tcmp_frame.patch 2014-02-25 15:14:38 UTC (rev 106216)
@@ -1,21 +0,0 @@
-# HG changeset patch
-# User Travis Shirk <travis at pobox.com>
-# Date 1366683753 21600
-# Branch stable
-# Node ID bfbfc2c5709c4084ecaeed3410600d94d2a21a0d
-# Parent e2ebd8a246ecca8340bbc4ac858c7a946524571f
-Fix for setting of non standard text frames. Fixes #26
-
-diff -r e2ebd8a246ecca8340bbc4ac858c7a946524571f -r bfbfc2c5709c4084ecaeed3410600d94d2a21a0d src/eyed3/id3/frames.py
---- a/src/eyed3/id3/frames.py Wed Mar 13 21:28:01 2013 -0600
-+++ b/src/eyed3/id3/frames.py Mon Apr 22 20:22:33 2013 -0600
-@@ -1364,7 +1364,8 @@
- the same Id is already in the list it's value is changed, otherwise
- the frame is added.
- '''
-- assert(fid[0] == "T" and fid in list(ID3_FRAMES.keys()))
-+ assert(fid[0] == "T" and (fid in ID3_FRAMES or
-+ fid in NONSTANDARD_ID3_FRAMES))
-
- if fid in self:
- self[fid][0].text = text
Copied: python2-eyed3/repos/community-any/fix_setting_tcmp_frame.patch (from rev 106215, python2-eyed3/trunk/fix_setting_tcmp_frame.patch)
===================================================================
--- fix_setting_tcmp_frame.patch (rev 0)
+++ fix_setting_tcmp_frame.patch 2014-02-25 15:14:38 UTC (rev 106216)
@@ -0,0 +1,21 @@
+# HG changeset patch
+# User Travis Shirk <travis at pobox.com>
+# Date 1366683753 21600
+# Branch stable
+# Node ID bfbfc2c5709c4084ecaeed3410600d94d2a21a0d
+# Parent e2ebd8a246ecca8340bbc4ac858c7a946524571f
+Fix for setting of non standard text frames. Fixes #26
+
+diff -r e2ebd8a246ecca8340bbc4ac858c7a946524571f -r bfbfc2c5709c4084ecaeed3410600d94d2a21a0d src/eyed3/id3/frames.py
+--- a/src/eyed3/id3/frames.py Wed Mar 13 21:28:01 2013 -0600
++++ b/src/eyed3/id3/frames.py Mon Apr 22 20:22:33 2013 -0600
+@@ -1364,7 +1364,8 @@
+ the same Id is already in the list it's value is changed, otherwise
+ the frame is added.
+ '''
+- assert(fid[0] == "T" and fid in list(ID3_FRAMES.keys()))
++ assert(fid[0] == "T" and (fid in ID3_FRAMES or
++ fid in NONSTANDARD_ID3_FRAMES))
+
+ if fid in self:
+ self[fid][0].text = text
More information about the arch-commits
mailing list