From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 39172138334 for ; Fri, 19 Jul 2019 15:47:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA2FAE07FE; Fri, 19 Jul 2019 15:47:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B44C2E07FE for ; Fri, 19 Jul 2019 15:47:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7B6DC3480CC for ; Fri, 19 Jul 2019 15:47:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0D71700 for ; Fri, 19 Jul 2019 15:47:18 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1563551230.c6a488cb79b1193a55afdb3e8d2a41301715482f.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/conf2struct/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/conf2struct/conf2struct-0_pre0.ebuild X-VCS-Directories: dev-util/conf2struct/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: c6a488cb79b1193a55afdb3e8d2a41301715482f X-VCS-Branch: master Date: Fri, 19 Jul 2019 15:47:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ed7e6826-fb3d-43c4-a956-cb2b21327b90 X-Archives-Hash: f92fc4904581fea3d9daffdfcb7555d5 commit: c6a488cb79b1193a55afdb3e8d2a41301715482f Author: Craig Andrews gentoo org> AuthorDate: Fri Jul 19 15:46:32 2019 +0000 Commit: Craig Andrews gentoo org> CommitDate: Fri Jul 19 15:47:10 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6a488cb dev-util/conf2struct: Remove 0_pre0 version Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Craig Andrews gentoo.org> dev-util/conf2struct/conf2struct-0_pre0.ebuild | 43 -------------------------- 1 file changed, 43 deletions(-) diff --git a/dev-util/conf2struct/conf2struct-0_pre0.ebuild b/dev-util/conf2struct/conf2struct-0_pre0.ebuild deleted file mode 100644 index 33d18ebd06e..00000000000 --- a/dev-util/conf2struct/conf2struct-0_pre0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit flag-o-matic systemd toolchain-funcs - -DESCRIPTION="Create C parsers for libconfig and command-line" -HOMEPAGE="https://github.com/yrutschle/conf2struct/" -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://github.com/yrutschle/conf2struct.git" - inherit git-r3 -else - KEYWORDS="~amd64" - GIT_COMMIT="10ea3356b65e712fb000f4d37f00e1dc09c1e722" - SRC_URI="https://github.com/yrutschle/conf2struct/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${PN}-${GIT_COMMIT}" -fi - -PATCHES=( - "${FILESDIR}/${P}-install-and-uninstall.patch" - "${FILESDIR}/${P}-cc-and-cflags.patch" - "${FILESDIR}/${P}-destdir.patch" - "${FILESDIR}/${P}-install-not-run-all.patch" - "${FILESDIR}/${P}-dest-exists.patch" -) - -LICENSE="BSD-2" -SLOT="0" -IUSE="" - -RDEPEND="dev-libs/libconfig - dev-perl/Conf-Libconfig" -DEPEND="${RDEPEND}" - -src_compile(){ - # -j1 due to parallel make issue reported upstream at: https://github.com/yrutschle/conf2struct/issues/10 - emake -j1 -} - -src_install(){ - emake DESTDIR="${D}" prefix="${EPREFIX%/}/usr" install -}