diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2014-10-11 18:44:58 +0000 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2014-10-11 18:44:58 +0000 |
commit | 093b400d002e2aae97a82824560999f4eba8e723 (patch) | |
tree | fc65c9b6b4dc22457981f155a438437b0d2cbc43 /dev-perl/perl-tk | |
parent | Unbundle uulib, bug 268307 (diff) | |
download | gentoo-2-093b400d002e2aae97a82824560999f4eba8e723.tar.gz gentoo-2-093b400d002e2aae97a82824560999f4eba8e723.tar.bz2 gentoo-2-093b400d002e2aae97a82824560999f4eba8e723.zip |
Remove old
(Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key EBE6A336BE19039C!)
Diffstat (limited to 'dev-perl/perl-tk')
-rw-r--r-- | dev-perl/perl-tk/ChangeLog | 9 | ||||
-rw-r--r-- | dev-perl/perl-tk/files/804.028-path.patch | 24 | ||||
-rw-r--r-- | dev-perl/perl-tk/files/804.029-X11_XLIB_H.patch | 19 | ||||
-rw-r--r-- | dev-perl/perl-tk/files/perl-tk-804.31.0-fix-libpng-option.patch | 12 | ||||
-rw-r--r-- | dev-perl/perl-tk/files/xorg.patch | 50 | ||||
-rw-r--r-- | dev-perl/perl-tk/perl-tk-804.29.0.ebuild | 43 | ||||
-rw-r--r-- | dev-perl/perl-tk/perl-tk-804.30.0.ebuild | 40 | ||||
-rw-r--r-- | dev-perl/perl-tk/perl-tk-804.31.0-r1.ebuild | 52 | ||||
-rw-r--r-- | dev-perl/perl-tk/perl-tk-804.31.0.ebuild | 40 |
9 files changed, 8 insertions, 281 deletions
diff --git a/dev-perl/perl-tk/ChangeLog b/dev-perl/perl-tk/ChangeLog index f0f54172228f..7f1fad96dfe5 100644 --- a/dev-perl/perl-tk/ChangeLog +++ b/dev-perl/perl-tk/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-perl/perl-tk # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/perl-tk/ChangeLog,v 1.101 2014/08/10 17:44:12 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/perl-tk/ChangeLog,v 1.102 2014/10/11 18:44:58 dilfridge Exp $ + + 11 Oct 2014; Andreas K. Huettel <dilfridge@gentoo.org> + -perl-tk-804.29.0.ebuild, -perl-tk-804.30.0.ebuild, -perl-tk-804.31.0.ebuild, + -perl-tk-804.31.0-r1.ebuild, -files/804.028-path.patch, + -files/perl-tk-804.31.0-fix-libpng-option.patch, + -files/804.029-X11_XLIB_H.patch, -files/xorg.patch: + Remove old 10 Aug 2014; Agostino Sarubbo <ago@gentoo.org> perl-tk-804.32.0.ebuild: Stable for ia64, wrt bug #518032 diff --git a/dev-perl/perl-tk/files/804.028-path.patch b/dev-perl/perl-tk/files/804.028-path.patch deleted file mode 100644 index 8a3689c09a4f..000000000000 --- a/dev-perl/perl-tk/files/804.028-path.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- perl-tk-804.028/pTk/Tcl-pTk -+++ perl-tk-804.028/pTk/Tcl-pTk -@@ -1,4 +1,4 @@ --#!/usr/local/bin/perl -w -+#!/usr/bin/perl -w - use open IO => ':bytes'; # Avoid UTF-8 issues with some perl5.8.0 (RedHat) - use Carp; - my $verbose = 0; ---- perl-tk-804.028.orig/pTk/mkVFunc -+++ perl-tk-804.028/pTk/mkVFunc -@@ -1,4 +1,4 @@ --#!/usr/local/bin/perl -w -+#!/usr/bin/perl -w - use strict; - - ---- perl-tk-804.028/TextList/reindex.pl -+++ perl-tk-804.028/TextList/reindex.pl -@@ -1,4 +1,4 @@ --#!/bin/perl -+#!/usr/bin/perl - - use lib qw(/home1/gbartels/textlist); - use Tk; diff --git a/dev-perl/perl-tk/files/804.029-X11_XLIB_H.patch b/dev-perl/perl-tk/files/804.029-X11_XLIB_H.patch deleted file mode 100644 index 7a43a7ade866..000000000000 --- a/dev-perl/perl-tk/files/804.029-X11_XLIB_H.patch +++ /dev/null @@ -1,19 +0,0 @@ -https://bugs.gentoo.org/show_bug.cgi?id=345987 ---- Tk-804.029/pTk/Xlib.h -+++ Tk-804.029/pTk/Xlib.h -@@ -1,6 +1,7 @@ - #ifndef _XLIB - #define _XLIB - #ifndef _XLIB_H_ -+#ifndef _X11_XLIB_H_ - extern XFontStruct *XLoadQueryFont _ANSI_ARGS_((Display *, const char *)); - extern XModifierKeymap *XGetModifierMapping _ANSI_ARGS_((Display *)); - extern XImage *XCreateImage _ANSI_ARGS_((Display *, Visual *, unsigned int, int, int, char *, unsigned int, unsigned int, int, int)); -@@ -143,6 +144,7 @@ - extern Window XGetSelectionOwner _ANSI_ARGS_((Display *, Atom)); - extern int XRectInRegion _ANSI_ARGS_((Region,int,int,unsigned,unsigned)); - extern int XSubtractRegion _ANSI_ARGS_((Region, Region, Region)); -+#endif /* _X11_XLIB_H_ */ - #endif /* _XLIB_H_ */ - extern int _XInitImageFuncPtrs _ANSI_ARGS_((XImage *image)); - #endif /* _XLIB */ diff --git a/dev-perl/perl-tk/files/perl-tk-804.31.0-fix-libpng-option.patch b/dev-perl/perl-tk/files/perl-tk-804.31.0-fix-libpng-option.patch deleted file mode 100644 index 9ec7ab7af8dc..000000000000 --- a/dev-perl/perl-tk/files/perl-tk-804.31.0-fix-libpng-option.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- Tk-804.031/PNG/Makefile.PL.old 2014-01-21 17:04:09.961441121 +0400 -+++ Tk-804.031/PNG/Makefile.PL 2014-01-21 17:08:15.582448981 +0400 -@@ -17,10 +17,11 @@ - my $libpng_libs; - system('pkg-config --exists libpng'); - if ($? == 0) { - chomp($libpng_cflags = `pkg-config --cflags libpng`); - chomp($libpng_libs = `pkg-config --libs libpng`); -+ chomp($libpng_libs .= `pkg-config --libs zlib`); - } else { - warn "'pkg-config libpng' failed, continue with fallback values for cflags and libs...\n"; - $libpng_cflags = '-I/usr/local/include'; diff --git a/dev-perl/perl-tk/files/xorg.patch b/dev-perl/perl-tk/files/xorg.patch deleted file mode 100644 index 998f3c72abbf..000000000000 --- a/dev-perl/perl-tk/files/xorg.patch +++ /dev/null @@ -1,50 +0,0 @@ -diff -Naurp Tk-804.027/Tk/MakeDepend.pm Tk-804.027.new/Tk/MakeDepend.pm ---- Tk-804.027/Tk/MakeDepend.pm 2003-12-13 07:28:22.000000000 -0500 -+++ Tk-804.027.new/Tk/MakeDepend.pm 2006-06-13 22:34:21.000000000 -0400 -@@ -248,6 +248,7 @@ sub command_line - # force /usr/include to be last element of @include - push @include, $Config{'usrinc'} - if (defined $Config{'usrinc'} and $Config{'usrinc'} ne ''); -+ push @include, "/usr/include"; - # warn "Include:@include\n"; - while (@files) - { -diff -Naurp Tk-804.027/myConfig Tk-804.027.new/myConfig ---- Tk-804.027/myConfig 2004-02-28 11:59:28.000000000 -0500 -+++ Tk-804.027.new/myConfig 2006-06-13 22:27:53.000000000 -0400 -@@ -253,7 +253,7 @@ if ($win_arch eq 'x') { - } - close(XMKMF); - while (defined $uidir) { -- last unless ($uidir =~ s!^.*-I(\S+)/lib/X11/config!!o); -+ last unless ($uidir =~ s!^.*-I(\S+)/lib(64)/X11/config!!o); - $try = $1; - $try =~ s/'x11root'/$ENV{X11ROOT}/; - push(@xdirs,$try); -@@ -294,7 +294,7 @@ if ($win_arch eq 'x') { - # - unless (defined $xlib) - { -- $xlib = &lX11(0,chooseX11(</usr/X11*/lib>),chooseX11(</usr/lib/X11*>),</usr/Xfree*/lib>,'/usr/X386/lib') -+ $xlib = &lX11(0,chooseX11(</usr/X11*/lib>),chooseX11(</usr/lib/X11*>),</usr/Xfree*/lib>,'/usr/X386/lib','/usr/lib64') - } - - # -@@ -309,7 +309,7 @@ if ($win_arch eq 'x') { - - die "Cannot find -lX11 anywhere" unless(defined $xlib); - -- ($base) = $xlib =~ m#-L(.*)(?:/lib)$#x; -+ ($base) = $xlib =~ m#-L(.*)(?:/lib(64))$#x; - if (defined $X11INC) - { - $xinc = &IX11("$X11INC"); -@@ -321,6 +321,8 @@ if ($win_arch eq 'x') { - { - warn "Cannot find X include files via $base/include\n"; - $xinc = &IX11(map("$_/include",@xdirs), -+ chooseX11(</usr/include/X11*>), -+ '/usr/include', - '/usr/openwin/include', - chooseX11(</usr/X11*/include>), - chooseX11(</usr/include/X11*>), diff --git a/dev-perl/perl-tk/perl-tk-804.29.0.ebuild b/dev-perl/perl-tk/perl-tk-804.29.0.ebuild deleted file mode 100644 index 8b41a6849bae..000000000000 --- a/dev-perl/perl-tk/perl-tk-804.29.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/perl-tk/perl-tk-804.29.0.ebuild,v 1.5 2013/03/03 10:17:13 vapier Exp $ - -EAPI=4 - -MY_PN=Tk -MODULE_AUTHOR=SREZIC -MODULE_VERSION=804.029 -inherit multilib perl-module - -DESCRIPTION="A Perl Module for Tk" - -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" -IUSE="" - -DEPEND="x11-libs/libX11 - x11-libs/libXft - media-libs/freetype - >=media-libs/libpng-1.4 - virtual/jpeg" -RDEPEND="${DEPEND}" - -# No test running here, requires an X server, and fails lots anyway. -SRC_TEST="skip" - -PATCHES=( "${FILESDIR}"/xorg.patch - "${FILESDIR}"/804.028-path.patch - "${FILESDIR}"/804.029-X11_XLIB_H.patch ) - -myconf="X11ROOT=${EPREFIX}/usr XFT=1 -I${EPREFIX}/usr/include/ -l${EPREFIX}/usr/$(get_libdir)" -mydoc="ToDo VERSIONS" - -MAKEOPTS+=" -j1" #333049 - -src_prepare() { - perl-module_src_prepare - # fix detection logic for Prefix, bug #385621 - sed -i -e "s:/usr:${EPREFIX}/usr:g" myConfig || die - # having this around breaks with perl-module and a case-IN-sensitive fs - rm build || die -} diff --git a/dev-perl/perl-tk/perl-tk-804.30.0.ebuild b/dev-perl/perl-tk/perl-tk-804.30.0.ebuild deleted file mode 100644 index 9bf041ca1b34..000000000000 --- a/dev-perl/perl-tk/perl-tk-804.30.0.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/perl-tk/perl-tk-804.30.0.ebuild,v 1.3 2013/03/03 10:17:13 vapier Exp $ - -EAPI=4 - -MY_PN=Tk -MODULE_AUTHOR=SREZIC -MODULE_VERSION=804.030 -inherit multilib perl-module - -DESCRIPTION="A Perl Module for Tk" - -LICENSE+=" BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" -IUSE="" - -DEPEND="x11-libs/libX11 - x11-libs/libXft - media-libs/freetype - >=media-libs/libpng-1.4 - virtual/jpeg" -RDEPEND="${DEPEND}" - -# No test running here, requires an X server, and fails lots anyway. -SRC_TEST="skip" -PATCHES=( "${FILESDIR}"/xorg.patch ) - -src_prepare() { - MAKEOPTS+=" -j1" #333049 - myconf=( X11ROOT=${EPREFIX}/usr XFT=1 -I${EPREFIX}/usr/include/ -l${EPREFIX}/usr/$(get_libdir) ) - mydoc="ToDo VERSIONS" - - perl-module_src_prepare - # fix detection logic for Prefix, bug #385621 - sed -i -e "s:/usr:${EPREFIX}/usr:g" myConfig || die - # having this around breaks with perl-module and a case-IN-sensitive fs - rm build || die -} diff --git a/dev-perl/perl-tk/perl-tk-804.31.0-r1.ebuild b/dev-perl/perl-tk/perl-tk-804.31.0-r1.ebuild deleted file mode 100644 index 47f3318d6080..000000000000 --- a/dev-perl/perl-tk/perl-tk-804.31.0-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/perl-tk/perl-tk-804.31.0-r1.ebuild,v 1.1 2014/01/21 13:40:35 civil Exp $ - -EAPI=5 - -MY_PN=Tk -MODULE_AUTHOR=SREZIC -MODULE_VERSION=804.031 -inherit multilib perl-module - -DESCRIPTION="A Perl Module for Tk" - -LICENSE+=" BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" -IUSE="" - -DEPEND="x11-libs/libX11 - x11-libs/libXft - media-libs/freetype - >=media-libs/libpng-1.4 - virtual/jpeg" -RDEPEND="${DEPEND}" - -# No test running here, requires an X server, and fails lots anyway. -SRC_TEST="skip" -PATCHES=( "${FILESDIR}"/${P}-xorg.patch - "${FILESDIR}/${P}"-fix-libpng-option.patch ) - -src_prepare() { - MAKEOPTS+=" -j1" #333049 - myconf=( X11ROOT=${EPREFIX}/usr XFT=1 -I${EPREFIX}/usr/include/ -l${EPREFIX}/usr/$(get_libdir) ) - mydoc="ToDo VERSIONS" - - perl-module_src_prepare - # fix detection logic for Prefix, bug #385621 - sed -i -e "s:/usr:${EPREFIX}/usr:g" myConfig || die - # having this around breaks with perl-module and a case-IN-sensitive fs - rm build || die - - # Remove all bundled libs, fixes #488194 - local BUNDLED="PNG/libpng \ - PNG/zlib \ - JPEG/jpeg" - for dir in ${BUNDLED}; do - rm -r "${S}/${dir}" || die "Can't remove bundle" - # Makefile.PL can copy files to ${S}/${dir}, so recreate them back. - mkdir -p "${S}/${dir}" || die "Can't restore bundled dir" - sed -i "\#^${dir}#d" "${S}"/MANIFEST || die 'Can not remove bundled libs from MANIFEST' - done -} diff --git a/dev-perl/perl-tk/perl-tk-804.31.0.ebuild b/dev-perl/perl-tk/perl-tk-804.31.0.ebuild deleted file mode 100644 index 582867ac1b3a..000000000000 --- a/dev-perl/perl-tk/perl-tk-804.31.0.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/perl-tk/perl-tk-804.31.0.ebuild,v 1.1 2013/08/13 11:56:24 jlec Exp $ - -EAPI=5 - -MY_PN=Tk -MODULE_AUTHOR=SREZIC -MODULE_VERSION=804.031 -inherit multilib perl-module - -DESCRIPTION="A Perl Module for Tk" - -LICENSE+=" BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" -IUSE="" - -DEPEND="x11-libs/libX11 - x11-libs/libXft - media-libs/freetype - >=media-libs/libpng-1.4 - virtual/jpeg" -RDEPEND="${DEPEND}" - -# No test running here, requires an X server, and fails lots anyway. -SRC_TEST="skip" -PATCHES=( "${FILESDIR}"/${P}-xorg.patch ) - -src_prepare() { - MAKEOPTS+=" -j1" #333049 - myconf=( X11ROOT=${EPREFIX}/usr XFT=1 -I${EPREFIX}/usr/include/ -l${EPREFIX}/usr/$(get_libdir) ) - mydoc="ToDo VERSIONS" - - perl-module_src_prepare - # fix detection logic for Prefix, bug #385621 - sed -i -e "s:/usr:${EPREFIX}/usr:g" myConfig || die - # having this around breaks with perl-module and a case-IN-sensitive fs - rm build || die -} |