diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
| commit | b590c8d7572b727d565cc0b8ff660d43569845de (patch) | |
| tree | 06f7a4102ea4e845df8b66660f252920d52952f9 /media-libs/gexiv2 | |
| parent | 24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff) | |
| download | baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip | |
Adding metadata
Diffstat (limited to 'media-libs/gexiv2')
| -rw-r--r-- | media-libs/gexiv2/Manifest | 2 | ||||
| -rw-r--r-- | media-libs/gexiv2/gexiv2-0.14.5.ebuild | 78 | ||||
| -rw-r--r-- | media-libs/gexiv2/gexiv2-0.14.6.ebuild | 78 | ||||
| -rw-r--r-- | media-libs/gexiv2/metadata.xml | 14 |
4 files changed, 172 insertions, 0 deletions
diff --git a/media-libs/gexiv2/Manifest b/media-libs/gexiv2/Manifest new file mode 100644 index 000000000000..a47cc1f45d8e --- /dev/null +++ b/media-libs/gexiv2/Manifest @@ -0,0 +1,2 @@ +DIST gexiv2-0.14.5.tar.xz 390860 BLAKE2B aa385a6bfb1dd8221305fab7cd419679960dd5bd3558608f43159736441d6f999f1a236fe6474e1e914defb29d0220202672cb1b41107ad004a3def2562398ed SHA512 3d0c8ce1a73396d83dffcf3df9d4ab7d3329809f5ded84d67846b9ac857a94fb181576e01061fa923da21b36190dab69e4dfb8aafd6e9fe27fe25170ffacc6c0 +DIST gexiv2-0.14.6.tar.xz 391436 BLAKE2B 7552089fa5accb987f5efe130e58347f672d61a2ec55835dfcddb59b427857a85ee3887eab7c3f110c4e09d48a0aa11cf3728b198b8a4352582c9f8761157447 SHA512 1750964e539ed449c77bed5fc469fcd83a8534b25c4ea57a43671443b845ac6c2760236b03c1af936fd75b6517c8b2bd4873e066f0479e42ed521ab71a75efc9 diff --git a/media-libs/gexiv2/gexiv2-0.14.5.ebuild b/media-libs/gexiv2/gexiv2-0.14.5.ebuild new file mode 100644 index 000000000000..c4e3482caa4c --- /dev/null +++ b/media-libs/gexiv2/gexiv2-0.14.5.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{13..14} ) + +inherit gnome.org meson python-r1 vala + +DESCRIPTION="GObject-based wrapper around the Exiv2 library" +HOMEPAGE="https://gitlab.gnome.org/GNOME/gexiv2" + +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/gexiv2.git" + inherit git-r3 +else + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" +fi + +LICENSE="LGPL-2.1+ GPL-2+" +SLOT="0" +IUSE="gtk-doc +introspection python test +vala" +REQUIRED_USE=" + python? ( introspection ${PYTHON_REQUIRED_USE} ) + test? ( python introspection ) + vala? ( introspection ) +" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=media-gfx/exiv2-0.26:= + >=dev-libs/glib-2.46.0:2 + introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2:= ) + python? ( + ${PYTHON_DEPS} + dev-python/pygobject:3[${PYTHON_USEDEP}] + ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/glib-utils + gtk-doc? ( + dev-util/gtk-doc + app-text/docbook-xml-dtd:4.3 + ) + test? ( media-gfx/exiv2[xmp] ) + virtual/pkgconfig + vala? ( $(vala_depend) ) +" + +src_prepare() { + default + use vala && vala_setup +} + +src_configure() { + local emesonargs=( + $(meson_use test tests) + $(meson_use gtk-doc gtk_doc) + $(meson_use introspection) + $(meson_use vala vapi) + -Dtools=false # requires vala, freshly promoted tool that some other distros don't ship yet either + # Prevents installation of python modules (uses install_data from meson + # which does not optimize the modules) + -Dpython3=false + ) + meson_src_configure +} + +src_install() { + meson_src_install + + if use python ; then + python_moduleinto gi/overrides/ + python_foreach_impl python_domodule GExiv2.py + python_foreach_impl python_optimize + fi +} diff --git a/media-libs/gexiv2/gexiv2-0.14.6.ebuild b/media-libs/gexiv2/gexiv2-0.14.6.ebuild new file mode 100644 index 000000000000..c4e3482caa4c --- /dev/null +++ b/media-libs/gexiv2/gexiv2-0.14.6.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{13..14} ) + +inherit gnome.org meson python-r1 vala + +DESCRIPTION="GObject-based wrapper around the Exiv2 library" +HOMEPAGE="https://gitlab.gnome.org/GNOME/gexiv2" + +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/gexiv2.git" + inherit git-r3 +else + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86" +fi + +LICENSE="LGPL-2.1+ GPL-2+" +SLOT="0" +IUSE="gtk-doc +introspection python test +vala" +REQUIRED_USE=" + python? ( introspection ${PYTHON_REQUIRED_USE} ) + test? ( python introspection ) + vala? ( introspection ) +" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=media-gfx/exiv2-0.26:= + >=dev-libs/glib-2.46.0:2 + introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2:= ) + python? ( + ${PYTHON_DEPS} + dev-python/pygobject:3[${PYTHON_USEDEP}] + ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/glib-utils + gtk-doc? ( + dev-util/gtk-doc + app-text/docbook-xml-dtd:4.3 + ) + test? ( media-gfx/exiv2[xmp] ) + virtual/pkgconfig + vala? ( $(vala_depend) ) +" + +src_prepare() { + default + use vala && vala_setup +} + +src_configure() { + local emesonargs=( + $(meson_use test tests) + $(meson_use gtk-doc gtk_doc) + $(meson_use introspection) + $(meson_use vala vapi) + -Dtools=false # requires vala, freshly promoted tool that some other distros don't ship yet either + # Prevents installation of python modules (uses install_data from meson + # which does not optimize the modules) + -Dpython3=false + ) + meson_src_configure +} + +src_install() { + meson_src_install + + if use python ; then + python_moduleinto gi/overrides/ + python_foreach_impl python_domodule GExiv2.py + python_foreach_impl python_optimize + fi +} diff --git a/media-libs/gexiv2/metadata.xml b/media-libs/gexiv2/metadata.xml new file mode 100644 index 000000000000..f08e44c2d08c --- /dev/null +++ b/media-libs/gexiv2/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>gnome@gentoo.org</email> + <name>Gentoo GNOME Desktop</name> + </maintainer> + <longdescription lang="en"> + gexiv2 is a GObject wrapper around the Exiv2 photo metadata library. + It allows for GNOME applications to easily inspect and update EXIF, + IPTC, and XMP metadata in photo and video files of various formats. + </longdescription> + <origin>baldeagleos-repo</origin> +</pkgmetadata> |
