* [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tclperl/
@ 2018-10-06 19:30 Alfredo Tupone
0 siblings, 0 replies; 3+ messages in thread
From: Alfredo Tupone @ 2018-10-06 19:30 UTC (permalink / raw
To: gentoo-commits
commit: 7509222b8344080295c27d5f125169e39fae5bec
Author: Tupone Alfredo <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 6 19:29:52 2018 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Oct 6 19:29:52 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7509222b
dev-tcltk/tclperl: require symcat.h
Closes: https://bugs.gentoo.org/561904
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
dev-tcltk/tclperl/tclperl-3.2-r1.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild b/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild
index b151af67051..64e82c79a3e 100644
--- a/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild
+++ b/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -16,7 +16,8 @@ IUSE=""
DEPEND="
>=dev-lang/tcl-8.3.3:0
- >=dev-lang/perl-5.6.0"
+ >=dev-lang/perl-5.6.0
+ sys-libs/binutils-libs"
RDEPEND="${DEPEND}"
src_compile() {
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tclperl/
@ 2021-10-25 20:18 Alfredo Tupone
0 siblings, 0 replies; 3+ messages in thread
From: Alfredo Tupone @ 2021-10-25 20:18 UTC (permalink / raw
To: gentoo-commits
commit: 9bbb8130079a513ab43610415bf293040ed3bcf2
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 25 20:18:39 2021 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Mon Oct 25 20:18:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bbb8130
dev-tcltk/tclperl: migrate to EAPI 7
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
dev-tcltk/tclperl/tclperl-3.2-r1.ebuild | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild b/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild
index 64e82c79a3e..199adc9af13 100644
--- a/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild
+++ b/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=7
-inherit flag-o-matic multilib toolchain-funcs
+inherit flag-o-matic toolchain-funcs
DESCRIPTION="Perl package for Tcl"
HOMEPAGE="http://jfontain.free.fr/tclperl.htm"
@@ -20,6 +20,9 @@ DEPEND="
sys-libs/binutils-libs"
RDEPEND="${DEPEND}"
+DOCS=( CHANGES README)
+HTML_DOCS=( tclperl.htm )
+
src_compile() {
append-flags -fPIC
@@ -36,7 +39,5 @@ src_install() {
exeinto /usr/$(get_libdir)/${P}
doexe tclperl.so.${PV}
doexe pkgIndex.tcl
-
- dodoc CHANGES README
- dohtml tclperl.htm
+ einstalldocs
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tclperl/
@ 2022-04-22 20:40 Sam James
0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2022-04-22 20:40 UTC (permalink / raw
To: gentoo-commits
commit: e433d63798b639dee66caf6ab834157af87b838c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 22 20:37:26 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 22 20:40:40 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e433d637
dev-tcltk/tclperl: use subslot dep on tcl
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../tclperl/{tclperl-3.2-r1.ebuild => tclperl-3.2-r2.ebuild} | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild b/dev-tcltk/tclperl/tclperl-3.2-r2.ebuild
similarity index 88%
rename from dev-tcltk/tclperl/tclperl-3.2-r1.ebuild
rename to dev-tcltk/tclperl/tclperl-3.2-r2.ebuild
index 199adc9af13d..850c9507c6ff 100644
--- a/dev-tcltk/tclperl/tclperl-3.2-r1.ebuild
+++ b/dev-tcltk/tclperl/tclperl-3.2-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -15,9 +15,9 @@ KEYWORDS="amd64 ~ppc x86"
IUSE=""
DEPEND="
- >=dev-lang/tcl-8.3.3:0
- >=dev-lang/perl-5.6.0
- sys-libs/binutils-libs"
+ >=dev-lang/tcl-8.3.3:=
+ >=dev-lang/perl-5.6.0:=
+ sys-libs/binutils-libs:="
RDEPEND="${DEPEND}"
DOCS=( CHANGES README)
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-04-22 20:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-22 20:40 [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tclperl/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2021-10-25 20:18 Alfredo Tupone
2018-10-06 19:30 Alfredo Tupone
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox