summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Veller <tove@gentoo.org>2010-08-22 11:29:52 +0000
committerTorsten Veller <tove@gentoo.org>2010-08-22 11:29:52 +0000
commit76358404ed82327cfbbbdd3561e37c906562feef (patch)
tree9623390a8116bb188d038492373e37a8b55df16c /dev-perl/math-pari
parentRemove unused patch (diff)
downloadgentoo-2-76358404ed82327cfbbbdd3561e37c906562feef.tar.gz
gentoo-2-76358404ed82327cfbbbdd3561e37c906562feef.tar.bz2
gentoo-2-76358404ed82327cfbbbdd3561e37c906562feef.zip
Remove unused patch
(Portage version: 2.2_rc67_p630/cvs/Linux x86_64)
Diffstat (limited to 'dev-perl/math-pari')
-rw-r--r--dev-perl/math-pari/ChangeLog6
-rw-r--r--dev-perl/math-pari/files/math-pari-2.010702-hppa.patch13
2 files changed, 5 insertions, 14 deletions
diff --git a/dev-perl/math-pari/ChangeLog b/dev-perl/math-pari/ChangeLog
index bc3ce3203e75..822f8b6204b5 100644
--- a/dev-perl/math-pari/ChangeLog
+++ b/dev-perl/math-pari/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-perl/math-pari
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.64 2010/07/29 06:03:57 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/math-pari/ChangeLog,v 1.65 2010/08/22 11:29:52 tove Exp $
+
+ 22 Aug 2010; Torsten Veller <tove@gentoo.org>
+ -files/math-pari-2.010702-hppa.patch:
+ Remove unused patch
29 Jul 2010; Torsten Veller <tove@gentoo.org> -math-pari-2.010801.ebuild,
-math-pari-2.01080601.ebuild, -math-pari-2.01080603.ebuild:
diff --git a/dev-perl/math-pari/files/math-pari-2.010702-hppa.patch b/dev-perl/math-pari/files/math-pari-2.010702-hppa.patch
deleted file mode 100644
index 62c5b2aac862..000000000000
--- a/dev-perl/math-pari/files/math-pari-2.010702-hppa.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- Math-Pari-2.010702.orig/utils/Math/PariBuild.pm 2005-11-11 05:49:34.000000000 -0500
-+++ Math-Pari-2.010702/utils/Math/PariBuild.pm 2006-01-18 17:45:59.000000000 -0500
-@@ -717,7 +717,9 @@ sub find_machine_architecture () {
- } elsif ($os eq 'linux') {
- chomp($machine = `uname -m`);
- $machine = 'sparcv9' if $machine eq 'sparc64';
-- if (-e '/proc/cpuinfo') {
-+ $machine = 'hppa' if $machine eq 'parisc';
-+ $machine = 'hppa' if $machine eq 'parisc64';
-+ if (-e '/proc/cpuinfo' && -R '/proc/cpuinfo') {
- open IN, '/proc/cpuinfo' or die "open /proc/cpuinfo: $!";
- local $/ = undef; # Needed?
- my $info = <IN>;