Date: Tuesday, April 4, 2023 @ 22:26:30
Author: grawlinson
Revision: 1435254
archrelease: copy trunk to community-any
Added:
autopep8/repos/community-any/PKGBUILD
(from rev 1435253, autopep8/trunk/PKGBUILD)
Deleted:
autopep8/repos/community-any/PKGBUILD
----------+
PKGBUILD | 118 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 59 insertions(+), 59 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-04-04 22:25:35 UTC (rev 1435253)
+++ PKGBUILD 2023-04-04 22:26:30 UTC (rev 1435254)
@@ -1,59 +0,0 @@
-# Maintainer: George Rawlinson <[email protected]>
-# Contributor: Felix Yan <[email protected]>
-# Contributor: Ismael Carnales <icarnales at gmail dot com>
-# Contributor: Sergey Mastykov <smastykov[at]gmail[dot]com>
-
-pkgname=autopep8
-pkgver=2.0.1
-pkgrel=1
-epoch=1
-pkgdesc='A tool that automatically formats Python code to conform to the PEP 8
style guide'
-arch=('any')
-url='https://github.com/hhatto/autopep8'
-license=('MIT')
-depends=(
- 'python'
- 'python-pycodestyle'
- 'python-tomli'
-)
-makedepends=(
- 'git'
- 'python-build'
- 'python-installer'
- 'python-wheel'
- 'python-setuptools'
-)
-checkdepends=('python-pytest')
-_commit='3555a19674d3fec231e4914b2808564f9c1bc28a'
-source=("$pkgname::git+$url#commit=$_commit")
-sha512sums=('SKIP')
-b2sums=('SKIP')
-
-pkgver() {
- cd "$pkgname"
-
- git describe --tags | sed 's/^v//'
-}
-
-build() {
- cd "$pkgname"
-
- python -m build --wheel --no-isolation
-}
-
-check() {
- cd "$pkgname"
-
- pytest -v
-}
-
-package() {
- cd "$pkgname"
-
- python -m installer --destdir="$pkgdir" dist/*.whl
-
- # license
- install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
-}
-
-# vim:set ts=2 sw=2 et:
Copied: autopep8/repos/community-any/PKGBUILD (from rev 1435253,
autopep8/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-04-04 22:26:30 UTC (rev 1435254)
@@ -0,0 +1,59 @@
+# Maintainer: George Rawlinson <[email protected]>
+# Contributor: Felix Yan <[email protected]>
+# Contributor: Ismael Carnales <icarnales at gmail dot com>
+# Contributor: Sergey Mastykov <smastykov[at]gmail[dot]com>
+
+pkgname=autopep8
+pkgver=2.0.2
+pkgrel=1
+epoch=1
+pkgdesc='A tool that automatically formats Python code to conform to the PEP 8
style guide'
+arch=('any')
+url='https://github.com/hhatto/autopep8'
+license=('MIT')
+depends=(
+ 'python'
+ 'python-pycodestyle'
+ 'python-tomli'
+)
+makedepends=(
+ 'git'
+ 'python-build'
+ 'python-installer'
+ 'python-wheel'
+ 'python-setuptools'
+)
+checkdepends=('python-pytest')
+_commit='6e6d4ba4a043da1a56ca0ec7280a7d4f40283215'
+source=("$pkgname::git+$url#commit=$_commit")
+sha512sums=('SKIP')
+b2sums=('SKIP')
+
+pkgver() {
+ cd "$pkgname"
+
+ git describe --tags | sed 's/^v//'
+}
+
+build() {
+ cd "$pkgname"
+
+ python -m build --wheel --no-isolation
+}
+
+check() {
+ cd "$pkgname"
+
+ pytest -v
+}
+
+package() {
+ cd "$pkgname"
+
+ python -m installer --destdir="$pkgdir" dist/*.whl
+
+ # license
+ install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}
+
+# vim:set ts=2 sw=2 et: