libpeas: restrict python version range, use pkgconfig virtual dependency (#21313)
This commit is contained in:
parent
bcb0e80548
commit
181f921c1a
1 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ class Libpeas(AutotoolsPackage):
|
||||||
depends_on('pango')
|
depends_on('pango')
|
||||||
depends_on('gnome-common')
|
depends_on('gnome-common')
|
||||||
depends_on('py-pygobject@3:', type='build')
|
depends_on('py-pygobject@3:', type='build')
|
||||||
depends_on('python@3:', type='build')
|
depends_on('python@3:3.7.9', type='build')
|
||||||
|
|
||||||
def url_for_version(self, version):
|
def url_for_version(self, version):
|
||||||
url = 'https://download.gnome.org/sources/libpeas/'
|
url = 'https://download.gnome.org/sources/libpeas/'
|
||||||
|
@ -86,7 +86,7 @@ def setup_run_environment(self, env):
|
||||||
|
|
||||||
def autoreconf(self, spec, prefix):
|
def autoreconf(self, spec, prefix):
|
||||||
autoreconf_args = ['-ivf']
|
autoreconf_args = ['-ivf']
|
||||||
aclocal_pkg_list = ['pkg-config',
|
aclocal_pkg_list = ['pkgconfig',
|
||||||
'gettext',
|
'gettext',
|
||||||
'intltool',
|
'intltool',
|
||||||
'glib',
|
'glib',
|
||||||
|
|
Loading…
Reference in a new issue