Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/conf2struct/
Date: Fri, 19 Jul 2019 15:47:24
Message-Id: 1563551230.c6a488cb79b1193a55afdb3e8d2a41301715482f.candrews@gentoo
1 commit: c6a488cb79b1193a55afdb3e8d2a41301715482f
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 19 15:46:32 2019 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 19 15:47:10 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6a488cb
7
8 dev-util/conf2struct: Remove 0_pre0 version
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 dev-util/conf2struct/conf2struct-0_pre0.ebuild | 43 --------------------------
14 1 file changed, 43 deletions(-)
15
16 diff --git a/dev-util/conf2struct/conf2struct-0_pre0.ebuild b/dev-util/conf2struct/conf2struct-0_pre0.ebuild
17 deleted file mode 100644
18 index 33d18ebd06e..00000000000
19 --- a/dev-util/conf2struct/conf2struct-0_pre0.ebuild
20 +++ /dev/null
21 @@ -1,43 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="7"
26 -
27 -inherit flag-o-matic systemd toolchain-funcs
28 -
29 -DESCRIPTION="Create C parsers for libconfig and command-line"
30 -HOMEPAGE="https://github.com/yrutschle/conf2struct/"
31 -if [[ ${PV} == "9999" ]] ; then
32 - EGIT_REPO_URI="https://github.com/yrutschle/conf2struct.git"
33 - inherit git-r3
34 -else
35 - KEYWORDS="~amd64"
36 - GIT_COMMIT="10ea3356b65e712fb000f4d37f00e1dc09c1e722"
37 - SRC_URI="https://github.com/yrutschle/conf2struct/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz"
38 - S="${WORKDIR}/${PN}-${GIT_COMMIT}"
39 -fi
40 -
41 -PATCHES=(
42 - "${FILESDIR}/${P}-install-and-uninstall.patch"
43 - "${FILESDIR}/${P}-cc-and-cflags.patch"
44 - "${FILESDIR}/${P}-destdir.patch"
45 - "${FILESDIR}/${P}-install-not-run-all.patch"
46 - "${FILESDIR}/${P}-dest-exists.patch"
47 -)
48 -
49 -LICENSE="BSD-2"
50 -SLOT="0"
51 -IUSE=""
52 -
53 -RDEPEND="dev-libs/libconfig
54 - dev-perl/Conf-Libconfig"
55 -DEPEND="${RDEPEND}"
56 -
57 -src_compile(){
58 - # -j1 due to parallel make issue reported upstream at: https://github.com/yrutschle/conf2struct/issues/10
59 - emake -j1
60 -}
61 -
62 -src_install(){
63 - emake DESTDIR="${D}" prefix="${EPREFIX%/}/usr" install
64 -}