Date: Sunday, November 6, 2022 @ 18:25:20
Author: felixonmars
Revision: 1343850
upgpkg: autopep8 1:1.7.1-1
Modified:
autopep8/trunk/PKGBUILD
----------+
PKGBUILD | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2022-11-06 18:25:20 UTC (rev 1343849)
+++ PKGBUILD 2022-11-06 18:25:20 UTC (rev 1343850)
@@ -3,7 +3,7 @@
# Contributor: Sergey Mastykov <smastykov[at]gmail[dot]com>
pkgname=autopep8
-pkgver=1.7.0
+pkgver=1.7.1
pkgrel=1
epoch=1
pkgdesc="A tool that automatically formats Python code to conform to the PEP 8
style guide"
@@ -10,10 +10,10 @@
arch=('any')
url="https://github.com/hhatto/autopep8"
license=('MIT')
-depends=('python-pycodestyle' 'python-toml')
+depends=('python-pycodestyle' 'python-tomli')
makedepends=('python-setuptools')
source=("https://github.com/hhatto/autopep8/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('41bddd5c0cc93fd47dd01ba6b89f085fa7b3723abed9ac829e9f4d67a0587a7ee4457b23f16f223aaab18f33440166f402a567ca80d13535e85a6a3d4b968c0d')
+sha512sums=('6a2a25ab9a45df21dd029f880cbc1aded822288d68a4f5f24d08bcc4d95a9ae58fe33e88fb0a004d223721f8467e6938a6daf313edf11e89809510b5e87260ec')
build() {
cd autopep8-$pkgver
@@ -27,7 +27,7 @@
package() {
cd autopep8-$pkgver
- python3 setup.py install -O1 --prefix=/usr --root="$pkgdir"
+ python setup.py install -O1 --prefix=/usr --root="$pkgdir"
install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
}