public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Matthew Thode" <prometheanfire@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/leatherman/
Date: Sat, 11 Jul 2020 18:21:08 +0000 (UTC)	[thread overview]
Message-ID: <1594491663.8a02e348451b30be7a3ba2fe68b7438e5409b1d6.prometheanfire@gentoo> (raw)

commit:     8a02e348451b30be7a3ba2fe68b7438e5409b1d6
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 11 18:15:53 2020 +0000
Commit:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Sat Jul 11 18:21:03 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a02e348

dev-libs/leatherman: 1.12.1 bump

Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>

 dev-libs/leatherman/Manifest                 |  1 +
 dev-libs/leatherman/leatherman-1.12.1.ebuild | 65 ++++++++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/dev-libs/leatherman/Manifest b/dev-libs/leatherman/Manifest
index ba0a675f4ed..8d3637dc961 100644
--- a/dev-libs/leatherman/Manifest
+++ b/dev-libs/leatherman/Manifest
@@ -1,3 +1,4 @@
 DIST leatherman-1.11.0.tar.gz 815946 BLAKE2B 73afb7c517ea93d0c3dc1c88adb3e5041c764bbfb223357b14a6a3f864ff614d178e7a71293eb533f09013fe3f64d5afe40c9404882d2fe6836da7322e869d8f SHA512 0cbc558ba6976d4f14947efbc59e2ebc306a8c7e4590a22fa2e2f044b37ffd8804dbabaf96c599c47394fd9379f2de1330ce5282237b5009730d8d3b87349ae5
 DIST leatherman-1.12.0.tar.gz 815947 BLAKE2B cc268275f7ef7e9bddca9a2ca25c1a6b0bca64d57f90a485b83103a2477d476a39fe91ccf46798f1885b29c697de6556890131c7aac2a9e61590edab66fd6ea7 SHA512 2ceb16f94bf3d06bfe477a40e15db5a1d3d3999eaa7023245a08ab4e0054179f28308d9bf6ba73a839ca3a68130259894593fc8e77664b672ac5f3d20511a4d2
+DIST leatherman-1.12.1.tar.gz 816002 BLAKE2B 286bbc24971b2769c8fae73a274b05ce34ad5469f8647681869cecf133f2c3d9c9fab75327fd610aa8957c359baed645c221aa0670789a0f75888f624ea473a7 SHA512 d2bb2b9aab2749df61fb29e984a9058165851c0d4dce45efb102673dbb2e7b56d12005db106f967a6e5ad93b37ea7f7ed88337bf41ffb503db8b2152c87151ad
 DIST leatherman-1.3.0.tar.gz 434229 BLAKE2B e0c19bca2378afc4928554ac0862543504ba725aadc6cffd78220f7f7f1b725cad960fc6d9fdd2d54a43c233b35959ebcb9c71d1191a5535703599fa32e3301e SHA512 5e06be7add652f69b0d4a8d778e33dfb68183c4d598217cc6542d2431f7984f0af989c27bd69e89b77ab03d6dd2adab9d70f68cd87dae20d8e24ae05923fbe9b

diff --git a/dev-libs/leatherman/leatherman-1.12.1.ebuild b/dev-libs/leatherman/leatherman-1.12.1.ebuild
new file mode 100644
index 00000000000..9a442087026
--- /dev/null
+++ b/dev-libs/leatherman/leatherman-1.12.1.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils multilib
+
+DESCRIPTION="A C++ toolkit"
+HOMEPAGE="https://github.com/puppetlabs/leatherman"
+SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+IUSE="debug static-libs test"
+RESTRICT="!test? ( test )"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+SLOT="0/${PV}"
+
+RDEPEND="net-misc/curl"
+DEPEND=">=dev-libs/boost-1.73:=[nls]
+	net-misc/curl
+	>=sys-devel/gcc-4.8:*"
+
+PATCHES=( "${FILESDIR}"/portage-sandbox-test-fix.patch )
+
+src_prepare() {
+	sed -i 's/\-Werror\ //g' "cmake/cflags.cmake" || die
+	# vendored boost lib conflicts with boost 1.73 and above
+	sed -i '/nowide/d' CMakeLists.txt
+	sed -i '/nowide/d' file_util/CMakeLists.txt || die
+	sed -i '/nowide/d' windows/CMakeLists.txt || die
+	sed -i '/nowide/d' execution/CMakeLists.txt || die
+	sed -i '/nowide/d' logging/CMakeLists.txt || die
+	sed -i '/nowide/d' util/CMakeLists.txt || die
+	cmake-utils_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DCMAKE_VERBOSE_MAKEFILE=ON
+		-DCMAKE_BUILD_TYPE=None
+	)
+	if ! use static-libs; then
+		mycmakeargs+=(
+			-DLEATHERMAN_SHARED=ON
+		)
+	else
+		mycmakeargs+=(
+			-DLEATHERMAN_SHARED=OFF
+		)
+	fi
+	if use debug; then
+		mycmakeargs+=(
+		  -DCMAKE_BUILD_TYPE=Debug
+		)
+	fi
+	cmake-utils_src_configure
+}
+
+src_test() {
+	"${WORKDIR}/${P}"_build/bin/leatherman_test
+}
+
+src_install() {
+	cmake-utils_src_install
+}


             reply	other threads:[~2020-07-11 18:21 UTC|newest]

