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

2022-08-17 Thread Felix Yan via arch-commits
Date: Wednesday, August 17, 2022 @ 20:48:41
  Author: felixonmars
Revision: 453065

upgpkg: cmake 3.24.1-1

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-17 19:30:34 UTC (rev 453064)
+++ PKGBUILD2022-08-17 20:48:41 UTC (rev 453065)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.24.0
+pkgver=3.24.1
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('qt6-base' 'python-sphinx' 'emacs')
 optdepends=('qt6-base: cmake-gui')
 
source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('91507fc0643f2de20e37cd8d6a539d8cb38a80b604bf77de8e88c8446b6d7b6d02b7329d58966dc2412c6c75edcb9dfbdae02fe84965fefeb7ca47f87631fe17')
+sha512sums=('67bfafcf9ceba617d7ebbb0ac88b689a2d90ab51fea4a83bd073ee082fb55de8962ce7fb283f3db5f455d286f2199843ffa595a1de207d4fa3e4472d951eb289')
 
 build() {
   cd ${pkgname}-${pkgver}



[arch-commits] Commit in cmake/trunk (PKGBUILD wxwidgets-3.2.patch)

2022-08-04 Thread Antonio Rojas via arch-commits
Date: Thursday, August 4, 2022 @ 16:39:14
  Author: arojas
Revision: 452063

upgpkg: cmake 3.24.0-1: Update to 3.24.0

Modified:
  cmake/trunk/PKGBUILD
Deleted:
  cmake/trunk/wxwidgets-3.2.patch

-+
 PKGBUILD|   12 -
 wxwidgets-3.2.patch |  303 --
 2 files changed, 3 insertions(+), 312 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-04 16:33:46 UTC (rev 452062)
+++ PKGBUILD2022-08-04 16:39:14 UTC (rev 452063)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.23.3
+pkgver=3.24.0
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -12,15 +12,9 @@
 depends=('curl' 'libarchive' 'hicolor-icon-theme' 'jsoncpp' 'libjsoncpp.so' 
'libuv' 'rhash')
 makedepends=('qt6-base' 'python-sphinx' 'emacs')
 optdepends=('qt6-base: cmake-gui')
-source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
- wxwidgets-3.2.patch)
-sha512sums=('75f86abe60ef28ba9bd06546c0c24578921621fb4be942171e629366a759cf1469e430945addc85f8ce977920883c063ed26de1b78fd24dfd98d0eb604800632'
-
'618a529fcd0a5029160fc6ef74439b7cb54ca74d13d52dd6cad005710bf1be263d0bf90bc4becc63a37929ac2f86c51278685e9da93fd82355ac646cb43b356f')
+source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('91507fc0643f2de20e37cd8d6a539d8cb38a80b604bf77de8e88c8446b6d7b6d02b7329d58966dc2412c6c75edcb9dfbdae02fe84965fefeb7ca47f87631fe17')
 
-prepare() {
-  patch -d $pkgname-$pkgver -p1 < wxwidgets-3.2.patch # Support wxWidgets 3.2
-}
-
 build() {
   cd ${pkgname}-${pkgver}
   ./bootstrap --prefix=/usr \

Deleted: wxwidgets-3.2.patch
===
--- wxwidgets-3.2.patch 2022-08-04 16:33:46 UTC (rev 452062)
+++ wxwidgets-3.2.patch 2022-08-04 16:39:14 UTC (rev 452063)
@@ -1,303 +0,0 @@
-From ed51e0bb752ecaae29c4ac7a6a89ebfbe5fb4016 Mon Sep 17 00:00:00 2001
-From: Maarten Bent 
-Date: Wed, 15 Jun 2022 18:23:41 +0200
-Subject: [PATCH 1/3] FindwxWidgets: Move extracting version number to a macro
-

- Modules/FindwxWidgets.cmake | 44 -
- 1 file changed, 24 insertions(+), 20 deletions(-)
-
-diff --git a/Modules/FindwxWidgets.cmake b/Modules/FindwxWidgets.cmake
-index f7996bacb0..accae50e80 100644
 a/Modules/FindwxWidgets.cmake
-+++ b/Modules/FindwxWidgets.cmake
-@@ -215,6 +215,29 @@ else()
-   set(wxWidgets_USE_FILE UsewxWidgets)
- endif()
- 
-+macro(wx_extract_version)
-+  unset(_wx_filename)
-+  find_file(_wx_filename wx/version.h PATHS ${wxWidgets_INCLUDE_DIRS} 
NO_DEFAULT_PATH)
-+  dbg_msg("_wx_filename:  ${_wx_filename}")
-+
-+  if(NOT _wx_filename)
-+message(FATAL_ERROR "wxWidgets wx/version.h file not found in 
${wxWidgets_INCLUDE_DIRS}.")
-+  endif()
-+
-+  file(READ "${_wx_filename}" _wx_version_h)
-+  unset(_wx_filename CACHE)
-+
-+  string(REGEX REPLACE "^(.*\n)?#define +wxMAJOR_VERSION +([0-9]+).*"
-+"\\2" wxWidgets_VERSION_MAJOR "${_wx_version_h}" )
-+  string(REGEX REPLACE "^(.*\n)?#define +wxMINOR_VERSION +([0-9]+).*"
-+"\\2" wxWidgets_VERSION_MINOR "${_wx_version_h}" )
-+  string(REGEX REPLACE "^(.*\n)?#define +wxRELEASE_NUMBER +([0-9]+).*"
-+"\\2" wxWidgets_VERSION_PATCH "${_wx_version_h}" )
-+  set(wxWidgets_VERSION_STRING
-+
"${wxWidgets_VERSION_MAJOR}.${wxWidgets_VERSION_MINOR}.${wxWidgets_VERSION_PATCH}"
 )
-+  dbg_msg("wxWidgets_VERSION_STRING:${wxWidgets_VERSION_STRING}")
-+endmacro()
-+
- #=
- # Determine whether unix or win32 paths should be used
- #=
-@@ -981,26 +1004,7 @@ unset(_wx_lib_missing)
- 
- # Check if a specific version was requested by find_package().
- if(wxWidgets_FOUND)
--  unset(_wx_filename)
--  find_file(_wx_filename wx/version.h PATHS ${wxWidgets_INCLUDE_DIRS} 
NO_DEFAULT_PATH)
--  dbg_msg("_wx_filename:  ${_wx_filename}")
--
--  if(NOT _wx_filename)
--message(FATAL_ERROR "wxWidgets wx/version.h file not found in 
${wxWidgets_INCLUDE_DIRS}.")
--  endif()
--
--  file(READ "${_wx_filename}" _wx_version_h)
--  unset(_wx_filename CACHE)
--
--  string(REGEX REPLACE "^(.*\n)?#define +wxMAJOR_VERSION +([0-9]+).*"
--"\\2" wxWidgets_VERSION_MAJOR "${_wx_version_h}" )
--  string(REGEX REPLACE "^(.*\n)?#define +wxMINOR_VERSION +([0-9]+).*"
--"\\2" wxWidgets_VERSION_MINOR "${_wx_version_h}" )
--  string(REGEX REPLACE "^(.*\n)?#define +wxRELEASE_NUMBER +([0-9]+).*"
--"\\2" wxWidgets_VERSION_PATCH "${_wx_version_h}" )
--  set(wxWidgets_VERSION_STRING
--
"${wxWidgets_VERSION_MAJOR}.${wxWidgets_VERSION_MINOR}.${wxWidgets_VERSION_PATCH}"
 )
--  dbg_msg("wxWidgets_VERSION_STRING:${wxWidgets_VERSION_STRING}")
-+  wx_extract_version()
- endif()
- 
- # Debug output:
--- 
-GitLab
-
-
-From 

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

2022-07-28 Thread Antonio Rojas via arch-commits
Date: Thursday, July 28, 2022 @ 21:55:20
  Author: arojas
Revision: 451724

upgpkg: cmake 3.23.3-1: Update to 3.23.3

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-28 21:17:49 UTC (rev 451723)
+++ PKGBUILD2022-07-28 21:55:20 UTC (rev 451724)
@@ -3,8 +3,8 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.23.2
-pkgrel=2
+pkgver=3.23.3
+pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
 url="https://www.cmake.org/;
@@ -14,7 +14,7 @@
 optdepends=('qt6-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  wxwidgets-3.2.patch)
-sha512sums=('0925adf973d642fd76d4089b61b3882babb0a85050c4c57d5f5f3bd6b17564a9feb0beed236cd636e25f69072fa30b67ea3f80932380b6b6576f2dd78b8e6931'
+sha512sums=('75f86abe60ef28ba9bd06546c0c24578921621fb4be942171e629366a759cf1469e430945addc85f8ce977920883c063ed26de1b78fd24dfd98d0eb604800632'
 
'618a529fcd0a5029160fc6ef74439b7cb54ca74d13d52dd6cad005710bf1be263d0bf90bc4becc63a37929ac2f86c51278685e9da93fd82355ac646cb43b356f')
 
 prepare() {



[arch-commits] Commit in cmake/trunk (PKGBUILD wxwidgets-3.2.patch)

2022-07-07 Thread Antonio Rojas via arch-commits
Date: Thursday, July 7, 2022 @ 16:31:38
  Author: arojas
Revision: 450490

Support wxwidgets 3.2

Added:
  cmake/trunk/wxwidgets-3.2.patch
Modified:
  cmake/trunk/PKGBUILD

-+
 PKGBUILD|   12 +
 wxwidgets-3.2.patch |  303 ++
 2 files changed, 312 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-07-07 16:10:42 UTC (rev 450489)
+++ PKGBUILD2022-07-07 16:31:38 UTC (rev 450490)
@@ -4,7 +4,7 @@
 
 pkgname=cmake
 pkgver=3.23.2
-pkgrel=1
+pkgrel=2
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
 url="https://www.cmake.org/;
@@ -12,9 +12,15 @@
 depends=('curl' 'libarchive' 'hicolor-icon-theme' 'jsoncpp' 'libjsoncpp.so' 
'libuv' 'rhash')
 makedepends=('qt6-base' 'python-sphinx' 'emacs')
 optdepends=('qt6-base: cmake-gui')
-source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('0925adf973d642fd76d4089b61b3882babb0a85050c4c57d5f5f3bd6b17564a9feb0beed236cd636e25f69072fa30b67ea3f80932380b6b6576f2dd78b8e6931')
+source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
+ wxwidgets-3.2.patch)
+sha512sums=('0925adf973d642fd76d4089b61b3882babb0a85050c4c57d5f5f3bd6b17564a9feb0beed236cd636e25f69072fa30b67ea3f80932380b6b6576f2dd78b8e6931'
+
'618a529fcd0a5029160fc6ef74439b7cb54ca74d13d52dd6cad005710bf1be263d0bf90bc4becc63a37929ac2f86c51278685e9da93fd82355ac646cb43b356f')
 
+prepare() {
+  patch -d $pkgname-$pkgver -p1 < wxwidgets-3.2.patch # Support wxWidgets 3.2
+}
+
 build() {
   cd ${pkgname}-${pkgver}
   ./bootstrap --prefix=/usr \

Added: wxwidgets-3.2.patch
===
--- wxwidgets-3.2.patch (rev 0)
+++ wxwidgets-3.2.patch 2022-07-07 16:31:38 UTC (rev 450490)
@@ -0,0 +1,303 @@
+From ed51e0bb752ecaae29c4ac7a6a89ebfbe5fb4016 Mon Sep 17 00:00:00 2001
+From: Maarten Bent 
+Date: Wed, 15 Jun 2022 18:23:41 +0200
+Subject: [PATCH 1/3] FindwxWidgets: Move extracting version number to a macro
+
+---
+ Modules/FindwxWidgets.cmake | 44 -
+ 1 file changed, 24 insertions(+), 20 deletions(-)
+
+diff --git a/Modules/FindwxWidgets.cmake b/Modules/FindwxWidgets.cmake
+index f7996bacb0..accae50e80 100644
+--- a/Modules/FindwxWidgets.cmake
 b/Modules/FindwxWidgets.cmake
+@@ -215,6 +215,29 @@ else()
+   set(wxWidgets_USE_FILE UsewxWidgets)
+ endif()
+ 
++macro(wx_extract_version)
++  unset(_wx_filename)
++  find_file(_wx_filename wx/version.h PATHS ${wxWidgets_INCLUDE_DIRS} 
NO_DEFAULT_PATH)
++  dbg_msg("_wx_filename:  ${_wx_filename}")
++
++  if(NOT _wx_filename)
++message(FATAL_ERROR "wxWidgets wx/version.h file not found in 
${wxWidgets_INCLUDE_DIRS}.")
++  endif()
++
++  file(READ "${_wx_filename}" _wx_version_h)
++  unset(_wx_filename CACHE)
++
++  string(REGEX REPLACE "^(.*\n)?#define +wxMAJOR_VERSION +([0-9]+).*"
++"\\2" wxWidgets_VERSION_MAJOR "${_wx_version_h}" )
++  string(REGEX REPLACE "^(.*\n)?#define +wxMINOR_VERSION +([0-9]+).*"
++"\\2" wxWidgets_VERSION_MINOR "${_wx_version_h}" )
++  string(REGEX REPLACE "^(.*\n)?#define +wxRELEASE_NUMBER +([0-9]+).*"
++"\\2" wxWidgets_VERSION_PATCH "${_wx_version_h}" )
++  set(wxWidgets_VERSION_STRING
++
"${wxWidgets_VERSION_MAJOR}.${wxWidgets_VERSION_MINOR}.${wxWidgets_VERSION_PATCH}"
 )
++  dbg_msg("wxWidgets_VERSION_STRING:${wxWidgets_VERSION_STRING}")
++endmacro()
++
+ #=
+ # Determine whether unix or win32 paths should be used
+ #=
+@@ -981,26 +1004,7 @@ unset(_wx_lib_missing)
+ 
+ # Check if a specific version was requested by find_package().
+ if(wxWidgets_FOUND)
+-  unset(_wx_filename)
+-  find_file(_wx_filename wx/version.h PATHS ${wxWidgets_INCLUDE_DIRS} 
NO_DEFAULT_PATH)
+-  dbg_msg("_wx_filename:  ${_wx_filename}")
+-
+-  if(NOT _wx_filename)
+-message(FATAL_ERROR "wxWidgets wx/version.h file not found in 
${wxWidgets_INCLUDE_DIRS}.")
+-  endif()
+-
+-  file(READ "${_wx_filename}" _wx_version_h)
+-  unset(_wx_filename CACHE)
+-
+-  string(REGEX REPLACE "^(.*\n)?#define +wxMAJOR_VERSION +([0-9]+).*"
+-"\\2" wxWidgets_VERSION_MAJOR "${_wx_version_h}" )
+-  string(REGEX REPLACE "^(.*\n)?#define +wxMINOR_VERSION +([0-9]+).*"
+-"\\2" wxWidgets_VERSION_MINOR "${_wx_version_h}" )
+-  string(REGEX REPLACE "^(.*\n)?#define +wxRELEASE_NUMBER +([0-9]+).*"
+-"\\2" wxWidgets_VERSION_PATCH "${_wx_version_h}" )
+-  set(wxWidgets_VERSION_STRING
+-
"${wxWidgets_VERSION_MAJOR}.${wxWidgets_VERSION_MINOR}.${wxWidgets_VERSION_PATCH}"
 )
+-  dbg_msg("wxWidgets_VERSION_STRING:${wxWidgets_VERSION_STRING}")
++  wx_extract_version()
+ endif()
+ 
+ # Debug output:
+-- 
+GitLab
+
+
+From 853449429dec94d64bd0c0cfd41d0104416210df Mon 

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

2022-05-25 Thread Antonio Rojas via arch-commits
Date: Wednesday, May 25, 2022 @ 20:29:57
  Author: arojas
Revision: 446531

Update to 3.23.2

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-25 19:49:54 UTC (rev 446530)
+++ PKGBUILD2022-05-25 20:29:57 UTC (rev 446531)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.23.1
+pkgver=3.23.2
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('qt6-base' 'python-sphinx' 'emacs')
 optdepends=('qt6-base: cmake-gui')
 
source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('94893f888c0cbfc58e54a0bd65d6c0697fe4a0e95c678b7cb35e7dc8854d57eb360bfc952750f97983348817f847f6df85903f21a5857b1a3880b2a7eb6cc029')
+sha512sums=('0925adf973d642fd76d4089b61b3882babb0a85050c4c57d5f5f3bd6b17564a9feb0beed236cd636e25f69072fa30b67ea3f80932380b6b6576f2dd78b8e6931')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2022-04-12 Thread Felix Yan via arch-commits
Date: Tuesday, April 12, 2022 @ 19:47:52
  Author: felixonmars
Revision: 442441

upgpkg: cmake 3.23.1-1

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-12 19:47:10 UTC (rev 442440)
+++ PKGBUILD2022-04-12 19:47:52 UTC (rev 442441)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.23.0
+pkgver=3.23.1
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('qt6-base' 'python-sphinx' 'emacs')
 optdepends=('qt6-base: cmake-gui')
 
source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('bcde8f2bf2fff6c4ab37a28c115b4b53d5fef0d4e38305420966cbd9f0026a4ffdcd4137f917a83458c1f380a137f7a7bd78f6fbd4d92fdcc5cf1dfbe4c02003')
+sha512sums=('94893f888c0cbfc58e54a0bd65d6c0697fe4a0e95c678b7cb35e7dc8854d57eb360bfc952750f97983348817f847f6df85903f21a5857b1a3880b2a7eb6cc029')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2022-03-29 Thread Antonio Rojas via arch-commits
Date: Tuesday, March 29, 2022 @ 20:04:52
  Author: arojas
Revision: 440922

Update to 3.23.0

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-29 20:00:54 UTC (rev 440921)
+++ PKGBUILD2022-03-29 20:04:52 UTC (rev 440922)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.22.3
+pkgver=3.23.0
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('qt6-base' 'python-sphinx' 'emacs')
 optdepends=('qt6-base: cmake-gui')
 
source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('a35003468153b99770ac6bbdeaa611a231a1104560da36aca0f393b8b71dbb44d854378504d2ec6b4af615f78efe18d91453fe15a1b7ec58129aa0289a5a1507')
+sha512sums=('bcde8f2bf2fff6c4ab37a28c115b4b53d5fef0d4e38305420966cbd9f0026a4ffdcd4137f917a83458c1f380a137f7a7bd78f6fbd4d92fdcc5cf1dfbe4c02003')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2022-03-04 Thread Felix Yan via arch-commits
Date: Friday, March 4, 2022 @ 22:51:21
  Author: felixonmars
Revision: 438893

upgpkg: cmake 3.22.3-1

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-04 22:40:34 UTC (rev 438892)
+++ PKGBUILD2022-03-04 22:51:21 UTC (rev 438893)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.22.2
+pkgver=3.22.3
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('qt6-base' 'python-sphinx' 'emacs')
 optdepends=('qt6-base: cmake-gui')
 
source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('86e95f9ce773bcc7513a1c3901561a1b09d06830936b8b1d44e075fe3bac55cfa636eccdedfa94a9939f5e12eb965224559fac30a17c64314ee023acb2a3e53f')
+sha512sums=('a35003468153b99770ac6bbdeaa611a231a1104560da36aca0f393b8b71dbb44d854378504d2ec6b4af615f78efe18d91453fe15a1b7ec58129aa0289a5a1507')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2022-01-25 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 25, 2022 @ 15:50:25
  Author: arojas
Revision: 435112

Update to 3.22.2

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-01-25 15:36:59 UTC (rev 435111)
+++ PKGBUILD2022-01-25 15:50:25 UTC (rev 435112)
@@ -3,8 +3,8 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.22.1
-pkgrel=5
+pkgver=3.22.2
+pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
 url="https://www.cmake.org/;
@@ -13,7 +13,7 @@
 makedepends=('qt6-base' 'python-sphinx' 'emacs')
 optdepends=('qt6-base: cmake-gui')
 
source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('b1e900fe573cd1cc76d26386f2298d7722737c9ff67930ee108994972b4561ef69caeb537177c9b95b7f17b755e20e034825d3807ea0d2dd4c391310b03adc11')
+sha512sums=('86e95f9ce773bcc7513a1c3901561a1b09d06830936b8b1d44e075fe3bac55cfa636eccdedfa94a9939f5e12eb965224559fac30a17c64314ee023acb2a3e53f')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2021-12-24 Thread Antonio Rojas via arch-commits
Date: Friday, December 24, 2021 @ 09:05:33
  Author: arojas
Revision: 433011

Add html docs (FS#52478)

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-23 22:29:50 UTC (rev 433010)
+++ PKGBUILD2021-12-24 09:05:33 UTC (rev 433011)
@@ -4,7 +4,7 @@
 
 pkgname=cmake
 pkgver=3.22.1
-pkgrel=4
+pkgrel=5
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
 url="https://www.cmake.org/;
@@ -22,6 +22,7 @@
 --docdir=/share/doc/cmake \
 --datadir=/share/cmake \
 --sphinx-man \
+--sphinx-html \
 --system-libs \
 --qt-gui \
 --parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
@@ -32,9 +33,7 @@
   cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
 
-  emacs -batch -f batch-byte-compile \
-"${pkgdir}"/usr/share/emacs/site-lisp/cmake-mode.el
-
-  install -Dm644 Copyright.txt \
-"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  rm -r "$pkgdir"/usr/share/doc/cmake/html/_sources
+  emacs -batch -f batch-byte-compile 
"${pkgdir}"/usr/share/emacs/site-lisp/cmake-mode.el
+  install -Dm644 Copyright.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }



[arch-commits] Commit in cmake/trunk (PKGBUILD cmake-cppflags.patch)

2021-12-21 Thread Antonio Rojas via arch-commits
Date: Tuesday, December 21, 2021 @ 19:34:47
  Author: arojas
Revision: 432880

Remove CPPFLAGS patch, it's now dealt with in devtools

Modified:
  cmake/trunk/PKGBUILD
Deleted:
  cmake/trunk/cmake-cppflags.patch

--+
 PKGBUILD |   14 +++---
 cmake-cppflags.patch |   26 --
 2 files changed, 3 insertions(+), 37 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-21 19:29:45 UTC (rev 432879)
+++ PKGBUILD2021-12-21 19:34:47 UTC (rev 432880)
@@ -4,7 +4,7 @@
 
 pkgname=cmake
 pkgver=3.22.1
-pkgrel=3
+pkgrel=4
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
 url="https://www.cmake.org/;
@@ -12,19 +12,11 @@
 depends=('curl' 'libarchive' 'hicolor-icon-theme' 'jsoncpp' 'libjsoncpp.so' 
'libuv' 'rhash')
 makedepends=('qt6-base' 'python-sphinx' 'emacs')
 optdepends=('qt6-base: cmake-gui')
-source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
- cmake-cppflags.patch)
-sha512sums=('b1e900fe573cd1cc76d26386f2298d7722737c9ff67930ee108994972b4561ef69caeb537177c9b95b7f17b755e20e034825d3807ea0d2dd4c391310b03adc11'
-
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
+source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('b1e900fe573cd1cc76d26386f2298d7722737c9ff67930ee108994972b4561ef69caeb537177c9b95b7f17b755e20e034825d3807ea0d2dd4c391310b03adc11')
 
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 -i ../cmake-cppflags.patch # Honor CPPFLAGS 
https://gitlab.kitware.com/cmake/cmake/issues/12928
-}
-
 build() {
   cd ${pkgname}-${pkgver}
-  export CXXFLAGS+=" ${CPPFLAGS}"
   ./bootstrap --prefix=/usr \
 --mandir=/share/man \
 --docdir=/share/doc/cmake \

Deleted: cmake-cppflags.patch
===
--- cmake-cppflags.patch2021-12-21 19:29:45 UTC (rev 432879)
+++ cmake-cppflags.patch2021-12-21 19:34:47 UTC (rev 432880)
@@ -1,26 +0,0 @@
-diff --git a/Modules/CMakeCInformation.cmake b/Modules/CMakeCInformation.cmake
-index f6d620f40e..325b11f25e 100644
 a/Modules/CMakeCInformation.cmake
-+++ b/Modules/CMakeCInformation.cmake
-@@ -100,7 +100,7 @@ if(NOT CMAKE_MODULE_EXISTS)
-   set(CMAKE_SHARED_MODULE_CREATE_C_FLAGS 
${CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS})
- endif()
- 
--set(CMAKE_C_FLAGS_INIT "$ENV{CFLAGS} ${CMAKE_C_FLAGS_INIT}")
-+set(CMAKE_C_FLAGS_INIT "$ENV{CPPFLAGS} $ENV{CFLAGS} ${CMAKE_C_FLAGS_INIT}")
- 
- cmake_initialize_per_config_variable(CMAKE_C_FLAGS "Flags used by the C 
compiler")
- 
-diff --git a/Modules/CMakeCXXInformation.cmake 
b/Modules/CMakeCXXInformation.cmake
-index dbb4366757..8a0ee288c6 100644
 a/Modules/CMakeCXXInformation.cmake
-+++ b/Modules/CMakeCXXInformation.cmake
-@@ -197,7 +197,7 @@ endforeach()
- # on the initial values computed in the platform/*.cmake files
- # use _INIT variables so that this only happens the first time
- # and you can set these flags in the cmake cache
--set(CMAKE_CXX_FLAGS_INIT "$ENV{CXXFLAGS} ${CMAKE_CXX_FLAGS_INIT}")
-+set(CMAKE_CXX_FLAGS_INIT "$ENV{CPPFLAGS} $ENV{CXXFLAGS} 
${CMAKE_CXX_FLAGS_INIT}")
- 
- cmake_initialize_per_config_variable(CMAKE_CXX_FLAGS "Flags used by the CXX 
compiler")
- 



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

2021-12-20 Thread Antonio Rojas via arch-commits
Date: Monday, December 20, 2021 @ 22:33:33
  Author: arojas
Revision: 432856

jsoncpp 1.8.5 rebuild

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-20 21:51:44 UTC (rev 432855)
+++ PKGBUILD2021-12-20 22:33:33 UTC (rev 432856)
@@ -4,7 +4,7 @@
 
 pkgname=cmake
 pkgver=3.22.1
-pkgrel=2
+pkgrel=3
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
 url="https://www.cmake.org/;



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

2021-12-16 Thread Antonio Rojas via arch-commits
Date: Thursday, December 16, 2021 @ 14:46:05
  Author: arojas
Revision: 432599

Use unversioned datadir

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-16 13:47:49 UTC (rev 432598)
+++ PKGBUILD2021-12-16 14:46:05 UTC (rev 432599)
@@ -4,7 +4,7 @@
 
 pkgname=cmake
 pkgver=3.22.1
-pkgrel=1
+pkgrel=2
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
 url="https://www.cmake.org/;
@@ -28,6 +28,7 @@
   ./bootstrap --prefix=/usr \
 --mandir=/share/man \
 --docdir=/share/doc/cmake \
+--datadir=/share/cmake \
 --sphinx-man \
 --system-libs \
 --qt-gui \



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

2021-12-07 Thread Antonio Rojas via arch-commits
Date: Tuesday, December 7, 2021 @ 17:28:51
  Author: arojas
Revision: 430787

Update to 3.22.1

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-07 16:20:36 UTC (rev 430786)
+++ PKGBUILD2021-12-07 17:28:51 UTC (rev 430787)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.22.0
+pkgver=3.22.1
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt6-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('72e4e39bfd0a918572228af68391422979f89a0a5020fae7764b5d7ba86a7a56e8174e22f1b0ffeb37b741c0a6118162a2a47655a03939ea0535453186ed385c'
+sha512sums=('b1e900fe573cd1cc76d26386f2298d7722737c9ff67930ee108994972b4561ef69caeb537177c9b95b7f17b755e20e034825d3807ea0d2dd4c391310b03adc11'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {



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

2021-11-18 Thread Antonio Rojas via arch-commits
Date: Thursday, November 18, 2021 @ 20:12:00
  Author: arojas
Revision: 428623

Update to 3.22.0

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-18 19:58:02 UTC (rev 428622)
+++ PKGBUILD2021-11-18 20:12:00 UTC (rev 428623)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.21.4
+pkgver=3.22.0
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt6-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('0262a666f6da106576c26215580c40b54497bcdac400e847e1799716c31c71068293e719416338132a7da6122826c08ff50ac23dfed2711ab42631e96303f544'
+sha512sums=('72e4e39bfd0a918572228af68391422979f89a0a5020fae7764b5d7ba86a7a56e8174e22f1b0ffeb37b741c0a6118162a2a47655a03939ea0535453186ed385c'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {



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

2021-10-27 Thread Antonio Rojas via arch-commits
Date: Wednesday, October 27, 2021 @ 18:03:34
  Author: arojas
Revision: 426733

Update to 3.21.4

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-27 17:31:26 UTC (rev 426732)
+++ PKGBUILD2021-10-27 18:03:34 UTC (rev 426733)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.21.3
+pkgver=3.21.4
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt6-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('0571b78443906c5ad51fb0fafbd32d565caf628cc150b1190802cb819e8497c108ea6b7ecaa03133df2dbbceb730696d24b4df38468c92088c769ce4076d9e9f'
+sha512sums=('0262a666f6da106576c26215580c40b54497bcdac400e847e1799716c31c71068293e719416338132a7da6122826c08ff50ac23dfed2711ab42631e96303f544'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {



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

2021-09-20 Thread Antonio Rojas via arch-commits
Date: Monday, September 20, 2021 @ 18:02:55
  Author: arojas
Revision: 424400

Update to 3.21.3

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-20 12:18:25 UTC (rev 424399)
+++ PKGBUILD2021-09-20 18:02:55 UTC (rev 424400)
@@ -3,8 +3,8 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.21.2
-pkgrel=2
+pkgver=3.21.3
+pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
 url="https://www.cmake.org/;
@@ -14,7 +14,7 @@
 optdepends=('qt6-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('75649404564aaa6175a8c66ab19a10318066dbb667806c287e3cb125ac4c16c1629c160e355bcc50864a38d5488b1f7d1bc77acc602f5f3edd5f68691ae5080d'
+sha512sums=('0571b78443906c5ad51fb0fafbd32d565caf628cc150b1190802cb819e8497c108ea6b7ecaa03133df2dbbceb730696d24b4df38468c92088c769ce4076d9e9f'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {



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

2021-08-26 Thread Felix Yan via arch-commits
Date: Thursday, August 26, 2021 @ 19:37:56
  Author: felixonmars
Revision: 422579

upgpkg: cmake 3.21.2-2: add back the gui. the removal in last commit was a 
mistake

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-26 19:32:20 UTC (rev 422578)
+++ PKGBUILD2021-08-26 19:37:56 UTC (rev 422579)
@@ -4,13 +4,14 @@
 
 pkgname=cmake
 pkgver=3.21.2
-pkgrel=1
+pkgrel=2
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
 url="https://www.cmake.org/;
 license=('custom')
 depends=('curl' 'libarchive' 'hicolor-icon-theme' 'jsoncpp' 'libjsoncpp.so' 
'libuv' 'rhash')
-makedepends=('python-sphinx')
+makedepends=('qt6-base' 'python-sphinx' 'emacs')
+optdepends=('qt6-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
 
sha512sums=('75649404564aaa6175a8c66ab19a10318066dbb667806c287e3cb125ac4c16c1629c160e355bcc50864a38d5488b1f7d1bc77acc602f5f3edd5f68691ae5080d'
@@ -29,6 +30,7 @@
 --docdir=/share/doc/cmake \
 --sphinx-man \
 --system-libs \
+--qt-gui \
 --parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
   make
 }
@@ -37,6 +39,9 @@
   cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
 
+  emacs -batch -f batch-byte-compile \
+"${pkgdir}"/usr/share/emacs/site-lisp/cmake-mode.el
+
   install -Dm644 Copyright.txt \
 "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }



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

2021-08-26 Thread Felix Yan via arch-commits
Date: Thursday, August 26, 2021 @ 10:41:09
  Author: felixonmars
Revision: 422549

upgpkg: cmake 3.21.2-1

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-26 10:41:06 UTC (rev 422548)
+++ PKGBUILD2021-08-26 10:41:09 UTC (rev 422549)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.21.1
+pkgver=3.21.2
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -10,11 +10,10 @@
 url="https://www.cmake.org/;
 license=('custom')
 depends=('curl' 'libarchive' 'hicolor-icon-theme' 'jsoncpp' 'libjsoncpp.so' 
'libuv' 'rhash')
-makedepends=('qt6-base' 'python-sphinx' 'emacs')
-optdepends=('qt6-base: cmake-gui')
+makedepends=('python-sphinx')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('1453b1f5139950f501c570c305257e4e5dacb8224944de8ed1489aae162c6dd75fe1cd5188d619c47e4e53ca5b846f07318ffb3ab004a0547f2c8b13f60083b4'
+sha512sums=('75649404564aaa6175a8c66ab19a10318066dbb667806c287e3cb125ac4c16c1629c160e355bcc50864a38d5488b1f7d1bc77acc602f5f3edd5f68691ae5080d'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {
@@ -30,7 +29,6 @@
 --docdir=/share/doc/cmake \
 --sphinx-man \
 --system-libs \
---qt-gui \
 --parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
   make
 }
@@ -39,9 +37,6 @@
   cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
 
-  emacs -batch -f batch-byte-compile \
-"${pkgdir}"/usr/share/emacs/site-lisp/cmake-mode.el
-
   install -Dm644 Copyright.txt \
 "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }



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

2021-07-27 Thread Antonio Rojas via arch-commits
Date: Tuesday, July 27, 2021 @ 16:19:57
  Author: arojas
Revision: 420531

Update to 3.21.1

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-27 15:58:53 UTC (rev 420530)
+++ PKGBUILD2021-07-27 16:19:57 UTC (rev 420531)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.21.0
+pkgver=3.21.1
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt6-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('b635c50db0d3a18392a84b24f14017bb625708bcc6f6ba2d749a5c37d45f5e0565e415a802d129090a18e0747f80f2640747650d28fa0b3069d28e3e6a735ebc'
+sha512sums=('1453b1f5139950f501c570c305257e4e5dacb8224944de8ed1489aae162c6dd75fe1cd5188d619c47e4e53ca5b846f07318ffb3ab004a0547f2c8b13f60083b4'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {



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

2021-07-14 Thread Antonio Rojas via arch-commits
Date: Wednesday, July 14, 2021 @ 17:48:55
  Author: arojas
Revision: 419736

Update to 3.21.0

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-14 17:27:55 UTC (rev 419735)
+++ PKGBUILD2021-07-14 17:48:55 UTC (rev 419736)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.20.5
+pkgver=3.21.0
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt6-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('4ad7f194353be291e76d86d95928633daea653a0bd8d35369ac6ee2bb3f811c3a1aabe6a2bd51c6d5b07af2c6edc7e38d8b347ded32ab1ddcf331dbfce40c008'
+sha512sums=('b635c50db0d3a18392a84b24f14017bb625708bcc6f6ba2d749a5c37d45f5e0565e415a802d129090a18e0747f80f2640747650d28fa0b3069d28e3e6a735ebc'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {



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

2021-06-21 Thread Felix Yan via arch-commits
Date: Monday, June 21, 2021 @ 16:57:27
  Author: felixonmars
Revision: 418546

upgpkg: cmake 3.20.5-1

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-21 16:33:52 UTC (rev 418545)
+++ PKGBUILD2021-06-21 16:57:27 UTC (rev 418546)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.20.4
+pkgver=3.20.5
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt6-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('f53902a917b8d7b949af305afed3b32fcf981c5c647a77ee7a3bcae1bb5620381a1eacdac4b86bd7e5ea0a7806ec5fbd9a4f4853553f78db4d41d7dd2867c99f'
+sha512sums=('4ad7f194353be291e76d86d95928633daea653a0bd8d35369ac6ee2bb3f811c3a1aabe6a2bd51c6d5b07af2c6edc7e38d8b347ded32ab1ddcf331dbfce40c008'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {


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

2021-06-14 Thread Antonio Rojas via arch-commits
Date: Monday, June 14, 2021 @ 17:35:46
  Author: arojas
Revision: 418227

Update to 3.20.4

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-14 17:25:49 UTC (rev 418226)
+++ PKGBUILD2021-06-14 17:35:46 UTC (rev 418227)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.20.3
+pkgver=3.20.4
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt6-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('ed2b8b04c759c4f7c5c363be33bf08e6677c710c1f937050a378ab5539136b919531e1c927b117b3d8d68d4bb613de8d92a3d4d50f3ab3bc98355febca779a1b'
+sha512sums=('f53902a917b8d7b949af305afed3b32fcf981c5c647a77ee7a3bcae1bb5620381a1eacdac4b86bd7e5ea0a7806ec5fbd9a4f4853553f78db4d41d7dd2867c99f'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {


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

2021-05-27 Thread Antonio Rojas via arch-commits
Date: Thursday, May 27, 2021 @ 19:42:56
  Author: arojas
Revision: 416602

Update to 3.20.3

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-27 19:39:55 UTC (rev 416601)
+++ PKGBUILD2021-05-27 19:42:56 UTC (rev 416602)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.20.2
+pkgver=3.20.3
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt6-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('675a92f84b437169aee86dbfa59715671b9195ddeffc6fea83c7803a70abe3116106ad0a627b9e4bef326bfb2a10fdf624ad341fd9d3d08e3d8a69c271cd2b32'
+sha512sums=('ed2b8b04c759c4f7c5c363be33bf08e6677c710c1f937050a378ab5539136b919531e1c927b117b3d8d68d4bb613de8d92a3d4d50f3ab3bc98355febca779a1b'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {


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

2021-04-29 Thread Antonio Rojas via arch-commits
Date: Thursday, April 29, 2021 @ 16:23:48
  Author: arojas
Revision: 414008

Update to 3.20.2

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-29 16:23:45 UTC (rev 414007)
+++ PKGBUILD2021-04-29 16:23:48 UTC (rev 414008)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.20.1
+pkgver=3.20.2
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt6-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('726a2ea36dcc2887adc9b2a579060a7c5d7780bf246bc7915a3bfd35a800a544bb27d4daeae2a37c8f8acf576ed9feb45f97f2d53d7049da98b73cd2d2524248'
+sha512sums=('675a92f84b437169aee86dbfa59715671b9195ddeffc6fea83c7803a70abe3116106ad0a627b9e4bef326bfb2a10fdf624ad341fd9d3d08e3d8a69c271cd2b32'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {


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

2021-04-08 Thread Antonio Rojas via arch-commits
Date: Thursday, April 8, 2021 @ 17:20:06
  Author: arojas
Revision: 411754

Update to 3.20.1

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-04-08 15:49:49 UTC (rev 411753)
+++ PKGBUILD2021-04-08 17:20:06 UTC (rev 411754)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.20.0
+pkgver=3.20.1
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt6-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('1dc7c2813ea314f40a0e7bb45e1dbad523cd582d58f17649ff9f0737081767d4c301138ed026f17340f9ff8f4f77b52250d3c010454f30e24bd50be1744b04b4'
+sha512sums=('726a2ea36dcc2887adc9b2a579060a7c5d7780bf246bc7915a3bfd35a800a544bb27d4daeae2a37c8f8acf576ed9feb45f97f2d53d7049da98b73cd2d2524248'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {


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

2021-03-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, March 23, 2021 @ 17:32:27
  Author: arojas
Revision: 410780

Update to 3.20.0, switch GUI to Qt6

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-23 16:52:05 UTC (rev 410779)
+++ PKGBUILD2021-03-23 17:32:27 UTC (rev 410780)
@@ -3,18 +3,18 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.19.7
+pkgver=3.20.0
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
 url="https://www.cmake.org/;
 license=('custom')
-depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp' 'libjsoncpp.so' 
'libuv' 'rhash')
-makedepends=('qt5-base' 'python-sphinx' 'emacs')
-optdepends=('qt5-base: cmake-gui')
+depends=('curl' 'libarchive' 'hicolor-icon-theme' 'jsoncpp' 'libjsoncpp.so' 
'libuv' 'rhash')
+makedepends=('qt6-base' 'python-sphinx' 'emacs')
+optdepends=('qt6-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('6af1fe3ea41906324d4c29f5f982281d92145d086f4a47fa2220b93483bc65d59b1e23f5b51d82305c630690be7c552827bb795560674b03620763e0917bf14a'
+sha512sums=('1dc7c2813ea314f40a0e7bb45e1dbad523cd582d58f17649ff9f0737081767d4c301138ed026f17340f9ff8f4f77b52250d3c010454f30e24bd50be1744b04b4'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {


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

2021-03-15 Thread Antonio Rojas via arch-commits
Date: Monday, March 15, 2021 @ 17:11:55
  Author: arojas
Revision: 410011

Update to 3.19.7

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-15 16:46:04 UTC (rev 410010)
+++ PKGBUILD2021-03-15 17:11:55 UTC (rev 410011)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.19.6
+pkgver=3.19.7
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt5-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('556655c0fd17d5c70d5c1725f49ccad0d8088e6cbb3370d48d5a548d49d0e066d21c69978ed9b49d786fbb8eb79e086e719882245c9261c692b9457ba23b76f9'
+sha512sums=('6af1fe3ea41906324d4c29f5f982281d92145d086f4a47fa2220b93483bc65d59b1e23f5b51d82305c630690be7c552827bb795560674b03620763e0917bf14a'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {


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

2021-02-24 Thread Antonio Rojas via arch-commits
Date: Wednesday, February 24, 2021 @ 17:18:13
  Author: arojas
Revision: 408753

Update to 3.19.6

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-02-24 16:43:38 UTC (rev 408752)
+++ PKGBUILD2021-02-24 17:18:13 UTC (rev 408753)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.19.5
+pkgver=3.19.6
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt5-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('de8645c7c03bd48987f6eefc19bc2856c2a939e537cf204e1c9749d5a3e21c71695080bee246e94871f82996ede9d1a8771972266434549b48df9924fbb4c6f2'
+sha512sums=('556655c0fd17d5c70d5c1725f49ccad0d8088e6cbb3370d48d5a548d49d0e066d21c69978ed9b49d786fbb8eb79e086e719882245c9261c692b9457ba23b76f9'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {


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

2021-02-15 Thread Antonio Rojas via arch-commits
Date: Monday, February 15, 2021 @ 19:30:39
  Author: arojas
Revision: 408179

Update to 3.19.5

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-02-15 17:55:23 UTC (rev 408178)
+++ PKGBUILD2021-02-15 19:30:39 UTC (rev 408179)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.19.4
+pkgver=3.19.5
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt5-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('e2781479d2185f8f927439b795120a0f4957e9da7730804ff8ec06d6bbe75a0069e49d95e642706179520a7229ae82e53bab891fa8cfd859913c0cb5fd4e843f'
+sha512sums=('de8645c7c03bd48987f6eefc19bc2856c2a939e537cf204e1c9749d5a3e21c71695080bee246e94871f82996ede9d1a8771972266434549b48df9924fbb4c6f2'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {


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

2021-01-28 Thread Antonio Rojas via arch-commits
Date: Thursday, January 28, 2021 @ 17:24:04
  Author: arojas
Revision: 406867

Update to 3.19.4

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-01-28 10:56:13 UTC (rev 406866)
+++ PKGBUILD2021-01-28 17:24:04 UTC (rev 406867)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.19.3
+pkgver=3.19.4
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt5-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('54c91fa76882152d3933b696d7e547bc4edf6f97f3810e8dd57ca28c98e9fcaf757eac7c77e1e7fab88aced10937ed354917aeac3997edef406313dcf76ba0c5'
+sha512sums=('e2781479d2185f8f927439b795120a0f4957e9da7730804ff8ec06d6bbe75a0069e49d95e642706179520a7229ae82e53bab891fa8cfd859913c0cb5fd4e843f'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {


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

2021-01-13 Thread Antonio Rojas via arch-commits
Date: Wednesday, January 13, 2021 @ 17:12:37
  Author: arojas
Revision: 406183

Update to 3.19.3

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-01-13 15:40:40 UTC (rev 406182)
+++ PKGBUILD2021-01-13 17:12:37 UTC (rev 406183)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.19.2
+pkgver=3.19.3
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt5-base: cmake-gui')
 source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;
  cmake-cppflags.patch)
-sha512sums=('d811122af89d46174b8fdb2a26e8553200d9dc7eb6385ece4e4b3e7584880f73a799813d5a81e64e956fd2574b63264fa8944d862c74a076e9d61f5e6521e91a'
+sha512sums=('54c91fa76882152d3933b696d7e547bc4edf6f97f3810e8dd57ca28c98e9fcaf757eac7c77e1e7fab88aced10937ed354917aeac3997edef406313dcf76ba0c5'
 
'407c5c63a31266e44641ada8229dbc33df44df98e5bb575db3a33590e8ffdff9aea3f2ee5cb0cb855858facf1e46c63886dea9f948a0cad2da042e7f7f258cac')
 
 prepare() {