diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2020-12-24 14:06:22 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2020-12-24 14:06:22 +0100 |
commit | ba5d9560cc8e9260ff2c568465d996dbf829a7a1 (patch) | |
tree | 646432e6f4ae965185744c1d31aa6acf76b5b319 | |
parent | caf6edb780872253705f2bf08f4f3a917204b105 (diff) | |
download | packages-ba5d9560cc8e9260ff2c568465d996dbf829a7a1.tar.xz |
community/python-cx_freeze: trying to bump build
-rw-r--r-- | community/python-cx_freeze/PKGBUILD | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/community/python-cx_freeze/PKGBUILD b/community/python-cx_freeze/PKGBUILD deleted file mode 100644 index ab85f398..00000000 --- a/community/python-cx_freeze/PKGBUILD +++ /dev/null @@ -1,44 +0,0 @@ -# Maintainer: Felix Yan <felixonmars@archlinux.org> -# Contributor: Alexander Rødseth <rodseth@gmail.com> -# Contributor: Ray Rashif <schiv@archlinux.org> -# Contributor: Douglas Soares de Andrade <douglas@archlinux.org> -# Contributor: Eric Belanger <eric@archlinux.org> -# Contributor: Roberto Alsina <ralsina@kde.org> -# Contributor: Julien Duponchelle <julien@gns3.net> - -pkgname=python-cx-freeze -pkgver=6.4.2 -pkgrel=1 -pkgdesc='Create standalone executables from Python scripts' -arch=('x86_64') -url='https://marcelotduarte.github.io/cx_Freeze' -license=('PSF') -depends=('python-importlib-metadata') -makedepends=('python-setuptools') -checkdepends=('python-nose' 'python-openpyxl') -replaces=('python-cx_freeze') -provides=('python-cx_freeze') -conflicts=('python-cx_freeze') -source=("https://github.com/marcelotduarte/cx_Freeze/archive/$pkgver/$pkgname-$pkgver.tar.gz") -sha512sums=('ddcff29c749872a51d691f852630f2e4cca77449c930993807cc1d459087ba25a2e58c2ce8669e4ca297a0d3ac659b007d9a94fdc389b46685aeb7a95307882b') - -prepare() { - cd cx_Freeze-$pkgver - # https://github.com/marcelotduarte/cx_Freeze/pull/833 - sed -i 's/excludes$/excludes or []/' cx_Freeze/finder.py -} - -build() { - cd cx_Freeze-$pkgver - python setup.py build -} - -check() { - cd cx_Freeze-$pkgver - python setup.py nosetests || echo "Tests failed" -} - -package() { - cd cx_Freeze-$pkgver - python setup.py install --root "$pkgdir" --optimize 1 --skip-build -} |