[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD fix-pykf5-tests.patch)

2020-10-02 Thread Antonio Rojas via arch-commits
Date: Friday, October 2, 2020 @ 12:03:36
  Author: arojas
Revision: 397073

Fix running PyKF5 tests

Added:
  extra-cmake-modules/trunk/fix-pykf5-tests.patch
Modified:
  extra-cmake-modules/trunk/PKGBUILD

---+
 PKGBUILD  |   15 ++-
 fix-pykf5-tests.patch |   20 
 2 files changed, 30 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-02 07:09:07 UTC (rev 397072)
+++ PKGBUILD2020-10-02 12:03:36 UTC (rev 397073)
@@ -4,7 +4,7 @@
 
 pkgname=extra-cmake-modules
 pkgver=5.74.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Extra modules and scripts for CMake'
 arch=(any)
 url='https://community.kde.org/Frameworks'
@@ -13,14 +13,16 @@
 makedepends=(python-sphinx python-requests qt5-tools)
 groups=(kf5)
 
source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}
-ECM-no-init.py.patch)
+ECM-no-init.py.patch fix-pykf5-tests.patch)
 sha256sums=('71406067bcd99ac106e0e3bfbb073653b18fd6d01039c0298d9767680977364f'
 'SKIP'
-'5695e45c7621a00c0bca28f058c13b5d524f963a00b53337c8cefcdaf22c4b52')
+'5695e45c7621a00c0bca28f058c13b5d524f963a00b53337c8cefcdaf22c4b52'
+'bc9d50485a3c57e3ba6fc716ef621f3c15eb468e877dce480b42322e38d98e9c')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

 
 prepare() {
   patch -d $pkgname-$pkgver -p1 -i ../ECM-no-init.py.patch # Don't create 
__init__.py
+  patch -d $pkgname-$pkgver -p1 -i ../fix-pykf5-tests.patch # Fix locating 
pykf5 modules when running tests
 }
 
 build() {
@@ -27,11 +29,14 @@
   cmake -B build -S $pkgname-$pkgver \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DBUILD_HTML_DOCS=OFF \
--DBUILD_QTHELP_DOCS=ON \
--DBUILD_TESTING=OFF
+-DBUILD_QTHELP_DOCS=ON
   cmake --build build
 }
 
+check() {
+  cmake --build build --target test
+}
+
 package() {
   DESTDIR="$pkgdir" cmake --install build
 }

Added: fix-pykf5-tests.patch
===
--- fix-pykf5-tests.patch   (rev 0)
+++ fix-pykf5-tests.patch   2020-10-02 12:03:36 UTC (rev 397073)
@@ -0,0 +1,20 @@
+diff --git a/find-modules/FindPythonModuleGeneration.cmake 
b/find-modules/FindPythonModuleGeneration.cmake
+index 083b767..5baefd3 100644
+--- a/find-modules/FindPythonModuleGeneration.cmake
 b/find-modules/FindPythonModuleGeneration.cmake
+@@ -484,14 +484,9 @@ headers = sipAPI${GPB_MODULENAME}
+ set_property(TARGET Py${pyversion}KF5${GPB_MODULENAME} PROPERTY
+ OUTPUT_NAME "${GPB_MODULENAME}")
+ 
+-if (GPB_SIP_DEPENDS MATCHES PyKF5)
+-  set(_kf5_python_prefix ${KDE_INSTALL_FULL_PYTHON${pyversion}DIR})
+-else()
+-  set(_kf5_python_prefix ${CMAKE_BINARY_DIR}/py${pyversion})
+-endif()
+ add_test(NAME Py${pyversion}Test${GPB_MODULENAME} COMMAND
+ ${GPB_PYTHON${pyversion}_COMMAND} 
"${CMAKE_SOURCE_DIR}/autotests/pythontest.py"
+-${_kf5_python_prefix}
++${CMAKE_BINARY_DIR}/py${pyversion}
+ )
+ 
+ install(DIRECTORY 
${CMAKE_BINARY_DIR}/py${pyversion}/${GPB_PYTHONNAMESPACE}


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD libdir.patch)

2019-08-27 Thread Antonio Rojas via arch-commits
Date: Wednesday, August 28, 2019 @ 05:48:44
  Author: arojas
Revision: 361311

Patch merged

Modified:
  extra-cmake-modules/trunk/PKGBUILD
Deleted:
  extra-cmake-modules/trunk/libdir.patch

--+
 PKGBUILD |4 ++--
 libdir.patch |   12 
 2 files changed, 2 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-27 23:36:32 UTC (rev 361310)
+++ PKGBUILD2019-08-28 05:48:44 UTC (rev 361311)
@@ -14,11 +14,11 @@
 groups=(kf5)
 
source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}
 ECM-no-init.py.patch
