diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-02-12 11:47:48 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-02-12 12:57:16 +0100 |
commit | c2b11525a9ec5ad69b820e98173ebd4f156c6ebe (patch) | |
tree | ca44aaa968d335901aa988498adc3085c0991760 /net-libs/libsignon-glib | |
parent | kde-frameworks/kdesignerplugin: Remove last-rited package (diff) | |
download | gentoo-c2b11525a9ec5ad69b820e98173ebd4f156c6ebe.tar.gz gentoo-c2b11525a9ec5ad69b820e98173ebd4f156c6ebe.tar.bz2 gentoo-c2b11525a9ec5ad69b820e98173ebd4f156c6ebe.zip |
net-libs/libsignon-glib: Python is needed in BDEPEND
Closes: https://bugs.gentoo.org/770184
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-libs/libsignon-glib')
-rw-r--r-- | net-libs/libsignon-glib/libsignon-glib-2.1.ebuild | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/net-libs/libsignon-glib/libsignon-glib-2.1.ebuild b/net-libs/libsignon-glib/libsignon-glib-2.1.ebuild index 3b00f34160d2..e9d5bb7e4914 100644 --- a/net-libs/libsignon-glib/libsignon-glib-2.1.ebuild +++ b/net-libs/libsignon-glib/libsignon-glib-2.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -16,6 +16,8 @@ KEYWORDS="amd64 arm64 x86" IUSE="debug doc +introspection python test" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} introspection )" +# needs more love +RESTRICT="test" RDEPEND=" dev-libs/glib:2 @@ -27,18 +29,20 @@ RDEPEND=" ) " DEPEND="${RDEPEND}" -BDEPEND="$(vala_depend) +BDEPEND="${PYTHON_DEPS} + $(vala_depend) dev-util/gdbus-codegen dev-util/glib-utils doc? ( dev-util/gtk-doc ) test? ( dev-libs/check ) " -# needs more love -RESTRICT="test" - S="${WORKDIR}/${PN}-VERSION_${PV}" +pkg_setup() { + python_setup +} + src_prepare() { default vala_src_prepare |