summaryrefslogtreecommitdiff
path: root/dev-cpp
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-08-06 06:24:05 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-08-06 06:24:05 +0000
commitce06bfef04eb51813858eb7bbf0a90e63db7fb6a (patch)
treeadedbc0a9b555278e0b8f81d82ade9f7190c3950 /dev-cpp
parent40ba211fdc9b6a08efb34bcaf4e922ed47078011 (diff)
downloadbaldeagleos-repo-ce06bfef04eb51813858eb7bbf0a90e63db7fb6a.tar.gz
baldeagleos-repo-ce06bfef04eb51813858eb7bbf0a90e63db7fb6a.tar.xz
baldeagleos-repo-ce06bfef04eb51813858eb7bbf0a90e63db7fb6a.zip
Adding metadata
Diffstat (limited to 'dev-cpp')
-rw-r--r--dev-cpp/catch/catch-3.4.0.ebuild2
-rw-r--r--dev-cpp/simpleini/Manifest1
-rw-r--r--dev-cpp/simpleini/simpleini-4.19.ebuild40
3 files changed, 1 insertions, 42 deletions
diff --git a/dev-cpp/catch/catch-3.4.0.ebuild b/dev-cpp/catch/catch-3.4.0.ebuild
index 962c8b89a821..8bb1687b77be 100644
--- a/dev-cpp/catch/catch-3.4.0.ebuild
+++ b/dev-cpp/catch/catch-3.4.0.ebuild
@@ -15,7 +15,7 @@ else
SRC_URI="https://github.com/catchorg/Catch2/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
- KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv ~s390 sparc ~x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Modern C++ header-only framework for unit-tests"
diff --git a/dev-cpp/simpleini/Manifest b/dev-cpp/simpleini/Manifest
index fe11c1acfa25..e850a145f63c 100644
--- a/dev-cpp/simpleini/Manifest
+++ b/dev-cpp/simpleini/Manifest
@@ -1,2 +1 @@
-DIST simpleini-4.19.tar.gz 62793 BLAKE2B f32a25743c89f954a0b1cce2cb29584d63083922b9b56d91b39412617067f7316ecb897474a7f3a4d550569a0d007e51780d3532079966a7ba72e2b89ff5a5cc SHA512 3f0f3120aca3350bab66fe1727f4d15536d933a0840a17b49203c2220fab7ace4383d856c1b77a84f4e36c9a5df0c3eb937ad729c977f84e7163d7e2cff400c5
DIST simpleini-4.20.tar.gz 64807 BLAKE2B 5179fbdc1a46b352590a20bcaafa88d905d75ef3334becc03caf11f5b8c4bd3673971d688f9ec0077af3192244b29befd217dfa4ef218594f68c917698727b72 SHA512 e2518d10d63026b0fd423cbd77372b60bc693e8ec1878a91ab05364a49b48d38d8d379247a27a8ffc5582ba19e333b10996f4bf48899c06c567ae0dea067a9e3
diff --git a/dev-cpp/simpleini/simpleini-4.19.ebuild b/dev-cpp/simpleini/simpleini-4.19.ebuild
deleted file mode 100644
index acd530cf090e..000000000000
--- a/dev-cpp/simpleini/simpleini-4.19.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="C++ library providing a simple API to read and write INI-style files"
-HOMEPAGE="https://github.com/brofield/simpleini/"
-SRC_URI="https://github.com/brofield/simpleini/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="test? ( dev-cpp/gtest )"
-BDEPEND="test? ( virtual/pkgconfig )"
-
-src_compile() {
- if use test; then
- append-cppflags $($(tc-getPKG_CONFIG) --cflags gtest_main || die)
- append-ldflags $(test-flags-CCLD -pthread)
- append-libs $($(tc-getPKG_CONFIG) --libs gtest_main || die)
- local emakeargs=(
- {CC,CXX}="$(tc-getCXX)"
- CXXFLAGS="${CXXFLAGS}"
- CPPFLAGS="${CPPFLAGS}"
- LDFLAGS="${LDFLAGS} ${LIBS}"
- )
- emake -C tests "${emakeargs[@]}"
- fi
-}
-
-src_install() {
- # note: skipping ConvertUTF, can use -DSI_CONVERT_ICU instead if needed
- doheader SimpleIni.h
- einstalldocs
-}