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 A1713158091 for ; Sun, 19 Jun 2022 09:14:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E83B3E099B; Sun, 19 Jun 2022 09:14:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 CB2C8E099B for ; Sun, 19 Jun 2022 09:14:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D86C3341A87 for ; Sun, 19 Jun 2022 09:14:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C94450D 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: <1655630041.3c88778860f19abdcb481f1adafc6e74d9224ba5.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-9999.ebuild X-VCS-Directories: media-libs/libpagemaker/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 3c88778860f19abdcb481f1adafc6e74d9224ba5 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: 7d4cdbd9-bf24-4488-afc8-17b9b4472679 X-Archives-Hash: b027c016ff6e53c9f2ae991c5dc3e3dd commit: 3c88778860f19abdcb481f1adafc6e74d9224ba5 Author: David Seifert gentoo org> AuthorDate: Sun Jun 19 09:14:01 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jun 19 09:14:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c887788 media-libs/libpagemaker: sync live ebuild Signed-off-by: David Seifert gentoo.org> media-libs/libpagemaker/libpagemaker-9999.ebuild | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/media-libs/libpagemaker/libpagemaker-9999.ebuild b/media-libs/libpagemaker/libpagemaker-9999.ebuild index 7e312caadfe0..b40a7586cec4 100644 --- a/media-libs/libpagemaker/libpagemaker-9999.ebuild +++ b/media-libs/libpagemaker/libpagemaker-9999.ebuild @@ -1,14 +1,14 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -if [[ ${PV} = *9999 ]]; then - EGIT_REPO_URI="git://gerrit.libreoffice.org/${PN}.git" +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 ~sparc ~x86 ~amd64-linux ~x86-linux" + 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" @@ -17,16 +17,16 @@ LICENSE="MPL-2.0" SLOT="0" IUSE="debug doc tools" -BDEPEND=" - virtual/pkgconfig - doc? ( app-doc/doxygen ) -" RDEPEND=" dev-libs/librevenge " DEPEND="${RDEPEND} dev-libs/boost " +BDEPEND=" + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" src_prepare() { default @@ -44,5 +44,5 @@ src_configure() { src_install() { default - find "${D}" -name '*.la' -type f -delete || die + find "${ED}" -name '*.la' -type f -delete || die }