From 56dd95578e1c0502837fae1b30f22d0b7911570a Mon Sep 17 00:00:00 2001 From: David King Date: Feb 26 2016 22:31:40 +0000 Subject: Update to 0.7.9 --- diff --git a/.gitignore b/.gitignore index 3c8907f..ffb02e7 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ eyeD3-0.6.18.tar.gz /eyeD3-0.7.3.tgz /eyeD3-0.7.4.tgz /eyeD3-0.7.5.tgz +/eyeD3-0.7.9.zip +/eyeD3-0.7.9.tar.gz diff --git a/0001-Fix-sym-link-attack.patch b/0001-Fix-sym-link-attack.patch deleted file mode 100644 index e98a1ea..0000000 --- a/0001-Fix-sym-link-attack.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- a/src/eyed3/id3/tag.py -+++ a/src/eyed3/id3/tag.py -@@ -946,8 +946,8 @@ class Tag(core.Tag): - "padding" % (len(tag_data), len(padding))) - if rewrite_required: - # Open tmp file -- tmp_name = tempfile.mktemp() -- with open(tmp_name, "wb") as tmp_file: -+ with tempfile.NamedTemporaryFile("wb", delete=False) \ -+ as tmp_file: - tmp_file.write(tag_data + padding) - - # Copy audio data in chunks -@@ -961,9 +961,11 @@ class Tag(core.Tag): - tag_file.seek(seek_point) - chunkCopy(tag_file, tmp_file) - -+ tmp_file.flush() -+ - # Move tmp to orig. -- shutil.copyfile(tmp_name, self.file_info.name) -- os.unlink(tmp_name) -+ shutil.copyfile(tmp_file.name, self.file_info.name) -+ os.unlink(tmp_file.name) - - else: - with open(self.file_info.name, "r+b") as tag_file: -@@ -1118,13 +1120,13 @@ class Tag(core.Tag): - tag_file.seek(tag.file_info.tag_size) - - # Open tmp file -- tmp_name = tempfile.mktemp() -- with open(tmp_name, "wb") as tmp_file: -+ with tempfile.NamedTemporaryFile("wb", delete=False) \ -+ as tmp_file: - chunkCopy(tag_file, tmp_file) - - # Move tmp to orig -- shutil.copyfile(tmp_name, filename) -- os.unlink(tmp_name) -+ shutil.copyfile(tmp_file.name, filename) -+ os.unlink(tmp_file.name) - - retval |= True - diff --git a/0002-Fix-gnu-gpl-address.patch b/0002-Fix-gnu-gpl-address.patch deleted file mode 100644 index a388a4e..0000000 --- a/0002-Fix-gnu-gpl-address.patch +++ /dev/null @@ -1,476 +0,0 @@ -diff -Naurp eyeD3-0.7.5.0/COPYING eyeD3-0.7.5/COPYING ---- eyeD3-0.7.5.0/COPYING 2012-10-24 06:08:29.000000000 +0530 -+++ eyeD3-0.7.5/COPYING 2014-11-28 16:48:14.232535311 +0530 -@@ -250,7 +250,7 @@ Foundation. - 10. If you wish to incorporate parts of the Program into other free - programs whose distribution conditions are different, write to the author - to ask for permission. For software which is copyrighted by the Free --Software Foundation, write to the Free Software Foundation; we sometimes -+Software Foundation, see . Foundation; we sometimes - make exceptions for this. Our decision will be guided by the two goals - of preserving the free status of all derivatives of our free software and - of promoting the sharing and reuse of software generally. -@@ -304,8 +304,7 @@ the "copyright" line and a pointer to wh - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+ along with this program; if not, see . - - - Also add information on how to contact you by electronic and paper mail. -diff -Naurp eyeD3-0.7.5.0/examples/chapters.py eyeD3-0.7.5/examples/chapters.py ---- eyeD3-0.7.5.0/examples/chapters.py 2013-07-08 07:48:53.000000000 +0530 -+++ eyeD3-0.7.5/examples/chapters.py 2014-11-28 16:47:47.785534211 +0530 -@@ -14,8 +14,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from __future__ import print_function -diff -Naurp eyeD3-0.7.5.0/examples/tag_example.py eyeD3-0.7.5/examples/tag_example.py ---- eyeD3-0.7.5.0/examples/tag_example.py 2012-11-14 10:07:56.000000000 +0530 -+++ eyeD3-0.7.5/examples/tag_example.py 2014-11-28 16:47:47.791534211 +0530 -@@ -14,8 +14,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from eyed3.id3 import Tag -diff -Naurp eyeD3-0.7.5.0/pavement.py eyeD3-0.7.5/pavement.py ---- eyeD3-0.7.5.0/pavement.py 2014-09-06 00:02:25.000000000 +0530 -+++ eyeD3-0.7.5/pavement.py 2014-11-28 16:47:47.771534210 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from __future__ import print_function -diff -Naurp eyeD3-0.7.5.0/src/eyed3/compat.py eyeD3-0.7.5/src/eyed3/compat.py ---- eyeD3-0.7.5.0/src/eyed3/compat.py 2013-11-09 05:46:26.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/compat.py 2014-11-28 16:47:47.941534218 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - ''' -diff -Naurp eyeD3-0.7.5.0/src/eyed3/core.py eyeD3-0.7.5/src/eyed3/core.py ---- eyeD3-0.7.5.0/src/eyed3/core.py 2014-05-26 00:32:14.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/core.py 2014-11-28 16:47:47.852534214 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - '''Basic core types and utilities.''' -diff -Naurp eyeD3-0.7.5.0/src/eyed3/id3/apple.py eyeD3-0.7.5/src/eyed3/id3/apple.py ---- eyeD3-0.7.5.0/src/eyed3/id3/apple.py 2012-11-24 22:22:54.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/id3/apple.py 2014-11-28 16:47:47.929534217 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - ''' -diff -Naurp eyeD3-0.7.5.0/src/eyed3/id3/frames.py eyeD3-0.7.5/src/eyed3/id3/frames.py ---- eyeD3-0.7.5.0/src/eyed3/id3/frames.py 2014-08-09 05:04:30.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/id3/frames.py 2014-11-28 16:47:47.936534217 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - import re -diff -Naurp eyeD3-0.7.5.0/src/eyed3/id3/headers.py eyeD3-0.7.5/src/eyed3/id3/headers.py ---- eyeD3-0.7.5.0/src/eyed3/id3/headers.py 2013-07-08 09:31:12.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/id3/headers.py 2014-11-28 16:47:47.921534217 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - import math, binascii -diff -Naurp eyeD3-0.7.5.0/src/eyed3/id3/__init__.py eyeD3-0.7.5/src/eyed3/id3/__init__.py ---- eyeD3-0.7.5.0/src/eyed3/id3/__init__.py 2014-09-05 10:49:20.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/id3/__init__.py 2014-11-28 16:47:47.925534217 +0530 -@@ -12,8 +12,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - import string, re, types -diff -Naurp eyeD3-0.7.5.0/src/eyed3/id3/tag.py eyeD3-0.7.5/src/eyed3/id3/tag.py ---- eyeD3-0.7.5.0/src/eyed3/id3/tag.py 2014-09-05 10:49:50.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/id3/tag.py 2014-11-28 16:47:47.909534216 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - import os -diff -Naurp eyeD3-0.7.5.0/src/eyed3/info.py eyeD3-0.7.5/src/eyed3/info.py ---- eyeD3-0.7.5.0/src/eyed3/info.py 2014-09-05 12:25:37.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/info.py 2014-11-28 16:47:47.944534218 +0530 -@@ -12,8 +12,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - import os -@@ -287,7 +286,7 @@ Foundation. - 10. If you wish to incorporate parts of the Program into other free - programs whose distribution conditions are different, write to the author - to ask for permission. For software which is copyrighted by the Free --Software Foundation, write to the Free Software Foundation; we sometimes -+Software Foundation, see . Foundation; we sometimes - make exceptions for this. Our decision will be guided by the two goals - of preserving the free status of all derivatives of our free software and - of promoting the sharing and reuse of software generally. -@@ -341,8 +340,7 @@ the "copyright" line and a pointer to wh - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+ along with this program; if not, see . - - - Also add information on how to contact you by electronic and paper mail. -diff -Naurp eyeD3-0.7.5.0/src/eyed3/info.py.in eyeD3-0.7.5/src/eyed3/info.py.in ---- eyeD3-0.7.5.0/src/eyed3/info.py.in 2013-11-07 09:51:22.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/info.py.in 2014-11-28 16:48:04.534534926 +0530 -@@ -12,8 +12,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - import os -@@ -287,7 +286,7 @@ Foundation. - 10. If you wish to incorporate parts of the Program into other free - programs whose distribution conditions are different, write to the author - to ask for permission. For software which is copyrighted by the Free --Software Foundation, write to the Free Software Foundation; we sometimes -+Software Foundation, see . Foundation; we sometimes - make exceptions for this. Our decision will be guided by the two goals - of preserving the free status of all derivatives of our free software and - of promoting the sharing and reuse of software generally. -@@ -341,8 +340,7 @@ the "copyright" line and a pointer to wh - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+ along with this program; if not, see . - - - Also add information on how to contact you by electronic and paper mail. -diff -Naurp eyeD3-0.7.5.0/src/eyed3/__init__.py eyeD3-0.7.5/src/eyed3/__init__.py ---- eyeD3-0.7.5.0/src/eyed3/__init__.py 2013-11-17 04:43:10.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/__init__.py 2014-11-28 16:47:47.857534214 +0530 -@@ -12,8 +12,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - '''Top-level module.''' -diff -Naurp eyeD3-0.7.5.0/src/eyed3/main.py eyeD3-0.7.5/src/eyed3/main.py ---- eyeD3-0.7.5.0/src/eyed3/main.py 2013-11-22 08:38:46.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/main.py 2014-11-28 16:47:47.795534211 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from __future__ import print_function -diff -Naurp eyeD3-0.7.5.0/src/eyed3/mp3/headers.py eyeD3-0.7.5/src/eyed3/mp3/headers.py ---- eyeD3-0.7.5.0/src/eyed3/mp3/headers.py 2013-07-21 07:57:08.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/mp3/headers.py 2014-11-28 16:47:47.896534216 +0530 -@@ -12,8 +12,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from math import log10 -diff -Naurp eyeD3-0.7.5.0/src/eyed3/mp3/__init__.py eyeD3-0.7.5/src/eyed3/mp3/__init__.py ---- eyeD3-0.7.5.0/src/eyed3/mp3/__init__.py 2013-11-07 09:51:22.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/mp3/__init__.py 2014-11-28 16:47:47.902534216 +0530 -@@ -12,8 +12,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - import os, re -diff -Naurp eyeD3-0.7.5.0/src/eyed3/plugins/classic.py eyeD3-0.7.5/src/eyed3/plugins/classic.py ---- eyeD3-0.7.5.0/src/eyed3/plugins/classic.py 2014-07-21 07:07:15.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/plugins/classic.py 2014-11-28 16:47:47.801534211 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from __future__ import print_function -diff -Naurp eyeD3-0.7.5.0/src/eyed3/plugins/examples.py eyeD3-0.7.5/src/eyed3/plugins/examples.py ---- eyeD3-0.7.5.0/src/eyed3/plugins/examples.py 2013-09-02 08:37:11.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/plugins/examples.py 2014-11-28 16:47:47.805534212 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from __future__ import print_function -diff -Naurp eyeD3-0.7.5.0/src/eyed3/plugins/fixup.py eyeD3-0.7.5/src/eyed3/plugins/fixup.py ---- eyeD3-0.7.5.0/src/eyed3/plugins/fixup.py 2014-07-21 08:12:57.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/plugins/fixup.py 2014-11-28 16:47:47.848534214 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from __future__ import print_function -diff -Naurp eyeD3-0.7.5.0/src/eyed3/plugins/__init__.py eyeD3-0.7.5/src/eyed3/plugins/__init__.py ---- eyeD3-0.7.5.0/src/eyed3/plugins/__init__.py 2014-04-19 08:50:41.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/plugins/__init__.py 2014-11-28 16:47:47.812534212 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from __future__ import print_function -diff -Naurp eyeD3-0.7.5.0/src/eyed3/plugins/itunes.py eyeD3-0.7.5/src/eyed3/plugins/itunes.py ---- eyeD3-0.7.5.0/src/eyed3/plugins/itunes.py 2012-11-26 07:11:04.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/plugins/itunes.py 2014-11-28 16:47:47.830534213 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from __future__ import print_function -diff -Naurp eyeD3-0.7.5.0/src/eyed3/plugins/lameinfo.py eyeD3-0.7.5/src/eyed3/plugins/lameinfo.py ---- eyeD3-0.7.5.0/src/eyed3/plugins/lameinfo.py 2013-08-03 11:33:16.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/plugins/lameinfo.py 2014-11-28 16:47:47.814534212 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from __future__ import print_function -diff -Naurp eyeD3-0.7.5.0/src/eyed3/plugins/mp3.py eyeD3-0.7.5/src/eyed3/plugins/mp3.py ---- eyeD3-0.7.5.0/src/eyed3/plugins/mp3.py 2013-09-05 21:30:38.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/plugins/mp3.py 2014-11-28 16:47:47.819534212 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from __future__ import print_function -diff -Naurp eyeD3-0.7.5.0/src/eyed3/plugins/nfo.py eyeD3-0.7.5/src/eyed3/plugins/nfo.py ---- eyeD3-0.7.5.0/src/eyed3/plugins/nfo.py 2013-11-07 09:51:22.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/plugins/nfo.py 2014-11-28 16:47:47.817534212 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from __future__ import print_function -diff -Naurp eyeD3-0.7.5.0/src/eyed3/plugins/statistics.py eyeD3-0.7.5/src/eyed3/plugins/statistics.py ---- eyeD3-0.7.5.0/src/eyed3/plugins/statistics.py 2013-11-07 09:51:22.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/plugins/statistics.py 2014-11-28 16:47:47.827534213 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from __future__ import print_function -diff -Naurp eyeD3-0.7.5.0/src/eyed3/plugins/xep_118.py eyeD3-0.7.5/src/eyed3/plugins/xep_118.py ---- eyeD3-0.7.5.0/src/eyed3/plugins/xep_118.py 2013-08-03 06:30:32.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/plugins/xep_118.py 2014-11-28 16:47:47.823534212 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - import os -diff -Naurp eyeD3-0.7.5.0/src/eyed3/utils/binfuncs.py eyeD3-0.7.5/src/eyed3/utils/binfuncs.py ---- eyeD3-0.7.5.0/src/eyed3/utils/binfuncs.py 2013-07-12 08:00:41.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/utils/binfuncs.py 2014-11-28 16:47:47.862534214 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from ..compat import toByteString, BytesType, byteiter -diff -Naurp eyeD3-0.7.5.0/src/eyed3/utils/cli.py eyeD3-0.7.5/src/eyed3/utils/cli.py ---- eyeD3-0.7.5.0/src/eyed3/utils/cli.py 2013-09-18 09:00:13.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/utils/cli.py 2014-11-28 16:47:47.881534215 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - ''' -diff -Naurp eyeD3-0.7.5.0/src/eyed3/utils/console.py eyeD3-0.7.5/src/eyed3/utils/console.py ---- eyeD3-0.7.5.0/src/eyed3/utils/console.py 2014-01-20 07:47:45.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/utils/console.py 2014-11-28 16:47:47.891534215 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - -diff -Naurp eyeD3-0.7.5.0/src/eyed3/utils/__init__.py eyeD3-0.7.5/src/eyed3/utils/__init__.py ---- eyeD3-0.7.5.0/src/eyed3/utils/__init__.py 2014-08-09 05:06:22.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/utils/__init__.py 2014-11-28 16:47:47.873534215 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - from __future__ import print_function -diff -Naurp eyeD3-0.7.5.0/src/eyed3/utils/log.py eyeD3-0.7.5/src/eyed3/utils/log.py ---- eyeD3-0.7.5.0/src/eyed3/utils/log.py 2014-02-19 07:08:25.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/utils/log.py 2014-11-28 16:47:47.865534214 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - import logging -diff -Naurp eyeD3-0.7.5.0/src/eyed3/utils/prompt.py eyeD3-0.7.5/src/eyed3/utils/prompt.py ---- eyeD3-0.7.5.0/src/eyed3/utils/prompt.py 2014-03-28 10:52:57.000000000 +0530 -+++ eyeD3-0.7.5/src/eyed3/utils/prompt.py 2014-11-28 16:47:47.879534215 +0530 -@@ -13,8 +13,7 @@ - # GNU General Public License for more details. - # - # You should have received a copy of the GNU General Public License --# along with this program; if not, write to the Free Software --# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+# along with this program; if not, see . - # - ################################################################################ - import sys as _sys diff --git a/python-eyed3.spec b/python-eyed3.spec index 7449154..442acf6 100644 --- a/python-eyed3.spec +++ b/python-eyed3.spec @@ -1,18 +1,16 @@ Name: python-eyed3 -Version: 0.7.5 -Release: 3%{?dist} +Version: 0.7.9 +Release: 1%{?dist} Summary: Python audio data toolkit (ID3 and MP3) License: GPLv2+ URL: http://eyed3.nicfit.net/ -Source0: http://eyed3.nicfit.net/releases/eyeD3-%{version}.tgz +Source0: http://eyed3.nicfit.net/releases/eyeD3-%{version}.tar.gz BuildArch: noarch BuildRequires: python2-devel BuildRequires: python-nose BuildRequires: python-setuptools Requires: python-magic -Patch1: 0002-Fix-gnu-gpl-address.patch - %description A Python module and program for processing ID3 tags. Information about mp3 files(i.e bit rate, sample frequency, play time, etc.) is also @@ -20,7 +18,7 @@ provided. The formats supported are ID3 v1.0/v1.1 and v2.3/v2.4. %prep %setup -qn eyeD3-%{version} -%patch1 -p1 + %build %{__python2} setup.py build @@ -37,6 +35,9 @@ provided. The formats supported are ID3 v1.0/v1.1 and v2.3/v2.4. %{python2_sitelib}/eyeD3-%{version}-py%{python2_version}.egg-info/ %changelog +* Fri Feb 26 2016 David King - 0.7.9-1 +- Update to 0.7.9 + * Thu Feb 04 2016 Fedora Release Engineering - 0.7.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild diff --git a/sources b/sources index fd9f537..68a27ad 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b8fe9582ffce1dd10bbe1babe47f8cc4 eyeD3-0.7.5.tgz +7fdf97f971033207355b5d550414ea75 eyeD3-0.7.9.tar.gz