mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
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>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user