summaryrefslogtreecommitdiff
path: root/dev-cpp/gsl
diff options
context:
space:
mode:
Diffstat (limited to 'dev-cpp/gsl')
-rw-r--r--dev-cpp/gsl/Manifest4
-rw-r--r--dev-cpp/gsl/files/gsl-0_pre20180108-use_system_catch-636828.patch21
-rw-r--r--dev-cpp/gsl/gsl-0_pre20180108.ebuild31
-rw-r--r--dev-cpp/gsl/metadata.xml16
4 files changed, 0 insertions, 72 deletions
diff --git a/dev-cpp/gsl/Manifest b/dev-cpp/gsl/Manifest
deleted file mode 100644
index 54f49c530a46..000000000000
--- a/dev-cpp/gsl/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX gsl-0_pre20180108-use_system_catch-636828.patch 559 BLAKE2B 899f98f0b3e9b0f04cf0db9e74931113ee1d5ef77d5e016df9969abc5ea02d6a90736fa3cb37b5f3cc6ec5b4092a2660f610f636386d5de3c6e6e9b61fce0501 SHA512 4bfd90b1567fa708d9c51c78edb51974aae9158f456077a305de5d7d279686d85e593bba5c2bae477eb50880f731626192765b6122db6afcd383596d1a1e00dc
-DIST gsl-0_pre20180108.tar.gz 57335 BLAKE2B 7221828d433dfe13e500b57b1da5b828aadc95b0c210327dd25713ce7f5b0629a7067cd8ed2ef30e11c8b8a58fa424b1edc3d374440770ee814c4c3e372038d6 SHA512 7684c8ae7ad9d0624d2f1e3531b942e7a98960f60698e4c212998ddc2ac4651fccfe5fea66d1a22133b9cba4567ba4253b022f8826f069d2e2633b3074d4f640
-EBUILD gsl-0_pre20180108.ebuild 693 BLAKE2B c4bd89221cf43635a9531cc42537a18258aa1013ca14914de6442534543c04c74e82ea99a75cfe300dead36bc48cfff53e9e51cc2171bf893070c8e06df94680 SHA512 5be04db011e6cf768f1922846a8594d0179678b8155be68560065bde96e028ce5dea1235d175b9b327f72252b8a8f9df0c56a5bf5d394281cae5987d74420686
-MISC metadata.xml 532 BLAKE2B ed7921df36553a0104d453583f96796d9b0c4cf1d45364fa0e9a8a7054e847f32056e3726b0f7c9e036cff0f31d53015d37219049a45547e0787722c4be65fdb SHA512 7a1971470483fe40c26cf6576db01ee90af3fd0818d6605b0b1b6ac9f09e1379382bccdcc37ab351fbeae3b6e7760dd06af21341ceaa212025fc58162b75c1c1
diff --git a/dev-cpp/gsl/files/gsl-0_pre20180108-use_system_catch-636828.patch b/dev-cpp/gsl/files/gsl-0_pre20180108-use_system_catch-636828.patch
deleted file mode 100644
index 12d92605dda8..000000000000
--- a/dev-cpp/gsl/files/gsl-0_pre20180108-use_system_catch-636828.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Add CMake option to disable upstream's catch download, we always want to use the
-system wide installed version. Gentoo bug 636828.
-
-diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
-index 86ce5a4..b36df56 100644
---- a/tests/CMakeLists.txt
-+++ b/tests/CMakeLists.txt
-@@ -10,7 +10,9 @@ list(APPEND CATCH_CMAKE_ARGS
- "-DNO_SELFTEST=true"
- )
-
--if(GIT_FOUND)
-+option(FORCE_SYSTEM_CATCH "Force usage of system-wide catch install" OFF)
-+
-+if(NOT ${FORCE_SYSTEM_CATCH} AND GIT_FOUND)
- # add catch
- ExternalProject_Add(
- catch
---
-2.13.6
-
diff --git a/dev-cpp/gsl/gsl-0_pre20180108.ebuild b/dev-cpp/gsl/gsl-0_pre20180108.ebuild
deleted file mode 100644
index 95ee05e9cd36..000000000000
--- a/dev-cpp/gsl/gsl-0_pre20180108.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils vcs-snapshot
-
-DESCRIPTION="Guideline Support Library implementation by Microsoft"
-HOMEPAGE="https://github.com/Microsoft/GSL"
-SRC_URI="https://github.com/Microsoft/${PN}/tarball/9d65e74400976b3509833f49b16d401600c7317d -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-# header only library
-RDEPEND=""
-DEPEND="test? ( >=dev-cpp/catch-1.11.0 )"
-
-PATCHES=(
- "${FILESDIR}/${P}-use_system_catch-636828.patch"
-)
-
-src_configure() {
- local mycmakeargs=(
- -DGSL_TEST=$(usex test)
- -DFORCE_SYSTEM_CATCH=ON
- )
- cmake-utils_src_configure
-}
diff --git a/dev-cpp/gsl/metadata.xml b/dev-cpp/gsl/metadata.xml
deleted file mode 100644
index b1f7b8de77fb..000000000000
--- a/dev-cpp/gsl/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>gentoo@taujhe.de</email>
- <name>Jan Henke</name>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <longdescription>Microsoft's implmentation of the Guideline Support Library.</longdescription>
- <upstream>
- <remote-id type="github">Microsoft/GSL</remote-id>
- </upstream>
-</pkgmetadata>