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 2B4F0158086 for ; Sun, 14 Nov 2021 05:25:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 335A8E0A83; Sun, 14 Nov 2021 05:25:16 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0D06EE0A83 for ; Sun, 14 Nov 2021 05:25:16 +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 9822F340D35 for ; Sun, 14 Nov 2021 05:25:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 369151C8 for ; Sun, 14 Nov 2021 05:25:03 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1636867475.9f6727ef1b4673be4f9c0884bafd52c2acf55836.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libetonyek/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/libetonyek/libetonyek-0.1.10-r1.ebuild app-text/libetonyek/libetonyek-9999.ebuild X-VCS-Directories: app-text/libetonyek/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9f6727ef1b4673be4f9c0884bafd52c2acf55836 X-VCS-Branch: master Date: Sun, 14 Nov 2021 05:25:03 +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: 355f1c82-7062-473f-b37c-c3a742812483 X-Archives-Hash: daaebb25c13ed8fae4a8574f47c94741 commit: 9f6727ef1b4673be4f9c0884bafd52c2acf55836 Author: James Beddek posteo de> AuthorDate: Sun Oct 31 02:40:28 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Nov 14 05:24:35 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f6727ef app-text/libetonyek: fix build with dev-util/mdds:1/2.0 Signed-off-by: James Beddek posteo.de> Signed-off-by: Sam James gentoo.org> .../{libetonyek-9999.ebuild => libetonyek-0.1.10-r1.ebuild} | 10 +++++++--- app-text/libetonyek/libetonyek-9999.ebuild | 7 +++++-- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/app-text/libetonyek/libetonyek-9999.ebuild b/app-text/libetonyek/libetonyek-0.1.10-r1.ebuild similarity index 84% copy from app-text/libetonyek/libetonyek-9999.ebuild copy to app-text/libetonyek/libetonyek-0.1.10-r1.ebuild index a9b34322cd7f..e8b2ff71f53d 100644 --- a/app-text/libetonyek/libetonyek-9999.ebuild +++ b/app-text/libetonyek/libetonyek-0.1.10-r1.ebuild @@ -1,14 +1,17 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 if [[ ${PV} == *9999 ]]; then + MDDS_VER="9999" EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libetonyek.git" inherit autotools git-r3 else + MDDS_VER="2.0" SRC_URI="https://dev-www.libreoffice.org/src/libetonyek/${P}.tar.xz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + # Unkeyworded while libreoffice has no release making use of this slot + # KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" fi DESCRIPTION="Library parsing Apple Keynote presentations" HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek" @@ -26,7 +29,7 @@ RDEPEND=" app-text/liblangtag dev-libs/librevenge dev-libs/libxml2 - >=dev-util/mdds-1.5:1= + >=dev-util/mdds-${MDDS_VER}:1= sys-libs/zlib " DEPEND="${RDEPEND} @@ -45,6 +48,7 @@ src_prepare() { src_configure() { local myeconfargs=( --disable-werror + --with-mdds="${MDDS_VER}" $(use_with doc docs) $(use_enable static-libs static) $(use_enable test tests) diff --git a/app-text/libetonyek/libetonyek-9999.ebuild b/app-text/libetonyek/libetonyek-9999.ebuild index a9b34322cd7f..7493c2947bb9 100644 --- a/app-text/libetonyek/libetonyek-9999.ebuild +++ b/app-text/libetonyek/libetonyek-9999.ebuild @@ -1,12 +1,14 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 if [[ ${PV} == *9999 ]]; then + MDDS_VER="9999" EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libetonyek.git" inherit autotools git-r3 else + MDDS_VER="2.0" SRC_URI="https://dev-www.libreoffice.org/src/libetonyek/${P}.tar.xz" KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" fi @@ -26,7 +28,7 @@ RDEPEND=" app-text/liblangtag dev-libs/librevenge dev-libs/libxml2 - >=dev-util/mdds-1.5:1= + >=dev-util/mdds-${MDDS_VER}:1= sys-libs/zlib " DEPEND="${RDEPEND} @@ -45,6 +47,7 @@ src_prepare() { src_configure() { local myeconfargs=( --disable-werror + --with-mdds="${MDDS_VER}" $(use_with doc docs) $(use_enable static-libs static) $(use_enable test tests)