[arch-commits] Commit in kcalc/repos (7 files)

Antonio Rojas arojas at archlinux.org
Sat Aug 19 05:52:37 UTC 2017


    Date: Saturday, August 19, 2017 @ 05:52:36
  Author: arojas
Revision: 302600

archrelease: copy trunk to kde-unstable-i686, kde-unstable-x86_64

Added:
  kcalc/repos/kde-unstable-i686/
  kcalc/repos/kde-unstable-i686/PKGBUILD
    (from rev 302599, kcalc/trunk/PKGBUILD)
  kcalc/repos/kde-unstable-i686/kcalc-qt5.6.patch
    (from rev 302599, kcalc/trunk/kcalc-qt5.6.patch)
  kcalc/repos/kde-unstable-x86_64/PKGBUILD
    (from rev 302599, kcalc/trunk/PKGBUILD)
  kcalc/repos/kde-unstable-x86_64/kcalc-qt5.6.patch
    (from rev 302599, kcalc/trunk/kcalc-qt5.6.patch)
Deleted:
  kcalc/repos/kde-unstable-x86_64/PKGBUILD
  kcalc/repos/kde-unstable-x86_64/kcalc-qt5.6.patch

---------------------------------------+
 /PKGBUILD                             |   40 ++++++++++++++++++++++++++++++++
 /kcalc-qt5.6.patch                    |   11 ++++++++
 kde-unstable-i686/PKGBUILD            |   40 ++++++++++++++++++++++++++++++++
 kde-unstable-i686/kcalc-qt5.6.patch   |   11 ++++++++
 kde-unstable-x86_64/PKGBUILD          |   40 --------------------------------
 kde-unstable-x86_64/kcalc-qt5.6.patch |   11 --------
 6 files changed, 102 insertions(+), 51 deletions(-)