-libdir.patch)
+
libdir.patch::"https://cgit.kde.org/extra-cmake-modules.git/patch/?id=c806bd48;)
 sha256sums=('a86a3b12c8a540af822131a8d65586d985267b1d642c29b4815b6c7870bc126c'
 'SKIP'
 '5695e45c7621a00c0bca28f058c13b5d524f963a00b53337c8cefcdaf22c4b52'
-'2b8c0532497c906ef64886d6751c4a52d06713962736bc455460b6974d5659d9')
+'c675d7e2d6919eec7a907a54021b5c43bfae831874232c9d194ce85bdb7e6496')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

 
 prepare() {

Deleted: libdir.patch
===
--- libdir.patch2019-08-27 23:36:32 UTC (rev 361310)
+++ libdir.patch2019-08-28 05:48:44 UTC (rev 361311)
@@ -1,12 +0,0 @@
-diff --git a/kde-modules/KDEInstallDirs.cmake 
b/kde-modules/KDEInstallDirs.cmake
-index 2003223..0acd33f 100644
 a/kde-modules/KDEInstallDirs.cmake
-+++ b/kde-modules/KDEInstallDirs.cmake
-@@ -245,6 +245,7 @@ set(_LIBDIR_DEFAULT "lib")
- # See https://wiki.debian.org/Multiarch
- if((CMAKE_SYSTEM_NAME MATCHES "Linux|kFreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL 
"GNU")
-AND NOT CMAKE_CROSSCOMPILING
-+   AND NOT EXISTS "/etc/arch-release"
-AND NOT DEFINED ENV{FLATPAK_ID})
-   if (EXISTS "/etc/debian_version") # is this a debian system ?
- if(CMAKE_LIBRARY_ARCHITECTURE)


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD libdir.patch)

2019-08-27 Thread Antonio Rojas via arch-commits
Date: Tuesday, August 27, 2019 @ 18:19:15
  Author: arojas
Revision: 361284

Use lib as LIBDIR by default

Added:
  extra-cmake-modules/trunk/libdir.patch
Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |9 ++---
 libdir.patch |   12 
 2 files changed, 18 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-27 18:00:36 UTC (rev 361283)
+++ PKGBUILD2019-08-27 18:19:15 UTC (rev 361284)
@@ -4,7 +4,7 @@
 
 pkgname=extra-cmake-modules
 pkgver=5.61.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Extra modules and scripts for CMake'
 arch=(any)
 url='https://community.kde.org/Frameworks'
@@ -13,10 +13,12 @@
 makedepends=(python-sphinx python-requests qt5-tools)
 groups=(kf5)
 
