diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-cpp/coeurl | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-cpp/coeurl')
| -rw-r--r-- | dev-cpp/coeurl/Manifest | 2 | ||||
| -rw-r--r-- | dev-cpp/coeurl/coeurl-0.3.1.ebuild | 68 | ||||
| -rw-r--r-- | dev-cpp/coeurl/coeurl-0.3.2.ebuild | 68 | ||||
| -rw-r--r-- | dev-cpp/coeurl/metadata.xml | 5 |
4 files changed, 0 insertions, 143 deletions
diff --git a/dev-cpp/coeurl/Manifest b/dev-cpp/coeurl/Manifest deleted file mode 100644 index 6bb0d0eb7ad9..000000000000 --- a/dev-cpp/coeurl/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST coeurl-0.3.1.tar.bz2 46513 BLAKE2B 8a80ece8449ced486c56114fba1c544eebc25d165daac630c5d1f3af6d8c4dfd96361afc51d3d4f92fabeff0cdc61dcea9a068c915b3dbd8cc6e7a8bf3baf0a7 SHA512 d9369162ef75a40cafaec88e6b32b6a28daf293691ca017b97b0e4900ae6960f4956124cb8b9ebc3659e174dd55c51441225e212e5c1dbad88413a71faa8c718 -DIST coeurl-0.3.2.tar.bz2 47879 BLAKE2B 5b496b400d6637f897b57d270ef132bc056a237cf23cac5be9e7f72791870876e634be30f3f6bce3325dcbe56b4223faf51fb426707d212e632c666626aa993c SHA512 93370dcf179acb9449746ef606c475e2a2f61308cb662c5d607144df74677c51b42ed3093c5b8f47dd030e91dee8f0b640a927ce8320e29a34d6bfbe04cf4a63 diff --git a/dev-cpp/coeurl/coeurl-0.3.1.ebuild b/dev-cpp/coeurl/coeurl-0.3.1.ebuild deleted file mode 100644 index a111aafd162e..000000000000 --- a/dev-cpp/coeurl/coeurl-0.3.1.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 2021-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{13..14} ) -inherit edo meson python-any-r1 - -DESCRIPTION="A simple async wrapper around CURL for C++" -HOMEPAGE="https://nheko.im/nheko-reborn/coeurl" -SRC_URI="https://nheko.im/nheko-reborn/coeurl/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2" -S="${WORKDIR}/${PN}-v${PV}" - -LICENSE="MIT" -SLOT="0/$(ver_cut 1-2)" -KEYWORDS="~amd64" -IUSE="ssl test" -REQUIRED_USE="test? ( ssl )" -RESTRICT="!test? ( test )" - -RDEPEND=" - net-misc/curl[ssl?] - dev-libs/libevent:= - dev-libs/libfmt:= - dev-libs/spdlog:= -" -DEPEND=" - ${RDEPEND} - test? ( dev-cpp/doctest ) -" -BDEPEND=" - test? ( - dev-libs/openssl - $(python_gen_any_dep 'dev-python/flask[${PYTHON_USEDEP}]') - ) -" - -python_check_deps() { - use test || return 0 # python is only used for tests, bug #911504 - - python_has_version "dev-python/flask[${PYTHON_USEDEP}]" -} - -src_prepare() { - default - rm -r subprojects || die -} - -src_configure() { - local -a emesonargs=( - $(meson_use test tests) - ) - meson_src_configure -} - -src_test() { - openssl req -x509 -newkey rsa:4096 -nodes \ - -out "${T}"/cert.pem -keyout "${T}"/key.pem \ - -days 365 -subj "/CN=localhost" || die - - edo ${EPYTHON} ./tests/testserver.py & - sleep 3 - - edo ${EPYTHON} ./tests/testserver.py "${T}" & - sleep 3 - - meson_src_test -} diff --git a/dev-cpp/coeurl/coeurl-0.3.2.ebuild b/dev-cpp/coeurl/coeurl-0.3.2.ebuild deleted file mode 100644 index 358329c1d4c9..000000000000 --- a/dev-cpp/coeurl/coeurl-0.3.2.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 2021-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{13..14} ) -inherit edo meson python-any-r1 - -DESCRIPTION="Simple async wrapper around CURL for C++" -HOMEPAGE="https://nheko.im/nheko-reborn/coeurl" -SRC_URI="https://nheko.im/nheko-reborn/coeurl/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2" -S="${WORKDIR}/${PN}-v${PV}" - -LICENSE="MIT" -SLOT="0/$(ver_cut 1-2)" -KEYWORDS="~amd64" -IUSE="ssl test" -REQUIRED_USE="test? ( ssl )" -RESTRICT="!test? ( test )" - -RDEPEND=" - net-misc/curl[ssl?] - dev-libs/libevent:= - dev-libs/libfmt:= - dev-libs/spdlog:= -" -DEPEND=" - ${RDEPEND} - test? ( dev-cpp/doctest ) -" -BDEPEND=" - test? ( - dev-libs/openssl - $(python_gen_any_dep 'dev-python/flask[${PYTHON_USEDEP}]') - ) -" - -python_check_deps() { - use test || return 0 # python is only used for tests, bug #911504 - - python_has_version "dev-python/flask[${PYTHON_USEDEP}]" -} - -src_prepare() { - default - rm -r subprojects || die -} - -src_configure() { - local -a emesonargs=( - $(meson_use test tests) - ) - meson_src_configure -} - -src_test() { - openssl req -x509 -newkey rsa:4096 -nodes \ - -out "${T}"/cert.pem -keyout "${T}"/key.pem \ - -days 365 -subj "/CN=localhost" || die - - edo ${EPYTHON} ./tests/testserver.py & - sleep 3 - - edo ${EPYTHON} ./tests/testserver.py "${T}" & - sleep 3 - - meson_src_test -} diff --git a/dev-cpp/coeurl/metadata.xml b/dev-cpp/coeurl/metadata.xml deleted file mode 100644 index 115e9d64a669..000000000000 --- a/dev-cpp/coeurl/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> -</pkgmetadata> |
