public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libetonyek/
Date: Thu, 14 Nov 2024 18:42:09 +0000 (UTC)	[thread overview]
Message-ID: <1731609721.6dc964333c20dc2e7ac2e9c1f769afa45726aad2.asturm@gentoo> (raw)

commit:     6dc964333c20dc2e7ac2e9c1f769afa45726aad2
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 14 05:31:04 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Nov 14 18:42:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dc96433

app-text/libetonyek: add 0.1.11

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 app-text/libetonyek/Manifest                               |  1 +
 .../{libetonyek-9999.ebuild => libetonyek-0.1.11.ebuild}   | 14 ++++++--------
 app-text/libetonyek/libetonyek-9999.ebuild                 |  7 +++----
 3 files changed, 10 insertions(+), 12 deletions(-)

diff --git a/app-text/libetonyek/Manifest b/app-text/libetonyek/Manifest
index 710f9294bb53..11dc0cfc143d 100644
--- a/app-text/libetonyek/Manifest
+++ b/app-text/libetonyek/Manifest
@@ -1 +1,2 @@
 DIST libetonyek-0.1.10.tar.xz 1494000 BLAKE2B 1c47b410050380d134d96b5551f0c9186c24aa0ea52c801e26655e3013f030e92198d8e3f19e8a341744206eeaad2d10ca130f286fd42c8a9c3b56f773cfa7d5 SHA512 516a14fcb7b7b5898484a4263d593a036ac728b90144da9d1c22a5d0fdffc879839e19a7b390f99d924c390d433e64433fb08939b1e04ca24359315571c5772b
+DIST libetonyek-0.1.11.tar.xz 1513056 BLAKE2B 2c96e85b4c11ae33a858e3b3f6ec3c76aaa9b9a4e798f436ae5a379adc48622ca5f1da1d7a7b29b2dac8dab27c05acc2f98d778c5258432c688534fbcce0eb86 SHA512 b04593062d905340fdc6049d9fcd4524f8f8d8e313041b1ca811c63c08b218398b11a5cd6c3c724659d108c6f15756d5a87c88e85e27b2b5ed846af3b90de2ab

diff --git a/app-text/libetonyek/libetonyek-9999.ebuild b/app-text/libetonyek/libetonyek-0.1.11.ebuild
similarity index 83%
copy from app-text/libetonyek/libetonyek-9999.ebuild
copy to app-text/libetonyek/libetonyek-0.1.11.ebuild
index 874395b30224..535cecb7dd54 100644
--- a/app-text/libetonyek/libetonyek-9999.ebuild
+++ b/app-text/libetonyek/libetonyek-0.1.11.ebuild
@@ -3,8 +3,6 @@
 
 EAPI=8
 
-MDDS_VER="3.0"
-
 if [[ ${PV} == *9999* ]]; then
 	EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libetonyek.git"
 	inherit autotools git-r3
@@ -18,14 +16,14 @@ HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek"
 
 LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )"
 SLOT="0"
-IUSE="doc static-libs test"
+IUSE="doc test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="
 	app-text/liblangtag
 	dev-libs/librevenge
 	dev-libs/libxml2
-	dev-util/mdds:1/${MDDS_VER}
+	>=dev-util/mdds-2.1:1=
 	sys-libs/zlib
 "
 DEPEND="${RDEPEND}
@@ -41,22 +39,22 @@ BDEPEND="
 
 src_prepare() {
 	default
-	[[ -d m4 ]] || mkdir "m4"
+	[[ -d m4 ]] || mkdir "m4" || die
 	[[ ${PV} == *9999* ]] && eautoreconf
 }
 
 src_configure() {
 	local myeconfargs=(
 		--disable-werror
-		--with-mdds="${MDDS_VER}"
+		--with-mdds=2.1
 		$(use_with doc docs)
-		$(use_enable static-libs static)
 		$(use_enable test tests)
 	)
+
 	econf "${myeconfargs[@]}"
 }
 
 src_install() {
 	default
-	find "${D}" -name '*.la' -type f -delete || die
+	find "${ED}" -name '*.la' -type f -delete || die
 }

diff --git a/app-text/libetonyek/libetonyek-9999.ebuild b/app-text/libetonyek/libetonyek-9999.ebuild
index 874395b30224..975c7f6efb90 100644
--- a/app-text/libetonyek/libetonyek-9999.ebuild
+++ b/app-text/libetonyek/libetonyek-9999.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek"
 
 LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )"
 SLOT="0"
