[arch-commits] Commit in netcdf/repos/community-x86_64 (PKGBUILD PKGBUILD)

Bruno Pagani archange at gemini.archlinux.org
Wed Jun 29 16:55:16 UTC 2022


    Date: Wednesday, June 29, 2022 @ 16:55:16
  Author: archange
Revision: 1241066

archrelease: copy trunk to community-x86_64

Added:
  netcdf/repos/community-x86_64/PKGBUILD
    (from rev 1241065, netcdf/trunk/PKGBUILD)
Deleted:
  netcdf/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |  115 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 57 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-06-29 16:55:09 UTC (rev 1241065)
+++ PKGBUILD	2022-06-29 16:55:16 UTC (rev 1241066)
@@ -1,58 +0,0 @@
-# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Maintainer: Bruno Pagani <archange at archlinux.org>
-# Contributor: damir <damir at archlinux.org>
-
-pkgname=netcdf
-pkgver=4.9.0
-pkgrel=2
-pkgdesc="network Common Data Form interface for array-oriented data access and corresponding library"
-arch=(x86_64)
-url="https://www.unidata.ucar.edu/software/netcdf/"
-depends=(hdf5 curl libxml2)
-makedepends=(cmake)
-checkdepends=(unzip)
-optdepends=('netcdf-fortran: fortran bindings' 'netcdf-cxx: c++ bindings')
-options=(!makeflags)
-license=(custom)
-source=(https://github.com/Unidata/netcdf-c/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
-        netcdf-4.9.0-fix-cmake-typo.patch::https://github.com/Unidata/netcdf-c/commit/80a6611cfca98a5979c5ac69cba56a49af8c1e48.patch
-        netcdf-4.9.0-read-chunk-size.patch::https://github.com/Unidata/netcdf-c/pull/2319.patch)
-sha256sums=('9f4cb864f3ab54adb75409984c6202323d2fc66c003e5308f3cdf224ed41c0a6'
-            'ed45ae6c49cf8dcddaadef4c5cf403049bf3f761187413d7b03754d319345d6a'
-            'd71b441b6499d6ddb97ea25377018000781d16de6551f0d2ba33b9bcd6e769fd')
-
-prepare() {
-  # https://github.com/Unidata/netcdf-c/issues/2188 https://github.com/Unidata/netcdf-c/issues/2242
-  sed -i "/tst_remote3/d" ${pkgname}-c-${pkgver}/ncdap_test/CMakeLists.txt
-  # https://github.com/Unidata/netcdf-c/pull/2412
-  patch -p1 -d ${pkgname}-c-${pkgver} < netcdf-4.9.0-fix-cmake-typo.patch
-  # https://github.com/Unidata/netcdf-c/issues/2418
-  patch -p1 -d ${pkgname}-c-${pkgver} < netcdf-4.9.0-read-chunk-size.patch
-}
-
-build() {
-  # Disabling remote tests because of https://github.com/Unidata/netcdf-c/issues/2188
-  cmake -B build -S ${pkgname}-c-${pkgver} \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DCMAKE_INSTALL_LIBDIR=lib \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DENABLE_BYTERANGE=ON \
-    -DENABLE_CDF5=ON \
-    -DENABLE_DAP_LONG_TESTS=ON \
-    -DENABLE_DAP_REMOTE_TESTS=ON \
-    -DENABLE_EXAMPLE_TESTS=ON \
-    -DENABLE_EXTRA_TESTS=ON \
-    -DENABLE_FILTER_TESTING=ON \
-    -DENABLE_LARGE_FILE_TESTS=ON \
-    -DENABLE_UNIT_TESTS=ON
-  make -C build
-}
-
-check() {
-  make -C build test
-}
-
-package() {
-  make -C build DESTDIR="${pkgdir}" install
-  install -Dm644 ${pkgname}-c-${pkgver}/COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: netcdf/repos/community-x86_64/PKGBUILD (from rev 1241065, netcdf/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-06-29 16:55:16 UTC (rev 1241066)
@@ -0,0 +1,57 @@
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Maintainer: Bruno Pagani <archange at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+
+pkgname=netcdf
+pkgver=4.9.0
+pkgrel=3
+pkgdesc="network Common Data Form interface for array-oriented data access and corresponding library"
+arch=(x86_64)
+url="https://www.unidata.ucar.edu/software/netcdf/"
+depends=(hdf5 curl libxml2 libaec blosc bzip2 libzip zstd)
+makedepends=(cmake)
+checkdepends=(unzip)
+optdepends=('netcdf-fortran: fortran bindings' 'netcdf-cxx: c++ bindings')
+options=(!makeflags)
+license=(custom)
+source=(https://github.com/Unidata/netcdf-c/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+        netcdf-4.9.0-fix-cmake-typo.patch::https://github.com/Unidata/netcdf-c/pull/2412.patch
+        netcdf-4.9.0-read-chunk-size.patch::https://github.com/Unidata/netcdf-c/pull/2319.patch)
+sha256sums=('9f4cb864f3ab54adb75409984c6202323d2fc66c003e5308f3cdf224ed41c0a6'
+            'ed45ae6c49cf8dcddaadef4c5cf403049bf3f761187413d7b03754d319345d6a'
+            'd71b441b6499d6ddb97ea25377018000781d16de6551f0d2ba33b9bcd6e769fd')
+
+prepare() {
+  # https://github.com/Unidata/netcdf-c/issues/2188 https://github.com/Unidata/netcdf-c/issues/2242
+  sed -i "/tst_remote3/d" ${pkgname}-c-${pkgver}/ncdap_test/CMakeLists.txt
+  # https://github.com/Unidata/netcdf-c/issues/2390
+  patch -p1 -d ${pkgname}-c-${pkgver} < netcdf-4.9.0-fix-cmake-typo.patch
+  # https://github.com/Unidata/netcdf-c/issues/2418
+  patch -p1 -d ${pkgname}-c-${pkgver} < netcdf-4.9.0-read-chunk-size.patch
+}
+
+build() {
+  cmake -B build -S ${pkgname}-c-${pkgver} \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_INSTALL_LIBDIR=lib \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DENABLE_BYTERANGE=ON \
+    -DENABLE_CDF5=ON \
+    -DENABLE_DAP_LONG_TESTS=ON \
+    -DENABLE_DAP_REMOTE_TESTS=ON \
+    -DENABLE_EXAMPLE_TESTS=ON \
+    -DENABLE_EXTRA_TESTS=ON \
+    -DENABLE_FILTER_TESTING=ON \
+    -DENABLE_LARGE_FILE_TESTS=ON \
+    -DENABLE_UNIT_TESTS=ON
+  make -C build
+}
+
+check() {
+  make -C build test
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+  install -Dm644 ${pkgname}-c-${pkgver}/COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}



More information about the arch-commits mailing list