diff options
author | Michael Palimaka <kensington@gentoo.org> | 2019-08-04 22:14:11 +1000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2019-08-04 22:17:21 +1000 |
commit | 0a7191a9874b1a6e211ad4987e91412967c3f019 (patch) | |
tree | 5732ffc8160b13e4b6e7b5dd636bcb8df5bc9311 /net-libs/libaccounts-glib | |
parent | net-libs/libsignon-glib: remove stray comments (diff) | |
download | gentoo-0a7191a9874b1a6e211ad4987e91412967c3f019.tar.gz gentoo-0a7191a9874b1a6e211ad4987e91412967c3f019.tar.bz2 gentoo-0a7191a9874b1a6e211ad4987e91412967c3f019.zip |
net-libs/libaccounts-glib: version bump 1.24
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Michael Palimaka <kensington@gentoo.org>
Diffstat (limited to 'net-libs/libaccounts-glib')
-rw-r--r-- | net-libs/libaccounts-glib/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild | 57 |
2 files changed, 58 insertions, 0 deletions
diff --git a/net-libs/libaccounts-glib/Manifest b/net-libs/libaccounts-glib/Manifest index 0cb70aa41252..c046a4298b45 100644 --- a/net-libs/libaccounts-glib/Manifest +++ b/net-libs/libaccounts-glib/Manifest @@ -1 +1,2 @@ DIST libaccounts-glib-1.23.tar.gz 127931 BLAKE2B 2379786bb4a658eaba632a1788782a0b5620e69fa058e991a41feeedf5b8f4786592077f237513fde9ed4ea00db015a7dd0be6ad852c265a5b7f8b1180ac01e4 SHA512 88fec1fed7a135375516363e4b7f1330d45a6337bbfb45dd35dabce87097ee4e550e968870541e1b496c2ee3db1bd26e0665f4155f1e64d1cc7b6b74d5b71b5c +DIST libaccounts-glib-1.24.tar.gz 116578 BLAKE2B d3569ee9d4b92f285f20ab7bc285c62c9817a16f632ad9da83a86ab69e7e3ded74afbcb1307deee788a74796372c0011563ecd293cba4b0e81d15252eae4cf50 SHA512 d4e6906f642c7a196cb42172f31345f58037d528950bee3af2b8cb388aea386056cbaa22f0e7c604a4e00038b231e9ee455f6a1d48f82344cfc0037ad7251b7c diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild b/net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild new file mode 100644 index 000000000000..303f69ecb191 --- /dev/null +++ b/net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_6 ) +inherit meson python-r1 vala vcs-snapshot + +DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib applications" +HOMEPAGE="https://01.org/gsso/" +SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VERSION_${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="doc" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + ${PYTHON_DEPS} + dev-db/sqlite:3 + dev-libs/glib:2 + dev-libs/gobject-introspection:= + dev-libs/libxml2 + dev-python/pygobject:3[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/gdbus-codegen + dev-util/glib-utils + doc? ( dev-util/gtk-doc ) +" + +# fails +RESTRICT="test" + +src_prepare() { + default + + vala_src_prepare + + use doc || sed -e "/^subdir('docs')$/d" -i meson.build || die +} + +src_configure() { + python_foreach_impl run_in_build_dir meson_src_configure +} + +src_compile() { + python_foreach_impl run_in_build_dir meson_src_compile +} + +src_install() { + einstalldocs + python_foreach_impl run_in_build_dir meson_src_install +} |