You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/tagpy/files/tagpy-2018.1-taglib-1.8.patch

18 lines
642 B

diff -Naur a/src/wrapper/id3.cpp b/src/wrapper/id3.cpp
--- a/src/wrapper/id3.cpp 2019-03-23 08:26:04.975722018 -0400
+++ b/src/wrapper/id3.cpp 2019-03-23 08:26:54.438399217 -0400
@@ -220,12 +220,7 @@
.DEF_SIMPLE_METHOD(removeFrame)
.DEF_SIMPLE_METHOD(removeFrames)
- #if (TAGPY_TAGLIB_HEX_VERSION >= 0x10800)
- .DEF_OVERLOADED_METHOD(render, ByteVector (cl::*)() const)
- .DEF_OVERLOADED_METHOD(render, ByteVector (cl::*)(int) const)
- #else
- .def("render", (ByteVector (cl::*)() const) &cl::render)
- #endif
+ .def("render", (ByteVector (cl::*)() const) &cl::render)
;
}