source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}
-ECM-no-init.py.patch)
+ECM-no-init.py.patch
+libdir.patch)
 sha256sums=('a86a3b12c8a540af822131a8d65586d985267b1d642c29b4815b6c7870bc126c'
 'SKIP'
-'5695e45c7621a00c0bca28f058c13b5d524f963a00b53337c8cefcdaf22c4b52')
+'5695e45c7621a00c0bca28f058c13b5d524f963a00b53337c8cefcdaf22c4b52'
+'2b8c0532497c906ef64886d6751c4a52d06713962736bc455460b6974d5659d9')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

 
 prepare() {
@@ -26,6 +28,7 @@
   sed -e 's|/usr/bin/env python|/usr/bin/env python2|' -i find-modules/*.py
 # Don't create __init__.py
   patch -p1 -i ../ECM-no-init.py.patch
+  patch -p1 -i ../libdir.patch # Use lib as LIBDIR by default
 }
 
 build() {

Added: libdir.patch
===
--- libdir.patch(rev 0)
+++ libdir.patch2019-08-27 18:19:15 UTC (rev 361284)
@@ -0,0 +1,12 @@
+diff --git a/kde-modules/KDEInstallDirs.cmake 
b/kde-modules/KDEInstallDirs.cmake
+index 2003223..0acd33f 100644
+--- a/kde-modules/KDEInstallDirs.cmake
 b/kde-modules/KDEInstallDirs.cmake
+@@ -245,6 +245,7 @@ set(_LIBDIR_DEFAULT "lib")
+ # See https://wiki.debian.org/Multiarch
+ if((CMAKE_SYSTEM_NAME MATCHES "Linux|kFreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL 
"GNU")
+AND NOT CMAKE_CROSSCOMPILING
++   AND NOT EXISTS "/etc/arch-release"
+AND NOT DEFINED ENV{FLATPAK_ID})
+   if (EXISTS "/etc/debian_version") # is this a debian system ?
+ if(CMAKE_LIBRARY_ARCHITECTURE)


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2019-08-11 Thread Felix Yan via arch-commits
Date: Sunday, August 11, 2019 @ 08:37:54
  Author: felixonmars
Revision: 359442

upgpkg: extra-cmake-modules 5.61.0-1

Upstream release

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-11 08:23:48 UTC (rev 359441)
+++ PKGBUILD2019-08-11 08:37:54 UTC (rev 359442)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.60.0
+pkgver=5.61.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=(any)
@@ -14,7 +14,7 @@
 groups=(kf5)
 
source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}
 ECM-no-init.py.patch)
-sha256sums=('2bd9da815de98d5908d3371815df963d305c828f90ba1a076f38543876690248'
+sha256sums=('a86a3b12c8a540af822131a8d65586d985267b1d642c29b4815b6c7870bc126c'
 'SKIP'
 '5695e45c7621a00c0bca28f058c13b5d524f963a00b53337c8cefcdaf22c4b52')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 



[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2019-02-02 Thread Antonio Rojas via arch-commits
Date: Saturday, February 2, 2019 @ 12:40:31
  Author: arojas
Revision: 345071

Fix qmake module generation for Qt 5.12.1

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |   10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-02 12:07:21 UTC (rev 345070)
+++ PKGBUILD2019-02-02 12:40:31 UTC (rev 345071)
@@ -4,7 +4,7 @@
 
 pkgname=extra-cmake-modules
 pkgver=5.54.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Extra modules and scripts for CMake'
 arch=(any)
 url='https://community.kde.org/Frameworks'
@@ -13,11 +13,13 @@
 makedepends=(python-sphinx python-requests qt5-tools)
 groups=(kf5)
 
source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}
-ECM-Qt5.12.patch ECM-no-init.py.patch)
+ECM-Qt5.12.patch ECM-no-init.py.patch
+
ECM-qmake-Qt5.12.1.patch::https://cgit.kde.org/extra-cmake-modules.git/patch/?id=79bf2300)
 sha256sums=('91b7a9359f1bfe6f667a5a9c23f6b2178555df26ca2e4dd1bb5c38dc36c77144'
 'SKIP'
 'e1144c9f84fc1fc69d85d8b32dab56c0c49802094b94c5e999504a6977463f86'
-'5695e45c7621a00c0bca28f058c13b5d524f963a00b53337c8cefcdaf22c4b52')
+'5695e45c7621a00c0bca28f058c13b5d524f963a00b53337c8cefcdaf22c4b52'
+'f792c4f1a4ee4f8ad94bcfb4aca81bf0d0d1e7f229bbad6a077b683deffe')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

 
 prepare() {
@@ -29,6 +31,8 @@
   patch -p1 -i ../ECM-no-init.py.patch
 # Fix Qt doc build with Qt 5.12
   patch -p1 -i ../ECM-Qt5.12.patch
+# Fix qmake module generation for Qt 5.12.1
+  patch -p1 -i ../ECM-qmake-Qt5.12.1.patch
 }
 
 build() {


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2018-12-10 Thread Antonio Rojas via arch-commits
Date: Monday, December 10, 2018 @ 20:21:12
  Author: arojas
Revision: 341572

Fix patch URL (FS#61021)

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-10 18:33:56 UTC (rev 341571)
+++ PKGBUILD2018-12-10 20:21:12 UTC (rev 341572)
@@ -13,7 +13,7 @@
 makedepends=(python-sphinx python-requests qt5-tools)
 groups=(kf5)
 
source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}
-
https://phabricator.kde.org/file/data/6a7o5gfbafuol2ppjggt/PHID-FILE-qlufn3sygdtffurzlgou/D17015.diff
+ECM-Qt5.12.patch::https://phabricator.kde.org/D17015?download=true
 ECM-no-init.py.patch)
 sha256sums=('2da177fb849d8b4da2442d19a99c53040c1be5fee65b7e863d550290cfa7b41d'
 'SKIP'
@@ -29,7 +29,7 @@
 # Don't create __init__.py
   patch -p1 -i ../ECM-no-init.py.patch
 # Fix Qt doc build with Qt 5.12
-  patch -p1 -i ../D17015.diff
+  patch -p1 -i ../ECM-Qt5.12.patch
 }
 
 build() {


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2017-08-14 Thread Felix Yan
Date: Monday, August 14, 2017 @ 10:32:09
  Author: felixonmars
Revision: 302023

upgpkg: extra-cmake-modules 5.37.0-1

Upstream release

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-14 09:31:54 UTC (rev 302022)
+++ PKGBUILD2017-08-14 10:32:09 UTC (rev 302023)
@@ -4,7 +4,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.36.0
+pkgver=5.37.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
@@ -14,7 +14,7 @@
 makedepends=('python-sphinx' 'python-requests' 'qt5-tools')
 
source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig}
 fix-python-bindings-generation.patch ECM-no-init.py.patch)
-sha256sums=('6e120bb40411ef559583ef693c0c03a41df3bb40a932bf7444c97e04266d5daf'
+sha256sums=('26198cf05c084c158bb23f0585a9df5bba1aa16b746252c80bdf4f0261b527cb'
 'SKIP'
 'af9238c6d1c3b4ebbefab0500c21364805f620a3e408792e2a5eaad3c6dfcc49'
 '5695e45c7621a00c0bca28f058c13b5d524f963a00b53337c8cefcdaf22c4b52')


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2017-04-13 Thread Felix Yan
Date: Thursday, April 13, 2017 @ 20:32:20
  Author: felixonmars
Revision: 292717

upgpkg: extra-cmake-modules 5.33.0-1

Upstream release

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-13 20:27:55 UTC (rev 292716)
+++ PKGBUILD2017-04-13 20:32:20 UTC (rev 292717)
@@ -4,7 +4,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.32.0
+pkgver=5.33.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
@@ -14,7 +14,7 @@
 makedepends=('python-sphinx' 'python-requests') # qt5-tools for QtHelp pages
 
source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig}
 fix-python-bindings-generation.patch ECM-no-init.py.patch)
-sha256sums=('b1d87be86f36c20ec1f4ad7946f702fd1a7cab0e2ea2e81f4f9a2d937f9f0ac7'
+sha256sums=('f3ff5e36c45ff579a742de700680678211cc90d8132af18f3a1c68f4f36b6a04'
 'SKIP'
 '51cc99dad7c60c8f3f4ffddfd75d781d00e4ac83638a6daf914bc9a3fd8a1502'
 '5695e45c7621a00c0bca28f058c13b5d524f963a00b53337c8cefcdaf22c4b52')


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2016-10-09 Thread Felix Yan
Date: Sunday, October 9, 2016 @ 17:11:17
  Author: felixonmars
Revision: 277979

upgpkg: extra-cmake-modules 5.27.0-1

Upstream release

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-09 16:30:11 UTC (rev 277978)
+++ PKGBUILD2016-10-09 17:11:17 UTC (rev 277979)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.26.0
+pkgver=5.27.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('f9615dc1343962e4e9d906f47bf8d509')
+md5sums=('e8803aa94fe6f8c34cb3bd2d5a17756a')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2016-09-14 Thread Felix Yan
Date: Wednesday, September 14, 2016 @ 09:09:28
  Author: felixonmars
Revision: 276272

upgpkg: extra-cmake-modules 5.26.0-1

Upstream release

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-14 07:08:12 UTC (rev 276271)
+++ PKGBUILD2016-09-14 09:09:28 UTC (rev 276272)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.25.0
+pkgver=5.26.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('043c08482bf7cf951e18d32e16238fb4')
+md5sums=('f9615dc1343962e4e9d906f47bf8d509')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2016-08-14 Thread Felix Yan
Date: Sunday, August 14, 2016 @ 15:37:24
  Author: felixonmars
Revision: 273665

upgpkg: extra-cmake-modules 5.25.0-1

Upstream release

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |   14 --
 1 file changed, 4 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-14 11:35:26 UTC (rev 273664)
+++ PKGBUILD2016-08-14 15:37:24 UTC (rev 273665)
@@ -3,8 +3,8 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.24.0
-pkgrel=2
+pkgver=5.25.0
+pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
 url='https://community.kde.org/Frameworks'
@@ -11,17 +11,11 @@
 license=('LGPL')
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
-
pri-install-dir.patch::"https://quickgit.kde.org/?p=extra-cmake-modules.git=commitdiff=5bb92992=plain;)
-md5sums=('cd3b0c844234ad29cfdba89d63ccb2ae'
- '2357eb8f8ecff829e29b2d3e5777c8c8')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('043c08482bf7cf951e18d32e16238fb4')
 
 prepare() {
   mkdir -p build
-
-# Workaround wrong .pri install dir https://bugs.kde.org/show_bug.cgi?id=363348
-  cd $pkgname-$pkgver
-  patch -p1 -i ../pri-install-dir.patch
 }
 
 build() {


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD pri-install-dir.patch)

2016-07-18 Thread Antonio Rojas
Date: Monday, July 18, 2016 @ 20:44:26
  Author: arojas
Revision: 271989

Use upstream patch

Modified:
  extra-cmake-modules/trunk/PKGBUILD
Deleted:
  extra-cmake-modules/trunk/pri-install-dir.patch

---+
 PKGBUILD  |7 ---
 pri-install-dir.patch |   11 ---
 2 files changed, 4 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-18 18:37:53 UTC (rev 271988)
+++ PKGBUILD2016-07-18 20:44:26 UTC (rev 271989)
@@ -4,7 +4,7 @@
 
 pkgname=extra-cmake-modules
 pkgver=5.24.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
 url='https://community.kde.org/Frameworks'
@@ -11,9 +11,10 @@
 license=('LGPL')
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
 pri-install-dir.patch)
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
+
pri-install-dir.patch::"https://quickgit.kde.org/?p=extra-cmake-modules.git=commitdiff=5bb92992=plain;)
 md5sums=('cd3b0c844234ad29cfdba89d63ccb2ae'
- '76ec20005b7a78be8ac88265b436c13a')
+ '2357eb8f8ecff829e29b2d3e5777c8c8')
 
 prepare() {
   mkdir -p build

Deleted: pri-install-dir.patch
===
--- pri-install-dir.patch   2016-07-18 18:37:53 UTC (rev 271988)
+++ pri-install-dir.patch   2016-07-18 20:44:26 UTC (rev 271989)
@@ -1,11 +0,0 @@
 extra-cmake-modules-5.23.0/modules/ECMGeneratePriFile.cmake.orig   
2016-06-23 07:40:57.240619651 +
-+++ extra-cmake-modules-5.23.0/modules/ECMGeneratePriFile.cmake
2016-06-23 07:41:26.010499925 +
-@@ -84,6 +84,8 @@
- # (To distribute this file outside of extra-cmake-modules, substitute the full
- #  License text for the above reference.)
- 
-+include(KDEInstallDirs)
-+
- if(KDE_INSTALL_USE_QT_SYS_PATHS)
-   include(ECMQueryQmake)
-   query_qmake(qt_host_data_dir QT_HOST_DATA)


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2016-07-10 Thread Felix Yan
Date: Monday, July 11, 2016 @ 00:58:25
  Author: felixonmars
Revision: 271267

upgpkg: extra-cmake-modules 5.24.0-1

Upstream release

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-10 20:10:05 UTC (rev 271266)
+++ PKGBUILD2016-07-11 00:58:25 UTC (rev 271267)
@@ -3,8 +3,8 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.23.0
-pkgrel=2
+pkgver=5.24.0
+pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
 url='https://community.kde.org/Frameworks'
@@ -12,7 +12,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
 pri-install-dir.patch)
-md5sums=('3c04b695a164407a2a2fcaf848c42c55'
+md5sums=('cd3b0c844234ad29cfdba89d63ccb2ae'
  '76ec20005b7a78be8ac88265b436c13a')
 
 prepare() {


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD pri-install-dir.patch)

2016-06-23 Thread Antonio Rojas
Date: Thursday, June 23, 2016 @ 07:46:43
  Author: arojas
Revision: 270488

Fix .pri install dir (KDEBUG#363348)

Added:
  extra-cmake-modules/trunk/pri-install-dir.patch
Modified:
  extra-cmake-modules/trunk/PKGBUILD

---+
 PKGBUILD  |   11 ---
 pri-install-dir.patch |   11 +++
 2 files changed, 19 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-22 21:25:36 UTC (rev 270487)
+++ PKGBUILD2016-06-23 07:46:43 UTC (rev 270488)
@@ -4,7 +4,7 @@
 
 pkgname=extra-cmake-modules
 pkgver=5.23.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
 url='https://community.kde.org/Frameworks'
@@ -11,11 +11,16 @@
 license=('LGPL')
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('3c04b695a164407a2a2fcaf848c42c55')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
 pri-install-dir.patch)
+md5sums=('3c04b695a164407a2a2fcaf848c42c55'
+ '76ec20005b7a78be8ac88265b436c13a')
 
 prepare() {
   mkdir -p build
+
+# Workaround wrong .pri install dir https://bugs.kde.org/show_bug.cgi?id=363348
+  cd $pkgname-$pkgver
+  patch -p1 -i ../pri-install-dir.patch
 }
 
 build() {

Added: pri-install-dir.patch
===
--- pri-install-dir.patch   (rev 0)
+++ pri-install-dir.patch   2016-06-23 07:46:43 UTC (rev 270488)
@@ -0,0 +1,11 @@
+--- extra-cmake-modules-5.23.0/modules/ECMGeneratePriFile.cmake.orig   
2016-06-23 07:40:57.240619651 +
 extra-cmake-modules-5.23.0/modules/ECMGeneratePriFile.cmake
2016-06-23 07:41:26.010499925 +
+@@ -84,6 +84,8 @@
+ # (To distribute this file outside of extra-cmake-modules, substitute the full
+ #  License text for the above reference.)
+ 
++include(KDEInstallDirs)
++
+ if(KDE_INSTALL_USE_QT_SYS_PATHS)
+   include(ECMQueryQmake)
+   query_qmake(qt_host_data_dir QT_HOST_DATA)


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2016-06-14 Thread Felix Yan
Date: Tuesday, June 14, 2016 @ 14:58:17
  Author: felixonmars
Revision: 269524

upgpkg: extra-cmake-modules 5.23.0-1

Upstream release

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-14 14:56:53 UTC (rev 269523)
+++ PKGBUILD2016-06-14 14:58:17 UTC (rev 269524)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.22.0
+pkgver=5.23.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('d94b0b8c479626c41c9aebdb5641afc1')
+md5sums=('3c04b695a164407a2a2fcaf848c42c55')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2016-05-16 Thread Felix Yan
Date: Monday, May 16, 2016 @ 16:22:20
  Author: fyan
Revision: 268088

upgpkg: extra-cmake-modules 5.22.0-1

Upstream release

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-16 11:33:57 UTC (rev 268087)
+++ PKGBUILD2016-05-16 14:22:20 UTC (rev 268088)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.21.0
+pkgver=5.22.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('91473997dd136046e1917795711e4b9b')
+md5sums=('d94b0b8c479626c41c9aebdb5641afc1')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2016-04-10 Thread Felix Yan
Date: Monday, April 11, 2016 @ 05:27:06
  Author: fyan
Revision: 264488

upgpkg: extra-cmake-modules 5.21.0-1

Upstream release

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-11 03:27:00 UTC (rev 264487)
+++ PKGBUILD2016-04-11 03:27:06 UTC (rev 264488)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.20.0
+pkgver=5.21.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('1b2e1a6416f47c3d8b5e1a8bc4680570')
+md5sums=('91473997dd136046e1917795711e4b9b')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2016-03-15 Thread Felix Yan
Date: Wednesday, March 16, 2016 @ 05:19:27
  Author: fyan
Revision: 261690

upgpkg: extra-cmake-modules 5.20.0-1

KF 5.20.0

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-16 03:16:35 UTC (rev 261689)
+++ PKGBUILD2016-03-16 04:19:27 UTC (rev 261690)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.19.0
+pkgver=5.20.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('c18b4e3ad6e37ce1fe372931d2b269fb')
+md5sums=('1b2e1a6416f47c3d8b5e1a8bc4680570')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2016-02-13 Thread Felix Yan
Date: Sunday, February 14, 2016 @ 04:32:23
  Author: fyan
Revision: 259141

upgpkg: extra-cmake-modules 5.19.0-1

KF 5.19.0

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-13 19:54:17 UTC (rev 259140)
+++ PKGBUILD2016-02-14 03:32:23 UTC (rev 259141)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.18.0
+pkgver=5.19.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('bcbcd88f7da0ee5fb54f8e5242f1')
+md5sums=('c18b4e3ad6e37ce1fe372931d2b269fb')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2016-01-10 Thread Felix Yan
Date: Sunday, January 10, 2016 @ 15:35:11
  Author: fyan
Revision: 257714

upgpkg: extra-cmake-modules 5.18.0-1

KF 5.18.0

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-10 13:41:17 UTC (rev 257713)
+++ PKGBUILD2016-01-10 14:35:11 UTC (rev 257714)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.17.0
+pkgver=5.18.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('dedb4a47cc8f850078792b5404de0d43')
+md5sums=('bcbcd88f7da0ee5fb54f8e5242f1')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2015-12-12 Thread Felix Yan
Date: Saturday, December 12, 2015 @ 17:25:15
  Author: fyan
Revision: 255866

upgpkg: extra-cmake-modules 5.17.0-1

KF 5.17.0

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-12 13:03:27 UTC (rev 255865)
+++ PKGBUILD2015-12-12 16:25:15 UTC (rev 255866)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.16.0
+pkgver=5.17.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('08d94fb941c670e4f1832a340e855836')
+md5sums=('dedb4a47cc8f850078792b5404de0d43')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2015-11-13 Thread Felix Yan
Date: Friday, November 13, 2015 @ 16:20:18
  Author: fyan
Revision: 250873

upgpkg: extra-cmake-modules 5.16.0-1

KF 5.16.0

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-13 15:15:19 UTC (rev 250872)
+++ PKGBUILD2015-11-13 15:20:18 UTC (rev 250873)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.15.0
+pkgver=5.16.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('5a41b547927190d366501cf61d86ec07')
+md5sums=('08d94fb941c670e4f1832a340e855836')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2015-10-10 Thread Felix Yan
Date: Saturday, October 10, 2015 @ 11:56:55
  Author: fyan
Revision: 248720

upgpkg: extra-cmake-modules 5.15.0-1

KF 5.15.0

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-10-10 08:35:38 UTC (rev 248719)
+++ PKGBUILD2015-10-10 09:56:55 UTC (rev 248720)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.14.0
+pkgver=5.15.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('5c5db16c6038e63e7b741fa32e4eaddd')
+md5sums=('5a41b547927190d366501cf61d86ec07')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2015-09-11 Thread Felix Yan
Date: Saturday, September 12, 2015 @ 02:27:26
  Author: fyan
Revision: 245817

upgpkg: extra-cmake-modules 5.14.0-1

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-11 20:23:08 UTC (rev 245816)
+++ PKGBUILD2015-09-12 00:27:26 UTC (rev 245817)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=extra-cmake-modules
-pkgver=5.13.0
+pkgver=5.14.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('26b970f7e02fd8d4b1828784f7359d18')
+md5sums=('5c5db16c6038e63e7b741fa32e4eaddd')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2015-08-12 Thread Felix Yan
Date: Wednesday, August 12, 2015 @ 09:55:35
  Author: fyan
Revision: 243204

upgpkg: extra-cmake-modules 5.13.0-1

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-08-12 07:25:22 UTC (rev 243203)
+++ PKGBUILD2015-08-12 07:55:35 UTC (rev 243204)
@@ -3,16 +3,16 @@
 # Contributor: Andrea Scarpino and...@archlinux.org
 
 pkgname=extra-cmake-modules
-pkgver=5.12.0
+pkgver=5.13.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
-arch=('i686' 'x86_64') # 'any' is broken, see 
https://git.reviewboard.kde.org/r/118498/
+arch=('any')
 url='https://projects.kde.org/projects/kdesupport/extra-cmake-modules'
 license=('LGPL')
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=(http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('e4042cf258b545267d74b0cf7d756150')
+md5sums=('26b970f7e02fd8d4b1828784f7359d18')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2015-04-12 Thread Antonio Rojas
Date: Sunday, April 12, 2015 @ 11:12:12
  Author: arojas
Revision: 236286

Don't build tests

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-12 09:08:17 UTC (rev 236285)
+++ PKGBUILD2015-04-12 09:12:12 UTC (rev 236286)
@@ -23,7 +23,8 @@
   cmake ../${pkgname}-${pkgver} \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_BUILD_TYPE=Release \
--DBUILD_HTML_DOCS=OFF
+-DBUILD_HTML_DOCS=OFF \
+-DBUILD_TESTING=OFF
   make
 }
 


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2015-04-08 Thread Felix Yan
Date: Wednesday, April 8, 2015 @ 08:40:19
  Author: fyan
Revision: 235606

upgpkg: extra-cmake-modules 5.9.0-1

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-08 06:31:08 UTC (rev 235605)
+++ PKGBUILD2015-04-08 06:40:19 UTC (rev 235606)
@@ -3,8 +3,7 @@
 # Contributor: Andrea Scarpino and...@archlinux.org
 
 pkgname=extra-cmake-modules
-pkgver=1.8.0
-_pkgver=5.8.0
+pkgver=5.9.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('i686' 'x86_64') # 'any' is broken, see 
https://git.reviewboard.kde.org/r/118498/
@@ -12,8 +11,8 @@
 license=('LGPL')
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
-source=(http://download.kde.org/stable/frameworks/${_pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('e877d996f478419c3a749cfc425bd6c0')
+source=(http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('98633e740805a56be02a23ffa1c57a73')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2015-03-13 Thread Felix Yan
Date: Friday, March 13, 2015 @ 17:59:58
  Author: fyan
Revision: 233453

upgpkg: extra-cmake-modules 1.8.0-1

KF 5.8

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-03-13 16:48:11 UTC (rev 233452)
+++ PKGBUILD2015-03-13 16:59:58 UTC (rev 233453)
@@ -3,8 +3,8 @@
 # Contributor: Andrea Scarpino and...@archlinux.org
 
 pkgname=extra-cmake-modules
-pkgver=1.7.0
-_pkgver=5.7.0
+pkgver=1.8.0
+_pkgver=5.8.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('i686' 'x86_64') # 'any' is broken, see 
https://git.reviewboard.kde.org/r/118498/
@@ -13,7 +13,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=(http://download.kde.org/stable/frameworks/${_pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('45fd1e6f38b23b00983e5eab9ba61d15')
+md5sums=('e877d996f478419c3a749cfc425bd6c0')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2015-02-15 Thread Felix Yan
Date: Sunday, February 15, 2015 @ 16:00:16
  Author: fyan
Revision: 231455

upgpkg: extra-cmake-modules 1.7.0-1

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-15 14:58:42 UTC (rev 231454)
+++ PKGBUILD2015-02-15 15:00:16 UTC (rev 231455)
@@ -1,9 +1,10 @@
 # $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
 
 pkgname=extra-cmake-modules
-pkgver=1.6.1
-_pkgver=5.6.0
+pkgver=1.7.0
+_pkgver=5.7.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('i686' 'x86_64') # 'any' is broken, see 
https://git.reviewboard.kde.org/r/118498/
@@ -12,7 +13,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=(http://download.kde.org/stable/frameworks/${_pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('b95e2184c1e1b2929239ff241271721c')
+md5sums=('45fd1e6f38b23b00983e5eab9ba61d15')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2015-01-11 Thread Andrea Scarpino
Date: Monday, January 12, 2015 @ 08:47:05
  Author: andrea
Revision: 228938

upgpkg: extra-cmake-modules 1.6.1-1

Upstream release

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-12 07:13:26 UTC (rev 228937)
+++ PKGBUILD2015-01-12 07:47:05 UTC (rev 228938)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=extra-cmake-modules
-pkgver=1.6.0
+pkgver=1.6.1
 _pkgver=5.6.0
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
@@ -12,7 +12,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=(http://download.kde.org/stable/frameworks/${_pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('4fa1fd83a05cbf651166f30d1a23e005')
+md5sums=('b95e2184c1e1b2929239ff241271721c')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2014-09-15 Thread Andrea Scarpino
Date: Monday, September 15, 2014 @ 21:47:02
  Author: andrea
Revision: 221775

upgpkg: extra-cmake-modules 1.2.1-1

Upstream release

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-15 19:30:51 UTC (rev 221774)
+++ PKGBUILD2014-09-15 19:47:02 UTC (rev 221775)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=extra-cmake-modules
-pkgver=1.2.0
+pkgver=1.2.1
 _pkgver=5.2.0
 pkgrel=1
 pkgdesc='Extra CMake modules'
@@ -12,7 +12,7 @@
 depends=('cmake')
 makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=(http://download.kde.org/stable/frameworks/${_pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('ce0952106cd16f420315528e2dc5f177')
+md5sums=('79b70ca25003af18db97c6336d68e4b3')
 
 prepare() {
   mkdir -p build



[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2014-06-04 Thread Andrea Scarpino
Date: Wednesday, June 4, 2014 @ 18:55:49
  Author: andrea
Revision: 214253

upgpkg: extra-cmake-modules 0.0.14-2

'any' is broken, see https://git.reviewboard.kde.org/r/118498/

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-06-04 14:49:57 UTC (rev 214252)
+++ PKGBUILD2014-06-04 16:55:49 UTC (rev 214253)
@@ -4,9 +4,9 @@
 pkgname=extra-cmake-modules
 pkgver=0.0.14
 _pkgver=4.100.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Extra CMake modules'
-arch=('any')
+arch=('i686' 'x86_64') # 'any' is broken, see 
https://git.reviewboard.kde.org/r/118498/
 url='https://projects.kde.org/projects/kdesupport/extra-cmake-modules'
 license=('LGPL')
 depends=('cmake')



[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 20:15:02
  Author: andrea
Revision: 212196

Add property

Modified:
  extra-cmake-modules/trunk/PKGBUILD(properties)

Index: extra-cmake-modules/trunk/PKGBUILD
===
--- extra-cmake-modules/trunk/PKGBUILD  2014-05-10 18:11:28 UTC (rev 212195)
+++ extra-cmake-modules/trunk/PKGBUILD  2014-05-10 18:15:02 UTC (rev 212196)

Property changes on: extra-cmake-modules/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 20:29:22
  Author: andrea
Revision: 212199

upgpkg: extra-cmake-modules 0.0.13-2

Build man pages

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 18:17:12 UTC (rev 212198)
+++ PKGBUILD2014-05-10 18:29:22 UTC (rev 212199)
@@ -4,12 +4,13 @@
 pkgname=extra-cmake-modules
 pkgver=0.0.13
 _pkgver=4.99.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Extra CMake modules'
 arch=('any')
 url='https://projects.kde.org/projects/kdesupport/extra-cmake-modules'
 license=('LGPL')
 depends=('cmake')
+makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=(http://download.kde.org/unstable/frameworks/${_pkgver}/${pkgname}-${pkgver}.tar.xz;)
 md5sums=('c76fe1124e588fd518b2a2423aa64753')
 
@@ -21,7 +22,8 @@
   cd build
   cmake ../${pkgname}-${pkgver} \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_HTML_DOCS=OFF
   make
 }
 



[arch-commits] Commit in extra-cmake-modules/trunk (PKGBUILD)

2013-12-21 Thread Andrea Scarpino
Date: Saturday, December 21, 2013 @ 14:58:38
  Author: andrea
Revision: 202376

upgpkg: extra-cmake-modules plasma2tp.r0.g83f4d25-1

nicer pkgver

Modified:
  extra-cmake-modules/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-21 13:55:07 UTC (rev 202375)
+++ PKGBUILD2013-12-21 13:58:38 UTC (rev 202376)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=extra-cmake-modules
-pkgver=r2446.83f4d25
+pkgver=plasma2tp.r0.g83f4d25
 pkgrel=1
 pkgdesc='Extra modules and scripts for CMake'
 arch=('any')
@@ -15,7 +15,7 @@
 
 pkgver() {
   cd extra-cmake-modules
-  printf r%s.%s $(git rev-list --count HEAD) $(git rev-parse --short 
HEAD)
+  git describe --long | sed -E 's/([^-]*-g)/r\1/;s/-/./g'
 }
 
 prepare() {