[arch-commits] Commit in netcdf/repos (2 files)

2020-04-10 Thread Bruno Pagani via arch-commits
Date: Friday, April 10, 2020 @ 23:43:49
  Author: archange
Revision: 613199

archrelease: copy trunk to community-staging-x86_64

Added:
  netcdf/repos/community-staging-x86_64/
  netcdf/repos/community-staging-x86_64/PKGBUILD
(from rev 613198, netcdf/trunk/PKGBUILD)

--+
 PKGBUILD |   41 +
 1 file changed, 41 insertions(+)

Copied: netcdf/repos/community-staging-x86_64/PKGBUILD (from rev 613198, 
netcdf/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-04-10 23:43:49 UTC (rev 613199)
@@ -0,0 +1,41 @@
+# Maintainer: Ronald van Haren 
+# Maintainer: Bruno Pagani 
+# Contributor: damir 
+
+pkgname=netcdf
+pkgver=4.7.4
+pkgrel=1
+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)
+makedepends=(cmake)
+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)
+sha256sums=('99930ad7b3c4c1a8e8831fb061cb02b2170fc8e5ccaeda733bd99c3b9d31666b')
+
+build() {
+cmake -B build -S ${pkgname}-c-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_CDF5=ON \
+-DENABLE_DAP_LONG_TESTS=ON \
+-DENABLE_EXAMPLE_TESTS=ON \
+-DENABLE_EXTRA_TESTS=ON \
+-DENABLE_FAILING_TESTS=ON \
+-DENABLE_FILTER_TESTING=ON \
+-DENABLE_LARGE_FILE_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}/
+}


[arch-commits] Commit in netcdf/repos (2 files)

2019-03-16 Thread Bruno Pagani via arch-commits
Date: Saturday, March 16, 2019 @ 20:45:14
  Author: archange
Revision: 442240

archrelease: copy trunk to community-staging-x86_64

Added:
  netcdf/repos/community-staging-x86_64/
  netcdf/repos/community-staging-x86_64/PKGBUILD
(from rev 442239, netcdf/trunk/PKGBUILD)

--+
 PKGBUILD |   51 +++
 1 file changed, 51 insertions(+)

Copied: netcdf/repos/community-staging-x86_64/PKGBUILD (from rev 442239, 
netcdf/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-03-16 20:45:14 UTC (rev 442240)
@@ -0,0 +1,51 @@
+# Maintainer: Ronald van Haren 
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+# Contributor: damir 
+
+pkgname=netcdf
+pkgver=4.6.3
+pkgrel=1
+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')
+makedepends=('cmake')
+optdepends=('netcdf-fortran: fortran bindings' 'netcdf-cxx: c++ bindings')
+options=('!makeflags')
+license=('custom')
+source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/Unidata/netcdf-c/archive/v${pkgver}.tar.gz;)
+sha256sums=('734a629cdaed907201084d003cfa091806d6080eeffbd4204e7c7f73ff9d3564')
+
+prepare() {
+mkdir -p build
+}
+
+build() {
+cd build
+cmake ../${pkgname}-c-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_CDF5=ON \
+-DENABLE_DAP_LONG_TESTS=ON \
+-DENABLE_EXAMPLE_TESTS=ON \
+-DENABLE_EXTRA_TESTS=ON \
+-DENABLE_FAILING_TESTS=ON \
+-DENABLE_FILTER_TESTING=ON \
+-DENABLE_LARGE_FILE_TESTS=ON
+make
+}
+
+check() {
+cd build
+# One test failure https://github.com/Unidata/netcdf-c/issues/808
+make test || warning "Test failure"
+}
+
+package() {
+cd build
+make DESTDIR="${pkgdir}" install
+
+cd "${srcdir}"/${pkgname}-c-${pkgver}
+install -Dm644 COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}


[arch-commits] Commit in netcdf/repos (2 files)

2018-08-23 Thread Antonio Rojas via arch-commits
Date: Thursday, August 23, 2018 @ 18:27:11
  Author: arojas
Revision: 373464

archrelease: copy trunk to community-staging-x86_64

Added:
  netcdf/repos/community-staging-x86_64/
  netcdf/repos/community-staging-x86_64/PKGBUILD
(from rev 373463, netcdf/trunk/PKGBUILD)

--+
 PKGBUILD |   52 
 1 file changed, 52 insertions(+)

Copied: netcdf/repos/community-staging-x86_64/PKGBUILD (from rev 373463, 
netcdf/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-08-23 18:27:11 UTC (rev 373464)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+# Contributor: damir 
+
+pkgname=netcdf
+pkgver=4.6.1
+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')
+makedepends=('cmake')
+optdepends=('netcdf-fortran: fortran bindings' 'netcdf-cxx: c++ bindings')
+options=('!makeflags')
+license=('custom')
+source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/Unidata/netcdf-c/archive/v${pkgver}.tar.gz;)
+sha256sums=('a2fabf27c72a5ee746e3843e1debbaad37cd035767eaede2045371322211eebb')
+
+prepare() {
+mkdir -p build
+}
+
+build() {
+cd build
+cmake ../${pkgname}-c-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_CDF5=ON \
+-DENABLE_DAP_LONG_TESTS=ON \
+-DENABLE_EXAMPLE_TESTS=ON \
+-DENABLE_EXTRA_TESTS=ON \
+-DENABLE_FAILING_TESTS=ON \
+-DENABLE_FILTER_TESTING=ON \
+-DENABLE_LARGE_FILE_TESTS=ON
+make
+}
+
+check() {
+cd build
+# One test failure https://github.com/Unidata/netcdf-c/issues/808
+make test || warning "Test failure"
+}
+
+package() {
+cd build
+make DESTDIR="${pkgdir}" install
+
+cd "${srcdir}"/${pkgname}-c-${pkgver}
+install -Dm644 COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}


[arch-commits] Commit in netcdf/repos (2 files)

2018-05-23 Thread Bruno Pagani via arch-commits
Date: Wednesday, May 23, 2018 @ 15:18:32
  Author: archange
Revision: 328324

archrelease: copy trunk to community-staging-x86_64

Added:
  netcdf/repos/community-staging-x86_64/
  netcdf/repos/community-staging-x86_64/PKGBUILD
(from rev 328323, netcdf/trunk/PKGBUILD)

--+
 PKGBUILD |   52 
 1 file changed, 52 insertions(+)

Copied: netcdf/repos/community-staging-x86_64/PKGBUILD (from rev 328323, 
netcdf/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-05-23 15:18:32 UTC (rev 328324)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) 
+# Contributor: damir 
+
+pkgname=netcdf
+pkgver=4.6.1
+pkgrel=1
+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')
+makedepends=('cmake')
+optdepends=('netcdf-fortran: fortran bindings' 'netcdf-cxx: c++ bindings')
+options=('!makeflags')
+license=('custom')
+source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/Unidata/netcdf-c/archive/v${pkgver}.tar.gz;)
+sha256sums=('a2fabf27c72a5ee746e3843e1debbaad37cd035767eaede2045371322211eebb')
+
+prepare() {
+mkdir -p build
+}
+
+build() {
+cd build
+cmake ../${pkgname}-c-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_CDF5=ON \
+-DENABLE_DAP_LONG_TESTS=ON \
+-DENABLE_EXAMPLE_TESTS=ON \
+-DENABLE_EXTRA_TESTS=ON \
+-DENABLE_FAILING_TESTS=ON \
+-DENABLE_FILTER_TESTING=ON \
+-DENABLE_LARGE_FILE_TESTS=ON
+make
+}
+
+check() {
+cd build
+# One test failure https://github.com/Unidata/netcdf-c/issues/808
+make test || warning "Test failure"
+}
+
+package() {
+cd build
+make DESTDIR="${pkgdir}" install
+
+cd "${srcdir}"/${pkgname}-c-${pkgver}
+install -Dm644 COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}