summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* media-libs/mlt: drop ffmpeg[-flite] depSam James2023-06-141-0/+158
| | | | | | | | | I can't find a reference to this in MLT's repo. I suspect this was really an flite-underlinking bug and it was fixed by https://github.com/festvox/flite/pull/5 in flite-2.2. Bug: https://bugs.gentoo.org/683870 Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: disable clang-formatSam James2023-06-121-0/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: add 7.16.0Violet Purcell2023-06-122-0/+158
| | | | | | Signed-off-by: Violet Purcell <vimproved@inventati.org> Closes: https://github.com/gentoo/gentoo/pull/31403 Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: Backport -Wint-conversion fixViolet Purcell2023-06-122-0/+54
| | | | | Signed-off-by: Violet Purcell <vimproved@inventati.org> Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: drop 7.12.0Andreas Sturmlechner2023-06-102-158/+0
| | | | Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: Stabilize 7.14.0 x86, #908134Jakov Smolić2023-06-101-1/+1
| | | | Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
* media-libs/mlt: Stabilize 7.14.0 amd64, #908134Arthur Zamarin2023-06-091-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* media-libs/mlt: Stabilize 7.14.0 arm64, #908134Sam James2023-06-091-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: add 7.14.0Andreas Sturmlechner2023-03-252-0/+158
| | | | Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* */*: remove py3.8 from PYTHON_COMPATDavid Seifert2023-01-141-2/+2
| | | | Signed-off-by: David Seifert <soap@gentoo.org>
* media-libs/mlt: drop 7.8.0Andreas Sturmlechner2022-12-153-197/+0
| | | | Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: Stabilize 7.12.0 amd64, #882627Arthur Zamarin2022-12-151-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* media-libs/mlt: Stabilize 7.12.0 x86, #882627Arthur Zamarin2022-12-051-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* media-libs/mlt: Stabilize 7.12.0 arm64, #882627Sam James2022-12-051-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: drop 7.10.0Andreas Sturmlechner2022-11-232-158/+0
| | | | Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: add 7.12.0Andreas Sturmlechner2022-11-232-0/+158
| | | | Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: add 7.10.0Andreas Sturmlechner2022-11-042-0/+158
| | | | Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: enable py3.11Andreas Sturmlechner2022-10-251-1/+1
| | | | Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: remove unused patchMichael Mair-Keimberger2022-09-161-19/+0
| | | | | | | Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Portage 3.0.35 / pkgdev 0.2.1 / pkgcheck 0.10.14 Closes: https://github.com/gentoo/gentoo/pull/27279 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: Tarball respun upstream in placeAndreas Sturmlechner2022-09-142-2/+2
| | | | | | | | | | ...big sigh... Ebuild also changed in place because changes have been reviewed and are solely in places disabled by our ebuild. Closes: https://bugs.gentoo.org/866395 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: drop 7.4.0, 7.6.0Andreas Sturmlechner2022-09-143-315/+0
| | | | Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: Stabilize 7.8.0 x86, #856823Sam James2022-07-251-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: Stabilize 7.8.0 arm64, #856823Sam James2022-07-201-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: Stabilize 7.8.0 amd64, #856823Sam James2022-07-201-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: fix build for muslAlfred Persson Forsberg2022-06-262-0/+38
| | | | | | | | | | | | | | | | | | | | There is no gurantee that either HAVE_STRTOD_L or HAVE_LOCALE_H will be defined at compile-time. Try for example building this project :) The locale usage is now defined in POSIX and therefore we can now assume it will be available on Linux, except for ancient systems. https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/locale.h.html Another way of dealing with this would be to have a global mlt_config.h where HAVE_LOCALE_H and HAVE_STRTOD_L are defined to values determined when mlt is installed. See-also: https://git.alpinelinux.org/aports/tree/community/mlt/musl-locale.patch, https://github.com/mltframework/mlt/pull/803 Closes: https://bugs.gentoo.org/829608 Signed-off-by: Alfred Persson Forsberg <cat@catcream.org> Closes: https://github.com/gentoo/gentoo/pull/26083 Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: add 7.8.0Sam James2022-06-232-0/+159
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: add 7.6.0Sam James2022-04-293-0/+177
| | | | | Closes: https://bugs.gentoo.org/841512 Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: Keyword 7.4.0 riscv, #837059Yixun Lan2022-04-101-1/+1
| | | | Signed-off-by: Yixun Lan <dlan@gentoo.org>
* media-libs/mlt: Drop 7.2.0-r1Andreas Sturmlechner2022-01-212-157/+0
| | | | | Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: Stabilize 7.4.0 arm64, #831590Sam James2022-01-211-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: Stabilize 7.4.0 amd64, #831590Jakov Smolić2022-01-201-1/+1
| | | | Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
* media-libs/mlt: Stabilize 7.4.0 x86, #831590Jakov Smolić2022-01-201-1/+1
| | | | Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
* media-libs/mlt: remove implicit kernel_linuxDavid Seifert2022-01-042-4/+4
| | | | Signed-off-by: David Seifert <soap@gentoo.org>
* media-libs/mlt: 7.4.0 version bumpAndreas Sturmlechner2021-12-202-0/+157
| | | | | Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: unconditionally enable FFTW (PLUS)Sam James2021-12-021-5/+4
| | | | | | Closes: https://bugs.gentoo.org/603168 Closes: https://bugs.gentoo.org/796557 Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: Drop 6.26.1-r1Andreas Sturmlechner2021-11-294-285/+0
| | | | | Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: Stabilize 7.2.0 x86, #822177Sam James2021-11-291-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: Stabilize 7.2.0 amd64, #822177Sam James2021-11-281-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: Stabilize 7.2.0 arm64, #822177Sam James2021-11-281-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: Drop 7.0.1-r2Andreas Sturmlechner2021-11-262-158/+0
| | | | | Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: min java 1.8:*Volkmar W. Pogatzki2021-11-063-4/+4
| | | | | | | | | https://archives.gentoo.org/gentoo-dev/message/71ec6a505f3245496d343c506ad21717 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/22846 Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: fix UnusedInheritsSam James2021-11-041-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: add 7.2.0Sam James2021-11-042-0/+158
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* **/metadata.xml: Replace http by https in DOCTYPE elementUlrich Müller2021-09-111-1/+1
| | | | | Bug: https://bugs.gentoo.org/552720 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* media-libs/mlt: Drop 7.0.1-r1Andreas Sturmlechner2021-08-311-154/+0
| | | | | Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: Add missing IUSE=movit dep on media-libs/libglvndAndreas Sturmlechner2021-08-311-0/+157
| | | | | Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: Require media-libs/opencv[contrib]Andreas Sturmlechner2021-08-151-9/+9
| | | | | | | Reported-by: Michelangelo Scopelliti <kernelpanic@gmx.com> Closes: https://bugs.gentoo.org/808180 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-libs/mlt: drop obsolete SWIG comments/referencesSam James2021-08-131-22/+8
| | | | | | | | We're only building the Python bindings now, so no need to be so general. Bug: https://bugs.gentoo.org/807903 Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: drop Lua bindings in 7.xSam James2021-08-131-44/+7
| | | | | | | | | | | | After spending far too long messing around with the Lua bindings, I realised I should really check whether anything in the tree actually needs them. It seems no such consumer exists. Dropping the bindings rather than complicating the ebuild for an apparently unneeded feature in our case. Closes: https://bugs.gentoo.org/807903 Signed-off-by: Sam James <sam@gentoo.org>
* media-libs/mlt: fix build for USE=pythonFelix Neumärker2021-08-051-7/+3
| | | | | | | | | Closes: https://bugs.gentoo.org/806484 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Felix Neumärker <xdch47@posteo.de> Closes: https://github.com/gentoo/gentoo/pull/21889 Signed-off-by: Sam James <sam@gentoo.org>