summaryrefslogtreecommitdiff
path: root/dev-cpp/tomlplusplus
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-cpp/tomlplusplus
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-cpp/tomlplusplus')
-rw-r--r--dev-cpp/tomlplusplus/Manifest1
-rw-r--r--dev-cpp/tomlplusplus/metadata.xml15
-rw-r--r--dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild41
3 files changed, 0 insertions, 57 deletions
diff --git a/dev-cpp/tomlplusplus/Manifest b/dev-cpp/tomlplusplus/Manifest
deleted file mode 100644
index 8fdc90bd67a4..000000000000
--- a/dev-cpp/tomlplusplus/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST tomlplusplus-3.4.0.gh.tar.gz 1294731 BLAKE2B 9495ccd78707ced11744eab7c1c0bf0c0c28e283d186195bb48d1059bae7eb1a874bc964b0fc45210fd73ffd7485ecf3e1159da227d0e1c8ff249e79c08eecf0 SHA512 c227fc8147c9459b29ad24002aaf6ab2c42fac22ea04c1c52b283a0172581ccd4527b33c1931e0ef0d1db6b6a53f9e9882c6d4231c7f3494cf070d0220741aa5
diff --git a/dev-cpp/tomlplusplus/metadata.xml b/dev-cpp/tomlplusplus/metadata.xml
deleted file mode 100644
index e1c27afbcec2..000000000000
--- a/dev-cpp/tomlplusplus/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>julien@jroy.ca</email>
- <name>Julien Roy</name>
- </maintainer>
- <maintainer type="project" proxied="proxy">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <upstream>
- <remote-id type="github">marzer/tomlplusplus</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild b/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
deleted file mode 100644
index 4ac6f2dfc7a2..000000000000
--- a/dev-cpp/tomlplusplus/tomlplusplus-3.4.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="TOML config file parser and serializer"
-HOMEPAGE="
-https://marzer.github.io/tomlplusplus/
-https://github.com/marzer/tomlplusplus
-"
-SRC_URI="https://github.com/marzer/tomlplusplus/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv ~x86"
-
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="dev-build/cmake"
-
-src_configure() {
- local emesonargs=(
- -Dbuild_lib=true
- -Dgenerate_cmake_config=true
- -Duse_vendored_libs=true # for test dependencies, header only and very restrictive version requirements
- $(meson_use test build_tests)
- )
-
- meson_src_configure
-}
-
-src_test() {
- local emesontestargs=(
- 'tests - C'
- )
-
- meson_src_test "${emesontestargs[@]}"
-}