Attempting to fix pypi build issues.
This commit is contained in:
parent
6b4a242d61
commit
f5230fcb30
|
|
@ -1,7 +1,7 @@
|
||||||
# Maintainer: Anton Hvornum anton@hvornum.se
|
# Maintainer: Anton Hvornum anton@hvornum.se
|
||||||
# Contributor: Anton Hvornum anton@hvornum.se
|
# Contributor: Anton Hvornum anton@hvornum.se
|
||||||
pkgname="archinstall-bin"
|
pkgname="archinstall-bin"
|
||||||
pkgver="2.0.6rc3"
|
pkgver="2.0.6rc4"
|
||||||
pkgdesc="Installs a pre-built binary of ${pkgname}"
|
pkgdesc="Installs a pre-built binary of ${pkgname}"
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
url="https://github.com/Torxed/archinstall"
|
url="https://github.com/Torxed/archinstall"
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
# Maintainer: Anton Hvornum <anton@hvornum.se>
|
# Maintainer: Anton Hvornum <anton@hvornum.se>
|
||||||
# Contributor: demostanis worlds <demostanis@protonmail.com>
|
# Contributor: demostanis worlds <demostanis@protonmail.com>
|
||||||
pkgname="archinstall"
|
pkgname="archinstall"
|
||||||
pkgver="2.0.6rc3"
|
pkgver="2.0.6rc4"
|
||||||
pkgdesc="Installs launcher scripts for archinstall"
|
pkgdesc="Installs launcher scripts for archinstall"
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
url="https://github.com/Torxed/archinstall"
|
url="https://github.com/Torxed/archinstall"
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
# Contributor: demostanis worlds <demostanis@protonmail.com>
|
# Contributor: demostanis worlds <demostanis@protonmail.com>
|
||||||
|
|
||||||
pkgname="python-archinstall"
|
pkgname="python-archinstall"
|
||||||
pkgver="2.0.6rc3"
|
pkgver="2.0.6rc4"
|
||||||
pkgdesc="Installs ${pkgname} as a python library."
|
pkgdesc="Installs ${pkgname} as a python library."
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
url="https://github.com/Torxed/archinstall"
|
url="https://github.com/Torxed/archinstall"
|
||||||
|
|
|
||||||
3
make.sh
3
make.sh
|
|
@ -11,7 +11,8 @@ mv archinstall.dist "archinstall-v${VERSION}-x86_64"
|
||||||
tar -czvf "archinstall-v${VERSION}.tar.gz" "archinstall-v${VERSION}-x86_64"
|
tar -czvf "archinstall-v${VERSION}.tar.gz" "archinstall-v${VERSION}-x86_64"
|
||||||
|
|
||||||
# makepkg -f
|
# makepkg -f
|
||||||
python3 setup.py sdist bdist_wheel
|
# python3 setup.py sdist bdist_wheel
|
||||||
|
python3 setup.py sdist make
|
||||||
echo 'python3 -m twine upload dist/* && rm -rf dist/'
|
echo 'python3 -m twine upload dist/* && rm -rf dist/'
|
||||||
|
|
||||||
rm -rf archinstall.egg-info/ build/ src/ pkg/ archinstall.build/ "archinstall-v${VERSION}-x86_64/"
|
rm -rf archinstall.egg-info/ build/ src/ pkg/ archinstall.build/ "archinstall-v${VERSION}-x86_64/"
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -22,5 +22,5 @@ setuptools.setup(
|
||||||
"Operating System :: POSIX :: Linux",
|
"Operating System :: POSIX :: Linux",
|
||||||
],
|
],
|
||||||
python_requires='>=3.8',
|
python_requires='>=3.8',
|
||||||
package_data={'archinstall': glob.glob('examples/*.py') + glob.glob('profiles/*.py')},
|
package_data={'archinstall': glob.glob('examples/*.py') + glob.glob('profiles/*.py'), 'VERSION' : 'VERSION'},
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue