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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DE45D158092 for ; Sun, 19 Jun 2022 18:50:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F415E0C0C; Sun, 19 Jun 2022 18:50:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 187E0E0C0C for ; Sun, 19 Jun 2022 18:50:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 59D083417A1 for ; Sun, 19 Jun 2022 18:50:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A136D510 for ; Sun, 19 Jun 2022 18:50:51 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1655664643.934e63ef21285f9ae9ee1089d36e0b0360e01c09.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/librevenge/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/librevenge/librevenge-9999.ebuild X-VCS-Directories: dev-libs/librevenge/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 934e63ef21285f9ae9ee1089d36e0b0360e01c09 X-VCS-Branch: master Date: Sun, 19 Jun 2022 18:50:51 +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: ddb5d16f-d202-41ff-b9a1-0d8967bf7c54 X-Archives-Hash: 6d8e96241eb6f54d9a74acf8b09c454a commit: 934e63ef21285f9ae9ee1089d36e0b0360e01c09 Author: David Seifert gentoo org> AuthorDate: Sun Jun 19 18:50:43 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jun 19 18:50:43 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=934e63ef dev-libs/librevenge: sync live ebuild Signed-off-by: David Seifert gentoo.org> dev-libs/librevenge/librevenge-9999.ebuild | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/dev-libs/librevenge/librevenge-9999.ebuild b/dev-libs/librevenge/librevenge-9999.ebuild index eff06c57664d..1507cf6e091a 100644 --- a/dev-libs/librevenge/librevenge-9999.ebuild +++ b/dev-libs/librevenge/librevenge-9999.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit flag-o-matic multilib-minimal +inherit multilib-minimal -if [[ ${PV} == *9999* ]] ; then +if [[ ${PV} == *9999 ]] ; then EGIT_REPO_URI="https://git.code.sf.net/p/libwpd/librevenge" inherit git-r3 autotools else @@ -19,19 +19,17 @@ HOMEPAGE="https://sf.net/p/libwpd/librevenge" LICENSE="|| ( MPL-2.0 LGPL-2.1 )" SLOT="0" IUSE="doc test" - RESTRICT="!test? ( test )" RDEPEND="sys-libs/zlib[${MULTILIB_USEDEP}]" DEPEND="${RDEPEND} dev-libs/boost - test? ( dev-util/cppunit[${MULTILIB_USEDEP}] ) -" + test? ( dev-util/cppunit[${MULTILIB_USEDEP}] )" BDEPEND="doc? ( app-doc/doxygen )" src_prepare() { default - [[ ${PV} == *9999* ]] && eautoreconf + [[ ${PV} == *9999 ]] && eautoreconf } multilib_src_configure() { @@ -45,5 +43,5 @@ multilib_src_configure() { multilib_src_install_all() { einstalldocs - find "${D}" -name '*.la' -type f -delete || die + find "${ED}" -name '*.la' -type f -delete || die }