public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/gsl/
@ 2017-11-07  9:02 David Seifert
  0 siblings, 0 replies; 2+ messages in thread
From: David Seifert @ 2017-11-07  9:02 UTC (permalink / raw
  To: gentoo-commits

commit:     100eae3223595fdc8cf82a66f593bed85aac93bf
Author:     Jan Henke <Jan.Henke <AT> taujhe <DOT> de>
AuthorDate: Sun Nov  5 21:53:56 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Nov  7 09:01:51 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=100eae32

dev-cpp/gsl: Initial addition

Closes: https://github.com/gentoo/gentoo/pull/6135

 dev-cpp/gsl/Manifest                 |  1 +
 dev-cpp/gsl/gsl-0_pre20171105.ebuild | 24 ++++++++++++++++++++++++
 dev-cpp/gsl/metadata.xml             | 16 ++++++++++++++++
 3 files changed, 41 insertions(+)

diff --git a/dev-cpp/gsl/Manifest b/dev-cpp/gsl/Manifest
new file mode 100644
index 00000000000..3b53acf9b7e
--- /dev/null
+++ b/dev-cpp/gsl/Manifest
@@ -0,0 +1 @@
+DIST gsl-0_pre20171105.tar.gz 55870 SHA256 5adc4b4ba53102099f63b898da161469a854d4fd47e90195421fbe8bd8b50352 SHA512 0db9cae9af710c45f66d1e2b73e2002f921876d400165d13dbe9ede7aa9335249458a9f97d4eda4cff0b3a5ceebb6ef84b631310921011fedee8776fcec89e6a WHIRLPOOL 98e26057646f6be4cc6632901b2b45c5e46218e9048cd64561f7f118ee0e8feadeca3ca66a0b73a36a431b666fe7946c6f864dbcf97296bae3945b2350dcf2e5

diff --git a/dev-cpp/gsl/gsl-0_pre20171105.ebuild b/dev-cpp/gsl/gsl-0_pre20171105.ebuild
new file mode 100644
index 00000000000..78ac010145e
--- /dev/null
+++ b/dev-cpp/gsl/gsl-0_pre20171105.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2017 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/d10ebc6555b627c9d1196076a78467e7be505987 -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+# header only library
+RDEPEND=""
+DEPEND="test? ( >=dev-cpp/catch-1.11.0 )"
+
+src_configure() {
+	local mycmakeargs=( -DGSL_TEST=$(usex test) )
+	cmake-utils_src_configure
+}

diff --git a/dev-cpp/gsl/metadata.xml b/dev-cpp/gsl/metadata.xml
new file mode 100644
index 00000000000..57bf76b9210
--- /dev/null
+++ b/dev-cpp/gsl/metadata.xml
@@ -0,0 +1,16 @@
+<?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>
+		<description>Jan Henke</description>
+	</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>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-cpp/gsl/
@ 2017-12-23 15:14 Craig Andrews
  0 siblings, 0 replies; 2+ messages in thread
From: Craig Andrews @ 2017-12-23 15:14 UTC (permalink / raw
  To: gentoo-commits

commit:     54afb9aad4f99e358d75019fb16aef9c622a8acb
Author:     Jan Henke <Jan.Henke <AT> taujhe <DOT> de>
AuthorDate: Tue Dec 19 21:26:36 2017 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sat Dec 23 15:14:40 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54afb9aa

dev-cpp/gsl: Fix tests

Actually apply the patch as well.

Closes: https://bugs.gentoo.org/636828

 dev-cpp/gsl/gsl-0_pre20171105.ebuild | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dev-cpp/gsl/gsl-0_pre20171105.ebuild b/dev-cpp/gsl/gsl-0_pre20171105.ebuild
index 78ac010145e..ae775ff3f8c 100644
--- a/dev-cpp/gsl/gsl-0_pre20171105.ebuild
+++ b/dev-cpp/gsl/gsl-0_pre20171105.ebuild
@@ -18,6 +18,10 @@ IUSE="test"
 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) )
 	cmake-utils_src_configure


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-12-23 15:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-07  9:02 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/gsl/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2017-12-23 15:14 Craig Andrews

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox