diff options
author | Michael Palimaka <kensington@gentoo.org> | 2017-12-25 13:22:24 +1100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2017-12-25 13:23:21 +1100 |
commit | 9dd55bf1fa181384b41ebd07b08c731b3b18db2b (patch) | |
tree | 81cf66a89f196b923f840fb4489dd6f44d2bcc8b /net-libs/libsignon-glib | |
parent | net-libs/libsignon-glib: stabilise 1.14 for amd64/x86 (diff) | |
download | gentoo-9dd55bf1fa181384b41ebd07b08c731b3b18db2b.tar.gz gentoo-9dd55bf1fa181384b41ebd07b08c731b3b18db2b.tar.bz2 gentoo-9dd55bf1fa181384b41ebd07b08c731b3b18db2b.zip |
net-libs/libsignon-glib: remove 1.13-r1
Package-Manager: Portage-2.3.14, Repoman-2.3.6
Diffstat (limited to 'net-libs/libsignon-glib')
-rw-r--r-- | net-libs/libsignon-glib/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libsignon-glib/libsignon-glib-1.13-r1.ebuild | 87 |
2 files changed, 0 insertions, 88 deletions
diff --git a/net-libs/libsignon-glib/Manifest b/net-libs/libsignon-glib/Manifest index 09128827ef08..4836858a6f6b 100644 --- a/net-libs/libsignon-glib/Manifest +++ b/net-libs/libsignon-glib/Manifest @@ -1,2 +1 @@ -DIST libsignon-glib-1.13.tar.gz 51601 BLAKE2B e38d12a0cbb6b0df80c0da27620c06e0fb4301694782c64dd86bd5dbc0424ca40b917d5d6d4c4197a9f736bea199a7e029c8b48bc5b9bc997005b26311b560af SHA512 aaae6a37a113685eb36ddccd497e387617cf0900506638cbafbac282c4d63ade41f4c915ad6f04214c58af580b70d9062ecf3e1618b6f5fe07dad50c5dc125a6 DIST libsignon-glib-1.14.tar.gz 54019 BLAKE2B 9ffdb96a374ef0848c1b70cb369a533ea826b24856a32b4b454a0fd8982533041fcc88382fdf1eee6857aa36ec8d076885fc769a058e148e91da54dbddaf7125 SHA512 c2277933d6ec2c3288ce510c853da7719116dac15d60c7114fcdcb87d04e7f70390d066938dea6aa0f819fbd70158fb875c5be5684c47fd27c0b6c55e9467a1d diff --git a/net-libs/libsignon-glib/libsignon-glib-1.13-r1.ebuild b/net-libs/libsignon-glib/libsignon-glib-1.13-r1.ebuild deleted file mode 100644 index 7a39014192a5..000000000000 --- a/net-libs/libsignon-glib/libsignon-glib-1.13-r1.ebuild +++ /dev/null @@ -1,87 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python{2_7,3_4,3_5} ) -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_1.13 -> ${P}.tar.gz" - -SLOT="0" -LICENSE="LGPL-2.1" -KEYWORDS="amd64 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/gdbus-codegen - doc? ( dev-util/gtk-doc ) -" - -DOCS=( AUTHORS NEWS README ) - -# needs more love -RESTRICT="test" - -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() { - # fails to compile with more than one thread - MAKEOPTS="${MAKEOPTS} -j1" - 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 -} |