summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/tagpy/files/tagpy-0.94.8-taglib-1.8_compat.patch')
-rw-r--r--dev-python/tagpy/files/tagpy-0.94.8-taglib-1.8_compat.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/dev-python/tagpy/files/tagpy-0.94.8-taglib-1.8_compat.patch b/dev-python/tagpy/files/tagpy-0.94.8-taglib-1.8_compat.patch
deleted file mode 100644
index 084ea983a6d7..000000000000
--- a/dev-python/tagpy/files/tagpy-0.94.8-taglib-1.8_compat.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-https://github.com/inducer/tagpy/commit/d0759c0ec7d24ae8d1af395a1032521eb00b4d1f
-https://github.com/inducer/tagpy/commit/813ec4f03bb4411c7ffd15dcb3974da04a3f109c
-
---- tagpy-0.94.8/src/wrapper/id3.cpp
-+++ tagpy-0.94.8/src/wrapper/id3.cpp
-@@ -79,6 +79,10 @@
- MF_OL(setVolumeAdjustment, 1, 2);
- MF_OL(setPeakVolume, 1, 2);
-
-+ #if (TAGPY_TAGLIB_HEX_VERSION >= 0x10800)
-+ MF_OL(render, 0, 1)
-+ #endif
-+
- // -------------------------------------------------------------
- // MPEG
- // -------------------------------------------------------------
-@@ -212,7 +216,11 @@
- .DEF_SIMPLE_METHOD(removeFrame)
- .DEF_SIMPLE_METHOD(removeFrames)
-
-- .DEF_SIMPLE_METHOD(render)
-+ #if (TAGPY_TAGLIB_HEX_VERSION >= 0x10800)
-+ .DEF_OVERLOADED_METHOD(render, ByteVector (cl::*)(int) const)
-+ #else
-+ .DEF_SIMPLE_METHOD(render)
-+ #endif
- ;
- }
-