net-libs/libsignon-glib: 1.14 version bump

Package-Manager: Portage-2.3.13, Repoman-2.3.4
This commit is contained in:
Andreas Sturmlechner
2017-10-28 21:40:01 +02:00
parent 7882e73b16
commit 5b6e70ecc2
3 changed files with 135 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST libsignon-glib-1.13.tar.gz 51601 SHA256 8e0e450e719c16f79d3c3aadb98656ed5967a2f2cd24c1d9cd5747e670a087bc SHA512 aaae6a37a113685eb36ddccd497e387617cf0900506638cbafbac282c4d63ade41f4c915ad6f04214c58af580b70d9062ecf3e1618b6f5fe07dad50c5dc125a6 WHIRLPOOL 8f0d1d51588e42c9fac51883a9ecb08b6ad4949fc8f335c2259f967ea8f3555b04b3ca46f323b20591a2bc85dc1b5bba3968fec1be3e4dfd7a9464e2c5d6880e
DIST libsignon-glib-1.14.tar.gz 54019 SHA256 99db552f250d0853c468a3f03872123bb7102dbdc91e15a7a4855f7a47dd2fca SHA512 c2277933d6ec2c3288ce510c853da7719116dac15d60c7114fcdcb87d04e7f70390d066938dea6aa0f819fbd70158fb875c5be5684c47fd27c0b6c55e9467a1d WHIRLPOOL 17ba0ab1a2cb64d0021aadc1a516d3ac85b86439ffb4d11e6c0ee87c6b39df84b82a89c29ff66e7547ad63137861479b86c91ad960ee4ee40d3f494a56621c78

View File

@@ -0,0 +1,45 @@
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

View File

@@ -0,0 +1,89 @@
# 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_${PV} -> ${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.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() {
# 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
}