public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/gsl-lite/
@ 2021-04-11  5:50 Brian Gloyer
  0 siblings, 0 replies; 2+ messages in thread
From: Brian Gloyer @ 2021-04-11  5:50 UTC (permalink / raw
  To: gentoo-commits

commit:     f466b3de801f51d82c0bb1b7effffd6229087c2d
Author:     brian gloyer <brian.gloyer <AT> gmail <DOT> com>
AuthorDate: Sun Apr 11 05:29:43 2021 +0000
Commit:     Brian Gloyer <brian.gloyer <AT> gmail <DOT> com>
CommitDate: Sun Apr 11 05:38:34 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f466b3de

dev-cpp/gsl-lite: new package

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: brian gloyer <brian.gloyer <AT> gmail.com>

 dev-cpp/gsl-lite/Manifest               |  1 +
 dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild | 27 +++++++++++++++++++++++++++
 dev-cpp/gsl-lite/metadata.xml           |  8 ++++++++
 3 files changed, 36 insertions(+)

diff --git a/dev-cpp/gsl-lite/Manifest b/dev-cpp/gsl-lite/Manifest
new file mode 100644
index 000000000..df22a067b
--- /dev/null
+++ b/dev-cpp/gsl-lite/Manifest
@@ -0,0 +1 @@
+DIST gsl-lite-0.38.0.tar.gz 120838 BLAKE2B 8ead324b357480e34a4c867bde5e81424128d75e81e229f61079423f8f383d0d746961c085830db02fc5892eca94ac4b407613674da30ba106c620c148a7a41b SHA512 7f73c600800ce375e231e0904c569f0d3beb8ce2790c1f66208d1c5097bed0abd1e82e72cf0051f0bbb09a4e5939d6637b09b8978d91859fc039a42adccdde36

diff --git a/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild b/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild
new file mode 100644
index 000000000..ebd5b7b41
--- /dev/null
+++ b/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="C++ Guideline Support Library implementation"
+HOMEPAGE="https://github.com/gsl-lite/gsl-lite"
+SRC_URI="https://github.com/gsl-lite/gsl-lite/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+# header only library
+RDEPEND=""
+DEPEND=""
+
+src_configure() {
+	local mycmakeargs=(
+		-DGSL_LITE_OPT_BUILD_TESTS=$(usex test)
+	)
+	cmake_src_configure
+}

diff --git a/dev-cpp/gsl-lite/metadata.xml b/dev-cpp/gsl-lite/metadata.xml
new file mode 100644
index 000000000..918ede3f2
--- /dev/null
+++ b/dev-cpp/gsl-lite/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>brian.gloyer@gmail.com</email>
+    <name>brian gloyer</name>
+  </maintainer>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/gsl-lite/
@ 2021-04-23  6:18 Brian Gloyer
  0 siblings, 0 replies; 2+ messages in thread
From: Brian Gloyer @ 2021-04-23  6:18 UTC (permalink / raw
  To: gentoo-commits

commit:     3ee8cf71ffe42d630b5f0612a6efa9dd648a2b2e
Author:     brian gloyer <brian.gloyer <AT> gmail <DOT> com>
AuthorDate: Fri Apr 23 06:10:05 2021 +0000
Commit:     Brian Gloyer <brian.gloyer <AT> gmail <DOT> com>
CommitDate: Fri Apr 23 06:13:43 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3ee8cf71

dev-cpp/gsl-lite: Drop -Werror

Closes: https://bugs.gentoo.org/783981
Closes: https://bugs.gentoo.org/784014
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: brian gloyer <brian.gloyer <AT> gmail.com>

 dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild b/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild
index ebd5b7b41..b2b2c3933 100644
--- a/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild
+++ b/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild
@@ -24,4 +24,6 @@ src_configure() {
 		-DGSL_LITE_OPT_BUILD_TESTS=$(usex test)
 	)
 	cmake_src_configure
+
+	sed -i -e 's/"-*Werror"//g' test/MakeTestTarget.cmake || die
 }


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

end of thread, other threads:[~2021-04-23  6:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-23  6:18 [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/gsl-lite/ Brian Gloyer
  -- strict thread matches above, loose matches on Subject: below --
2021-04-11  5:50 Brian Gloyer

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