Thread overview: 165+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-11 18:21 Matthew Thode [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-06-10 15:17 [gentoo-commits] repo/gentoo:master commit in: dev-libs/leatherman/ Matthew Thode
2024-05-10 19:11 Matthew Thode
2024-04-10 16:22 Matthew Thode
2024-03-27 11:49 Andreas Sturmlechner
2024-03-24 14:54 Matthew Thode
2024-02-25  4:51 Matthew Thode
2023-12-24 18:56 Matthew Thode
2023-12-17 19:19 Matthew Thode
2023-11-24 21:25 Matthew Thode
2023-11-17 19:38 Matthew Thode
2023-10-25  4:19 Matthew Thode
2023-10-17 19:56 Matthew Thode
2022-12-06 20:59 Matthew Thode
2022-11-06  5:02 Matthew Thode
2022-11-01  9:48 Yixun Lan
2022-10-07 21:30 Matthew Thode
2022-09-22 17:54 Matthew Thode
2022-08-22 16:06 Matthew Thode
2022-07-22 18:40 Matthew Thode
2022-05-11  5:16 Jakov Smolić
2022-05-11  5:16 Jakov Smolić
2022-05-10 20:13 Arthur Zamarin
2022-05-10 20:12 Arthur Zamarin
2022-05-10 20:12 Arthur Zamarin
2022-01-26 18:40 Fabian Groffen
2022-01-20 14:10 Sam James
2022-01-19 20:02 Matthew Thode
2021-11-12  4:46 Sam James
2021-09-13 13:55 Matthew Thode
2021-08-13 15:36 Matthew Thode
2021-07-14  4:00 Matthew Thode
2021-07-14  4:00 Matthew Thode
2021-07-14  4:00 Matthew Thode
2021-06-14 13:57 Matthew Thode
2021-06-13 20:53 Matthew Thode
2021-02-27 12:30 Sam James
2021-02-27 12:30 Sam James
2021-02-26 21:58 Sam James
2021-01-15 18:51 Matthew Thode
2020-12-15 20:12 Matthew Thode
2020-12-14 15:23 Matthew Thode
2020-12-14  6:37 Andreas Sturmlechner
2020-11-29  8:25 Agostino Sarubbo
2020-11-29  8:22 Agostino Sarubbo
2020-11-29  8:20 Agostino Sarubbo
2020-11-29  8:15 Agostino Sarubbo
2020-11-28 13:34 Thomas Deutschmann
2020-11-20  3:49 Matthew Thode
2020-11-15  9:39 Matthew Thode
2020-11-14 23:03 Matthew Thode
2020-08-22 19:26 Matthew Thode
2020-05-31 16:47 Matthew Thode
2020-05-30 20:36 Matthew Thode
2020-05-30 17:30 Matthew Thode
2020-05-30 17:18 Matthew Thode
2020-04-30 15:51 Matthew Thode
2020-04-23 19:36 Matthew Thode
2020-03-27 15:10 Matthew Thode
2020-02-13 22:54 Matthew Thode
2020-02-13 22:54 Matthew Thode
2020-02-08 17:06 David Seifert
2020-01-13 16:36 Matthew Thode
2019-11-30 22:48 Matthew Thode
2019-11-15 16:23 Matthew Thode
2019-10-31 15:54 Matthew Thode
2019-10-18 16:03 Matthew Thode
2019-10-15 23:43 Matthew Thode
2019-09-30 14:36 Matthew Thode
2019-09-18 16:16 Matthew Thode
2019-09-16 16:45 Matthew Thode
2019-08-16 20:07 Matthew Thode
2019-08-16 20:07 Matthew Thode
2019-07-16 15:06 Matthew Thode
2019-04-25 15:54 Matthew Thode
2019-03-26 15:54 Matthew Thode
2019-01-10 18:21 Matthew Thode
2018-12-17 18:31 Matthew Thode
2018-11-30 17:02 Matthew Thode
2018-11-08 17:31 Matthew Thode
2018-10-31 20:53 Matthew Thode
2018-10-17 19:38 Matthew Thode
2018-10-12  2:54 Matthew Thode
2018-10-04 14:39 Matthew Thode
2018-09-28  0:36 Matt Thode
2018-09-18  6:49 Matt Thode
2018-07-18 19:58 Matt Thode
2018-07-16 20:18 Matt Thode
2018-06-25 19:24 Matt Thode
2018-06-22  6:26 Matt Thode
2018-05-15 15:26 Matt Thode
2018-04-18 19:52 Matt Thode
2018-03-13 14:29 Matt Thode
2018-02-16 17:44 Matt Thode
2018-02-16 17:14 Matt Thode
2018-02-14  3:17 Matt Thode
2018-02-10 12:28 Jeroen Roovers
2018-01-22 20:25 Hans de Graaff
2018-01-20 23:03 Andreas Sturmlechner
2017-12-28 21:55 Sergei Trofimovich
2017-12-15 22:53 Sergei Trofimovich
2017-12-06 22:34 Sergei Trofimovich
2017-12-04 22:07 Sergei Trofimovich
2017-11-27 20:04 Sergei Trofimovich
2017-11-18 22:40 Matt Thode
2017-11-15  3:22 Matt Thode
2017-10-17  1:42 Matt Thode
2017-10-16  0:08 David Seifert
2017-10-15 12:53 Sergei Trofimovich
2017-10-15 12:32 Sergei Trofimovich
2017-09-19  4:16 Matt Thode
2017-09-16 15:01 Matt Thode
2017-09-06 14:07 Matt Thode
2017-08-31 17:44 Matt Thode
2017-08-30 18:13 Fabian Groffen
2017-08-25 19:57 Matt Thode
2017-08-22 23:32 Matt Thode
2017-08-22 16:29 Matt Thode
2017-07-29 19:32 Matt Thode
2017-06-23 19:40 Matt Thode
2017-05-15 14:52 Matt Thode
2017-05-03 17:28 Matt Thode
2017-05-03 17:28 Matt Thode
2017-04-28 17:00 Matt Thode
2017-04-15 18:30 Matt Thode
2017-03-31 20:08 Matt Thode
2017-03-09 16:46 Matt Thode
2017-02-25  2:24 Matt Thode
2017-02-09 11:54 Matt Thode
2017-01-27  5:03 Matt Thode
2017-01-22 16:58 Jeroen Roovers
2017-01-22 16:27 Agostino Sarubbo
2017-01-03 17:03 Matt Thode
2017-01-03 17:03 Matt Thode
2016-12-30  9:39 Agostino Sarubbo
2016-12-23 10:11 Johannes Huber
2016-12-07 15:43 Matt Thode
2016-12-07 15:43 Matt Thode
2016-12-05 23:59 Matt Thode
2016-12-05 23:52 Michał Górny
2016-12-03  4:17 Matt Thode
2016-12-02  1:06 Matt Thode
2016-11-09 21:46 Matt Thode
2016-10-12 15:00 Matt Thode
2016-10-11  6:32 Jeroen Roovers
2016-09-29 16:33 Anthony G. Basile
2016-09-15 19:17 Matt Thode
2016-08-11 17:47 Matt Thode
2016-08-02 15:57 Matt Thode
2016-07-31 17:43 Matt Thode
2016-07-29 17:25 Matt Thode
2016-07-08 15:17 Matt Thode
2016-06-27 23:42 Matt Thode
2016-06-21 17:39 Matt Thode
2016-06-06 16:15 Agostino Sarubbo
2016-06-03 23:15 Matt Thode
2016-05-24 19:36 Matt Thode
2016-05-19 17:00 Matt Thode
2016-05-07  2:32 Matt Thode
2016-04-21  4:25 Matt Thode
2016-04-20 15:50 Matt Thode
2016-04-19  5:47 Matt Thode
2016-03-19 21:58 Matt Thode
2016-03-19 21:08 Patrice Clement
2016-03-19 19:37 Matt Thode

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1594491663.8a02e348451b30be7a3ba2fe68b7438e5409b1d6.prometheanfire@gentoo \
    --to=prometheanfire@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox