diff --git a/PKGBUILD b/PKGBUILD index 343e891..9680bcf 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,15 +1,20 @@ # Maintainer: Eric Torres pkgname=file-scripts -pkgver=1.0.1 -pkgrel=0 +pkgver=1.1.0 +pkgrel=1 pkgdesc="Various scripts for performing file-related operations such as editing and deleting." arch=(any) license=(GPL3) -depends=(fd fzf mlocate 'python>=3.7' python-termcolor) -makedepends=(python-hypothesis python-pytest python-setuptools python-sphinx) +depends=(fd fzf mlocate python python-termcolor) +makedepends=(python-setuptools python-sphinx) +checkdepends=(python-hypothesis python-pytest) source=("${pkgname}-${pkgver}.tar.gz") -sha256sums=('1124f0fabb45341a0daf6ca1f6fc9f7aa13bc921bd2fe25bd6e9744829c7fc96') -sha256sums=('9995199d336df02f37af4a5600dfb969a85c64ce54644d95151b4fc1c9b9338940724efa6a037ccc96e3086656cebe7315be7d85de7fb0212aace0a701e32467') +sha256sums=('SKIP') + +pkgver() { + cd "${srcdir}/${pkgname}-${pkgver}" + python setup.py --version +} package() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/setup.py b/setup.py index 210d90c..a51c350 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ with open("README", "r") as fh: # ========== Package Setup ========== setuptools.setup( name="file_scripts", - version="1.0.1", + version="1.1.0", author="Eric Torres", author_email="erictorres4@protonmail.com", description="File-related helper scripts",