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 1E211158091 for ; Sun, 19 Jun 2022 09:14:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E5E0E0996; Sun, 19 Jun 2022 09:14:25 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 47202E0996 for ; Sun, 19 Jun 2022 09:14:25 +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 88044341A85 for ; Sun, 19 Jun 2022 09:14:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 394E150C for ; Sun, 19 Jun 2022 09:14:23 +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: <1655630040.9015b3591be1be08fe620c4fcfb395abc7500d2e.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libpagemaker/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libpagemaker/libpagemaker-0.0.4-r1.ebuild media-libs/libpagemaker/libpagemaker-0.0.4.ebuild X-VCS-Directories: media-libs/libpagemaker/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 9015b3591be1be08fe620c4fcfb395abc7500d2e X-VCS-Branch: master Date: Sun, 19 Jun 2022 09:14:23 +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: 55e0cddf-ec55-45d8-ab50-8828251b1dd3 X-Archives-Hash: a1b711d26a3c0691998f236aadd0ba4c commit: 9015b3591be1be08fe620c4fcfb395abc7500d2e Author: David Seifert gentoo org> AuthorDate: Sun Jun 19 09:14:00 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jun 19 09:14:00 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9015b359 media-libs/libpagemaker: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> ...r-0.0.4.ebuild => libpagemaker-0.0.4-r1.ebuild} | 32 ++++++++++++---------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/media-libs/libpagemaker/libpagemaker-0.0.4.ebuild b/media-libs/libpagemaker/libpagemaker-0.0.4-r1.ebuild similarity index 53% rename from media-libs/libpagemaker/libpagemaker-0.0.4.ebuild rename to media-libs/libpagemaker/libpagemaker-0.0.4-r1.ebuild index cd985418d5e9..56a3258992fd 100644 --- a/media-libs/libpagemaker/libpagemaker-0.0.4.ebuild +++ b/media-libs/libpagemaker/libpagemaker-0.0.4-r1.ebuild @@ -1,20 +1,20 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 - -EGIT_REPO_URI="git://gerrit.libreoffice.org/${PN}.git" -[[ ${PV} == 9999 ]] && inherit autotools git-r3 - +EAPI=8 + +if [[ ${PV} == *9999 ]]; then + EGIT_REPO_URI="https://git.libreoffice.org/libpagemaker" + inherit autotools git-r3 +else + SRC_URI="http://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz" + KEYWORDS="amd64 ~arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux" +fi DESCRIPTION="C++ Library that parses the file format of Aldus/Adobe PageMaker documents" HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libpagemaker" -[[ ${PV} == 9999 ]] || SRC_URI="http://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz" LICENSE="MPL-2.0" SLOT="0" - -[[ ${PV} == 9999 ]] || \ -KEYWORDS="amd64 ~arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux" IUSE="debug doc tools" RDEPEND=" @@ -22,23 +22,27 @@ RDEPEND=" " DEPEND="${RDEPEND} dev-libs/boost +" +BDEPEND=" virtual/pkgconfig doc? ( app-doc/doxygen ) " src_prepare() { default - [[ ${PV} == 9999 ]] && eautoreconf + [[ ${PV} == *9999 ]] && eautoreconf } src_configure() { - econf \ - --disable-werror \ - $(use_with doc docs) \ + local myeconfargs=( + --disable-werror + $(use_with doc docs) $(use_enable tools) + ) + econf "${myeconfargs[@]}" } src_install() { default - find "${D}" -name '*.la' -delete || die + find "${ED}" -name '*.la' -type f -delete || die }