diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-09-07 13:53:14 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-09-07 13:57:56 +0200 |
commit | 2c92c882e9de1f3b789cdc643fe2a8ab8dd496ab (patch) | |
tree | 8b60e6b3aa91b945003bd5515e37169832d6ef2a | |
parent | net-libs/libaccounts-glib: Drop 1.23 (diff) | |
download | gentoo-2c92c882e9de1f3b789cdc643fe2a8ab8dd496ab.tar.gz gentoo-2c92c882e9de1f3b789cdc643fe2a8ab8dd496ab.tar.bz2 gentoo-2c92c882e9de1f3b789cdc643fe2a8ab8dd496ab.zip |
net-libs/libsignon-glib: Drop 1.14
Package-Manager: Portage-2.3.75, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
4 files changed, 0 insertions, 159 deletions
diff --git a/net-libs/libsignon-glib/Manifest b/net-libs/libsignon-glib/Manifest index eb7a3d38b727..1e8120260bb2 100644 --- a/net-libs/libsignon-glib/Manifest +++ b/net-libs/libsignon-glib/Manifest @@ -1,2 +1 @@ -DIST libsignon-glib-1.14.tar.gz 54019 BLAKE2B 9ffdb96a374ef0848c1b70cb369a533ea826b24856a32b4b454a0fd8982533041fcc88382fdf1eee6857aa36ec8d076885fc769a058e148e91da54dbddaf7125 SHA512 c2277933d6ec2c3288ce510c853da7719116dac15d60c7114fcdcb87d04e7f70390d066938dea6aa0f819fbd70158fb875c5be5684c47fd27c0b6c55e9467a1d DIST libsignon-glib-2.1.tar.gz 52440 BLAKE2B edc27f5f09c3f6d05f32ff6b560934dc003072940b44932fd90021511510fb56beaec7f25dd051b3c1d12d10942f292cc906a9fc4b74bb7f2daf8b885f15e644 SHA512 45d8e26263a16b98517cda0fff8e46fb1ffcc4bb833a6364454f120eb9819b48ee04bdb338bf5e9f0b0fe344af5940f35ed56f0765ca3605dead5b3755657dcf diff --git a/net-libs/libsignon-glib/files/libsignon-glib-1.12-doc-disable.patch b/net-libs/libsignon-glib/files/libsignon-glib-1.12-doc-disable.patch deleted file mode 100644 index 1ef64e604164..000000000000 --- a/net-libs/libsignon-glib/files/libsignon-glib-1.12-doc-disable.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -Naur libsignon-glib-1.12.old/configure.ac libsignon-glib-1.12/configure.ac ---- libsignon-glib-1.12.old/configure.ac 2014-12-09 11:52:37.000000000 +0300 -+++ libsignon-glib-1.12/configure.ac 2015-08-27 13:00:54.501123031 +0300 -@@ -100,9 +100,6 @@ - Makefile - libsignon-glib/Makefile - libsignon-glib.pc -- docs/Makefile -- docs/reference/Makefile -- docs/reference/version.xml - tests/Makefile - pygobject/Makefile - ]) -diff -Naur libsignon-glib-1.12.old/Makefile.am libsignon-glib-1.12/Makefile.am ---- libsignon-glib-1.12.old/Makefile.am 2014-12-09 11:52:37.000000000 +0300 -+++ libsignon-glib-1.12/Makefile.am 2015-08-27 13:00:42.101237854 +0300 -@@ -2,7 +2,7 @@ - DISTCHECK_CONFIGURE_FLAGS = \ - --enable-gtk-doc \ - --enable-introspection=yes --SUBDIRS = libsignon-glib docs -+SUBDIRS = libsignon-glib - - if ENABLE_PYTHON - SUBDIRS += pygobject diff --git a/net-libs/libsignon-glib/files/libsignon-glib-1.14-default-opts.patch b/net-libs/libsignon-glib/files/libsignon-glib-1.14-default-opts.patch deleted file mode 100644 index 5dcf8cc45695..000000000000 --- a/net-libs/libsignon-glib/files/libsignon-glib-1.14-default-opts.patch +++ /dev/null @@ -1,45 +0,0 @@ -From 4982923fdc7be9978d3b089fb443bcb0e20243eb Mon Sep 17 00:00:00 2001 -From: Alberto Mardegan <alberto.mardegan@canonical.com> -Date: Tue, 21 Jun 2016 13:35:03 +0300 -Subject: [PATCH] Build: fix value of default options in configure.ac - -GLib assertions where always disabled, even if the --disable-* -parameters where not passed to configure.ac. - -Quick reference: -http://www.robster.org.uk/2011/02/07/autofoo-ac_arg_enable/ ---- - configure.ac | 9 ++++++--- - 1 file changed, 6 insertions(+), 3 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 364f9f2..3cde223 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -63,17 +63,20 @@ AM_CONDITIONAL([ENABLE_TESTS], [test "x$have_check" = "xyes"]) - GTK_DOC_CHECK([1.14], [--flavour no-tmpl]) - - AC_ARG_ENABLE([cast-checks], -- [AS_HELP_STRING([--disable-cast-checks], [compile with GLib cast checks disabled])]) -+ [AS_HELP_STRING([--disable-cast-checks], [compile with GLib cast checks disabled])], -+ [], [enable_cast_checks=yes]) - AS_IF([test "x$enable_cast_checks" = "xno"], - [CFLAGS="$CFLAGS -DG_DISABLE_CAST_CHECKS"]) - - AC_ARG_ENABLE([asserts], -- [AS_HELP_STRING([--disable-asserts], [compile with GLib assertions disabled])]) -+ [AS_HELP_STRING([--disable-asserts], [compile with GLib assertions disabled])], -+ [], [enable_asserts=yes]) - AS_IF([test "x$enable_asserts" = "xno"], - [CFLAGS="$CFLAGS -DG_DISABLE_ASSERTS"]) - - AC_ARG_ENABLE([checks], -- [AS_HELP_STRING([--disable-checks], [compile with GLib checks disabled])]) -+ [AS_HELP_STRING([--disable-checks], [compile with GLib checks disabled])], -+ [], [enable_checks=yes]) - AS_IF([test "x$checks" = "xno"], - [CFLAGS="$CFLAGS -DG_DISABLE_CHECKS"]) - --- -libgit2 0.26.0 - diff --git a/net-libs/libsignon-glib/libsignon-glib-1.14.ebuild b/net-libs/libsignon-glib/libsignon-glib-1.14.ebuild deleted file mode 100644 index 7d1ab6d192ab..000000000000 --- a/net-libs/libsignon-glib/libsignon-glib-1.14.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python{2_7,3_5,3_6} ) -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 -} |