Date: Wednesday, November 9, 2022 @ 07:24:48
  Author: arojas
Revision: 1346119

archrelease: copy trunk to community-any

Added:
  python-scikit-build/repos/community-any/PKGBUILD
    (from rev 1346118, python-scikit-build/trunk/PKGBUILD)
  python-scikit-build/repos/community-any/keys/
Deleted:
  python-scikit-build/repos/community-any/PKGBUILD
  python-scikit-build/repos/community-any/fix-byte-compilation.patch

----------------------------+
 PKGBUILD                   |  110 +++++++++++++++++++++----------------------
 fix-byte-compilation.patch |    8 ---
 2 files changed, 54 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2022-11-09 07:24:37 UTC (rev 1346118)
+++ PKGBUILD    2022-11-09 07:24:48 UTC (rev 1346119)
@@ -1,56 +0,0 @@
-# Maintainer: Andrzej Giniewicz <[email protected]>
-# Maintainer: Bruno Pagani <[email protected]>
-# Contributor: Martino Pilia <[email protected]>
-# Contributor: Ben Greiner <[email protected]>
-
-pkgname=python-scikit-build
-pkgver=0.15.0
-pkgrel=1
-pkgdesc="Improved build system generator for CPython C, C++, Cython and 
Fortran extensions"
-arch=(any)
-url="https://scikit-build.org";
-license=(MIT)
-depends=(cmake python-distro python-packaging python-setuptools python-wheel)
-makedepends=(git python-setuptools-scm)
-checkdepends=(
-    cython
-    gcc
-    gcc-fortran
-    ninja
-    python-build
-    python-path
-    python-pytest
-    python-pytest-mock
-    python-pytest-runner
-    python-pytest-virtualenv
-    python-requests
-    python-six
-    python-virtualenv
-)
-_tag=7da7674cc98f22579fb6b077fdfff09ca48536d9 # git rev-parse ${pkgver}
-source=(git+https://github.com/scikit-build/scikit-build.git#tag=${_tag}?signed)
-sha256sums=(SKIP)
-validpgpkeys=(2FDEC9863E5E14C7BC429F27B9D0E45146A241E8) # Henry Schreiner 
<[email protected]>
-
-build() {
-  cd scikit-build
-  export SETUPTOOLS_SCM_PRETEND_VERSION=${pkgver}
-  python setup.py build_ext --inplace
-  python setup.py build
-}
-
-check() {
-  cd scikit-build
-  # Disable coverage
-  sed -i 's|--cov --cov-report xml ||' setup.cfg
-  # Tests need a rw version of site-packages
-  python -m venv --system-site-packages test-env
-  # https://github.com/scikit-build/scikit-build/issues/727
-  test-env/bin/python /usr/bin/pytest -vv --color=yes || echo "Tests failed"
-}
-
-package() {
-  cd scikit-build
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: python-scikit-build/repos/community-any/PKGBUILD (from rev 1346118, 
python-scikit-build/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2022-11-09 07:24:48 UTC (rev 1346119)
@@ -0,0 +1,54 @@
+# Maintainer: Andrzej Giniewicz <[email protected]>
+# Maintainer: Bruno Pagani <[email protected]>
+# Contributor: Martino Pilia <[email protected]>
+# Contributor: Ben Greiner <[email protected]>
+
+pkgname=python-scikit-build
+pkgver=0.16.2
+pkgrel=1
+pkgdesc="Improved build system generator for CPython C, C++, Cython and 
Fortran extensions"
+arch=(any)
+url="https://scikit-build.org";
+license=(MIT)
+depends=(cmake python-distro python-packaging python-setuptools python-wheel)
+makedepends=(git python-setuptools-scm)
+checkdepends=(
+    cython
+    gcc
+    gcc-fortran
+    ninja
+    python-build
+    python-path
+    python-pytest
+    python-pytest-mock
+    python-pytest-runner
+    python-pytest-virtualenv
+    python-requests
+    python-six
+    python-virtualenv
+)
+_tag=f15effa826c77c8be7b208d6681c87086ba461fb # git rev-parse ${pkgver}
+source=(git+https://github.com/scikit-build/scikit-build.git#tag=${_tag}?signed)
+sha256sums=('SKIP')
+validpgpkeys=(2FDEC9863E5E14C7BC429F27B9D0E45146A241E8) # Henry Schreiner 
<[email protected]>
+
+build() {
+  cd scikit-build
+  export SETUPTOOLS_SCM_PRETEND_VERSION=${pkgver}
+  python setup.py build_ext --inplace
+  python setup.py build
+}
+
+check() {
+  cd scikit-build
+  # Tests need a rw version of site-packages
+  python -m venv --system-site-packages test-env
+  # https://github.com/scikit-build/scikit-build/issues/727
+  test-env/bin/python /usr/bin/pytest -vv --color=yes || echo "Tests failed"
+}
+
+package() {
+  cd scikit-build
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}

Deleted: fix-byte-compilation.patch
===================================================================
--- fix-byte-compilation.patch  2022-11-09 07:24:37 UTC (rev 1346118)
+++ fix-byte-compilation.patch  2022-11-09 07:24:48 UTC (rev 1346119)
@@ -1,8 +0,0 @@
-diff --git a/skbuild/command/install_lib.py b/skbuild/command/install_lib.py
---- a/skbuild/command/install_lib.py
-+++ b/skbuild/command/install_lib.py
-@@ -16,3 +16,4 @@ def install(self):
-             outfiles = super(install_lib, self).install()
-         if outfiles is not None:
-             distutils_log.info("copied %d files" % len(outfiles))
-+        return outfiles

Reply via email to