summaryrefslogtreecommitdiff
path: root/dev-cpp/cppgir/cppgir-2.0_p20240315.ebuild
diff options
context:
space:
mode:
authorEsteve Varela Colominas <esteve.varela@gmail.com>2025-01-07 19:33:03 +0100
committerSam James <sam@gentoo.org>2025-01-07 19:51:52 +0000
commitd46bef8844da0c8cc12644fc624ee0d13e6b3a26 (patch)
tree44845811b7cd6503c14325943441a5629df20f6d /dev-cpp/cppgir/cppgir-2.0_p20240315.ebuild
parent1289641a284e4a3566601a0c96fe8b3788cdab99 (diff)
downloadgentoo-d46bef8844da0c8cc12644fc624ee0d13e6b3a26.tar.gz
gentoo-d46bef8844da0c8cc12644fc624ee0d13e6b3a26.tar.bz2
gentoo-d46bef8844da0c8cc12644fc624ee0d13e6b3a26.zip
dev-cpp/cppgir: Drop old
Closes: https://bugs.gentoo.org/945862 Signed-off-by: Esteve Varela Colominas <esteve.varela@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/40030 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp/cppgir/cppgir-2.0_p20240315.ebuild')
-rw-r--r--dev-cpp/cppgir/cppgir-2.0_p20240315.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-cpp/cppgir/cppgir-2.0_p20240315.ebuild b/dev-cpp/cppgir/cppgir-2.0_p20240315.ebuild
deleted file mode 100644
index b8b203459ce3..000000000000
--- a/dev-cpp/cppgir/cppgir-2.0_p20240315.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic
-
-DESCRIPTION="GObject-Introspection C++ binding wrapper generator"
-HOMEPAGE="https://gitlab.com/mnauw/cppgir"
-
-MY_PV="1cde1aaa0696ab7989f512abdb0694614ffe8d87"
-SRC_URI="https://gitlab.com/mnauw/cppgir/-/archive/${MY_PV}/cppgir-${MY_PV}.tar.bz2 -> ${P}.tar.bz2"
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~loong ~ppc64 ~riscv"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-libs/boost:=
- dev-libs/libfmt:=
-"
-DEPEND="${RDEPEND}
- dev-cpp/expected-lite
-"
-BDEPEND="
- doc? ( app-text/ronn-ng )
- test? ( dev-libs/glib )
-"
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_DOC=$(usex doc)
- -DBUILD_TESTING=$(usex test)
- -DBUILD_EXAMPLES=no
- -DINTERNAL_EXPECTED=no
- )
-
- append-cppflags \
- -UDEFAULT_GIRPATH \
- -DDEFAULT_GIRPATH="${EPREFIX}/usr/share:${EPREFIX}/usr/local/share"
-
- cmake_src_configure
-}