-IUSE="doc static-libs test"
+IUSE="doc test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="
@@ -41,7 +41,7 @@ BDEPEND="
 
 src_prepare() {
 	default
-	[[ -d m4 ]] || mkdir "m4"
+	[[ -d m4 ]] || mkdir "m4" || die
 	[[ ${PV} == *9999* ]] && eautoreconf
 }
 
@@ -50,7 +50,6 @@ src_configure() {
 		--disable-werror
 		--with-mdds="${MDDS_VER}"
 		$(use_with doc docs)
-		$(use_enable static-libs static)
 		$(use_enable test tests)
 	)
 	econf "${myeconfargs[@]}"
@@ -58,5 +57,5 @@ src_configure() {
 
 src_install() {
 	default
-	find "${D}" -name '*.la' -type f -delete || die
+	find "${ED}" -name '*.la' -type f -delete || die
 }


             reply	other threads:[~2024-11-14 18:42 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-14 18:42 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-09 22:05 [gentoo-commits] repo/gentoo:master commit in: app-text/libetonyek/ Andreas Sturmlechner
2025-01-13  0:25 Sam James
2025-01-13  0:25 Sam James
2025-01-13  0:25 Sam James
2025-01-13  0:25 Sam James
2024-11-28 22:51 Andreas Sturmlechner
2024-02-20 20:49 Andreas Sturmlechner
2024-02-20  5:56 Sam James
2024-02-17  9:55 Arthur Zamarin
2024-02-12 10:31 Sam James
2024-01-27  0:48 Andreas Sturmlechner
2024-01-27  0:48 Andreas Sturmlechner
2023-02-25 10:27 Andreas Sturmlechner
2022-06-14 15:20 Andreas Sturmlechner
2022-04-27 21:57 Sam James
2022-04-10 10:46 Sam James
2022-02-12 12:13 Andreas K. Hüttel
2022-02-10 20:10 Andreas Sturmlechner
2021-12-29 13:46 Yixun Lan
2021-11-14  5:25 Sam James
2021-06-01 10:48 Sam James
2021-06-01  9:00 Sam James
2021-05-20 18:24 Andreas Sturmlechner
2020-05-31 21:09 Andreas Sturmlechner
2020-05-31 15:40 Mikle Kolyada
2020-05-20 13:35 Mikle Kolyada
2020-05-19 19:36 Mikle Kolyada
2020-03-16 22:04 Andreas Sturmlechner
2020-03-16 21:29 Andreas Sturmlechner
2020-03-16 21:29 Andreas Sturmlechner
2019-10-01 23:43 Andreas Sturmlechner
2019-09-12 20:27 Andreas Sturmlechner
2019-09-12 20:27 Andreas Sturmlechner
2019-08-01 15:13 Aaron Bauman
2019-02-17 17:58 Mikle Kolyada
2019-02-17 15:33 Mikle Kolyada
2018-12-30 20:08 Andreas Sturmlechner
2018-10-04 10:38 Andreas Sturmlechner
2018-10-04 10:31 Andreas Sturmlechner
2018-10-04  8:49 Andreas Sturmlechner
2018-09-19 18:35 Matt Turner
2018-08-29 10:49 Andreas Sturmlechner
2018-08-24  4:38 Mikle Kolyada
2018-08-24  1:40 Thomas Deutschmann
2018-04-27 21:43 Andreas Sturmlechner
2017-12-29 18:03 Mikle Kolyada
2017-12-26  0:59 Thomas Deutschmann
2017-11-08  8:55 Andreas Sturmlechner
2017-11-08  8:55 Andreas Sturmlechner
2017-08-17 17:06 Michał Górny
2016-12-17 15:57 Andreas Hüttel
2016-11-29 20:27 Andreas Hüttel
2016-11-29 18:41 Agostino Sarubbo
2016-11-29 18:40 Agostino Sarubbo
2016-10-01 22:08 Andreas Hüttel
2016-04-05 22:51 Robin H. Johnson
2016-02-29 13:40 Andreas Hüttel
2016-02-22 17:07 Andreas Hüttel
2016-02-22 17:07 Andreas Hüttel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1731609721.6dc964333c20dc2e7ac2e9c1f769afa45726aad2.asturm@gentoo \
    --to=asturm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox