diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-10-25 20:52:30 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-10-25 21:03:13 +0200 |
commit | bd83553f3cc9371477eb3b7cc18cb2b831cd4f4a (patch) | |
tree | 5a99d6d93d5d9ab3a989a13add8ede3d8cef58ec /media-gfx/exiv2 | |
parent | dev-libs/poco: Stabilize 1.11.2-r1 arm, #868573 (diff) | |
download | gentoo-bd83553f3cc9371477eb3b7cc18cb2b831cd4f4a.tar.gz gentoo-bd83553f3cc9371477eb3b7cc18cb2b831cd4f4a.tar.bz2 gentoo-bd83553f3cc9371477eb3b7cc18cb2b831cd4f4a.zip |
media-gfx/exiv2: Support python3_11, update EAPI 7 -> 8
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-gfx/exiv2')
-rw-r--r-- | media-gfx/exiv2/exiv2-0.27.5-r1.ebuild | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/media-gfx/exiv2/exiv2-0.27.5-r1.ebuild b/media-gfx/exiv2/exiv2-0.27.5-r1.ebuild index 0b3c07acc565..76dad821c808 100644 --- a/media-gfx/exiv2/exiv2-0.27.5-r1.ebuild +++ b/media-gfx/exiv2/exiv2-0.27.5-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -if [[ ${PV} = *9999 ]]; then +if [[ ${PV} = *9999* ]]; then EGIT_REPO_URI="https://github.com/Exiv2/exiv2.git" inherit git-r3 else @@ -12,7 +12,7 @@ else S="${WORKDIR}/${P}-Source" fi -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) inherit cmake-multilib python-any-r1 DESCRIPTION="EXIF, IPTC and XMP metadata C++ library and command line utility" @@ -24,16 +24,6 @@ SLOT="0/27.5" IUSE="+bmff doc examples nls +png test webready +xmp" RESTRICT="!test? ( test )" -BDEPEND=" - doc? ( - ${PYTHON_DEPS} - app-doc/doxygen - dev-libs/libxslt - media-gfx/graphviz - virtual/pkgconfig - ) - nls? ( sys-devel/gettext ) -" RDEPEND=" >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] ) @@ -45,13 +35,22 @@ RDEPEND=" xmp? ( dev-libs/expat[${MULTILIB_USEDEP}] ) " DEPEND="${DEPEND} - test? ( dev-cpp/gtest )" + test? ( dev-cpp/gtest ) +" +BDEPEND=" + doc? ( + ${PYTHON_DEPS} + app-doc/doxygen + dev-libs/libxslt + media-gfx/graphviz + virtual/pkgconfig + ) + nls? ( sys-devel/gettext ) +" DOCS=( README.md doc/ChangeLog doc/cmd.txt ) -PATCHES=( - "${FILESDIR}"/${PN}-0.27.5-musl-tests.patch -) +PATCHES=( "${FILESDIR}"/${PN}-0.27.5-musl-tests.patch ) pkg_setup() { use doc && python-any-r1_pkg_setup |