Date: Monday, January 2, 2023 @ 03:10:49
  Author: grawlinson
Revision: 1372859

archrelease: copy trunk to community-any

Added:
  python-flake8-black/repos/community-any/PKGBUILD
    (from rev 1372858, python-flake8-black/trunk/PKGBUILD)
  python-flake8-black/repos/community-any/pyproject-no-pip.patch
    (from rev 1372858, python-flake8-black/trunk/pyproject-no-pip.patch)
Deleted:
  python-flake8-black/repos/community-any/PKGBUILD

------------------------+
 PKGBUILD               |  118 +++++++++++++++++++++++++++++------------------
 pyproject-no-pip.patch |    9 +++
 2 files changed, 83 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-01-02 03:09:57 UTC (rev 1372858)
+++ PKGBUILD    2023-01-02 03:10:49 UTC (rev 1372859)
@@ -1,44 +0,0 @@
-# Maintainer: Daniel M. Capella <[email protected]>
-# Contributor: George Rawlinson <[email protected]>
-
-_name=flake8-black
-pkgname=python-flake8-black
-pkgver=0.3.5
-pkgrel=1
-pkgdesc='Flake8 plugin to call black as a code style validator'
-arch=('any')
-url=https://github.com/peterjc/flake8-black
-license=('MIT')
-depends=('flake8' 'python-black' 'python-tomli')
-makedepends=('python-build' 'python-installer' 'python-setuptools'
-             'python-wheel')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz";)
-sha256sums=('9e93252b1314a8eb3c2f55dec54a07239e502b12f57567f2c105f2202714b15e')
-b2sums=('bda2b0d022b36d1fccdf38df390b9d4660846817b887f28f489fa4c2975aba989a96e8c70f1fd00fd47cde9645f448cf23ec7478a62fc85aab16a9b74cd23df8')
-
-build() {
-  cd $_name-$pkgver
-  python -m build --wheel --skip-dependency-check --no-isolation
-}
-
-check() {
-  cd $_name-$pkgver
-  python -m venv --system-site-packages test-env
-  source test-env/bin/activate
-  python -m installer dist/*.whl
-  cd tests
-  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  PYTHONPATH="../build:$site_packages" ./run_tests.sh
-  deactivate
-}
-
-package() {
-  cd $_name-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-
-  # Symlink license file
-  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  install -d "$pkgdir"/usr/share/licenses/$pkgname
-  ln -s "$site_packages"/flake8_black-$pkgver.dist-info/LICENSE.rst \
-    "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.rst
-}

Copied: python-flake8-black/repos/community-any/PKGBUILD (from rev 1372858, 
python-flake8-black/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-01-02 03:10:49 UTC (rev 1372859)
@@ -0,0 +1,74 @@
+# Maintainer: George Rawlinson <[email protected]>
+# Contributor: Daniel M. Capella <[email protected]>
+
+pkgname=python-flake8-black
+pkgver=0.3.6
+pkgrel=1
+pkgdesc='Flake8 plugin to call black as a code style validator'
+arch=('any')
+url=https://github.com/peterjc/flake8-black
+license=('MIT')
+depends=(
+  'python'
+  'flake8'
+  'python-black'
+  'python-tomli'
+)
+makedepends=(
+  'git'
+  'python-build'
+  'python-installer'
+  'python-wheel'
+  'python-setuptools'
+)
+_commit='868b41554a6b57d74e916d33c37469e0d0b4b9cc'
+source=(
+  "$pkgname::git+$url#commit=$_commit"
+  'pyproject-no-pip.patch'
+)
+sha512sums=('SKIP'
+            
'0dc458646781a621b571ac6a2ef892da242fa353b0be3e63a189ff0da8d0d10495521ff559072e50ada62e3565e43103cf605766b4cdf9f1b97a039a1ebd03fd')
+b2sums=('SKIP'
+        
'abc8840cf1cbf6b2386c38e690dcb479671cf2df64c584787f7ebb06c31dc3cec1d1d407e3bf3173460f31f8a61023bd1609e20fcac9317f67a3c18c610b2b19')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  patch -p1 -i "$srcdir/pyproject-no-pip.patch"
+}
+
+build() {
+  cd "$pkgname"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname"
+
+  python -m venv --system-site-packages test-env
+  source test-env/bin/activate
+  python -m installer dist/*.whl
+  cd tests
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  PYTHONPATH="../build:$site_packages" ./run_tests.sh
+  deactivate
+}
+
+package() {
+  cd "$pkgname"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+
+  # Symlink license file
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "$site_packages/flake8_black-$pkgver.dist-info/LICENSE.rst" \
+    "$pkgdir/usr/share/licenses/$pkgname/LICENSE.rst"
+}

Copied: python-flake8-black/repos/community-any/pyproject-no-pip.patch (from 
rev 1372858, python-flake8-black/trunk/pyproject-no-pip.patch)
===================================================================
--- pyproject-no-pip.patch                              (rev 0)
+++ pyproject-no-pip.patch      2023-01-02 03:10:49 UTC (rev 1372859)
@@ -0,0 +1,9 @@
+--- a/pyproject.toml
++++ b/pyproject.toml
+@@ -1,5 +1,5 @@
+ [build-system]
+-requires = ['pip>=21.3', 'setuptools>=61', 'wheel']
++requires = ['setuptools>=61', 'wheel']
+ build-backend = 'setuptools.build_meta'
+ 
+ [project]

Reply via email to