diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-04-22 10:12:49 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-04-22 11:12:16 +0200 |
commit | 13e8d63ebf89aa4a8b9f123b0b414ed0197272b5 (patch) | |
tree | 66a0f50ea4a15845d8fca3468130c234008aea13 /dev-libs/kopeninghours | |
parent | app-office/kalendar: 23.04.0 version bump (diff) | |
download | gentoo-13e8d63ebf89aa4a8b9f123b0b414ed0197272b5.tar.gz gentoo-13e8d63ebf89aa4a8b9f123b0b414ed0197272b5.tar.bz2 gentoo-13e8d63ebf89aa4a8b9f123b0b414ed0197272b5.zip |
dev-libs/kopeninghours: 23.04.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/kopeninghours')
-rw-r--r-- | dev-libs/kopeninghours/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/kopeninghours/kopeninghours-23.04.0.ebuild | 64 |
2 files changed, 65 insertions, 0 deletions
diff --git a/dev-libs/kopeninghours/Manifest b/dev-libs/kopeninghours/Manifest index 6cd20a9a2910..ca46bc95b926 100644 --- a/dev-libs/kopeninghours/Manifest +++ b/dev-libs/kopeninghours/Manifest @@ -1 +1,2 @@ DIST kopeninghours-22.12.3.tar.xz 71072 BLAKE2B f86ca120035da5eb01736ea6dd5e35ed6f961a0d5cfe7af4b8d13b4a00b80b3252a39996efdb039a10a1e5d44fc33a57133ac5c75444d866e5f8a6c2e778e2ed SHA512 c8f87eb7398f8aff8de74b86dbc33fd50d90485dca4fb1e8bd87d4d697bb9f3670bca7ab11baf47ce5186fcb7067ae74efdbd20896d5a4e0b84c15edafd31dce +DIST kopeninghours-23.04.0.tar.xz 71432 BLAKE2B bbdbb315613d0e7564bf6c9a97747625e4379c88bad69ad34e558138864f1cd8fd318230b0f97fa4cad9c01d3a3db92d45f136073f433f2031dc3777c94a3c39 SHA512 572d755e79da4f1568d6f26f038781981d4bb845f07cb944014fe9d0e39aed013e380825eb88170d23487d3d07edb69945fe4ab0933a13cf1e4b9c3a711367b0 diff --git a/dev-libs/kopeninghours/kopeninghours-23.04.0.ebuild b/dev-libs/kopeninghours/kopeninghours-23.04.0.ebuild new file mode 100644 index 000000000000..bafa38060372 --- /dev/null +++ b/dev-libs/kopeninghours/kopeninghours-23.04.0.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_QTHELP="true" +ECM_TEST="true" +PVCUT=$(ver_cut 1-3) +KFMIN=5.104.0 +QTMIN=5.15.5 +PYTHON_COMPAT=( python3_{9..11} ) +inherit ecm gear.kde.org python-single-r1 + +DESCRIPTION="Library for parsing and evaluating OSM opening hours expressions" +HOMEPAGE="https://api.kde.org/kopeninghours/html/index.html +https://invent.kde.org/libraries/kopeninghours" + +LICENSE="LGPL-2+" +SLOT="5" +KEYWORDS="~amd64" +IUSE="python" + +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +DEPEND=" + >=dev-libs/kpublictransport-${PVCUT}:5 + >=dev-qt/qtdeclarative-${QTMIN}:5 + >=kde-frameworks/kholidays-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + sys-libs/zlib + python? ( + $(python_gen_cond_dep ' + >=dev-libs/boost-1.70:=[python,${PYTHON_USEDEP}] + ') + ) +" +RDEPEND="${DEPEND} + ${PYTHON_DEPS} + >=dev-qt/qtquickcontrols2-${QTMIN}:5 +" +BDEPEND=" + sys-devel/bison + sys-devel/flex +" + +PATCHES=( "${FILESDIR}"/${PN}-22.04.0-boostpython.patch ) + +pkg_setup() { + ecm_pkg_setup + python_setup +} + +src_configure() { + local mycmakeargs=( + -DBOOSTPYTHON_VERSION_MAJOR_MINOR=${EPYTHON} + $(cmake_use_find_package python Boost) + ) + ecm_src_configure +} + +src_install() { + ecm_src_install + python_optimize +} |