From 9ecdcfa46d8257a208dac1edc65aea2ccf11a799 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 14 Mar 2023 18:19:08 +0000 Subject: gentoo auto-resync : 14:03:2023 - 18:19:08 --- dev-util/blueprint-compiler/Manifest | 2 +- .../blueprint-compiler-0.6.0-r1.ebuild | 66 ++++++++++++++++++++++ .../blueprint-compiler-0.6.0.ebuild | 64 --------------------- 3 files changed, 67 insertions(+), 65 deletions(-) create mode 100644 dev-util/blueprint-compiler/blueprint-compiler-0.6.0-r1.ebuild delete mode 100644 dev-util/blueprint-compiler/blueprint-compiler-0.6.0.ebuild (limited to 'dev-util/blueprint-compiler') diff --git a/dev-util/blueprint-compiler/Manifest b/dev-util/blueprint-compiler/Manifest index 489fe5c7c8d7..4d553b30c36c 100644 --- a/dev-util/blueprint-compiler/Manifest +++ b/dev-util/blueprint-compiler/Manifest @@ -1,3 +1,3 @@ DIST blueprint-compiler-v0.6.0.tar.bz2 56896 BLAKE2B 318ffa52b2fbf3b07058e5b4d2f9bb0ef1f6614586b79968889921964b454e5c26d44e58a18185263797f7569135662d14471bafd8e501d7c6386e88972193d0 SHA512 458016f4eabef15026cb3ee675111984b19af8a9139bc412dfb48dfef56b0d0ff028316001d0ce04a90b50d6785c92d799f17ed42ca53fc7582345729ae02207 -EBUILD blueprint-compiler-0.6.0.ebuild 1316 BLAKE2B cda7da45a84d7fce71fe5841b8310d350e129b6dc4fa09070e28bd2b601fe3b0f8e15b41202940a9304e8d767a2c1fed8b0c27335d552004a8c518a6f7a48331 SHA512 a81de37e626a0791e43a1594f393265e9b902d58470dd71e9076e46217a7b3a246e00f14b4c7da67feef5e018b23d874da06331fee41bdf197aac0abee21f63c +EBUILD blueprint-compiler-0.6.0-r1.ebuild 1316 BLAKE2B 4e6cc4c28d002c1e34a89e18b737be39691da0cab505b05832ed9065c1d2a573bdd753cc5dc4b60f106520d651da03fde8c20a7063f0ea072e96084453c0d78b SHA512 fb1b64f7d156a1604bc87b8937cb6596b007cfcceaa3e27ff0c07da57b7d3d35ad76d51a06c975aa21e9f368aa23e83f68111eda045e62bb598a12aaff13e278 MISC metadata.xml 906 BLAKE2B 8426e8a64268f0c3310028be81cc727a63ddd67df842d59eae80c55b12c41f446107cc61ed11c115da8b4cc9a67bb16b1d5c9dc09e541f41901eac29611f3e9d SHA512 3af397704e2717cbba16c890af04066cd67f40c1cc477429d3c53b713c079101036a17e788c0f5e316799cbfc8329356686ad129bfbed409002d96df3159d480 diff --git a/dev-util/blueprint-compiler/blueprint-compiler-0.6.0-r1.ebuild b/dev-util/blueprint-compiler/blueprint-compiler-0.6.0-r1.ebuild new file mode 100644 index 000000000000..26026e99abb1 --- /dev/null +++ b/dev-util/blueprint-compiler/blueprint-compiler-0.6.0-r1.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) + +inherit meson python-single-r1 + +DESCRIPTION="Compiler for Blueprint, a markup language for GTK user interfaces" +HOMEPAGE="https://jwestman.pages.gitlab.gnome.org/blueprint-compiler/ + https://gitlab.gnome.org/jwestman/blueprint-compiler/" + +if [[ ${PV} == *9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.gnome.org/jwestman/${PN}.git" +else + SRC_URI="https://gitlab.gnome.org/jwestman/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2" + S="${WORKDIR}"/${PN}-v${PV} + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="LGPL-3+" +SLOT="0" +IUSE="doc test" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" +RESTRICT="!test? ( test )" + +RDEPEND=" + ${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-python/pygobject:3[${PYTHON_USEDEP}] + ') +" +BDEPEND=" + ${RDEPEND} + doc? ( + $(python_gen_cond_dep ' + dev-python/furo[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] + ') + ) + test? ( + gui-libs/gtk:4[introspection] + ) +" + +DOCS=( CONTRIBUTING.md MAINTENANCE.md NEWS.md README.md ) + +src_configure() { + local -a emesonargs=( + $(meson_use doc docs) + ) + meson_src_configure +} + +src_compile() { + meson_src_compile + + use doc && build_sphinx docs +} + +src_install() { + meson_src_install + python_optimize +} diff --git a/dev-util/blueprint-compiler/blueprint-compiler-0.6.0.ebuild b/dev-util/blueprint-compiler/blueprint-compiler-0.6.0.ebuild deleted file mode 100644 index b54ac7882f03..000000000000 --- a/dev-util/blueprint-compiler/blueprint-compiler-0.6.0.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) - -inherit meson python-single-r1 - -DESCRIPTION="Compiler for Blueprint, a markup language for GTK user interfaces" -HOMEPAGE="https://jwestman.pages.gitlab.gnome.org/blueprint-compiler/ - https://gitlab.gnome.org/jwestman/blueprint-compiler/" - -if [[ ${PV} == *9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://gitlab.gnome.org/jwestman/${PN}.git" -else - SRC_URI="https://gitlab.gnome.org/jwestman/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2" - S="${WORKDIR}"/${PN}-v${PV} - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="LGPL-3+" -SLOT="0" -IUSE="doc test" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RESTRICT="!test? ( test )" - -RDEPEND="${PYTHON_DEPS}" -BDEPEND=" - ${RDEPEND} - doc? ( - $(python_gen_cond_dep ' - dev-python/furo[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] - ') - ) - test? ( - gui-libs/gtk:4[introspection] - $(python_gen_cond_dep ' - dev-python/pygobject:3[${PYTHON_USEDEP}] - ') - ) -" - -DOCS=( CONTRIBUTING.md MAINTENANCE.md NEWS.md README.md ) - -src_configure() { - local -a emesonargs=( - $(meson_use doc docs) - ) - meson_src_configure -} - -src_compile() { - meson_src_compile - - use doc && build_sphinx docs -} - -src_install() { - meson_src_install - python_optimize -} -- cgit v1.2.3