Python: add maintainer(s) (#21125)
* Python: add maintainer(s) * Fix unit tests
This commit is contained in:
parent
d14a6dc1f7
commit
df5992293a
@ -66,6 +66,8 @@ def configure(self, spec, prefix):
|
||||
#: Package name, version, and extension on PyPI
|
||||
pypi = None
|
||||
|
||||
maintainers = ['adamjstewart']
|
||||
|
||||
# Default phases
|
||||
phases = ['build', 'install']
|
||||
|
||||
|
@ -12,6 +12,9 @@ class PyExtension1(PythonPackage):
|
||||
homepage = "http://www.example.com"
|
||||
url = "http://www.example.com/extension1-1.0.tar.gz"
|
||||
|
||||
# Override settings in base class
|
||||
maintainers = []
|
||||
|
||||
version('1.0', 'hash-extension1-1.0')
|
||||
version('2.0', 'hash-extension1-2.0')
|
||||
|
||||
|
@ -13,6 +13,9 @@ class PyExtension2(PythonPackage):
|
||||
homepage = "http://www.example.com"
|
||||
url = "http://www.example.com/extension2-1.0.tar.gz"
|
||||
|
||||
# Override settings in base class
|
||||
maintainers = []
|
||||
|
||||
extends("python")
|
||||
depends_on('py-extension1', type=('build', 'run'))
|
||||
|
||||
|
@ -24,7 +24,7 @@ class Python(AutotoolsPackage):
|
||||
list_url = "https://www.python.org/ftp/python/"
|
||||
list_depth = 1
|
||||
|
||||
maintainers = ['adamjstewart']
|
||||
maintainers = ['adamjstewart', 'skosukhin']
|
||||
|
||||
version('3.9.1', sha256='29cb91ba038346da0bd9ab84a0a55a845d872c341a4da6879f462e94c741f117')
|
||||
version('3.9.0', sha256='df796b2dc8ef085edae2597a41c1c0a63625ebd92487adaef2fed22b567873e8')
|
||||
|
Loading…
Reference in New Issue
Block a user