summaryrefslogtreecommitdiff
path: root/dev-cpp/units
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/units
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-cpp/units')
-rw-r--r--dev-cpp/units/Manifest1
-rw-r--r--dev-cpp/units/metadata.xml11
-rw-r--r--dev-cpp/units/units-3.3.0.ebuild27
3 files changed, 0 insertions, 39 deletions
diff --git a/dev-cpp/units/Manifest b/dev-cpp/units/Manifest
deleted file mode 100644
index 7c3f1c5f581b..000000000000
--- a/dev-cpp/units/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST units-3.3.0.tar.gz 1198638 BLAKE2B db2f821fc831835d00ca3a1284ec54050bc8c3017913f5bb835898bffd3a3f529380f89b9e29e091bb781e091a1f41dc3bbc9f4b2e57f257fafa196b81ab8195 SHA512 9cedc52e0405140b9a8014195f59f4deb2edd155fe78df76005eb721974c2a640975d9b959777be48f41c24f6a0a7047536649958da847e2aa8b0c3b9a6d139a
diff --git a/dev-cpp/units/metadata.xml b/dev-cpp/units/metadata.xml
deleted file mode 100644
index 46d087b560aa..000000000000
--- a/dev-cpp/units/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
-<pkgmetadata>
- <maintainer type="person">
- <email>kostadinshishmanov@protonmail.com</email>
- <name>Kostadin Shishmanov</name>
- </maintainer>
- <upstream>
- <remote-id type="github">nholthaus/units</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-cpp/units/units-3.3.0.ebuild b/dev-cpp/units/units-3.3.0.ebuild
deleted file mode 100644
index 1fc603ae2ab8..000000000000
--- a/dev-cpp/units/units-3.3.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="A compile-time, header-only, dimensional analysis and unit conversion library"
-HOMEPAGE="https://github.com/nholthaus/units"
-SRC_URI="https://github.com/nholthaus/units/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="test? ( >=dev-cpp/gtest-1.17.0 )"
-
-src_configure() {
- local mycmakeargs+=(
- -DBUILD_TESTING="$(usex test ON OFF)"
- -DUNITS_BUILD_TESTS="$(usex test ON OFF)"
- )
- cmake_src_configure
-}