summaryrefslogtreecommitdiff
path: root/dev-cpp/wangle
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-cpp/wangle
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'dev-cpp/wangle')
-rw-r--r--dev-cpp/wangle/Manifest2
-rw-r--r--dev-cpp/wangle/metadata.xml15
-rw-r--r--dev-cpp/wangle/wangle-2024.11.04.00.ebuild68
-rw-r--r--dev-cpp/wangle/wangle-2025.04.14.00.ebuild69
4 files changed, 0 insertions, 154 deletions
diff --git a/dev-cpp/wangle/Manifest b/dev-cpp/wangle/Manifest
deleted file mode 100644
index 0e219585fcaa..000000000000
--- a/dev-cpp/wangle/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST wangle-2024.11.04.00.gh.tar.gz 372838 BLAKE2B 5d6636aa9cbea7f1438269a8c935b93dd5e3c6abef0cc6c668088d883a9b9326f44409649d809c80c08e79c2fa0527fd26a4db7ceed616f27aea2a3921c5ae75 SHA512 d44f3553b04f378935c2a6cf072d6b4a911be3bb71f3480ccdbb269f83c0f62dce4451bcb2edb365d9b398f719c7162269690d07aab07054dafaa55b5b38e0ad
-DIST wangle-2025.04.14.00.gh.tar.gz 368600 BLAKE2B 092e7fcc97016158aeefa64018a0ef4e5e91542d11677d7b20adcda128817f85a7155aee71618add311dcab2dde88d54a19a04da950da4cb05393ca1905e1bd6 SHA512 d3aa8dc6ef184356f520341b858d9064f18a413cccec52d541cb4fc7895f700c1cbbf00ede7ee8ac52d6cc7c0779e68c6078a475ace25f24854c706bbe462798
diff --git a/dev-cpp/wangle/metadata.xml b/dev-cpp/wangle/metadata.xml
deleted file mode 100644
index 54af2041c101..000000000000
--- a/dev-cpp/wangle/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person" proxied="yes">
- <email>sin-ack@protonmail.com</email>
- <name>sin-ack</name>
- </maintainer>
- <maintainer type="project" proxied="proxy">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <upstream>
- <remote-id type="github">facebook/wangle</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-cpp/wangle/wangle-2024.11.04.00.ebuild b/dev-cpp/wangle/wangle-2024.11.04.00.ebuild
deleted file mode 100644
index d128a98c554a..000000000000
--- a/dev-cpp/wangle/wangle-2024.11.04.00.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 2022-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# These must be bumped together:
-# dev-cpp/edencommon
-# dev-cpp/fb303
-# dev-cpp/fbthrift
-# dev-cpp/fizz
-# dev-cpp/folly
-# dev-cpp/mvfst
-# dev-cpp/wangle
-# dev-util/watchman
-
-CMAKE_USE_DIR="${S}/wangle"
-
-inherit cmake
-
-DESCRIPTION="A framework providing common abstractions for building services"
-HOMEPAGE="https://github.com/facebook/wangle"
-SRC_URI="https://github.com/facebook/wangle/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm64"
-IUSE="test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- ~dev-cpp/fizz-${PV}:=
- ~dev-cpp/folly-${PV}:=
- dev-cpp/gflags:=
- dev-cpp/glog:=[gflags]
- dev-libs/libevent:=
- dev-libs/libfmt:=
-"
-DEPEND="
- ${RDEPEND}
- test? ( dev-cpp/gtest )
-"
-
-src_configure() {
- local mycmakeargs=(
- -DCMAKE_INSTALL_DIR="$(get_libdir)/cmake/${PN}"
- -DLIB_INSTALL_DIR="$(get_libdir)"
- -DBUILD_TESTS="$(usex test ON OFF)"
- )
-
- cmake_src_configure
-}
-
-src_test() {
- CMAKE_SKIP_TESTS=(
- # These tests expect test certificates to be present in /usr/include/folly/io/async/test/certs/, which folly
- # doesn't install.
- SSLContextManagerTest
- )
-
- if use arm64; then
- # This test fails on arm64.
- # https://github.com/facebook/wangle/issues/241
- CMAKE_SKIP_TESTS+=(TLSInMemoryTicketProcessorTest)
- fi
-
- cmake_src_test
-}
diff --git a/dev-cpp/wangle/wangle-2025.04.14.00.ebuild b/dev-cpp/wangle/wangle-2025.04.14.00.ebuild
deleted file mode 100644
index 469817a89705..000000000000
--- a/dev-cpp/wangle/wangle-2025.04.14.00.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 2022-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# These must be bumped together:
-# dev-cpp/edencommon
-# dev-cpp/fb303
-# dev-cpp/fbthrift
-# dev-cpp/fizz
-# dev-cpp/folly
-# dev-cpp/mvfst
-# dev-cpp/wangle
-# dev-util/watchman
-
-CMAKE_USE_DIR="${S}/wangle"
-
-inherit cmake
-
-DESCRIPTION="A framework providing common abstractions for building services"
-HOMEPAGE="https://github.com/facebook/wangle"
-SRC_URI="https://github.com/facebook/wangle/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm64"
-IUSE="test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- ~dev-cpp/fizz-${PV}:=
- ~dev-cpp/folly-${PV}:=
- dev-cpp/gflags:=
- dev-cpp/glog:=[gflags]
- dev-libs/double-conversion:=
- dev-libs/libfmt:=
- dev-libs/openssl:=
-"
-DEPEND="
- ${RDEPEND}
- test? ( dev-cpp/gtest )
-"
-
-src_configure() {
- local mycmakeargs=(
- -DCMAKE_INSTALL_DIR="$(get_libdir)/cmake/${PN}"
- -DLIB_INSTALL_DIR="$(get_libdir)"
- -DBUILD_TESTS="$(usex test ON OFF)"
- )
-
- cmake_src_configure
-}
-
-src_test() {
- CMAKE_SKIP_TESTS=(
- # These tests expect test certificates to be present in /usr/include/folly/io/async/test/certs/, which folly
- # doesn't install.
- SSLContextManagerTest
- )
-
- if use arm64; then
- # This test fails on arm64.
- # https://github.com/facebook/wangle/issues/241
- CMAKE_SKIP_TESTS+=(TLSInMemoryTicketProcessorTest)
- fi
-
- cmake_src_test
-}