Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/cpp-hocon/
Date: Tue, 31 Dec 2019 15:17:31
Message-Id: 1577805438.fd8a10e4db6394a235bb95d164871f46e3a35e32.soap@gentoo
1 commit: fd8a10e4db6394a235bb95d164871f46e3a35e32
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 31 15:17:18 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 31 15:17:18 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd8a10e4
7
8 dev-cpp/cpp-hocon: Remove old
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 dev-cpp/cpp-hocon/Manifest | 1 -
14 dev-cpp/cpp-hocon/cpp-hocon-0.1.4-r1.ebuild | 45 -----------------------------
15 2 files changed, 46 deletions(-)
16
17 diff --git a/dev-cpp/cpp-hocon/Manifest b/dev-cpp/cpp-hocon/Manifest
18 index 06f700ae18e..29196bd024b 100644
19 --- a/dev-cpp/cpp-hocon/Manifest
20 +++ b/dev-cpp/cpp-hocon/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST cpp-hocon-0.1.4.tar.gz 157988 BLAKE2B 3b9e3ec2c386446a2c1d078867b03fbfe2adc8160877288597c648eaf4af6e34f09b673780e6fb81ce9bd1724c1e3d6efc1102985d344a4d1d7bb48b15916190 SHA512 f5ee6c5e7eaa5139bb3c421fd8b7c0da337daec99dce7f426d567ced0036b7c49a396b1b9bdbaa8023cd776a5a942175082a4b30280d4211a0db51483324be42
23 DIST cpp-hocon-0.2.1-boost-filesystem.patch 1004 BLAKE2B f1e8db5e00283b526a45155a705f25efcbe790a08518697facb70ec0adee21a0a954258c09527ee75d50b91cde4824193596c2a53af4f2613ddd709862840a14 SHA512 1c73065ace6ec957b0d7241f680e475708deedad43d2a200b4877350e0712dbf13aea8b0c12c7a0d02c12e2c0b3f201ae85b952969eb66e390276bed83a5d7ad
24 DIST cpp-hocon-0.2.1.tar.gz 158108 BLAKE2B 4b7097768d4fcbc72df5c63fb036b12bb08108a0e1ef57ec182c64c2aa337b56197c8c10dea8f26f64a273b578d4c1b53a898024558d95e99d2ba1b3778c2414 SHA512 fcc377da7923b77436a6f2787d5b8b1b573f239de4f059c4a5949cbb1a755fd12024b9155f5e44cf60141181942f3e9a2a8fad07ee0b1d516fe2cd4a88d4ac8b
25
26 diff --git a/dev-cpp/cpp-hocon/cpp-hocon-0.1.4-r1.ebuild b/dev-cpp/cpp-hocon/cpp-hocon-0.1.4-r1.ebuild
27 deleted file mode 100644
28 index 752c94b6d59..00000000000
29 --- a/dev-cpp/cpp-hocon/cpp-hocon-0.1.4-r1.ebuild
30 +++ /dev/null
31 @@ -1,45 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -inherit cmake-utils
38 -
39 -DESCRIPTION="Provides C++ support for the HOCON configuration file format"
40 -HOMEPAGE="https://github.com/puppetlabs/cpp-hocon"
41 -SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="Apache-2.0"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~arm hppa ppc ppc64 sparc x86"
46 -IUSE="debug test"
47 -RESTRICT="!test? ( test )"
48 -
49 -DEPEND="
50 - >=sys-devel/gcc-4.9.3:*
51 - >=dev-libs/boost-1.54:=[nls]
52 - >=dev-libs/leatherman-0.9.3:=
53 - "
54 -RDEPEND="${DEPEND}"
55 -
56 -src_prepare() {
57 - cmake-utils_src_prepare
58 -
59 - # make it support multilib
60 - sed -i "s/\ lib)/\ $(get_libdir))/g" lib/CMakeLists.txt || die
61 - sed -i "s/lib\")/$(get_libdir)\")/g" CMakeLists.txt || die
62 -}
63 -
64 -src_configure() {
65 - local mycmakeargs=(
66 - -DCMAKE_VERBOSE_MAKEFILE=ON
67 - -DCMAKE_BUILD_TYPE=None
68 - -DCMAKE_INSTALL_PREFIX=/usr
69 - )
70 - if use debug; then
71 - mycmakeargs+=(
72 - -DCMAKE_BUILD_TYPE=Debug
73 - )
74 - fi
75 - cmake-utils_src_configure
76 -}