diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2026-04-19 19:12:04 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2026-04-19 19:12:04 +0000 |
| commit | 34f30c80d0f2549965255dae1043e028b027869a (patch) | |
| tree | ff23a87f2a3db2ad869e6b66d0103ccf3752bf4c /media-libs | |
| parent | bd587a36d251fb687d456c2063414e95dd5e3bd3 (diff) | |
| download | baldeagleos-repo-34f30c80d0f2549965255dae1043e028b027869a.tar.gz baldeagleos-repo-34f30c80d0f2549965255dae1043e028b027869a.tar.xz baldeagleos-repo-34f30c80d0f2549965255dae1043e028b027869a.zip | |
Adding metadata
Diffstat (limited to 'media-libs')
| -rw-r--r-- | media-libs/gegl/Manifest | 1 | ||||
| -rw-r--r-- | media-libs/gegl/files/gegl-0.4.66-respect-NM.patch | 25 | ||||
| -rw-r--r-- | media-libs/gegl/gegl-0.4.66.ebuild | 181 | ||||
| -rw-r--r-- | media-libs/glycin/Manifest | 9 | ||||
| -rw-r--r-- | media-libs/glycin/glycin-2.1.1.ebuild | 86 | ||||
| -rw-r--r-- | media-libs/glycin/metadata.xml | 10 | ||||
| -rw-r--r-- | media-libs/hamlib/Manifest | 2 | ||||
| -rw-r--r-- | media-libs/hamlib/hamlib-4.7.1.ebuild (renamed from media-libs/hamlib/hamlib-4.6.5.ebuild) | 4 | ||||
| -rw-r--r-- | media-libs/libpano13/libpano13-2.9.23.ebuild | 4 |
9 files changed, 110 insertions, 212 deletions
diff --git a/media-libs/gegl/Manifest b/media-libs/gegl/Manifest index 29a1679c1d7e..50a484ca9725 100644 --- a/media-libs/gegl/Manifest +++ b/media-libs/gegl/Manifest @@ -1,3 +1,2 @@ -DIST gegl-0.4.66.tar.xz 6078452 BLAKE2B 479ffcdcfc141ebe709cee78c22848d7b2312723500df4b6a090e1cb1cdc211f95c87005071eadb66ead65fee5a11a88dda3f9e662e2e2e945cee60d47dbaeae SHA512 ed1f809aaea8768b1eff2a6adcf66b3ef7c11e03d410ef8952051822017f9a6bcee0e29dd32708dd6937d49416c6db55cd8d34458619022ea750311253899ae9 DIST gegl-0.4.68.tar.xz 6120772 BLAKE2B aa87d91dd28ee50835b1d7838e97e6f5965fc7a18c7648dfe8feea0dbe9abe8cac37e4a5b0cbb48dd16b81935662fafb40e42967fc01c513912a563d704f1700 SHA512 e13b1885b0cd6aa439cdb7c1d56b81c754d41da1af6ed17eab3e1beb7b7fe74094e0da9d8bacaea9ec5d4ec95eea682cf4764ea828bda4a7d7acec9b273c537e DIST gegl-0.4.70.tar.xz 6164464 BLAKE2B dc0a5a78bd782a690a3b596e89d4646e72d59c131420044daca624b91499e0ec0a232dafe4fb3270508339a5bef657eff23968e814bcbcc33b8e22e09eeed361 SHA512 9f47480dc2fad58c052aa3df3ac914d500614e7acb0dc46677bea4228350a00a0fe38b5b0572303251210e3e544b5b7cb51415476586630df4da8f4b7c6486d8 diff --git a/media-libs/gegl/files/gegl-0.4.66-respect-NM.patch b/media-libs/gegl/files/gegl-0.4.66-respect-NM.patch deleted file mode 100644 index 1baf9d3be257..000000000000 --- a/media-libs/gegl/files/gegl-0.4.66-respect-NM.patch +++ /dev/null @@ -1,25 +0,0 @@ -https://bugs.gentoo.org/968162 - -diff --git a/tools/defcheck.py b/tools/defcheck.py -index 3103481..30d875f 100644 ---- a/tools/defcheck.py -+++ b/tools/defcheck.py -@@ -31,7 +31,7 @@ Needs the tool "nm" to work - - import sys, subprocess - --from os import path -+from os import getenv, path - - def_files = sys.argv[1:] - -@@ -65,7 +65,7 @@ for df in def_files: - # unsortindex = i+1 - # break; - -- status, nm = subprocess.getstatusoutput ("nm --defined-only --extern-only " + -+ status, nm = subprocess.getstatusoutput (getenv("NM", default="nm") + " --defined-only --extern-only " + - libname) - if status != 0: - print("trouble reading {} - has it been compiled?".format(libname)) - diff --git a/media-libs/gegl/gegl-0.4.66.ebuild b/media-libs/gegl/gegl-0.4.66.ebuild deleted file mode 100644 index baa7691a1415..000000000000 --- a/media-libs/gegl/gegl-0.4.66.ebuild +++ /dev/null @@ -1,181 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..14} ) -# vala and introspection support is broken, bug #468208 -VALA_USE_DEPEND=vapigen - -inherit flag-o-matic meson optfeature python-any-r1 toolchain-funcs vala - -if [[ ${PV} == *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/gegl.git" -else - SRC_URI="https://download.gimp.org/pub/${PN}/${PV:0:3}/${P}.tar.xz" - KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv x86" -fi - -DESCRIPTION="A graph based image processing framework" -HOMEPAGE="https://gegl.org/" - -LICENSE="|| ( GPL-3+ LGPL-3 )" -SLOT="0.4" - -IUSE="cairo debug ffmpeg gtk-doc +introspection jpeg2k lcms openexr openmp pdf raw sdl sdl2 svg test tiff umfpack vala v4l webp" -REQUIRED_USE=" - gtk-doc? ( introspection ) - svg? ( cairo ) - test? ( introspection ) - vala? ( introspection ) -" - -RESTRICT="!test? ( test )" - -# See https://gegl.org/build.html for upstream instructions on dependencies. -RDEPEND=" - >=dev-libs/glib-2.44.0:2 - >=dev-libs/json-glib-1.0.0 - >=media-libs/babl-0.1.116[introspection?,lcms?,vala?] - >=media-libs/libjpeg-turbo-1.0.0:= - >=media-libs/libnsgif-1.0.0:= - >=media-libs/libpng-1.6.0:0= - >=virtual/zlib-1.2.0:= - >=x11-libs/gdk-pixbuf-2.32:2 - >=x11-libs/pango-1.38.0 - cairo? ( >=x11-libs/cairo-1.12.2 ) - ffmpeg? ( media-video/ffmpeg:0= ) - introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2:= ) - jpeg2k? ( >=media-libs/jasper-1.900.1:= ) - lcms? ( >=media-libs/lcms-2.8:2 ) - openexr? ( >=media-libs/openexr-1.6.1:= ) - pdf? ( >=app-text/poppler-0.71.0[cairo] ) - raw? ( >=media-libs/libraw-0.15.4:0= ) - sdl? ( >=media-libs/libsdl-1.2.0 ) - sdl2? ( >=media-libs/libsdl2-2.0.5 ) - svg? ( >=gnome-base/librsvg-2.40.6:2 ) - tiff? ( >=media-libs/tiff-4:= ) - umfpack? ( sci-libs/umfpack ) - v4l? ( >=media-libs/libv4l-1.0.1 ) - webp? ( >=media-libs/libwebp-0.5.0:= ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - ${PYTHON_DEPS} - dev-lang/perl - >=sys-devel/gettext-0.19.8 - virtual/pkgconfig - gtk-doc? ( dev-util/gi-docgen ) - test? ( $(python_gen_any_dep '>=dev-python/pygobject-3.2:3[${PYTHON_USEDEP}]') ) - vala? ( $(vala_depend) ) -" - -DOCS=( AUTHORS docs/ChangeLog docs/NEWS.adoc ) - -PATCHES=( - "${FILESDIR}"/gegl-0.4.66-respect-NM.patch -) - -pkg_pretend() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp -} - -pkg_setup() { - [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp - python-any-r1_pkg_setup -} - -python_check_deps() { - use test || return 0 - python_has_version -b ">=dev-python/pygobject-3.2:3[${PYTHON_USEDEP}]" -} - -src_prepare() { - default - # patch executables suffix - sed -i -e "s/'gegl'/'gegl-0.4'/" bin/meson.build || die - sed -i -e "s/'gegl-imgcmp'/'gegl-imgcmp-0.4'/" tools/meson.build || die - sed -i -e "s/gegl-imgcmp/gegl-imgcmp-0.4/" tests/simple/test-exp-combine.py || die - # skip UNEXPECTED PASSED 'matting-levin' test - sed -i -e "s/composition_tests += 'matting-levin'//" \ - -e "s/composition_tests_fail += 'matting-levin'//" tests/compositions/meson.build || die - - # don't require Apple's OpenCL on versions of OSX that don't have it - if [[ ${CHOST} == *-darwin* && ${CHOST#*-darwin} -le 9 ]] ; then - sed -i -e 's/#ifdef __APPLE__/#if 0/' gegl/opencl/* || die - fi - - # Fix QA warning, install docs into /usr/share/gtk-doc/html/gegl-0.4 instead of /usr/share/doc/gegl-0.4 - sed -i -e "s#'doc'#'gtk-doc' / 'html'#" docs/reference/meson.build || die -} - -src_configure() { - # Bug #859901 - filter-lto - - tc-export READELF NM - - use vala && vala_setup - - local emesonargs=( - # Follow upstream order in meson_options.txt - - # - Disable documentation as the generating is bit automagic - # if anyone wants to work on it just create bug with patch - -Ddocs=false # website - $(meson_feature gtk-doc gi-docgen) - # - Work in progress operations - # Might make sense to hook up if masked to make it an explicit opt-in - -Dworkshop=false - $(meson_use introspection) - $(meson_feature vala vapigen) - - # Optional dependencies (as per upstream) - -Dgdk-pixbuf=enabled - # - Dependency currently used for tests, examples and not installed tools. - # If in addition mrg and sdl are enabled then some substantive change could happen. - # With ffmpeg allows building tests that currently fail bug #907412 - -Dgexiv2=disabled - # - Noop option. Its fully optional at runtime. - -Dgraphviz=disabled - $(meson_feature jpeg2k jasper) - $(meson_feature lcms) - # - Needs -Dworkshop=true - -Dlensfun=disabled - $(meson_feature ffmpeg libav) - $(meson_feature raw libraw) - $(meson_feature svg librsvg) - # - Not in portage main tree - -Dlibspiro=disabled - $(meson_feature tiff libtiff) - # - v4l support does not work with our media-libs/libv4l-0.8.9, - # upstream bug at https://bugzilla.gnome.org/show_bug.cgi?id=654675 - $(meson_feature v4l libv4l) - $(meson_feature v4l libv4l2) - -Dlua=disabled - # - Unpackaged and discontinued upstream. mrg upstream recommends ctx which is vendored in gegl - -Dmrg=disabled - # - Unpackaged, needs -Dworkshop=true - # Implementation of the feature in gimp stalled - # https://gitlab.gnome.org/GNOME/gimp/-/issues/2912 - -Dmaxflow=disabled - $(meson_feature openexr) - $(meson_feature openmp) - $(meson_feature cairo) - -Dpango=enabled - $(meson_feature cairo pangocairo) - $(meson_feature pdf poppler) - # - Test dependency - $(meson_feature test pygobject) - $(meson_feature sdl sdl1) - $(meson_feature sdl2 sdl2) - $(meson_feature umfpack) - $(meson_feature webp) - ) - meson_src_configure -} - -pkg_postinst() { - optfeature "'Show Image Graph' under GIMP[debug] menu 'File - Debug'" media-gfx/graphviz -} diff --git a/media-libs/glycin/Manifest b/media-libs/glycin/Manifest new file mode 100644 index 000000000000..5259a7ed9910 --- /dev/null +++ b/media-libs/glycin/Manifest @@ -0,0 +1,9 @@ +DIST glycin-2.1.1-crates.tar.xz 18049564 BLAKE2B 628319dc5d3d6d12c63fdb023720c282d90aaf92c1303e8ac757dcaf2aedce68c109c8367a86e579b1cfbe69204ec2abeec74ec08cdda629955d94638a7ec36c SHA512 5f1d25187825d2e6a21a882beb77d765a80dc16bc78e570a43053a5cdc527ce138bd57c3c900b48b3295a6cc1939a6dafb99aee0e493a660c17100dbb6d1757d +DIST glycin-2.1.1.tar.xz 7169112 BLAKE2B 68afbb2e070b0fe8d396daa438c152a4091d320a47ac71e65bd93549b30ee8c04cfa75017ab6b3dcd03f93016913bb0429ed88acf791d9c4de08e30f08cbd4dd SHA512 af8da5f8154f7e15a6594ffdacd707384c0ca5805c65049583edb10e1499736b13d7082f193941518b3200e871baf2baadeb43feaa70a8c5fd21e0c864462236 +DIST glycin-3.1.0.crate 70320 BLAKE2B cbad2d6beb926122af537f1cd9290c3a1d6ff3b4768b034043b32727f27415dd08936f39ad28e257ec33f872679a0344f1636da5d26e5524006e17f721f15738 SHA512 1af8f685ca41108f31605ccde115b6584565ed8af0e62fd226cca0ad09a6d3931df0b0cca3a8cb901f05672b80043ac1c5aae581acd5045ed7057868f02afaa1 +DIST glycin-common-1.0.4.crate 26728 BLAKE2B cf80040828e1405833e5f3511f11ac300eb2458c76b700dc2817c766e829af4223497e0b2a4e73d4d59d948ff8c5298973ae5ba515ab3ec71f407499b679161f SHA512 51a18f0048eb7fcaf1438a2bc1623378bdb7b950ee4b0cd9f054c9d0d3839fbe7f862fbd2a0bf61d1745fe43a4336c24652e5b7a936c9644521039c31ae8d692 +DIST glycin-utils-4.1.0.crate 39794 BLAKE2B 8f3956da116ea588ae3ca7bca573565bf4ed0c4b04504e3d35800e31c7eb55af8c33d573de9adddce6f248756648491f9e1756e7c7774ac41d07632ac8cd6043 SHA512 9425e6bdd77d85955fd9968bdea720d425e827e2d690071b506a2a761b40f737f499d0e05c7a3837bdc1f1368f1c8c56152179925b61b9cd3d2dddc229241ef5 +DIST libglycin-gtk4-rebind-0.1.0.crate 6226 BLAKE2B e87ce17afc5d88396d57e1a9f1f77200cf18df18e6de9e2bbbf41aa63226ae99a48af255272a539d349cab71a475403d7e4b4701f43008e0533a94e43a53b165 SHA512 abc078d75790d6feba9302b149b6c12137485d6c3f339590e40c09c851e4c5782034cd0297498039b4ba52c1712240f613dea6e2c6c408cad43057db92016252 +DIST libglycin-gtk4-rebind-sys-0.1.0.crate 5648 BLAKE2B d17e2da030fa9d923bc315ac66f10c6ca360a9e16a354451e8e593c261606d5bf06a93599fc771e0413d4651f04cec7801fb127992a6fb041a09637a1cbb6aa0 SHA512 7598ca145ad16ea02b96a29149e4de8843639c542bcca57fdf2e92f8b81a687195912557810e1bfbd9344f1a44d2e2f40cccbdbb1b35741419ef3efbe8e073c6 +DIST libglycin-rebind-0.1.0.crate 13938 BLAKE2B 320798df7978215721eab56f9f967c0732d83e6293d6bfb30bea786dbcbdee80cda3ed28810f48f370138b26c14ffe47098c43959f554ec3077728d0f14272b2 SHA512 e3bb14713f9d5da49fedea178cbeb8154ec6e0a6a6fe3261b5ac40c6304af5df09e1a7823086849191b6584816f66a7fa146f42d9bd26a67bfcab71169e31548 +DIST libglycin-rebind-sys-0.1.0.crate 10723 BLAKE2B 6e86e38b11f5cc811530a2014aef4caa01be23872ec790984033659a941a396643df2f84bd008ee6c5322ad2738f69b6dbc8204756956de5eb86cd66992130fe SHA512 4131cdd9095eaca44d138845689c3bf4478c30599215cbd554a3ab5f06c027dd4d976472e1049a33193e2e8307f6064297beb501b215ce8620e6aceed482e927 diff --git a/media-libs/glycin/glycin-2.1.1.ebuild b/media-libs/glycin/glycin-2.1.1.ebuild new file mode 100644 index 000000000000..15a81d6ebc5b --- /dev/null +++ b/media-libs/glycin/glycin-2.1.1.ebuild @@ -0,0 +1,86 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CRATES=" + glycin@3.1.0 + glycin-common@1.0.4 + glycin-utils@4.1.0 +" +# These should be in the gentoo crate dist +CRATES+=" + libglycin-gtk4-rebind@0.1.0 + libglycin-gtk4-rebind-sys@0.1.0 + libglycin-rebind@0.1.0 + libglycin-rebind-sys@0.1.0 +" +RUST_MIN_VER="1.92" + +inherit cargo gnome.org meson vala + +DESCRIPTION="Sandboxed and extendable image loading library" +HOMEPAGE="https://gnome.pages.gitlab.gnome.org/glycin" +SRC_URI+=" https://github.com/gentoo-crate-dist/glycin/releases/download/${PV}/${P}-crates.tar.xz ${CARGO_CRATE_URIS}" + +# Dependent crate licenses +LICENSE+=" + Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD GPL-3+ IJG ISC + LGPL-3+ MIT Unicode-3.0 + || ( LGPL-2.1+ MPL-2.0 ) +" +SLOT="2" +KEYWORDS="~amd64" +IUSE="gtk +introspection vala test" +REQUIRED_USE=" + gtk? ( introspection ) + vala? ( introspection ) +" +RESTRICT="!test? ( test )" + +DEPEND=" + >=media-libs/lcms-2.12:2 + >=dev-libs/glib-2.60:2 + >=sys-libs/libseccomp-2.5.0 + >=media-libs/fontconfig-2.13.0:1.0 + media-libs/glycin-loaders:2 + introspection? ( dev-libs/gobject-introspection ) + gtk? ( >=gui-libs/gtk-4.16.0:4 ) +" + +RDEPEND="${DEPEND} + sys-apps/bubblewrap +" + +BDEPEND=" + vala? ( $(vala_depend) ) + virtual/pkgconfig +" + +QA_FLAGS_IGNORED=" + usr/bin/${PN}-thumbnailer + usr/lib.*/libglycin-2.so.0 + usr/lib.*/libglycin-gtk4-2.so.0 +" + +src_prepare() { + default + use vala && vala_setup +} + +src_configure() { + local emesonargs=( + -Dlibglycin=true + $(meson_use vala vapi) + -Dglycin-loaders=false + $(meson_use introspection) + -Dglycin-thumbnailer=true + $(meson_use gtk libglycin-gtk4) + -Dtests=$(usex test true false) + # required if glycin-loaders is installed seperately + -Dtest_skip_install=true + ) + + meson_src_configure + ln -s "${CARGO_HOME}" "${BUILD_DIR}/cargo-home" || die +} diff --git a/media-libs/glycin/metadata.xml b/media-libs/glycin/metadata.xml new file mode 100644 index 000000000000..f2710c9e5c09 --- /dev/null +++ b/media-libs/glycin/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>gnome@gentoo.org</email> + <name>Gentoo GNOME Desktop</name> + </maintainer> + + <origin>gentoo-staging</origin> +</pkgmetadata>
\ No newline at end of file diff --git a/media-libs/hamlib/Manifest b/media-libs/hamlib/Manifest index 290a8d9be33b..8314c48ea2b6 100644 --- a/media-libs/hamlib/Manifest +++ b/media-libs/hamlib/Manifest @@ -1,2 +1,2 @@ -DIST hamlib-4.6.5.tar.gz 2947731 BLAKE2B 3aaaff91553723cd7783ed243800c6c207020d9f93ce71816af5848383de045dd2d0e22ac26a32240c1f6e1eb4e2116d9598f2cd4313642f98562abfd31ad23f SHA512 edd0f5101921d512d8c0069ef5c13f053867870e75bd781040f2cabb194c96bca57d537f0fad06072b6f93c6363c18b4b18b186afc6520f5ad2a606452f20b3d DIST hamlib-4.7.0.tar.gz 3089782 BLAKE2B fa28b625af9d93f933babdb5d3a07670f2408f7b8ffd4ee2a7d2138ea05d1aa82b65a104327f05b5da9955f1153f95ee6caaab852ceaf0d8dbe21749e7c44628 SHA512 12cb3415c0c265a8035f97c148e1370119953606b91849eb3c8fbe0304c14a1eff7a38efb225c0351029a32a9c48932c7b8cc3c34928126a71dbb87d8d307343 +DIST hamlib-4.7.1.tar.gz 3112433 BLAKE2B d8ee11da7cf711e84fc6d6114f9e4f11476a1760ffe6992995cd545ed24881a040f5c2bc4b5353df279b8c8911c4b010559dcbeeaea2e2c977a915be9cf0940f SHA512 9c9b7a35b3e0d8cb298246f233d1325df2e03762ba875209b62153f7956b02744b80612ced8df549b31679a8c4fbbcdcd1a6f273c43d0ca6e8c9da0022963f55 diff --git a/media-libs/hamlib/hamlib-4.6.5.ebuild b/media-libs/hamlib/hamlib-4.7.1.ebuild index 388b0d445816..cb4d21a1bd10 100644 --- a/media-libs/hamlib/hamlib-4.6.5.ebuild +++ b/media-libs/hamlib/hamlib-4.7.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="LGPL-2+ GPL-2+" SLOT="0/4.2" -KEYWORDS="amd64 ~arm ~arm64 ~riscv x86" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" IUSE="doc perl python tcl" RESTRICT="test" diff --git a/media-libs/libpano13/libpano13-2.9.23.ebuild b/media-libs/libpano13/libpano13-2.9.23.ebuild index 007e5ad13fae..429966ca3bc1 100644 --- a/media-libs/libpano13/libpano13-2.9.23.ebuild +++ b/media-libs/libpano13/libpano13-2.9.23.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="8" @@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}-$(ver_cut 1-3)" LICENSE="GPL-2" SLOT="0/3" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 arm64 x86" IUSE="java static-libs suitesparse" DEPEND="media-libs/libpng:= |
