* [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tkpng/
@ 2021-10-26 18:47 Alfredo Tupone
0 siblings, 0 replies; 3+ messages in thread
From: Alfredo Tupone @ 2021-10-26 18:47 UTC (permalink / raw
To: gentoo-commits
commit: 3fd6fdd2e64747cc725df3be217ac94740d32a98
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 26 18:47:26 2021 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue Oct 26 18:47:26 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fd6fdd2
dev-tcltk/tkpng: EAPI 7
Closes: https://bugs.gentoo.org/819591
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
dev-tcltk/tkpng/{tkpng-0.9.ebuild => tkpng-0.9-r1.ebuild} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-tcltk/tkpng/tkpng-0.9.ebuild b/dev-tcltk/tkpng/tkpng-0.9-r1.ebuild
similarity index 93%
rename from dev-tcltk/tkpng/tkpng-0.9.ebuild
rename to dev-tcltk/tkpng/tkpng-0.9-r1.ebuild
index 316297207f5..e38d65c8ca0 100644
--- a/dev-tcltk/tkpng/tkpng-0.9.ebuild
+++ b/dev-tcltk/tkpng/tkpng-0.9-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=7
MY_P="${PN}${PV}"
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tkpng/
@ 2022-11-23 0:48 Sam James
0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2022-11-23 0:48 UTC (permalink / raw
To: gentoo-commits
commit: 7572adcbdc6f64953c896c0cb4f89d2980139ec3
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 23 00:35:13 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 23 00:35:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7572adcb
dev-tcltk/tkpng: fix configure w/ clang 16
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../{tkpng-0.9-r1.ebuild => tkpng-0.9-r2.ebuild} | 22 ++++++++++++++++------
1 file changed, 16 insertions(+), 6 deletions(-)
diff --git a/dev-tcltk/tkpng/tkpng-0.9-r1.ebuild b/dev-tcltk/tkpng/tkpng-0.9-r2.ebuild
similarity index 76%
rename from dev-tcltk/tkpng/tkpng-0.9-r1.ebuild
rename to dev-tcltk/tkpng/tkpng-0.9-r2.ebuild
index e38d65c8ca05..a68fa63effe1 100644
--- a/dev-tcltk/tkpng/tkpng-0.9-r1.ebuild
+++ b/dev-tcltk/tkpng/tkpng-0.9-r2.ebuild
@@ -1,23 +1,26 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
MY_P="${PN}${PV}"
+inherit autotools
+
DESCRIPTION="Implements support for loading and using PNG images with Tcl/Tk"
HOMEPAGE="http://www.muonics.com/FreeStuff/TkPNG/"
SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${MY_P}.tgz"
-SLOT="0"
LICENSE="tcltk"
+SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug threads"
RDEPEND="
- >=dev-lang/tcl-8.4:0=
- >=dev-lang/tk-8.4:0=
- sys-libs/zlib"
+ >=dev-lang/tcl-8.4:=
+ >=dev-lang/tk-8.4:=
+ sys-libs/zlib
+"
DEPEND="${RDEPEND}"
# test target in Makefile, but test not shipped
@@ -25,6 +28,13 @@ RESTRICT="test"
S="${WORKDIR}"/${MY_P}
+src_prepare() {
+ default
+
+ # Clang 16
+ eautoreconf
+}
+
src_configure() {
econf \
$(use_enable debug symbols) \
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tkpng/
@ 2024-02-25 10:02 Alfredo Tupone
0 siblings, 0 replies; 3+ messages in thread
From: Alfredo Tupone @ 2024-02-25 10:02 UTC (permalink / raw
To: gentoo-commits
commit: b6351be17bcec95c5da076a25ccdf4c3f4a71f1c
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 25 10:01:39 2024 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Feb 25 10:01:39 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6351be1
dev-tcltk/tkpng: drop QA warning
Closes: https://bugs.gentoo.org/906868
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
dev-tcltk/tkpng/tkpng-0.9-r2.ebuild | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/dev-tcltk/tkpng/tkpng-0.9-r2.ebuild b/dev-tcltk/tkpng/tkpng-0.9-r2.ebuild
index a68fa63effe1..56dd53e828eb 100644
--- a/dev-tcltk/tkpng/tkpng-0.9-r2.ebuild
+++ b/dev-tcltk/tkpng/tkpng-0.9-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -23,6 +23,10 @@ RDEPEND="
"
DEPEND="${RDEPEND}"
+QA_CONFIG_IMPL_DECL_SKIP=(
+ stat64 # used to test for Large File Support
+)
+
# test target in Makefile, but test not shipped
RESTRICT="test"
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-02-25 10:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-25 10:02 [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tkpng/ Alfredo Tupone
-- strict thread matches above, loose matches on Subject: below --
2022-11-23 0:48 Sam James
2021-10-26 18:47 Alfredo Tupone
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox