summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* media-gfx/mcomix: add 2.2.1Bernard Cafarelli2023-07-192-0/+46
| | | | Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
* media-gfx/geeqie: drop 1.7.3-r1Bernard Cafarelli2023-07-182-97/+0
| | | | Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
* media-gfx/ueberzugpp: add 2.8.9Ionen Wolkens2023-07-172-0/+62
| | | | Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
* media-gfx/chafa: Keyword 1.12.5-r1 ppc64, #909773Sam James2023-07-171-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/blender: Fix compilation on arm64Sebastian Parborg2023-07-165-0/+15
| | | | | Signed-off-by: Sebastian Parborg <darkdefende@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/blender: Disable OSL support per defaultSebastian Parborg2023-07-166-6/+54
| | | | | | | | | Because llvm 16 is now marked stable, there is a very high chance of users having Blender sefault on startup because of missmatched llvm libraries. Signed-off-by: Sebastian Parborg <darkdefende@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/blender: Bump 3.6.0Sebastian Parborg2023-07-162-0/+429
| | | | | Signed-off-by: Sebastian Parborg <darkdefende@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/blender: Bump 3.3.8Sebastian Parborg2023-07-162-0/+411
| | | | | Signed-off-by: Sebastian Parborg <darkdefende@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/blender: Remove bundled libs warningSebastian Parborg2023-07-164-28/+0
| | | | | | | | | | | | | | Blender will not unbundle the libs in question, however they do provide "WITH_SYSTEM_<LIB>" where it makes sense. The vast majority of the bundled libs that do not have settings like these will not be unbundled and upstream is quite firm with this stance. Therefore, having a call to action about nagging upstream about it does not make too much sense. Closes: https://bugs.gentoo.org/505386 Signed-off-by: Sebastian Parborg <darkdefende@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/gimp: 2.99.16 version bumpSergey Torokhov2023-07-162-0/+260
| | | | | | Signed-off-by: Sergey Torokhov <torokhov-s-a@yandex.ru> Closes: https://github.com/gentoo/gentoo/pull/31903 Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/skanpage: Stabilize 23.04.2 x86, #909314Arthur Zamarin2023-07-151-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* media-gfx/ueberzug: add 18.2.2Ionen Wolkens2023-07-152-0/+47
| | | | | | | Only a 3 lines change for pillow-10 compat, didn't notice it was broken given been using ueberzugpp lately. Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
* media-gfx/superslicer: Stabilize 2.5.59.2-r2 amd64, #907842Arthur Zamarin2023-07-151-2/+2
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* media-gfx/gthumb: Stabilize 3.12.2-r5 amd64, #909483Arthur Zamarin2023-07-151-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* media-gfx/imagemagick: Stabilize 6.9.12.89 arm64, #907992Arthur Zamarin2023-07-151-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* media-gfx/imagemagick: Stabilize 7.1.1.11 arm64, #907993Arthur Zamarin2023-07-151-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* media-gfx/ueberzug: drop 18.2.0Ionen Wolkens2023-07-142-39/+0
| | | | Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
* media-gfx/gimp: 9999.ebuild. Pass LD_LIBRARY_PATH for src_test() phase.Sergey Torokhov2023-07-131-0/+5
| | | | | | | | | | | | While running the tests the gimp:2.99 tries to link system libgimp-3.0.so if gimp:2.99 is already installed. If system libgimp-3.0 has old GIMP API then it causes some tests fail. The proposed changes should fix this problem. Closes: https://bugs.gentoo.org/867856 Signed-off-by: Sergey Torokhov <torokhov-s-a@yandex.ru> Closes: https://github.com/gentoo/gentoo/pull/31683 Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/kphotoalbum: add 5.11.0Andreas Sturmlechner2023-07-122-0/+71
| | | | Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-gfx/chafa: Fix automagic libwebp dependency and linking errorJakov Smolić2023-07-121-0/+43
| | | | | Closes: https://bugs.gentoo.org/909429 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
* media-gfx/openvdb: Fix usage of removed std::auto_ptrViolet Purcell2023-07-112-0/+15
| | | | | | | | | | | | | | auto_ptr was deprecated in C++11 and removed in C++17. This bug appears to step from log4cplus, where auto_ptr was replaced with unique_ptr in the 2.0 release. OpenVDB attempts to check for this with the LOG4CPLUS_VERSION macro, however it's defined in the log4cplus/version.h header, which is never included. This patch adds the missing include, which fixes the issue with std::auto_ptr. Closes: https://bugs.gentoo.org/901991 Signed-off-by: Violet Purcell <vimproved@inventati.org> Closes: https://github.com/gentoo/gentoo/pull/31812 Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/gmic: add 3.2.6, drop 3.2.2Marek Szuba2023-07-112-3/+3
| | | | Signed-off-by: Marek Szuba <marecki@gentoo.org>
* media-gfx/geeqie: Stabilize 2.0.1-r4 x86, #906505Arthur Zamarin2023-07-101-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* media-gfx/graphviz: add 8.1.0David Seifert2023-07-092-0/+214
| | | | Signed-off-by: David Seifert <soap@gentoo.org>
* media-gfx/digikam: add 8.1.0Andreas Sturmlechner2023-07-083-0/+331
| | | | | | | Fixes build with media-gfx/exiv2-0.28.0 (too many commits to backport to 7.10). Bug: https://bugs.gentoo.org/906463 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-gfx/skanpage: Stabilize 23.04.2 amd64, #909314Arthur Zamarin2023-07-081-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* media-gfx/skanpage: Stabilize 23.04.2 arm64, #909314Arthur Zamarin2023-07-081-1/+1
| | | | Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
* media-gfx/mcomix: fix pillow version checkBernard Cafarelli2023-07-082-0/+62
| | | | Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
* media-gfx/gnome-font-viewer: Version bump to 45_alphaGuillermo Joandet2023-07-072-0/+31
| | | | | | Signed-off-by: Guillermo Joandet <gjoandet@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/31746 Signed-off-by: Matt Turner <mattst88@gentoo.org>
* media-gfx/eog: Version bump to 44.3Matt Turner2023-07-072-0/+78
| | | | Signed-off-by: Matt Turner <mattst88@gentoo.org>
* media-gfx/geeqie: use lua.hpp to fix lua plugin compilationBernard Cafarelli2023-07-072-3/+23
| | | | | | | This can be replaced later by upstream official fix Bug: https://bugs.gentoo.org/909302 Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
* media-gfx/skanpage: 23.04.3 version bumpAndreas Sturmlechner2023-07-062-0/+54
| | | | Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
* media-gfx/sane-airscan: Stabilize 0.99.27 amd64, #903251Sam James2023-07-041-2/+2
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/potrace: use HTTPSMichael Mair-Keimberger2023-07-041-3/+3
| | | | | | Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/31706 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* media-gfx/fondu: use HTTPSMichael Mair-Keimberger2023-07-041-3/+3
| | | | | Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* media-gfx/gthumb: Stabilize 3.12.2-r5 x86, #909483Jakov Smolić2023-07-031-1/+1
| | | | Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
* media-gfx/eog: Stabilize 44.2 amd64, #909470Sam James2023-07-021-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/eog: Stabilize 44.2 x86, #909470Sam James2023-07-021-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/eog: Stabilize 44.2 arm64, #909470Sam James2023-07-021-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/darktable: version bump and add jpegxl support by cfuga on github ↵Markus Meier2023-07-023-2/+5
| | | | | | MR 31632 Signed-off-by: Markus Meier <maekke@gentoo.org>
* media-gfx/jpegoptim: fix DEPENDSam James2023-06-302-2/+2
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/darktable: drop IUSE=flickr from 4.4.0Marek Szuba2023-06-291-3/+1
| | | | | | | Gone now. Closes: https://bugs.gentoo.org/909318 Signed-off-by: Marek Szuba <marecki@gentoo.org>
* media-gfx/gimp: 9999.ebuild updateSergey Torokhov2023-06-281-3/+3
| | | | | | Signed-off-by: Sergey Torokhov <torokhov-s-a@yandex.ru> Closes: https://github.com/gentoo/gentoo/pull/31650 Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/darktable: version bumpMarkus Meier2023-06-272-0/+195
| | | | Signed-off-by: Markus Meier <maekke@gentoo.org>
* media-gfx/libredwg: drop 0.12.5.5487Andrew Ammerlaan2023-06-272-114/+0
| | | | Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
* media-gfx/libredwg: add 0.12.5.5865Andrew Ammerlaan2023-06-272-0/+114
| | | | | | | | patch for CVE-2022-35164 is in this version Bug: https://bugs.gentoo.org/856034 Bug: https://bugs.gentoo.org/905327 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
* media-gfx/geeqie: subscribe to media-libs/libjxl subslotCristian Othón Martínez Vera2023-06-272-2/+2
| | | | | | Signed-off-by: Cristian Othón Martínez Vera <cfuga@cfuga.mx> Closes: https://github.com/gentoo/gentoo/pull/31634 Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
* media-gfx/geeqie: fix implicit dep on media-libs/libjxl for ↵Cristian Othón Martínez Vera2023-06-271-2/+4
| | | | | | | media-gfx/geeqie-1.7.3 Signed-off-by: Cristian Othón Martínez Vera <cfuga@cfuga.mx> Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
* media-gfx/geeqie: destabilize 2.1 for ~amd64Sam James2023-06-271-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* media-gfx/geeqie: add 2.1Bernard Cafarelli2023-06-272-0/+111
| | | | Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>