* [gentoo-commits] gentoo-x86 commit in dev-lang/tk: tk-8.5.10.ebuild ChangeLog
@ 2012-03-02 17:20 Justin Lecher (jlec)
0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher (jlec) @ 2012-03-02 17:20 UTC (permalink / raw
To: gentoo-commits
jlec 12/03/02 17:20:55
Modified: tk-8.5.10.ebuild ChangeLog
Log:
Add missing dies, remove unnessecary dies, handle static-libs
(Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
Revision Changes Path
1.2 dev-lang/tk/tk-8.5.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild?r1=1.1&r2=1.2
Index: tk-8.5.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- tk-8.5.10.ebuild 4 Oct 2011 17:08:05 -0000 1.1
+++ tk-8.5.10.ebuild 2 Mar 2012 17:20:55 -0000 1.2
@@ -1,8 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild,v 1.1 2011/10/04 17:08:05 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild,v 1.2 2012/03/02 17:20:55 jlec Exp $
-EAPI="3"
+EAPI=4
inherit autotools eutils multilib toolchain-funcs prefix
@@ -15,7 +15,7 @@
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="debug threads truetype aqua xscreensaver"
+IUSE="debug static-libs threads truetype aqua xscreensaver"
RDEPEND="
!aqua? (
@@ -60,8 +60,7 @@
}
src_compile() {
- cd "${S}"/unix
- emake || die
+ cd "${S}"/unix && emake
}
src_install() {
@@ -70,7 +69,7 @@
v1=${PV%.*}
cd "${S}"/unix
- S= emake DESTDIR="${D}" install || die
+ S= emake DESTDIR="${D}" install
# normalize $S path, bug #280766 (pkgcore)
local nS="$(cd "${S}"; pwd)"
@@ -93,20 +92,25 @@
# install private headers
insinto /usr/${mylibdir}/tk${v1}/include/unix
- doins "${S}"/unix/*.h || die
+ doins "${S}"/unix/*.h
insinto /usr/${mylibdir}/tk${v1}/include/generic
- doins "${S}"/generic/*.h || die
+ doins "${S}"/generic/*.h
rm -f "${ED}"/usr/${mylibdir}/tk${v1}/include/generic/tk.h
rm -f "${ED}"/usr/${mylibdir}/tk${v1}/include/generic/tkDecls.h
rm -f "${ED}"/usr/${mylibdir}/tk${v1}/include/generic/tkPlatDecls.h
# install symlink for libraries
#dosym libtk${v1}.a /usr/${mylibdir}/libtk.a
- dosym libtk${v1}$(get_libname) /usr/${mylibdir}/libtk$(get_libname) || die
- dosym libtkstub${v1}.a /usr/${mylibdir}/libtkstub.a || die
+ dosym libtk${v1}$(get_libname) /usr/${mylibdir}/libtk$(get_libname)
+
+ if use static-libs; then
+ dosym libtkstub${v1}.a /usr/${mylibdir}/libtkstub.a
+ else
+ rm -f "${ED}"/usr/${mylibdir}/*.a || die
+ fi
- dosym wish${v1} /usr/bin/wish || die
+ dosym wish${v1} /usr/bin/wish
cd "${S}"
- dodoc ChangeLog* README changes || die
+ dodoc ChangeLog* README changes
}
1.157 dev-lang/tk/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/ChangeLog?rev=1.157&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/ChangeLog?rev=1.157&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/ChangeLog?r1=1.156&r2=1.157
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v
retrieving revision 1.156
retrieving revision 1.157
diff -u -r1.156 -r1.157
--- ChangeLog 2 Mar 2012 15:31:00 -0000 1.156
+++ ChangeLog 2 Mar 2012 17:20:55 -0000 1.157
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/tk
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v 1.156 2012/03/02 15:31:00 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v 1.157 2012/03/02 17:20:55 jlec Exp $
+
+ 02 Mar 2012; Justin Lecher <jlec@gentoo.org> tk-8.5.10.ebuild:
+ Add missing dies, remove unnessecary dies, handle static-libs
*tk-8.5.11 (02 Mar 2012)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/tk: tk-8.5.10.ebuild ChangeLog
@ 2012-03-02 20:20 Brent Baude (ranger)
0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2012-03-02 20:20 UTC (permalink / raw
To: gentoo-commits
ranger 12/03/02 20:20:05
Modified: tk-8.5.10.ebuild ChangeLog
Log:
Marking tk-8.5.10 ppc64 for bug 406607
(Portage version: 2.1.10.11/cvs/Linux ppc64)
Revision Changes Path
1.3 dev-lang/tk/tk-8.5.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild?r1=1.2&r2=1.3
Index: tk-8.5.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- tk-8.5.10.ebuild 2 Mar 2012 17:20:55 -0000 1.2
+++ tk-8.5.10.ebuild 2 Mar 2012 20:20:05 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild,v 1.2 2012/03/02 17:20:55 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild,v 1.3 2012/03/02 20:20:05 ranger Exp $
EAPI=4
@@ -14,7 +14,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug static-libs threads truetype aqua xscreensaver"
RDEPEND="
1.158 dev-lang/tk/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/ChangeLog?rev=1.158&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/ChangeLog?rev=1.158&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/ChangeLog?r1=1.157&r2=1.158
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -r1.157 -r1.158
--- ChangeLog 2 Mar 2012 17:20:55 -0000 1.157
+++ ChangeLog 2 Mar 2012 20:20:05 -0000 1.158
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/tk
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v 1.157 2012/03/02 17:20:55 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v 1.158 2012/03/02 20:20:05 ranger Exp $
+
+ 02 Mar 2012; Brent Baude <ranger@gentoo.org> tk-8.5.10.ebuild:
+ Marking tk-8.5.10 ppc64 for bug 406607
02 Mar 2012; Justin Lecher <jlec@gentoo.org> tk-8.5.10.ebuild:
Add missing dies, remove unnessecary dies, handle static-libs
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/tk: tk-8.5.10.ebuild ChangeLog
@ 2012-03-05 10:36 Agostino Sarubbo (ago)
0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-03-05 10:36 UTC (permalink / raw
To: gentoo-commits
ago 12/03/05 10:36:30
Modified: tk-8.5.10.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #406607
(Portage version: 2.1.10.44/cvs/Linux i686)
Revision Changes Path
1.5 dev-lang/tk/tk-8.5.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild?r1=1.4&r2=1.5
Index: tk-8.5.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- tk-8.5.10.ebuild 4 Mar 2012 20:13:49 -0000 1.4
+++ tk-8.5.10.ebuild 5 Mar 2012 10:36:30 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild,v 1.4 2012/03/04 20:13:49 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild,v 1.5 2012/03/05 10:36:30 ago Exp $
EAPI=4
@@ -14,7 +14,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug threads truetype aqua xscreensaver"
RDEPEND="
1.160 dev-lang/tk/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/ChangeLog?rev=1.160&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/ChangeLog?rev=1.160&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/ChangeLog?r1=1.159&r2=1.160
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -r1.159 -r1.160
--- ChangeLog 4 Mar 2012 20:13:49 -0000 1.159
+++ ChangeLog 5 Mar 2012 10:36:30 -0000 1.160
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/tk
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v 1.159 2012/03/04 20:13:49 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v 1.160 2012/03/05 10:36:30 ago Exp $
+
+ 05 Mar 2012; Agostino Sarubbo <ago@gentoo.org> tk-8.5.10.ebuild:
+ Stable for amd64, wrt bug #406607
04 Mar 2012; Justin Lecher <jlec@gentoo.org> tk-8.5.10.ebuild,
tk-8.5.11.ebuild:
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/tk: tk-8.5.10.ebuild ChangeLog
@ 2012-03-05 22:32 Brent Baude (ranger)
0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2012-03-05 22:32 UTC (permalink / raw
To: gentoo-commits
ranger 12/03/05 22:32:30
Modified: tk-8.5.10.ebuild ChangeLog
Log:
Marking tk-8.5.10 ppc for bug 406607
(Portage version: 2.1.10.11/cvs/Linux ppc64)
Revision Changes Path
1.6 dev-lang/tk/tk-8.5.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild?r1=1.5&r2=1.6
Index: tk-8.5.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- tk-8.5.10.ebuild 5 Mar 2012 10:36:30 -0000 1.5
+++ tk-8.5.10.ebuild 5 Mar 2012 22:32:30 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild,v 1.5 2012/03/05 10:36:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild,v 1.6 2012/03/05 22:32:30 ranger Exp $
EAPI=4
@@ -14,7 +14,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug threads truetype aqua xscreensaver"
RDEPEND="
1.161 dev-lang/tk/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/ChangeLog?rev=1.161&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/ChangeLog?rev=1.161&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/ChangeLog?r1=1.160&r2=1.161
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v
retrieving revision 1.160
retrieving revision 1.161
diff -u -r1.160 -r1.161
--- ChangeLog 5 Mar 2012 10:36:30 -0000 1.160
+++ ChangeLog 5 Mar 2012 22:32:30 -0000 1.161
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/tk
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v 1.160 2012/03/05 10:36:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v 1.161 2012/03/05 22:32:30 ranger Exp $
+
+ 05 Mar 2012; Brent Baude <ranger@gentoo.org> tk-8.5.10.ebuild:
+ Marking tk-8.5.10 ppc for bug 406607
05 Mar 2012; Agostino Sarubbo <ago@gentoo.org> tk-8.5.10.ebuild:
Stable for amd64, wrt bug #406607
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/tk: tk-8.5.10.ebuild ChangeLog
@ 2012-03-06 10:25 Justin Lecher (jlec)
0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher (jlec) @ 2012-03-06 10:25 UTC (permalink / raw
To: gentoo-commits
jlec 12/03/06 10:25:18
Modified: tk-8.5.10.ebuild ChangeLog
Log:
Remove last bit of bad handling of static-libs, #407083
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Revision Changes Path
1.7 dev-lang/tk/tk-8.5.10.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild?r1=1.6&r2=1.7
Index: tk-8.5.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- tk-8.5.10.ebuild 5 Mar 2012 22:32:30 -0000 1.6
+++ tk-8.5.10.ebuild 6 Mar 2012 10:25:18 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild,v 1.6 2012/03/05 22:32:30 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.5.10.ebuild,v 1.7 2012/03/06 10:25:18 jlec Exp $
EAPI=4
@@ -104,12 +104,6 @@
dosym libtk${v1}$(get_libname) /usr/${mylibdir}/libtk$(get_libname)
dosym libtkstub${v1}.a /usr/${mylibdir}/libtkstub.a
- if use static-libs; then
- dosym libtkstub${v1}.a /usr/${mylibdir}/libtkstub.a
- else
- rm -f "${ED}"/usr/${mylibdir}/*.a || die
- fi
-
dosym wish${v1} /usr/bin/wish
cd "${S}"
1.162 dev-lang/tk/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/ChangeLog?rev=1.162&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/ChangeLog?rev=1.162&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/tk/ChangeLog?r1=1.161&r2=1.162
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -r1.161 -r1.162
--- ChangeLog 5 Mar 2012 22:32:30 -0000 1.161
+++ ChangeLog 6 Mar 2012 10:25:18 -0000 1.162
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/tk
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v 1.161 2012/03/05 22:32:30 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v 1.162 2012/03/06 10:25:18 jlec Exp $
+
+ 06 Mar 2012; Justin Lecher <jlec@gentoo.org> tk-8.5.10.ebuild:
+ Remove last bit of bad handling of static-libs, #407083
05 Mar 2012; Brent Baude <ranger@gentoo.org> tk-8.5.10.ebuild:
Marking tk-8.5.10 ppc for bug 406607
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-03-06 10:25 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-02 20:20 [gentoo-commits] gentoo-x86 commit in dev-lang/tk: tk-8.5.10.ebuild ChangeLog Brent Baude (ranger)
-- strict thread matches above, loose matches on Subject: below --
2012-03-06 10:25 Justin Lecher (jlec)
2012-03-05 22:32 Brent Baude (ranger)
2012-03-05 10:36 Agostino Sarubbo (ago)
2012-03-02 17:20 Justin Lecher (jlec)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox