summaryrefslogtreecommitdiff
path: root/dev-cpp/scnlib
diff options
context:
space:
mode:
Diffstat (limited to 'dev-cpp/scnlib')
-rw-r--r--dev-cpp/scnlib/Manifest1
-rw-r--r--dev-cpp/scnlib/metadata.xml8
-rw-r--r--dev-cpp/scnlib/scnlib-4.0.1.ebuild36
3 files changed, 0 insertions, 45 deletions
diff --git a/dev-cpp/scnlib/Manifest b/dev-cpp/scnlib/Manifest
deleted file mode 100644
index a91c931fc9e1..000000000000
--- a/dev-cpp/scnlib/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST scnlib-4.0.1.tar.gz 434107 BLAKE2B 6f7347f739bc90723338e2da912701cacc376121c0c62bbfd51d7ed80a07dd00c801bbf82113a24ca342d887942a19f29cc84ca869d2572b2689e963042ef2a6 SHA512 db14d71da3c1ecb849f00ac1e334f39c532592230e950aa1009ff00ba56670cb71e33ca457fd4ac66595ff43f0dca0e42d45f672848b9cde3cba80f19ef8693f
diff --git a/dev-cpp/scnlib/metadata.xml b/dev-cpp/scnlib/metadata.xml
deleted file mode 100644
index 42c88916d57d..000000000000
--- a/dev-cpp/scnlib/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <upstream>
- <remote-id type="github">eliaskosunen/scnlib</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-cpp/scnlib/scnlib-4.0.1.ebuild b/dev-cpp/scnlib/scnlib-4.0.1.ebuild
deleted file mode 100644
index ab938178a36d..000000000000
--- a/dev-cpp/scnlib/scnlib-4.0.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="scanf for modern C++ "
-HOMEPAGE="https://www.scnlib.dev/"
-SRC_URI="https://github.com/eliaskosunen/scnlib/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-BDEPEND="
- test? ( dev-cpp/gtest )
-"
-
-RESTRICT="!test? ( test )"
-
-src_configure() {
- local mycmakeargs=(
- -DSCN_BENCHMARKS=OFF
- -DSCN_BENCHMARKS_BINARYSIZE=OFF
- -DSCN_BENCHMARKS_BUILDTIME=OFF
- -DSCN_DISABLE_FAST_FLOAT=ON
- -DSCN_DOCS=OFF
- -DSCN_EXAMPLES=$(usex test ON OFF)
- -DSCN_TESTS=$(usex test ON OFF)
- -DSCN_USE_EXTERNAL_FAST_FLOAT=ON
- -DSCN_USE_EXTERNAL_GTEST=ON
- )
- cmake_src_configure
-}