Revert "Move from legacy setuptools to pyproject toml"

This reverts commit 4def2a350e36b4e9cc5e813e447c40523e5fb091.
This commit is contained in:
Eric Torres 2024-05-09 19:40:48 -07:00
parent bb0622e0b3
commit 8c8a2283e3
3 changed files with 37 additions and 9 deletions

View File

@ -1,13 +1,13 @@
# Maintainer: Eric Torres <eric.torres@its-et.me> # Maintainer: Eric Torres <eric.torres@its-et.me>
pkgname=packaging-scripts pkgname=packaging-scripts
pkgver=1.7.1 pkgver=1.7.1
pkgrel=5 pkgrel=4
pkgdesc="A set of helper scripts for handling Arch Linux packages" pkgdesc="A set of helper scripts for handling Arch Linux packages"
arch=('any') arch=('any')
license=('MIT') license=('MIT')
groups=(pacman-helpers) groups=(pacman-helpers)
depends=(gist mlocate pacman python pyalpm) depends=(gist mlocate pacman python pyalpm)
makedepends=(git python-build python-installer python-wheel) makedepends=(git python-setuptools)
optdepends=('fzf: for the fqo script' optdepends=('fzf: for the fqo script'
'mlocate: for the fqo script') 'mlocate: for the fqo script')
checkdepends=(python-hypothesis python-pytest) checkdepends=(python-hypothesis python-pytest)
@ -17,18 +17,18 @@ sha256sums=('SKIP')
build() { build() {
cd "$srcdir/$pkgname" cd "$srcdir/$pkgname"
python -m build --no-isolation python setup.py build
} }
check() { check() {
cd "$srcdir/$pkgname" cd "$srcdir/$pkgname"
pytest python -m unittest
} }
package() { package() {
cd "$srcdir/$pkgname" cd "$srcdir/$pkgname"
python -m installer --destdir="$pkgdir" dist/*.whl python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
# install README # install README
install -Dm644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README.rst" install -Dm644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README.rst"

View File

@ -1,5 +1,2 @@
[build-system] [build-system]
requires=["build", "wheel"] requires=["build", "setuptools", "wheel"]
[tool.build_find]
paths=["packaging_scripts"]

31
setup.py Normal file
View File

@ -0,0 +1,31 @@
import setuptools
# ========== Constants ==========
EXCLUDED_PACKAGES = ["test", "tests"]
PACKAGES = setuptools.find_packages(exclude=EXCLUDED_PACKAGES)
SCRIPTS = ["bin/addpkg", "bin/delpkg", "bin/fqo", "bin/pug2"]
# ========== Functions ==========
with open("README.rst", "r") as fh:
long_description = fh.read()
# ========== Package Setup ==========
setuptools.setup(
name="packaging_scripts",
version="1.7.1",
author="Eric Russel Torres",
author_email="erictorres4@protonmail.com",
description="A set of scripts for automating pacman database interaction",
long_description=long_description,
long_description_content_type="text/plain",
url="",
packages=PACKAGES,
scripts=SCRIPTS,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)