Date: Thursday, October 27, 2022 @ 11:22:41
Author: felixonmars
Revision: 1338054
archrelease: copy trunk to community-any
Added:
python-pytest-pylint/repos/community-any/PKGBUILD
(from rev 1338053, python-pytest-pylint/trunk/PKGBUILD)
Deleted:
python-pytest-pylint/repos/community-any/PKGBUILD
----------+
PKGBUILD | 68 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 34 insertions(+), 34 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-10-27 11:22:33 UTC (rev 1338053)
+++ PKGBUILD 2022-10-27 11:22:41 UTC (rev 1338054)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan <[email protected]>
-
-pkgname=python-pytest-pylint
-pkgver=0.18.0
-pkgrel=4
-pkgdesc='pytest plugin to check source code with pylint'
-arch=('any')
-license=('MIT')
-url='https://github.com/carsongee/pytest-pylint'
-depends=('python-pytest' 'python-pylint' 'python-toml')
-makedepends=('python-pytest-flake8' 'python-pytest-runner')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/carsongee/pytest-pylint/archive/v$pkgver.tar.gz")
-sha512sums=('a0716104d288774d4c3ab596f30a33cf439df5031647912574c31eefc3a84e69e82fc362f77e73b437c7566a596d2ff8bf51a332626a7fa7468cea3b916e9ad9')
-
-build() {
- cd pytest-pylint-$pkgver
- python setup.py build
-}
-
-check() {
- # Hack entry points by installing it
-
- cd pytest-pylint-$pkgver
- python setup.py install --root="$PWD/tmp_install" --optimize=1
- PYTHONPATH="$PWD/tmp_install/usr/lib/python3.10/site-packages:$PYTHONPATH"
pytest --ignore tmp_install
-}
-
-package() {
- cd pytest-pylint-$pkgver
- python setup.py install --root="$pkgdir" --optimize=1
- install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}
-
-# vim:set ts=2 sw=2 et:
Copied: python-pytest-pylint/repos/community-any/PKGBUILD (from rev 1338053,
python-pytest-pylint/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-10-27 11:22:41 UTC (rev 1338054)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan <[email protected]>
+
+pkgname=python-pytest-pylint
+pkgver=0.19.0
+pkgrel=1
+pkgdesc='pytest plugin to check source code with pylint'
+arch=('any')
+license=('MIT')
+url='https://github.com/carsongee/pytest-pylint'
+depends=('python-pytest' 'python-pylint' 'python-toml')
+makedepends=('python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/carsongee/pytest-pylint/archive/v$pkgver.tar.gz")
+sha512sums=('94503757bf774ffbba56687cda7689a95748fe437759e29868105bc5f639b03782308c8e86eae7236ab99188674de5596053da5c33ebd90c603e396504047996')
+
+build() {
+ cd pytest-pylint-$pkgver
+ python setup.py build
+}
+
+check() {
+ # Hack entry points by installing it
+
+ cd pytest-pylint-$pkgver
+ python setup.py install --root="$PWD/tmp_install" --optimize=1
+ PYTHONPATH="$PWD/tmp_install/usr/lib/python3.10/site-packages:$PYTHONPATH"
pytest --ignore tmp_install
+}
+
+package() {
+ cd pytest-pylint-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1
+ install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}
+
+# vim:set ts=2 sw=2 et: