Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • archlinux/packaging/packages/python-zope-configuration
1 result
Show changes
Commits on Source (5)
pkgbase = python-zope-configuration
pkgdesc = Zope Configuration Markup Language (ZCML)
pkgver = 5.0.1
pkgrel = 2
pkgrel = 3
url = https://github.com/zopefoundation/zope.configuration
arch = any
license = ZPL
license = ZPL-2.1
checkdepends = python-zope-testing
checkdepends = python-zope-testrunner
depends = python-setuptools
makedepends = python-build
makedepends = python-installer
makedepends = python-setuptools
makedepends = python-wheel
depends = python
depends = python-zope-i18nmessageid
depends = python-zope-interface
depends = python-zope-schema
depends = python-zope-i18nmessageid
source = python-zope-configuration-5.0.1.tar.gz::https://github.com/zopefoundation/zope.configuration/archive/5.0.1.tar.gz
sha512sums = 5fe39699851be8de2d69379ed11fbf5365b4c2cc790b1c8a2a82a2239e9516ad8a421a2e84fe1c034023927efefc211beabcda8aa1e0ad5643e374d74158f676
......
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Maintainer: Carl Smedstad <carsme@archlinux.org>
pkgname=python-zope-configuration
_pkgname=zope.configuration
pkgver=5.0.1
pkgrel=2
pkgrel=3
pkgdesc="Zope Configuration Markup Language (ZCML)"
arch=('any')
url="https://github.com/zopefoundation/zope.configuration"
license=('ZPL')
depends=('python-setuptools' 'python-zope-interface' 'python-zope-schema'
'python-zope-i18nmessageid')
checkdepends=('python-zope-testing' 'python-zope-testrunner')
license=('ZPL-2.1')
depends=(
'python'
'python-zope-i18nmessageid'
'python-zope-interface'
'python-zope-schema'
)
makedepends=(
'python-build'
'python-installer'
'python-setuptools'
'python-wheel'
)
checkdepends=(
'python-zope-testing'
'python-zope-testrunner'
)
source=("$pkgname-$pkgver.tar.gz::https://github.com/zopefoundation/zope.configuration/archive/$pkgver.tar.gz")
sha512sums=('5fe39699851be8de2d69379ed11fbf5365b4c2cc790b1c8a2a82a2239e9516ad8a421a2e84fe1c034023927efefc211beabcda8aa1e0ad5643e374d74158f676')
build() {
cd zope.configuration-$pkgver
python setup.py build
cd $_pkgname-$pkgver
python -m build --wheel --no-isolation
}
check() {
cd zope.configuration-$pkgver
PYTHONPATH="$PWD/build/lib" python -m zope.testrunner --test-path=src
cd $_pkgname-$pkgver
PYTHONPATH="$PWD/build/lib" zope-testrunner --test-path=src
}
package() {
cd zope.configuration-$pkgver
python setup.py install --root="$pkgdir" --optimize=1
cd $_pkgname-$pkgver
python -m installer --destdir="$pkgdir" dist/*.whl
}
# vim:set ts=2 sw=2 et: