Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/yaml-cpp/
Date: Sat, 02 Jun 2018 15:53:25
Message-Id: 1527954696.420ece48c6a889140665bfe37e784b8526c52107.johu@gentoo
1 commit: 420ece48c6a889140665bfe37e784b8526c52107
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 2 15:51:36 2018 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 2 15:51:36 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=420ece48
7
8 dev-cpp/yaml-cpp: Remove 0.5.3 (r0)
9
10 Bug: https://bugs.gentoo.org/614850
11 Package-Manager: Portage-2.3.40, Repoman-2.3.9
12
13 dev-cpp/yaml-cpp/yaml-cpp-0.5.3.ebuild | 37 ----------------------------------
14 1 file changed, 37 deletions(-)
15
16 diff --git a/dev-cpp/yaml-cpp/yaml-cpp-0.5.3.ebuild b/dev-cpp/yaml-cpp/yaml-cpp-0.5.3.ebuild
17 deleted file mode 100644
18 index f889e29358c..00000000000
19 --- a/dev-cpp/yaml-cpp/yaml-cpp-0.5.3.ebuild
20 +++ /dev/null
21 @@ -1,37 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit cmake-utils
28 -
29 -DESCRIPTION="YAML parser and emitter in C++"
30 -HOMEPAGE="https://github.com/jbeder/yaml-cpp"
31 -SRC_URI="https://github.com/jbeder/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~arm ~arm64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
36 -IUSE=""
37 -
38 -DEPEND=">=dev-libs/boost-1.49.0-r2"
39 -RDEPEND="${DEPEND}"
40 -
41 -S="${WORKDIR}/${PN}-release-${PV}"
42 -
43 -PATCHES=( "${FILESDIR}"/${P}-gcc6.patch )
44 -
45 -src_prepare() {
46 - sed -i \
47 - -e 's:INCLUDE_INSTALL_ROOT_DIR:INCLUDE_INSTALL_DIR:g' \
48 - yaml-cpp.pc.cmake || die
49 -
50 - cmake-utils_src_prepare
51 -}
52 -
53 -src_configure() {
54 - local mycmakeargs=(
55 - -DBUILD_SHARED_LIBS=ON
56 - )
57 - cmake-utils_src_configure
58 -}