Copied: kcalc/repos/kde-unstable-i686/PKGBUILD (from rev 302599, kcalc/trunk/PKGBUILD)
===================================================================
--- kde-unstable-i686/PKGBUILD	                        (rev 0)
+++ kde-unstable-i686/PKGBUILD	2017-08-19 05:52:36 UTC (rev 302600)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=kcalc
+pkgver=17.08.0
+pkgrel=1
+pkgdesc='Scientific Calculator'
+url='https://kde.org/applications/utilities/kcalc/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kinit')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+conflicts=('kdeutils-kcalc')
+replaces=('kdeutils-kcalc')
+groups=('kde-applications' 'kdeutils')
+source=("https://download.kde.org/stable/applications/${pkgver}/src/kcalc-${pkgver}.tar.xz"{,.sig})
+sha256sums=('7e26dfa8b456b4ee5f6134cffbb29b38ab5d7e10a00c0588d1e31ac4d0e6b10f'
+            'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid <aacid at kde.org>
+              F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cfeck at kde.org>
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DBUILD_TESTING=OFF \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: kcalc/repos/kde-unstable-i686/kcalc-qt5.6.patch (from rev 302599, kcalc/trunk/kcalc-qt5.6.patch)
===================================================================
--- kde-unstable-i686/kcalc-qt5.6.patch	                        (rev 0)
+++ kde-unstable-i686/kcalc-qt5.6.patch	2017-08-19 05:52:36 UTC (rev 302600)
@@ -0,0 +1,11 @@
+--- kcalc-15.12.3/kcalc.cpp.orig	2016-03-16 16:26:37.327157522 +0000
++++ kcalc-15.12.3/kcalc.cpp	2016-03-16 16:28:08.533357025 +0000
+@@ -123,7 +123,7 @@
+ 
+ 	updateGeometry();
+ 
+-	setFixedSize(minimumSize());
++	if ( ! minimumSize().isEmpty() ) setFixedSize(minimumSize());
+ 
+ 	updateDisplay(UPDATE_FROM_CORE);
+ 

Deleted: kde-unstable-x86_64/PKGBUILD
===================================================================
--- kde-unstable-x86_64/PKGBUILD	2017-08-19 05:52:16 UTC (rev 302599)
+++ kde-unstable-x86_64/PKGBUILD	2017-08-19 05:52:36 UTC (rev 302600)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-
-pkgname=kcalc
-pkgver=17.07.80
-pkgrel=1
-pkgdesc='Scientific Calculator'
-url='https://kde.org/applications/utilities/kcalc/'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kinit')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-conflicts=('kdeutils-kcalc')
-replaces=('kdeutils-kcalc')
-groups=('kde-applications' 'kdeutils')
-source=("https://download.kde.org/unstable/applications/${pkgver}/src/kcalc-${pkgver}.tar.xz"{,.sig})
-sha256sums=('f7bd92ff79ffcc49aa7f8a1a797060a8166ca09cab249a1b55e912a43c4d9d5e'
-            'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid <aacid at kde.org>
-              F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cfeck at kde.org>
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DBUILD_TESTING=OFF \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DKDE_INSTALL_LIBDIR=lib
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kcalc/repos/kde-unstable-x86_64/PKGBUILD (from rev 302599, kcalc/trunk/PKGBUILD)
===================================================================
--- kde-unstable-x86_64/PKGBUILD	                        (rev 0)
+++ kde-unstable-x86_64/PKGBUILD	2017-08-19 05:52:36 UTC (rev 302600)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=kcalc
+pkgver=17.08.0
+pkgrel=1
+pkgdesc='Scientific Calculator'
+url='https://kde.org/applications/utilities/kcalc/'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kinit')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+conflicts=('kdeutils-kcalc')
+replaces=('kdeutils-kcalc')
+groups=('kde-applications' 'kdeutils')
+source=("https://download.kde.org/stable/applications/${pkgver}/src/kcalc-${pkgver}.tar.xz"{,.sig})
+sha256sums=('7e26dfa8b456b4ee5f6134cffbb29b38ab5d7e10a00c0588d1e31ac4d0e6b10f'
+            'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid <aacid at kde.org>
+              F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cfeck at kde.org>
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DBUILD_TESTING=OFF \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DKDE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: kde-unstable-x86_64/kcalc-qt5.6.patch
===================================================================
--- kde-unstable-x86_64/kcalc-qt5.6.patch	2017-08-19 05:52:16 UTC (rev 302599)
+++ kde-unstable-x86_64/kcalc-qt5.6.patch	2017-08-19 05:52:36 UTC (rev 302600)
@@ -1,11 +0,0 @@
---- kcalc-15.12.3/kcalc.cpp.orig	2016-03-16 16:26:37.327157522 +0000
-+++ kcalc-15.12.3/kcalc.cpp	2016-03-16 16:28:08.533357025 +0000
-@@ -123,7 +123,7 @@
- 
- 	updateGeometry();
- 
--	setFixedSize(minimumSize());
-+	if ( ! minimumSize().isEmpty() ) setFixedSize(minimumSize());
- 
- 	updateDisplay(UPDATE_FROM_CORE);
- 

Copied: kcalc/repos/kde-unstable-x86_64/kcalc-qt5.6.patch (from rev 302599, kcalc/trunk/kcalc-qt5.6.patch)
===================================================================
--- kde-unstable-x86_64/kcalc-qt5.6.patch	                        (rev 0)
+++ kde-unstable-x86_64/kcalc-qt5.6.patch	2017-08-19 05:52:36 UTC (rev 302600)
@@ -0,0 +1,11 @@
+--- kcalc-15.12.3/kcalc.cpp.orig	2016-03-16 16:26:37.327157522 +0000
++++ kcalc-15.12.3/kcalc.cpp	2016-03-16 16:28:08.533357025 +0000
+@@ -123,7 +123,7 @@
+ 
+ 	updateGeometry();
+ 
+-	setFixedSize(minimumSize());
++	if ( ! minimumSize().isEmpty() ) setFixedSize(minimumSize());
+ 
+ 	updateDisplay(UPDATE_FROM_CORE);
+ 



More information about the arch-commits mailing list