diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-08-04 22:17:25 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-08-05 00:06:58 +0200 |
commit | 0183c1291486b3c20d9714b25d458e071009bfa3 (patch) | |
tree | 92c07f952e7ac6dd58f80468825cfdf24e566ea0 /net-libs/libsignon-glib | |
parent | media-gfx/krita: 4.2.5 version bump (diff) | |
download | gentoo-0183c1291486b3c20d9714b25d458e071009bfa3.tar.gz gentoo-0183c1291486b3c20d9714b25d458e071009bfa3.tar.bz2 gentoo-0183c1291486b3c20d9714b25d458e071009bfa3.zip |
net-libs/libsignon-glib: Revert 1.14-r1 "Works with py3.7"
Incomplete EAPI-7 bump, irrelevant since 2.1 bump anyway.
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-libs/libsignon-glib')
-rw-r--r-- | net-libs/libsignon-glib/libsignon-glib-1.14-r1.ebuild | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/net-libs/libsignon-glib/libsignon-glib-1.14-r1.ebuild b/net-libs/libsignon-glib/libsignon-glib-1.14-r1.ebuild deleted file mode 100644 index bd73aa4de09f..000000000000 --- a/net-libs/libsignon-glib/libsignon-glib-1.14-r1.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) -inherit autotools python-r1 vcs-snapshot xdg-utils - -DESCRIPTION="GLib binding for the D-Bus API provided by signond" -HOMEPAGE="https://01.org/gsso/" -SRC_URI="https://gitlab.com/accounts-sso/libsignon-glib/repository/archive.tar.gz?ref=VERSION_${PV} -> ${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="debug doc +introspection python test" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} introspection )" - -RDEPEND=" - dev-libs/glib:2 - net-libs/signond - introspection? ( dev-libs/gobject-introspection:= ) - python? ( - ${PYTHON_DEPS} - dev-python/pygobject:3[${PYTHON_USEDEP}] - ) -" -DEPEND="${RDEPEND} - dev-util/glib-utils - dev-util/gdbus-codegen - doc? ( dev-util/gtk-doc ) -" - -DOCS=( AUTHORS NEWS README.md ) - -# needs more love -RESTRICT="test" - -PATCHES=( "${FILESDIR}/${P}-default-opts.patch" ) - -src_prepare() { - default - - if ! use doc; then - eapply "${FILESDIR}/${PN}-1.12-doc-disable.patch" - fi - - eautoreconf -} - -src_configure() { - xdg_environment_reset - - myconfigure() { - local myeconfargs=( - $(use_enable debug) - $(use_enable doc gtk-doc) - $(use_enable introspection) - $(use_enable python) - $(use_enable test tests) - ) - - econf "${myeconfargs[@]}" - } - - if use python; then - python_copy_sources - python_foreach_impl run_in_build_dir myconfigure - else - myconfigure - fi -} - -src_compile() { - default - if use python; then - python_foreach_impl run_in_build_dir default - fi -} - -src_install() { - default - if use python; then - python_foreach_impl run_in_build_dir default - fi - find "${D}" -name '*.la' -delete || die -} |