[arch-commits] Commit in kmplot/repos (6 files)

Antonio Rojas arojas at archlinux.org
Tue May 10 16:40:27 UTC 2016


    Date: Tuesday, May 10, 2016 @ 18:40:27
  Author: arojas
Revision: 267446

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  kmplot/repos/extra-i686/PKGBUILD
    (from rev 267445, kmplot/trunk/PKGBUILD)
  kmplot/repos/extra-x86_64/PKGBUILD
    (from rev 267445, kmplot/trunk/PKGBUILD)
Deleted:
  kmplot/repos/extra-i686/PKGBUILD
  kmplot/repos/extra-i686/kmplot-isnan.patch
  kmplot/repos/extra-x86_64/PKGBUILD
  kmplot/repos/extra-x86_64/kmplot-isnan.patch

---------------------------------+
 /PKGBUILD                       |   74 ++++++++++++++++++++++++++++++++++++++
 extra-i686/PKGBUILD             |   37 -------------------
 extra-i686/kmplot-isnan.patch   |   42 ---------------------
 extra-x86_64/PKGBUILD           |   37 -------------------
 extra-x86_64/kmplot-isnan.patch |   42 ---------------------
 5 files changed, 74 insertions(+), 158 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2016-05-10 16:40:09 UTC (rev 267445)
+++ extra-i686/PKGBUILD	2016-05-10 16:40:27 UTC (rev 267446)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-
-pkgname=kmplot
-pkgver=16.04.0
-pkgrel=2
-pkgdesc="Mathematical Function Plotter"
-url="http://kde.org/applications/education/kmplot/"
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('kdelibs4support' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-replaces=('kdeedu-kmplot')
-conflicts=('kdeedu-kmplot')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kmplot-${pkgver}.tar.xz")
-sha1sums=('73dd6089fc4e09a02767b96e69fe6e1c94c0da1f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DBUILD_TESTING=OFF \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kmplot/repos/extra-i686/PKGBUILD (from rev 267445, kmplot/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2016-05-10 16:40:27 UTC (rev 267446)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=kmplot
+pkgver=16.04.1
+pkgrel=1
+pkgdesc="Mathematical Function Plotter"
+url="http://kde.org/applications/education/kmplot/"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('kdelibs4support' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+replaces=('kdeedu-kmplot')
+conflicts=('kdeedu-kmplot')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kmplot-${pkgver}.tar.xz")
+sha1sums=('12782e36af725771b3fdc95011682d74a3b6e3e8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DBUILD_TESTING=OFF \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/kmplot-isnan.patch
===================================================================
--- extra-i686/kmplot-isnan.patch	2016-05-10 16:40:09 UTC (rev 267445)
+++ extra-i686/kmplot-isnan.patch	2016-05-10 16:40:27 UTC (rev 267446)
@@ -1,42 +0,0 @@
---- kmplot-15.12.3/kmplot/view.cpp.0	2016-03-11 21:19:48.011194225 +0000
-+++ kmplot-15.12.3/kmplot/view.cpp	2016-03-11 21:20:37.341056493 +0000
-@@ -476,7 +476,7 @@
- 	double x = pixel.x();
- 	double y = pixel.y();
- 	
--	if ( isnan(x) )
-+	if ( std::isnan(x) )
- 	{
- 		xclipflg = true;
- 		x = pixelIfNaN.x();
-@@ -496,14 +496,14 @@
- 	}
- 	else
- 	{
--		if ( isinf(x) == -1 )
-+		if ( std::isinf(x) == -1 )
- 			x = 0;
- 			
--		else if ( isinf(x) == 1 )
-+		else if ( std::isinf(x) == 1 )
- 			x = m_clipRect.right();
- 	}
- 	
--	if ( isnan(y) )
-+	if ( std::isnan(y) )
- 	{
- 		yclipflg = true;
- 		y = pixelIfNaN.y();
-@@ -523,10 +523,10 @@
- 	}
- 	else
- 	{
--		if ( isinf(y) == -1 )
-+		if ( std::isinf(y) == -1 )
- 			y = 0;
- 		
--		else if ( isinf(y) == 1 )
-+		else if ( std::isinf(y) == 1 )
- 			y = m_clipRect.bottom();
- 	}
- 	

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2016-05-10 16:40:09 UTC (rev 267445)
+++ extra-x86_64/PKGBUILD	2016-05-10 16:40:27 UTC (rev 267446)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-
-pkgname=kmplot
-pkgver=16.04.0
-pkgrel=2
-pkgdesc="Mathematical Function Plotter"
-url="http://kde.org/applications/education/kmplot/"
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('kdelibs4support' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-replaces=('kdeedu-kmplot')
-conflicts=('kdeedu-kmplot')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/kmplot-${pkgver}.tar.xz")
-sha1sums=('73dd6089fc4e09a02767b96e69fe6e1c94c0da1f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DBUILD_TESTING=OFF \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kmplot/repos/extra-x86_64/PKGBUILD (from rev 267445, kmplot/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2016-05-10 16:40:27 UTC (rev 267446)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=kmplot
+pkgver=16.04.1
+pkgrel=1
+pkgdesc="Mathematical Function Plotter"
+url="http://kde.org/applications/education/kmplot/"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('kdelibs4support' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+replaces=('kdeedu-kmplot')
+conflicts=('kdeedu-kmplot')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/kmplot-${pkgver}.tar.xz")
+sha1sums=('12782e36af725771b3fdc95011682d74a3b6e3e8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DBUILD_TESTING=OFF \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/kmplot-isnan.patch
===================================================================
--- extra-x86_64/kmplot-isnan.patch	2016-05-10 16:40:09 UTC (rev 267445)
+++ extra-x86_64/kmplot-isnan.patch	2016-05-10 16:40:27 UTC (rev 267446)
@@ -1,42 +0,0 @@
---- kmplot-15.12.3/kmplot/view.cpp.0	2016-03-11 21:19:48.011194225 +0000
-+++ kmplot-15.12.3/kmplot/view.cpp	2016-03-11 21:20:37.341056493 +0000
-@@ -476,7 +476,7 @@
- 	double x = pixel.x();
- 	double y = pixel.y();
- 	
--	if ( isnan(x) )
-+	if ( std::isnan(x) )
- 	{
- 		xclipflg = true;
- 		x = pixelIfNaN.x();
-@@ -496,14 +496,14 @@
- 	}
- 	else
- 	{
--		if ( isinf(x) == -1 )
-+		if ( std::isinf(x) == -1 )
- 			x = 0;
- 			
--		else if ( isinf(x) == 1 )
-+		else if ( std::isinf(x) == 1 )
- 			x = m_clipRect.right();
- 	}
- 	
--	if ( isnan(y) )
-+	if ( std::isnan(y) )
- 	{
- 		yclipflg = true;
- 		y = pixelIfNaN.y();
-@@ -523,10 +523,10 @@
- 	}
- 	else
- 	{
--		if ( isinf(y) == -1 )
-+		if ( std::isinf(y) == -1 )
- 			y = 0;
- 		
--		else if ( isinf(y) == 1 )
-+		else if ( std::isinf(y) == 1 )
- 			y = m_clipRect.bottom();
- 	}
- 	



More information about the arch-commits mailing list