diff options
author | Michael Palimaka <kensington@gentoo.org> | 2013-01-08 12:54:50 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2013-01-08 12:54:50 +0000 |
commit | 88e1021d09b04df72de424e0d2aa0d303d0bc9c8 (patch) | |
tree | 685391754bebcd993b10e731225f315377f486df | |
parent | Remove unused patches. (diff) | |
download | gentoo-2-88e1021d09b04df72de424e0d2aa0d303d0bc9c8.tar.gz gentoo-2-88e1021d09b04df72de424e0d2aa0d303d0bc9c8.tar.bz2 gentoo-2-88e1021d09b04df72de424e0d2aa0d303d0bc9c8.zip |
Remove unused patches.
(Portage version: 2.1.11.38/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
-rw-r--r-- | kde-base/step/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/step/files/step-4.3.2-solaris.patch | 69 |
2 files changed, 5 insertions, 71 deletions
diff --git a/kde-base/step/ChangeLog b/kde-base/step/ChangeLog index fc7c0d296693..f39efb93c930 100644 --- a/kde-base/step/ChangeLog +++ b/kde-base/step/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for kde-base/step # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/step/ChangeLog,v 1.132 2013/01/05 20:18:49 creffett Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/step/ChangeLog,v 1.133 2013/01/08 12:54:50 kensington Exp $ + + 08 Jan 2013; Michael Palimaka <kensington@gentoo.org> + -files/step-4.3.2-solaris.patch: + Remove unused patches. *step-4.9.5 (05 Jan 2013) @@ -511,4 +515,3 @@ 02 Oct 2008; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> +metadata.xml, +step-4.1.2.ebuild: Add kde-4.1.2 into the tree from the kde-testing overlay. - diff --git a/kde-base/step/files/step-4.3.2-solaris.patch b/kde-base/step/files/step-4.3.2-solaris.patch deleted file mode 100644 index 000f36228f74..000000000000 --- a/kde-base/step/files/step-4.3.2-solaris.patch +++ /dev/null @@ -1,69 +0,0 @@ -Desc: Fix compilation on Solaris. -Author: Heiko Przybyl <zuxez@cs.tu-berlin.de> ---- step-4.3.2/step/stepcore/constraintsolver.cc.orig 2009-10-16 18:42:52.562521176 +0200 -+++ step-4.3.2/step/stepcore/constraintsolver.cc 2009-10-16 18:44:15.447949305 +0200 -@@ -21,4 +21,18 @@ - #include <unsupported/Eigen/IterativeSolvers> - #include <cmath> -+ -+// Stolen from kcalc. -+#if defined(Q_OS_SOLARIS) -+// Strictly by the standard, ininf() is a c99-ism which -+// is unavailable in C++. The IEEE FP headers provide -+// a function with similar functionality, so use that instead. -+// However, !finite(a) == isinf(a) || isnan(a), so it's -+// not 100% correct. -+#include <ieeefp.h> -+namespace std { -+ inline int isinf(double a) { return !finite(a); } -+ inline int isfinite(double a) { return finite(a); } -+} -+#endif - - using namespace Eigen; ---- step-4.3.2/step/stepcore/particle.cc.orig 2009-10-16 19:23:50.845435007 +0200 -+++ step-4.3.2/step/stepcore/particle.cc 2009-10-16 19:24:33.425319075 +0200 -@@ -22,6 +22,20 @@ - #include <cmath> - #include <QtGlobal> - -+// Stolen from kcalc. -+#if defined(Q_OS_SOLARIS) -+// Strictly by the standard, ininf() is a c99-ism which -+// is unavailable in C++. The IEEE FP headers provide -+// a function with similar functionality, so use that instead. -+// However, !finite(a) == isinf(a) || isnan(a), so it's -+// not 100% correct. -+#include <ieeefp.h> -+namespace std { -+ inline int isinf(double a) { return !finite(a); } -+ inline int isfinite(double a) { return finite(a); } -+} -+#endif -+ - namespace StepCore - { - ---- step-4.3.2/step/stepcore/rigidbody.cc.orig 2009-10-16 19:24:57.664177635 +0200 -+++ step-4.3.2/step/stepcore/rigidbody.cc 2009-10-16 19:25:08.616915717 +0200 -@@ -21,6 +21,20 @@ - #include <cstring> - #include <cmath> - -+// Stolen from kcalc. -+#if defined(Q_OS_SOLARIS) -+// Strictly by the standard, ininf() is a c99-ism which -+// is unavailable in C++. The IEEE FP headers provide -+// a function with similar functionality, so use that instead. -+// However, !finite(a) == isinf(a) || isnan(a), so it's -+// not 100% correct. -+#include <ieeefp.h> -+namespace std { -+ inline int isinf(double a) { return !finite(a); } -+ inline int isfinite(double a) { return finite(a); } -+} -+#endif -+ - namespace StepCore - { - |