[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/files/, net-libs/libaccounts-glib/

2024-05-15 Thread Andreas Sturmlechner
commit: a6611fc62ea8446f1055cc021e4684d3651fc8a4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed May 15 19:13:17 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed May 15 19:57:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6611fc6

net-libs/libaccounts-glib: drop 1.26-r1

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-libs/libaccounts-glib/Manifest |  1 -
 .../libaccounts-glib-1.25-assert-failure.patch | 26 -
 ...-incorrect-cleanup-in-ag_account_finalize.patch | 30 --
 .../libaccounts-glib-1.26-project-version.patch|  8 ---
 .../libaccounts-glib-1.26-r1.ebuild| 64 --
 5 files changed, 129 deletions(-)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
index 37eb55a5088b..7f0f2ca49a63 100644
--- a/net-libs/libaccounts-glib/Manifest
+++ b/net-libs/libaccounts-glib/Manifest
@@ -1,2 +1 @@
-DIST libaccounts-glib-1.26.tar.gz 117365 BLAKE2B 
a3c7bf4058372001079c9c153b30f947882521f1f9680a63db2883307e998335a1e646112dc8a51640824f238d871d96da2c18b4ef175c837cebfe056ded2cbb
 SHA512 
c08a11087745ba771e539b61de57693390960ad6b4e8217c159be49d31bd7f8856fffa835e7a230f352049bbf7cec9184ff225e74bbc195964221d3d9d49743b
 DIST libaccounts-glib-1.27.tar.bz2 88050 BLAKE2B 
12d4ded072584150d9011e7c684301cf407d822e42ef131cf5b2d1c370cb5f59f00991a52c27d444dfe654f743984a9b5e9983f204a1a4172e8730f8020a7662
 SHA512 
3a4ccc9193e69dcab1b6618da0dc628f5a2a7c57174f99adf690bef71bbcec0bde3957077411d0528e85447e9f0d037e3ee93c2a3d3b2e6404b257de34a6493c

diff --git 
a/net-libs/libaccounts-glib/files/libaccounts-glib-1.25-assert-failure.patch 
b/net-libs/libaccounts-glib/files/libaccounts-glib-1.25-assert-failure.patch
deleted file mode 100644
index f35aee5c6a84..
--- a/net-libs/libaccounts-glib/files/libaccounts-glib-1.25-assert-failure.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 29bdc47abe11d3bfcec7a35ed83475eba04bfdaa Mon Sep 17 00:00:00 2001
-From: Pekka Vuorela 
-Date: Tue, 7 Jul 2020 12:51:50 +0300
-Subject: [PATCH] Avoid assert failure on ag_provider_get_tags
-

- libaccounts-glib/ag-provider.c | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/libaccounts-glib/ag-provider.c b/libaccounts-glib/ag-provider.c
-index 93d1541..8a79616 100644
 a/libaccounts-glib/ag-provider.c
-+++ b/libaccounts-glib/ag-provider.c
-@@ -464,6 +464,9 @@ GList *ag_provider_get_tags (AgProvider *provider)
- {
- g_return_val_if_fail (provider != NULL, NULL);
- 
-+if (G_UNLIKELY (provider->tags == NULL))
-+return NULL;
-+
- return g_hash_table_get_keys (provider->tags);
- }
- 
--- 
-GitLab
-

diff --git 
a/net-libs/libaccounts-glib/files/libaccounts-glib-1.26-fix-incorrect-cleanup-in-ag_account_finalize.patch
 
b/net-libs/libaccounts-glib/files/libaccounts-glib-1.26-fix-incorrect-cleanup-in-ag_account_finalize.patch
deleted file mode 100644
index 0a6f1120882a..
--- 
a/net-libs/libaccounts-glib/files/libaccounts-glib-1.26-fix-incorrect-cleanup-in-ag_account_finalize.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 270a66d5efe1453a2be4bad10894b947fdd2923e Mon Sep 17 00:00:00 2001
-From: Alberto Mardegan 
-Date: Tue, 4 Oct 2022 20:58:27 +0300
-Subject: [PATCH] ag-account: fix incorrect cleanup in ag_account_finalize
-
-The wrong variable was passed to _ag_account_changes_free(); as a matter
-of facts, this code was always a NOP, since prig->services had already
-been nullified before, but it was a memory leak.
-
-Fixes: https://gitlab.com/accounts-sso/libaccounts-glib/-/issues/13

- libaccounts-glib/ag-account.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/libaccounts-glib/ag-account.c b/libaccounts-glib/ag-account.c
-index 8d6995b..7e67ba7 100644
 a/libaccounts-glib/ag-account.c
-+++ b/libaccounts-glib/ag-account.c
-@@ -994,7 +994,7 @@ ag_account_finalize (GObject *object)
- if (priv->changes)
- {
- DEBUG_INFO ("Finalizing account with uncommitted changes!");
--g_clear_pointer (>services, _ag_account_changes_free);
-+g_clear_pointer (>changes, _ag_account_changes_free);
- }
- 
- G_OBJECT_CLASS (ag_account_parent_class)->finalize (object);
--- 
-GitLab
-

diff --git 
a/net-libs/libaccounts-glib/files/libaccounts-glib-1.26-project-version.patch 
b/net-libs/libaccounts-glib/files/libaccounts-glib-1.26-project-version.patch
deleted file mode 100644
index 82e8c6bbcbd4..
--- 
a/net-libs/libaccounts-glib/files/libaccounts-glib-1.26-project-version.patch
+++ /dev/null
@@ -1,8 +0,0 @@
 a/meson.build
-+++ b/meson.build
-@@ -1,4 +1,4 @@
--project('libaccounts-glib', 'c', version: '1.25', license: 'LGPL2.1', 
meson_version: '>=0.48.0')
-+project('libaccounts-glib', 'c', version: '1.26', license: 'LGPL2.1', 
meson_version: '>=0.48.0')
- 
- version_parts = meson.project_version().split('.')
- api_version = '@0@.0'.format(version_parts[0])

diff --git 

[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2024-05-15 Thread Sam James
commit: 8c4387070be34ebb5d760b031ba7e04771c0f814
Author: Sam James  gentoo  org>
AuthorDate: Wed May 15 12:05:34 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 15 12:05:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c438707

net-libs/libaccounts-glib: Stabilize 1.27 x86, #931911

Signed-off-by: Sam James  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild
index 3897dd07c90c..284bf8de6f86 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-VERSION_${PV}"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
 IUSE="doc test"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2024-05-15 Thread Sam James
commit: f05b3407b4ab287fc02a63b7eec66a7c7d9a565c
Author: Sam James  gentoo  org>
AuthorDate: Wed May 15 10:30:28 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 15 10:30:28 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f05b3407

net-libs/libaccounts-glib: Stabilize 1.27 amd64, #931911

Signed-off-by: Sam James  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild
index 101585097f9d..3897dd07c90c 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-VERSION_${PV}"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
 IUSE="doc test"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2024-05-15 Thread Sam James
commit: bd1fcdb133e68b71d4016a66bf879a7db0a8047c
Author: Sam James  gentoo  org>
AuthorDate: Wed May 15 09:27:59 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 15 09:27:59 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd1fcdb1

net-libs/libaccounts-glib: Stabilize 1.27 arm64, #931911

Signed-off-by: Sam James  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild
index 64657ad3f041..101585097f9d 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-VERSION_${PV}"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
 IUSE="doc test"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2024-04-06 Thread Andreas Sturmlechner
commit: 317f23d47eb23cd5ef8276cade3a9a8e119e5707
Author: Alfred Wingate  protonmail  com>
AuthorDate: Sat Mar 30 17:42:31 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Apr  6 18:25:17 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=317f23d4

net-libs/libaccounts-glib: add gitlab upstream metadata

Signed-off-by: Alfred Wingate  protonmail.com>
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-libs/libaccounts-glib/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/net-libs/libaccounts-glib/metadata.xml 
b/net-libs/libaccounts-glib/metadata.xml
index 8641e5bdd399..19b6674bc803 100644
--- a/net-libs/libaccounts-glib/metadata.xml
+++ b/net-libs/libaccounts-glib/metadata.xml
@@ -5,4 +5,7 @@
k...@gentoo.org
Gentoo KDE Project

+   
+   accounts-sso/libaccounts-glib
+   
 



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2024-04-06 Thread Andreas Sturmlechner
commit: 200628a102423dde245c298c81dd51129152a727
Author: Alfred Wingate  protonmail  com>
AuthorDate: Sat Mar 30 17:41:55 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Apr  6 18:25:17 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=200628a1

net-libs/libaccounts-glib: add 1.27

* Enable python3.12
* Enable tests and put test dependencies behind a use flag.
* Still install python unconditionally, could be made optional at
  a later point.

Signed-off-by: Alfred Wingate  protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/36000
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-libs/libaccounts-glib/Manifest |  1 +
 .../libaccounts-glib/libaccounts-glib-1.27.ebuild  | 77 ++
 2 files changed, 78 insertions(+)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
index 104dcd65bedf..37eb55a5088b 100644
--- a/net-libs/libaccounts-glib/Manifest
+++ b/net-libs/libaccounts-glib/Manifest
@@ -1 +1,2 @@
 DIST libaccounts-glib-1.26.tar.gz 117365 BLAKE2B 
a3c7bf4058372001079c9c153b30f947882521f1f9680a63db2883307e998335a1e646112dc8a51640824f238d871d96da2c18b4ef175c837cebfe056ded2cbb
 SHA512 
c08a11087745ba771e539b61de57693390960ad6b4e8217c159be49d31bd7f8856fffa835e7a230f352049bbf7cec9184ff225e74bbc195964221d3d9d49743b
+DIST libaccounts-glib-1.27.tar.bz2 88050 BLAKE2B 
12d4ded072584150d9011e7c684301cf407d822e42ef131cf5b2d1c370cb5f59f00991a52c27d444dfe654f743984a9b5e9983f204a1a4172e8730f8020a7662
 SHA512 
3a4ccc9193e69dcab1b6618da0dc628f5a2a7c57174f99adf690bef71bbcec0bde3957077411d0528e85447e9f0d037e3ee93c2a3d3b2e6404b257de34a6493c

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild
new file mode 100644
index ..64657ad3f041
--- /dev/null
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.27.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+inherit meson python-r1 vala
+
+DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
+HOMEPAGE="https://gitlab.com/accounts-sso/libaccounts-glib;
+SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VERSION_${PV}.tar.bz2
 -> ${P}.tar.bz2"
+S="${WORKDIR}/${PN}-VERSION_${PV}"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE="doc test"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RESTRICT="!test? ( test )"
+
+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="
+   $(vala_depend)
+   dev-util/gdbus-codegen
+   dev-util/glib-utils
+   virtual/pkgconfig
+   doc? ( dev-util/gtk-doc )
+   test? (
+   dev-libs/check
+   dev-util/dbus-test-runner
+   )
+"
+
+src_prepare() {
+   default
+   vala_setup --ignore-use
+
+   use doc || sed -e "/^subdir('docs')$/d" -i meson.build || die
+   use test || sed -e "/^subdir('tests')$/d" -i meson.build || die
+
+   # /tmp isn't accessible from sandbox
+   sed -i -e "s|/tmp/\(.*\)|${T}/\1|" tests/check_ag.c || die
+   sed -i -e "s|/tmp|${T}|" tests/meson.build || die
+}
+
+src_configure() {
+   my_configure() {
+   local emesonargs=(
+   -Dinstall-py-overrides=true
+   )
+   meson_src_configure
+   }
+   python_foreach_impl run_in_build_dir my_configure
+}
+
+src_compile() {
+   python_foreach_impl run_in_build_dir meson_src_compile
+}
+
+src_test() {
+   python_foreach_impl run_in_build_dir meson_src_test
+}
+
+src_install() {
+   einstalldocs
+   python_foreach_impl run_in_build_dir meson_src_install
+   python_foreach_impl python_optimize
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2022-10-28 Thread Andreas Sturmlechner
commit: 8d760b9ed13b320fe43e37ca6de3b3dd47902069
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Oct 28 15:04:46 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Oct 28 15:04:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d760b9e

net-libs/libaccounts-glib: drop 1.26

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../libaccounts-glib/libaccounts-glib-1.26.ebuild  | 63 --
 1 file changed, 63 deletions(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild
deleted file mode 100644
index 04e4aa4fa062..
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-inherit meson python-r1 vala
-
-DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
-HOMEPAGE="https://gitlab.com/accounts-sso/libaccounts-glib;
-SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VERSION_${PV}.tar.gz
 -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-VERSION_${PV}"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv x86"
-IUSE="doc"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-# fails
-RESTRICT="test"
-
-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="
-   $(vala_depend)
-   dev-libs/check
-   dev-util/gdbus-codegen
-   dev-util/glib-utils
-   doc? ( dev-util/gtk-doc )
-"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.25-assert-failure.patch"
-   "${FILESDIR}/${P}-project-version.patch"
-)
-
-src_prepare() {
-   default
-   vala_setup --ignore-use
-
-   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
-   python_foreach_impl python_optimize
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2022-10-27 Thread Jakov Smolić
commit: d10bfea38d8d980992660f4735f4069263a82e68
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Oct 28 03:36:41 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Fri Oct 28 03:36:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d10bfea3

net-libs/libaccounts-glib: Stabilize 1.26-r1 x86, #873448

Signed-off-by: Jakov Smolić  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild
index 65c94ef3a6d5..4302ddd9f388 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-VERSION_${PV}"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2022-10-27 Thread Jakov Smolić
commit: b9f162067071d32af9d686685e0f57773e189635
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Oct 28 03:36:00 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Fri Oct 28 03:36:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9f16206

net-libs/libaccounts-glib: Stabilize 1.26-r1 amd64, #873448

Signed-off-by: Jakov Smolić  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild
index 8ba1dce7b289..65c94ef3a6d5 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-VERSION_${PV}"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2022-10-25 Thread Andreas Sturmlechner
commit: 62147a44aa74e0daae6bbaf3ed017679ee26146c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Oct 25 18:41:32 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Oct 25 18:41:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62147a44

net-libs/libaccounts-glib: drop 1.25-r2

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-libs/libaccounts-glib/Manifest |  1 -
 .../libaccounts-glib-1.25-r2.ebuild| 60 --
 2 files changed, 61 deletions(-)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
index 69deda66f437..104dcd65bedf 100644
--- a/net-libs/libaccounts-glib/Manifest
+++ b/net-libs/libaccounts-glib/Manifest
@@ -1,2 +1 @@
-DIST libaccounts-glib-1.25.tar.gz 117337 BLAKE2B 
72e6e15b63eea4d5b2a3e994779a4636bee859c6d395c8c9f65120cfee1c25a5708971b438010f668eefee20735b01e9f9f4e1ac4cb55495a06143d20198e422
 SHA512 
cc8b493d246f99300ee614fed93258378ecdbe9c518a958a59827ee8f74559b1ee3683acfb85f59aa91390275497fb35041da2be47f27f24f96e1efd5d6d2e20
 DIST libaccounts-glib-1.26.tar.gz 117365 BLAKE2B 
a3c7bf4058372001079c9c153b30f947882521f1f9680a63db2883307e998335a1e646112dc8a51640824f238d871d96da2c18b4ef175c837cebfe056ded2cbb
 SHA512 
c08a11087745ba771e539b61de57693390960ad6b4e8217c159be49d31bd7f8856fffa835e7a230f352049bbf7cec9184ff225e74bbc195964221d3d9d49743b

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
deleted file mode 100644
index 5d6c6cb80b40..
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9,10} )
-inherit meson python-r1 vala
-
-DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
-HOMEPAGE="https://gitlab.com/accounts-sso/libaccounts-glib;
-SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VERSION_${PV}.tar.gz
 -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-VERSION_${PV}"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
-IUSE="doc"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-# fails
-RESTRICT="test"
-
-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="
-   $(vala_depend)
-   dev-util/gdbus-codegen
-   dev-util/glib-utils
-   dev-libs/check
-   doc? ( dev-util/gtk-doc )
-"
-
-PATCHES=( "${FILESDIR}/${P}-assert-failure.patch" )
-
-src_prepare() {
-   default
-   vala_src_prepare --ignore-use
-
-   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
-   python_foreach_impl python_optimize
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2022-10-25 Thread Arthur Zamarin
commit: 4767006df64cc55957f51f83315a844e8de8bb1e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Oct 25 18:37:21 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Oct 25 18:37:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4767006d

net-libs/libaccounts-glib: Stabilize 1.26-r1 arm64, #873448

Signed-off-by: Arthur Zamarin  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild
index f1bd12d56b46..8ba1dce7b289 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-VERSION_${PV}"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/, net-libs/libaccounts-glib/files/

2022-10-25 Thread Andreas Sturmlechner
commit: 25ad4b051f2f4292e8362daea8f8b401be9b5795
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Oct 25 15:08:39 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Oct 25 15:14:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25ad4b05

net-libs/libaccounts-glib: Fix memleak

See also:
https://gitlab.com/accounts-sso/libaccounts-glib/-/issues/13

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 ...-incorrect-cleanup-in-ag_account_finalize.patch | 30 ++
 .../libaccounts-glib-1.26-r1.ebuild| 64 ++
 2 files changed, 94 insertions(+)

diff --git 
a/net-libs/libaccounts-glib/files/libaccounts-glib-1.26-fix-incorrect-cleanup-in-ag_account_finalize.patch
 
b/net-libs/libaccounts-glib/files/libaccounts-glib-1.26-fix-incorrect-cleanup-in-ag_account_finalize.patch
new file mode 100644
index ..0a6f1120882a
--- /dev/null
+++ 
b/net-libs/libaccounts-glib/files/libaccounts-glib-1.26-fix-incorrect-cleanup-in-ag_account_finalize.patch
@@ -0,0 +1,30 @@
+From 270a66d5efe1453a2be4bad10894b947fdd2923e Mon Sep 17 00:00:00 2001
+From: Alberto Mardegan 
+Date: Tue, 4 Oct 2022 20:58:27 +0300
+Subject: [PATCH] ag-account: fix incorrect cleanup in ag_account_finalize
+
+The wrong variable was passed to _ag_account_changes_free(); as a matter
+of facts, this code was always a NOP, since prig->services had already
+been nullified before, but it was a memory leak.
+
+Fixes: https://gitlab.com/accounts-sso/libaccounts-glib/-/issues/13
+---
+ libaccounts-glib/ag-account.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libaccounts-glib/ag-account.c b/libaccounts-glib/ag-account.c
+index 8d6995b..7e67ba7 100644
+--- a/libaccounts-glib/ag-account.c
 b/libaccounts-glib/ag-account.c
+@@ -994,7 +994,7 @@ ag_account_finalize (GObject *object)
+ if (priv->changes)
+ {
+ DEBUG_INFO ("Finalizing account with uncommitted changes!");
+-g_clear_pointer (>services, _ag_account_changes_free);
++g_clear_pointer (>changes, _ag_account_changes_free);
+ }
+ 
+ G_OBJECT_CLASS (ag_account_parent_class)->finalize (object);
+-- 
+GitLab
+

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild
new file mode 100644
index ..f1bd12d56b46
--- /dev/null
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.26-r1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+inherit meson python-r1 vala
+
+DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
+HOMEPAGE="https://gitlab.com/accounts-sso/libaccounts-glib;
+SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VERSION_${PV}.tar.gz
 -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-VERSION_${PV}"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE="doc"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+# fails
+RESTRICT="test"
+
+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="
+   $(vala_depend)
+   dev-libs/check
+   dev-util/gdbus-codegen
+   dev-util/glib-utils
+   doc? ( dev-util/gtk-doc )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.25-assert-failure.patch"
+   "${FILESDIR}/${P}-project-version.patch"
+   "${FILESDIR}/${P}-fix-incorrect-cleanup-in-ag_account_finalize.patch"
+)
+
+src_prepare() {
+   default
+   vala_setup --ignore-use
+
+   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
+   python_foreach_impl python_optimize
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2022-10-04 Thread Agostino Sarubbo
commit: c1b4d5f3e7a7a14af4f211437ef650579c5f3fd5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Oct  4 07:30:50 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Oct  4 07:30:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1b4d5f3

net-libs/libaccounts-glib: Stabilize 1.26 x86, #873448

Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild
index c3405b08085b..04e4aa4fa062 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-VERSION_${PV}"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2022-09-30 Thread Sam James
commit: c397b038c9b59b47ad6a93c7cebae0697780fb29
Author: Sam James  gentoo  org>
AuthorDate: Fri Sep 30 20:38:45 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Sep 30 20:39:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c397b038

net-libs/libaccounts-glib: Stabilize 1.26 amd64, #873448

Signed-off-by: Sam James  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild
index 66a87f221321..c3405b08085b 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-VERSION_${PV}"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/files/, net-libs/libaccounts-glib/

2022-09-14 Thread Andreas Sturmlechner
commit: 2b9e39183630c588f793d3f3fe3a956cea695181
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Sep 14 06:46:57 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Sep 14 07:00:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b9e3918

net-libs/libaccounts-glib: add 1.26, EAPI-8, python3_11

Fix project version manually.

QA notice filed upstream:
https://gitlab.com/accounts-sso/libaccounts-glib/-/issues/13

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-libs/libaccounts-glib/Manifest |  1 +
 .../libaccounts-glib-1.26-project-version.patch|  8 +++
 .../libaccounts-glib/libaccounts-glib-1.26.ebuild  | 63 ++
 3 files changed, 72 insertions(+)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
index 78431778763f..69deda66f437 100644
--- a/net-libs/libaccounts-glib/Manifest
+++ b/net-libs/libaccounts-glib/Manifest
@@ -1 +1,2 @@
 DIST libaccounts-glib-1.25.tar.gz 117337 BLAKE2B 
72e6e15b63eea4d5b2a3e994779a4636bee859c6d395c8c9f65120cfee1c25a5708971b438010f668eefee20735b01e9f9f4e1ac4cb55495a06143d20198e422
 SHA512 
cc8b493d246f99300ee614fed93258378ecdbe9c518a958a59827ee8f74559b1ee3683acfb85f59aa91390275497fb35041da2be47f27f24f96e1efd5d6d2e20
+DIST libaccounts-glib-1.26.tar.gz 117365 BLAKE2B 
a3c7bf4058372001079c9c153b30f947882521f1f9680a63db2883307e998335a1e646112dc8a51640824f238d871d96da2c18b4ef175c837cebfe056ded2cbb
 SHA512 
c08a11087745ba771e539b61de57693390960ad6b4e8217c159be49d31bd7f8856fffa835e7a230f352049bbf7cec9184ff225e74bbc195964221d3d9d49743b

diff --git 
a/net-libs/libaccounts-glib/files/libaccounts-glib-1.26-project-version.patch 
b/net-libs/libaccounts-glib/files/libaccounts-glib-1.26-project-version.patch
new file mode 100644
index ..82e8c6bbcbd4
--- /dev/null
+++ 
b/net-libs/libaccounts-glib/files/libaccounts-glib-1.26-project-version.patch
@@ -0,0 +1,8 @@
+--- a/meson.build
 b/meson.build
+@@ -1,4 +1,4 @@
+-project('libaccounts-glib', 'c', version: '1.25', license: 'LGPL2.1', 
meson_version: '>=0.48.0')
++project('libaccounts-glib', 'c', version: '1.26', license: 'LGPL2.1', 
meson_version: '>=0.48.0')
+ 
+ version_parts = meson.project_version().split('.')
+ api_version = '@0@.0'.format(version_parts[0])

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild
new file mode 100644
index ..66a87f221321
--- /dev/null
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+inherit meson python-r1 vala
+
+DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
+HOMEPAGE="https://gitlab.com/accounts-sso/libaccounts-glib;
+SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VERSION_${PV}.tar.gz
 -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-VERSION_${PV}"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE="doc"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+# fails
+RESTRICT="test"
+
+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="
+   $(vala_depend)
+   dev-libs/check
+   dev-util/gdbus-codegen
+   dev-util/glib-utils
+   doc? ( dev-util/gtk-doc )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.25-assert-failure.patch"
+   "${FILESDIR}/${P}-project-version.patch"
+)
+
+src_prepare() {
+   default
+   vala_setup --ignore-use
+
+   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
+   python_foreach_impl python_optimize
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2021-10-02 Thread Andreas Sturmlechner
commit: b26b55c3185c6402d80fe11c201ebdc5af0f9bb7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Oct  2 09:47:33 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Oct  2 09:52:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b26b55c3

net-libs/libaccounts-glib: python3_10

Fedora does it, so we can too.

Package-Manager: Portage-3.0.26, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
index 914b8766795..4f6b141b250 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
@@ -3,12 +3,13 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{7,8,9,10} )
 inherit meson python-r1 vala
 
 DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
 HOMEPAGE="https://gitlab.com/accounts-sso/libaccounts-glib;
 
SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VERSION_${PV}.tar.gz
 -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-VERSION_${PV}"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
@@ -16,6 +17,8 @@ KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+# fails
+RESTRICT="test"
 
 RDEPEND="${PYTHON_DEPS}
dev-db/sqlite:3
@@ -33,11 +36,6 @@ BDEPEND="
doc? ( dev-util/gtk-doc )
 "
 
-# fails
-RESTRICT="test"
-
-S="${WORKDIR}/${PN}-VERSION_${PV}"
-
 PATCHES=( "${FILESDIR}/${P}-assert-failure.patch" )
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2021-01-31 Thread Andreas Sturmlechner
commit: 058bac42e8df9b18b19a24a5ace605297103dffd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan 31 18:58:56 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 31 19:06:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=058bac42

net-libs/libaccounts-glib: Drop 1.25-r1

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../libaccounts-glib-1.25-r1.ebuild| 61 --
 1 file changed, 61 deletions(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild
deleted file mode 100644
index 87b2fff3828..000
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-inherit meson python-r1 vala
-
-DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
-HOMEPAGE="https://gitlab.com/accounts-sso/libaccounts-glib;
-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 ~ppc64 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="
-   $(vala_depend)
-   dev-util/gdbus-codegen
-   dev-util/glib-utils
-   dev-libs/check
-   doc? ( dev-util/gtk-doc )
-"
-
-# fails
-RESTRICT="test"
-
-S="${WORKDIR}/${PN}-VERSION_${PV}"
-
-src_prepare() {
-   default
-
-   vala_src_prepare --ignore-use
-
-   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
-   python_foreach_impl python_optimize
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2021-01-31 Thread Sam James
commit: 907907ba4c5bee41c21b628d1a730313c8e3a3c1
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 31 18:48:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 31 18:48:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=907907ba

net-libs/libaccounts-glib: Stabilize 1.25-r2 x86, #766875

Signed-off-by: Sam James  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
index b20c214e41d..abbcb6aa0cb 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VER
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2021-01-24 Thread Sam James
commit: 21e0bd3c7199b4fb63efcda93302550ae61cde80
Author: Sam James  gentoo  org>
AuthorDate: Mon Jan 25 00:42:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jan 25 00:42:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21e0bd3c

net-libs/libaccounts-glib: Stabilize 1.25-r2 amd64, #766875

Signed-off-by: Sam James  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
index 329d6f14b42..b20c214e41d 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VER
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2021-01-24 Thread Sam James
commit: 7aee578ed48fd432487cb1e6249e7f2aff8da677
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 24 15:41:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 24 15:41:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aee578e

net-libs/libaccounts-glib: Stabilize 1.25-r2 arm64, #766875

Signed-off-by: Sam James  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
index 7b08a98a220..329d6f14b42 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ 
SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VER
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ppc64 ~x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/, net-libs/libaccounts-glib/files/

2020-10-24 Thread Andreas Sturmlechner
commit: 449ff656f92846237d68ae3f27b3ab2aedd62da8
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Oct 24 15:42:07 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct 25 00:27:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=449ff656

net-libs/libaccounts-glib: python3_9, fix assert failure

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../libaccounts-glib-1.25-assert-failure.patch | 26 +
 .../libaccounts-glib-1.25-r2.ebuild| 62 ++
 2 files changed, 88 insertions(+)

diff --git 
a/net-libs/libaccounts-glib/files/libaccounts-glib-1.25-assert-failure.patch 
b/net-libs/libaccounts-glib/files/libaccounts-glib-1.25-assert-failure.patch
new file mode 100644
index 000..f35aee5c6a8
--- /dev/null
+++ b/net-libs/libaccounts-glib/files/libaccounts-glib-1.25-assert-failure.patch
@@ -0,0 +1,26 @@
+From 29bdc47abe11d3bfcec7a35ed83475eba04bfdaa Mon Sep 17 00:00:00 2001
+From: Pekka Vuorela 
+Date: Tue, 7 Jul 2020 12:51:50 +0300
+Subject: [PATCH] Avoid assert failure on ag_provider_get_tags
+
+---
+ libaccounts-glib/ag-provider.c | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/libaccounts-glib/ag-provider.c b/libaccounts-glib/ag-provider.c
+index 93d1541..8a79616 100644
+--- a/libaccounts-glib/ag-provider.c
 b/libaccounts-glib/ag-provider.c
+@@ -464,6 +464,9 @@ GList *ag_provider_get_tags (AgProvider *provider)
+ {
+ g_return_val_if_fail (provider != NULL, NULL);
+ 
++if (G_UNLIKELY (provider->tags == NULL))
++return NULL;
++
+ return g_hash_table_get_keys (provider->tags);
+ }
+ 
+-- 
+GitLab
+

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
new file mode 100644
index 000..7b08a98a220
--- /dev/null
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r2.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+inherit meson python-r1 vala
+
+DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
+HOMEPAGE="https://gitlab.com/accounts-sso/libaccounts-glib;
+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 ~ppc64 ~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="
+   $(vala_depend)
+   dev-util/gdbus-codegen
+   dev-util/glib-utils
+   dev-libs/check
+   doc? ( dev-util/gtk-doc )
+"
+
+# fails
+RESTRICT="test"
+
+S="${WORKDIR}/${PN}-VERSION_${PV}"
+
+PATCHES=( "${FILESDIR}/${P}-assert-failure.patch" )
+
+src_prepare() {
+   default
+   vala_src_prepare --ignore-use
+
+   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
+   python_foreach_impl python_optimize
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2020-05-16 Thread Andreas Sturmlechner
commit: a16be9c3851907a61f14274aac24d03c093d9db7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri May 15 22:45:12 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat May 16 09:08:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a16be9c3

net-libs/libaccounts-glib: Drop 1.24-r1

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-libs/libaccounts-glib/Manifest |  1 -
 .../libaccounts-glib-1.24-r1.ebuild| 59 --
 2 files changed, 60 deletions(-)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
index 06bac4c4694..78431778763 100644
--- a/net-libs/libaccounts-glib/Manifest
+++ b/net-libs/libaccounts-glib/Manifest
@@ -1,2 +1 @@
-DIST libaccounts-glib-1.24.tar.gz 116578 BLAKE2B 
d3569ee9d4b92f285f20ab7bc285c62c9817a16f632ad9da83a86ab69e7e3ded74afbcb1307deee788a74796372c0011563ecd293cba4b0e81d15252eae4cf50
 SHA512 
d4e6906f642c7a196cb42172f31345f58037d528950bee3af2b8cb388aea386056cbaa22f0e7c604a4e00038b231e9ee455f6a1d48f82344cfc0037ad7251b7c
 DIST libaccounts-glib-1.25.tar.gz 117337 BLAKE2B 
72e6e15b63eea4d5b2a3e994779a4636bee859c6d395c8c9f65120cfee1c25a5708971b438010f668eefee20735b01e9f9f4e1ac4cb55495a06143d20198e422
 SHA512 
cc8b493d246f99300ee614fed93258378ecdbe9c518a958a59827ee8f74559b1ee3683acfb85f59aa91390275497fb35041da2be47f27f24f96e1efd5d6d2e20

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
deleted file mode 100644
index 04a8a740b14..000
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7} )
-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/1"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 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="
-   $(vala_depend)
-   dev-util/gdbus-codegen
-   dev-util/glib-utils
-   dev-libs/check
-   doc? ( dev-util/gtk-doc )
-"
-
-# fails
-RESTRICT="test"
-
-src_prepare() {
-   default
-
-   vala_src_prepare --ignore-use
-
-   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
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2020-05-10 Thread Mart Raudsepp
commit: 9d0ece32fc09df5af6eea8277005738c8fd2346b
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Sat May  9 22:17:58 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May 10 17:39:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d0ece32

net-libs/libaccounts-glib: arm64 stable (bug #720178)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild
index 7e376271ad5..43a4e9dfc57 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VER
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2020-05-10 Thread Mikle Kolyada
commit: a12058e9f859f3ba59e8d591813816348ca3e4ea
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May 10 09:19:26 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May 10 09:19:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a12058e9

net-libs/libaccounts-glib: x86 stable wrt bug #720178

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Mikle Kolyada  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild
index 8e40fa62eb5..7e376271ad5 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VER
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2020-05-10 Thread Mikle Kolyada
commit: c1a77d64b934ded901581cdbf51c8a3e81663edc
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May 10 09:15:08 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May 10 09:15:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1a77d64

net-libs/libaccounts-glib: amd64 stable wrt bug #720178

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Mikle Kolyada  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild
index 4e191106010..8e40fa62eb5 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VER
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2020-04-17 Thread Andreas Sturmlechner
commit: c29f3ae21d53f849b73cef2b2ff6fb6464f8dc6e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Apr 17 11:20:54 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Apr 17 11:36:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c29f3ae2

net-libs/libaccounts-glib: Switch back to SLOT=0

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../{libaccounts-glib-1.25.ebuild => libaccounts-glib-1.25-r1.ebuild}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.25.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild
similarity index 99%
rename from net-libs/libaccounts-glib/libaccounts-glib-1.25.ebuild
rename to net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild
index 95098596ca1..4e191106010 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.25.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.25-r1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://gitlab.com/accounts-sso/libaccounts-glib;
 
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/1"
+SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
 IUSE="doc"
 



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2020-04-16 Thread Andreas Sturmlechner
commit: f34eb93c0c51a77db376721915dd2872c0aa7b0f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Apr 16 18:35:49 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Apr 16 18:36:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f34eb93c

net-libs/libaccounts-glib: 1.25 version bump, python3_8

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-libs/libaccounts-glib/Manifest |  1 +
 .../libaccounts-glib/libaccounts-glib-1.25.ebuild  | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
index be260dd06ff..06bac4c4694 100644
--- a/net-libs/libaccounts-glib/Manifest
+++ b/net-libs/libaccounts-glib/Manifest
@@ -1 +1,2 @@
 DIST libaccounts-glib-1.24.tar.gz 116578 BLAKE2B 
d3569ee9d4b92f285f20ab7bc285c62c9817a16f632ad9da83a86ab69e7e3ded74afbcb1307deee788a74796372c0011563ecd293cba4b0e81d15252eae4cf50
 SHA512 
d4e6906f642c7a196cb42172f31345f58037d528950bee3af2b8cb388aea386056cbaa22f0e7c604a4e00038b231e9ee455f6a1d48f82344cfc0037ad7251b7c
+DIST libaccounts-glib-1.25.tar.gz 117337 BLAKE2B 
72e6e15b63eea4d5b2a3e994779a4636bee859c6d395c8c9f65120cfee1c25a5708971b438010f668eefee20735b01e9f9f4e1ac4cb55495a06143d20198e422
 SHA512 
cc8b493d246f99300ee614fed93258378ecdbe9c518a958a59827ee8f74559b1ee3683acfb85f59aa91390275497fb35041da2be47f27f24f96e1efd5d6d2e20

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.25.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.25.ebuild
new file mode 100644
index 000..95098596ca1
--- /dev/null
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.25.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+inherit meson python-r1 vala
+
+DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
+HOMEPAGE="https://gitlab.com/accounts-sso/libaccounts-glib;
+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/1"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~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="
+   $(vala_depend)
+   dev-util/gdbus-codegen
+   dev-util/glib-utils
+   dev-libs/check
+   doc? ( dev-util/gtk-doc )
+"
+
+# fails
+RESTRICT="test"
+
+S="${WORKDIR}/${PN}-VERSION_${PV}"
+
+src_prepare() {
+   default
+
+   vala_src_prepare --ignore-use
+
+   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
+   python_foreach_impl python_optimize
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2019-09-07 Thread Andreas Sturmlechner
commit: d2c8e943f5a47809eb62316518838f1c8866d1ee
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Sep  7 11:52:00 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Sep  7 11:57:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2c8e943

net-libs/libaccounts-glib: Drop 1.23

Package-Manager: Portage-2.3.75, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-libs/libaccounts-glib/Manifest |  1 -
 .../libaccounts-glib/libaccounts-glib-1.23.ebuild  | 48 --
 2 files changed, 49 deletions(-)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
index c046a4298b4..be260dd06ff 100644
--- a/net-libs/libaccounts-glib/Manifest
+++ b/net-libs/libaccounts-glib/Manifest
@@ -1,2 +1 @@
-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.23.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild
deleted file mode 100644
index f012c74eff9..000
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools vcs-snapshot xdg-utils
-
-DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
-HOMEPAGE="https://01.org/gsso/;
-SRC_URI="https://gitlab.com/accounts-sso/libaccounts-glib/repository/archive.tar.gz?ref=VERSION_${PV}
 -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 x86"
-IUSE="debug"
-
-RDEPEND="
-   dev-db/sqlite:3
-   dev-libs/glib:2
-   dev-libs/libxml2
-"
-DEPEND="${RDEPEND}
-   dev-util/glib-utils
-   dev-util/gtk-doc
-"
-
-DOCS=( AUTHORS NEWS )
-
-pkg_setup() {
-   xdg_environment_reset
-}
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   --disable-python \
-   --disable-tests \
-   $(use_enable debug)
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2019-09-02 Thread Maciej Mrozowski
commit: d4af4c45b4253f085e8c86d22429864a4962df48
Author: Maciej Mrozowski  gentoo  org>
AuthorDate: Mon Sep  2 22:16:18 2019 +
Commit: Maciej Mrozowski  gentoo  org>
CommitDate: Mon Sep  2 22:17:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4af4c45

net-libs/libaccounts-glib: add missing vala build dependency, bug 693372

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Maciej Mrozowski  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
index 9a1ba05c90f..c7d039a2bf1 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
@@ -27,6 +27,7 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 BDEPEND="
+   $(vala_depend)
dev-util/gdbus-codegen
dev-util/glib-utils
dev-libs/check
@@ -39,7 +40,7 @@ RESTRICT="test"
 src_prepare() {
default
 
-   vala_src_prepare
+   vala_src_prepare --ignore-use
 
use doc || sed -e "/^subdir('docs')$/d" -i meson.build || die
 }



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2019-09-02 Thread Agostino Sarubbo
commit: 6c8a33b33caba7095249238968419d695141988e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Sep  2 13:24:05 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Sep  2 13:24:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c8a33b3

net-libs/libaccounts-glib: amd64 stable wrt bug #693210

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
index 783abf9916d..9a1ba05c90f 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VER
 
 LICENSE="LGPL-2.1"
 SLOT="0/1"
-KEYWORDS="~amd64 ~arm arm64 x86"
+KEYWORDS="amd64 ~arm arm64 x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2019-09-02 Thread Agostino Sarubbo
commit: 298758759be3a02263f218373bdaf7f01eb04a12
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Sep  2 10:15:25 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Sep  2 10:15:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29875875

net-libs/libaccounts-glib: x86 stable wrt bug #693210

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
index 8f55f28c7f1..783abf9916d 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VER
 
 LICENSE="LGPL-2.1"
 SLOT="0/1"
-KEYWORDS="~amd64 ~arm arm64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2019-09-01 Thread Aaron Bauman
commit: 00b76c982ee1d3f7c85e8584597c2cb7eb3e5120
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Sep  1 22:14:44 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Sep  1 22:18:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00b76c98

net-libs/libaccounts-glib: arm64 stable (bug #693210)

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.74, Repoman-2.3.17
RepoMan-Options: --include-arches="arm64"

 net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
index b1f40ae0f6a..8f55f28c7f1 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VER
 
 LICENSE="LGPL-2.1"
 SLOT="0/1"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~x86"
 IUSE="doc"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2019-08-06 Thread Michael Palimaka
commit: 8f125edbfcc0b837ae24030d0c29c201167b2443
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Aug  6 12:59:33 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Aug  6 13:03:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f125edb

net-libs/libaccounts-glib: add subslot

Bug: https://bugs.gentoo.org/691542
Package-Manager: Portage-2.3.69, Repoman-2.3.17
Signed-off-by: Michael Palimaka  gentoo.org>

 .../{libaccounts-glib-1.24.ebuild => libaccounts-glib-1.24-r1.ebuild}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
similarity index 99%
rename from net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild
rename to net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
index 65cf22ba172..b1f40ae0f6a 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
@@ -11,7 +11,7 @@ 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"
+SLOT="0/1"
 KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 IUSE="doc"
 



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2019-08-05 Thread Alexey Shvetsov
commit: 79ef40b8f581b46134d26ee563d52afab560b3df
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Mon Aug  5 20:12:22 2019 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Mon Aug  5 20:12:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79ef40b8

net-libs/libaccounts-glib: Add missing bdep dev-libs/check

Closes: https://bugs.gentoo.org/691484
Package-Manager: Portage-2.3.70, Repoman-2.3.16
Signed-off-by: Alexey Shvetsov  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild
index 303f69ecb19..ebe37a242e5 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild
@@ -29,6 +29,7 @@ DEPEND="${RDEPEND}"
 BDEPEND="
dev-util/gdbus-codegen
dev-util/glib-utils
+   dev-libs/check
doc? ( dev-util/gtk-doc )
 "
 



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2019-08-05 Thread Alexey Shvetsov
commit: 034038bca58c367719c8c8f3004dcbb9c4be2a0e
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Mon Aug  5 20:13:00 2019 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Mon Aug  5 20:13:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=034038bc

net-libs/libaccounts-glib: add py3.7

Package-Manager: Portage-2.3.70, Repoman-2.3.16
Signed-off-by: Alexey Shvetsov  gentoo.org>

 net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild
index ebe37a242e5..65cf22ba172 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_6 )
+PYTHON_COMPAT=( python3_{6,7} )
 inherit meson python-r1 vala vcs-snapshot
 
 DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2019-08-04 Thread Michael Palimaka
commit: 0a7191a9874b1a6e211ad4987e91412967c3f019
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Aug  4 12:14:11 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Aug  4 12:17:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a7191a9

net-libs/libaccounts-glib: version bump 1.24

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Michael Palimaka  gentoo.org>

 net-libs/libaccounts-glib/Manifest |  1 +
 .../libaccounts-glib/libaccounts-glib-1.24.ebuild  | 57 ++
 2 files changed, 58 insertions(+)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
index 0cb70aa4125..c046a4298b4 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 000..303f69ecb19
--- /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
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2018-10-18 Thread Andreas Sturmlechner
commit: 34ac224917f8f899a13e81a6f43c27c3c9e101ed
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 18 20:58:21 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 18 21:39:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34ac2249

net-libs/libaccounts-glib: Drop eutils/prune_libtool_files

Signed-off-by: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild
index 9f087be1167..5752429d98e 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit autotools eutils vcs-snapshot xdg-utils
+inherit autotools vcs-snapshot xdg-utils
 
 DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
 HOMEPAGE="https://01.org/gsso/;
@@ -44,5 +44,5 @@ src_configure() {
 
 src_install() {
default
-   prune_libtool_files
+   find "${D}" -name '*.la' -delete || die
 }



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2018-10-18 Thread Andreas Sturmlechner
commit: 7e3f48e504d0118cbefddbb3057887184e539751
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 18 20:53:45 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 18 21:39:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e3f48e5

net-libs/libaccounts-glib: Add missing dev-util/glib-utils DEPEND

Closes: https://bugs.gentoo.org/668886
Signed-off-by: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild
index 94c1a275a83..9f087be1167 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -20,6 +20,7 @@ RDEPEND="
dev-libs/libxml2
 "
 DEPEND="${RDEPEND}
+   dev-util/glib-utils
dev-util/gtk-doc
 "
 



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2018-01-25 Thread Michael Palimaka
commit: 8679d2a265f50d8c963f002da258dc4434d36ed9
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Jan 25 14:23:08 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Jan 25 14:25:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8679d2a2

net-libs/libaccounts-glib: stabilise 1.23 for amd64/x86

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild
index 928af3370a3..94c1a275a83 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ 
SRC_URI="https://gitlab.com/accounts-sso/libaccounts-glib/repository/archive.tar
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="debug"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2018-01-25 Thread Michael Palimaka
commit: b85b517be7b6632a4b04bda5f2fbc04f3168124d
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Jan 25 14:23:42 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Jan 25 14:25:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b85b517b

net-libs/libaccounts-glib: remove 1.21-r2

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-libs/libaccounts-glib/Manifest |  1 -
 .../libaccounts-glib-1.21-r2.ebuild| 48 --
 2 files changed, 49 deletions(-)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
index ab55e1b7f29..0cb70aa4125 100644
--- a/net-libs/libaccounts-glib/Manifest
+++ b/net-libs/libaccounts-glib/Manifest
@@ -1,2 +1 @@
-DIST libaccounts-glib-1.21.tar.gz 127061 BLAKE2B 
f0446c4318e810b1cff40c08ee8aace3f3981776c4fcdc2e9d08e42de76f1be2dc2a4d6380feaa4ef0cd94ec10dfd27652c6131653c863db78f11d7c6e14f175
 SHA512 
3eef882597392387a962dddbc49e4428f7e11e329fac1c3f4d39f3ef315118274b253e36095754d6392802cf298f2bfc0adf30b9a114b047082cda231bb10f60
 DIST libaccounts-glib-1.23.tar.gz 127931 BLAKE2B 
2379786bb4a658eaba632a1788782a0b5620e69fa058e991a41feeedf5b8f4786592077f237513fde9ed4ea00db015a7dd0be6ad852c265a5b7f8b1180ac01e4
 SHA512 
88fec1fed7a135375516363e4b7f1330d45a6337bbfb45dd35dabce87097ee4e550e968870541e1b496c2ee3db1bd26e0665f4155f1e64d1cc7b6b74d5b71b5c

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
deleted file mode 100644
index e7b1dda81e8..000
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools eutils vcs-snapshot xdg-utils
-
-DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
-HOMEPAGE="https://01.org/gsso/;
-SRC_URI="https://gitlab.com/accounts-sso/libaccounts-glib/repository/archive.tar.gz?ref=VERSION_${PV}
 -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="debug"
-
-RDEPEND="
-   dev-db/sqlite:3
-   dev-libs/glib:2
-   dev-libs/libxml2
-"
-DEPEND="${RDEPEND}
-   dev-util/gtk-doc
-"
-
-RESTRICT="test"
-
-DOCS=( AUTHORS NEWS )
-
-pkg_setup() {
-   xdg_environment_reset
-}
-
-src_prepare() {
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   --disable-python \
-   --disable-tests \
-   $(use_enable debug)
-}
-
-src_install() {
-   default
-   prune_libtool_files
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2017-09-09 Thread Michael Palimaka
commit: cf24b5b97b76b5dcfe778064017910995466796b
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Sep  9 13:01:07 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Sep  9 13:08:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf24b5b9

net-libs/libaccounts-glib: version bump 1.23

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 net-libs/libaccounts-glib/Manifest |  1 +
 .../libaccounts-glib/libaccounts-glib-1.23.ebuild  | 47 ++
 2 files changed, 48 insertions(+)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
index 4a7209e64ed..4ecd427bd88 100644
--- a/net-libs/libaccounts-glib/Manifest
+++ b/net-libs/libaccounts-glib/Manifest
@@ -1 +1,2 @@
 DIST libaccounts-glib-1.21.tar.gz 127061 SHA256 
27cb75f3f2f0ce736b77f0fd0432f8d565297f0735846a2862577eadaec92488 SHA512 
3eef882597392387a962dddbc49e4428f7e11e329fac1c3f4d39f3ef315118274b253e36095754d6392802cf298f2bfc0adf30b9a114b047082cda231bb10f60
 WHIRLPOOL 
46f8f04958199b4b1b91f1b03b66772e1a46440f390c30fef43c09f1171af28d41f57fb92d1303263d1771d21ff9e035729ff2396637894dd811dc0fd314f059
+DIST libaccounts-glib-1.23.tar.gz 127931 SHA256 
b4686af19b86cbedc0eb6a00aceee70f2c61254013d2cadd8aba15e9c540fff7 SHA512 
88fec1fed7a135375516363e4b7f1330d45a6337bbfb45dd35dabce87097ee4e550e968870541e1b496c2ee3db1bd26e0665f4155f1e64d1cc7b6b74d5b71b5c
 WHIRLPOOL 
90d200bec667dd1bd7666d040a432494e1ce703e54ba38ceecd1850059991c3927c638228b9287e19e9d5971fbe4d8197470934c1a6542f729d0fc450b7e0377

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild
new file mode 100644
index 000..928af3370a3
--- /dev/null
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.23.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools eutils vcs-snapshot xdg-utils
+
+DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
+HOMEPAGE="https://01.org/gsso/;
+SRC_URI="https://gitlab.com/accounts-sso/libaccounts-glib/repository/archive.tar.gz?ref=VERSION_${PV}
 -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="debug"
+
+RDEPEND="
+   dev-db/sqlite:3
+   dev-libs/glib:2
+   dev-libs/libxml2
+"
+DEPEND="${RDEPEND}
+   dev-util/gtk-doc
+"
+
+DOCS=( AUTHORS NEWS )
+
+pkg_setup() {
+   xdg_environment_reset
+}
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --disable-python \
+   --disable-tests \
+   $(use_enable debug)
+}
+
+src_install() {
+   default
+   prune_libtool_files
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2016-06-23 Thread Michael Palimaka
commit: b145bebc9ed691c253154a702e9c04a7116d8250
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Jun 23 16:36:27 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Jun 23 16:36:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b145bebc

net-libs/libaccounts-glib: reset XDG environment

Gentoo-bug: 586818

Package-Manager: portage-2.3.0_rc1

 net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
index b7c54e2..107e0eb 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-inherit autotools eutils vcs-snapshot
+inherit autotools eutils vcs-snapshot xdg-utils
 
 DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
 HOMEPAGE="https://01.org/gsso/;
@@ -28,6 +28,10 @@ RESTRICT="test"
 
 DOCS=( AUTHORS NEWS )
 
+pkg_setup() {
+   xdg_environment_reset
+}
+
 src_prepare() {
eautoreconf
 }



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2016-06-23 Thread Michael Palimaka
commit: a2fad4d70a0f8d21ff6812914e1995c5c0ee0c96
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Jun 23 12:10:27 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Jun 23 13:39:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2fad4d7

net-libs/libaccounts-glib: x86 stable

Gentoo-bug: 579992

Package-Manager: portage-2.3.0_rc1

 net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
index 354ec19..b7c54e2 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://gitlab.com/accounts-sso/libaccounts-glib/repository/archive.tar
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="debug"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2016-05-24 Thread Mikle Kolyada
commit: 54e7248057ac0ea0679d0f5c18817667ea72699c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue May 24 11:27:48 2016 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue May 24 11:38:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54e72480

net-libs/libaccounts-glib: amd64 stable wrt bug #579992

Package-Manager: portage-2.2.28

 net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
index ea4aac7..354ec19 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://gitlab.com/accounts-sso/libaccounts-glib/repository/archive.tar
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="debug"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2016-03-22 Thread Michael Palimaka
commit: eee1e3a547cd8cb1ae70adfa1a7c76e868f9e8f0
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Mar 22 13:07:19 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Mar 22 14:41:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eee1e3a5

net-libs/libaccounts-glib: remove old

Package-Manager: portage-2.2.28

 net-libs/libaccounts-glib/Manifest |  1 -
 .../libaccounts-glib/libaccounts-glib-1.19.ebuild  | 45 --
 2 files changed, 46 deletions(-)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
index e505ef8..4a7209e 100644
--- a/net-libs/libaccounts-glib/Manifest
+++ b/net-libs/libaccounts-glib/Manifest
@@ -1,2 +1 @@
-DIST libaccounts-glib-1.19.tar.gz 126032 SHA256 
098362920817fb2e4429814b8a26451c00bddd5e4702ab584a37fda42a539e50 SHA512 
1f0dfb3ee9faa32e08c839130bb2fb32d71ab57973d9a5704e145d192815795c3a8ddb4cc004e12647dffb02bd6e5f3ae908dfd7006e14f9b18e6454b5eb3d76
 WHIRLPOOL 
36e7a5b33dbc5ffdbffb0cdcfe21d07c624601002b3959d25698fcad786bc3b00ada074597042dbb45e95bc8b7518b66f24fefc8bbebf6b516ddc91c233ba4b2
 DIST libaccounts-glib-1.21.tar.gz 127061 SHA256 
27cb75f3f2f0ce736b77f0fd0432f8d565297f0735846a2862577eadaec92488 SHA512 
3eef882597392387a962dddbc49e4428f7e11e329fac1c3f4d39f3ef315118274b253e36095754d6392802cf298f2bfc0adf30b9a114b047082cda231bb10f60
 WHIRLPOOL 
46f8f04958199b4b1b91f1b03b66772e1a46440f390c30fef43c09f1171af28d41f57fb92d1303263d1771d21ff9e035729ff2396637894dd811dc0fd314f059

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.19.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.19.ebuild
deleted file mode 100644
index 92e6a60..000
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.19.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools eutils 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/libaccounts-glib/repository/archive.tar.gz?ref=VERSION_1.19
 -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"
-
-RDEPEND="
-   dev-db/sqlite:3
-   dev-libs/glib:2
-   dev-libs/libxml2
-"
-DEPEND="${RDEPEND}
-   dev-util/gtk-doc
-"
-
-RESTRICT="test"
-
-DOCS=( AUTHORS NEWS )
-
-src_prepare() {
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   --disable-python \
-   --disable-tests \
-   $(use_enable debug)
-}
-
-src_install() {
-   default
-   prune_libtool_files
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2016-03-22 Thread Michael Palimaka
commit: 03b4bc39bbe6658e2f5073afb52b9104c673754b
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Mar 22 13:06:54 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Mar 22 14:41:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03b4bc39

net-libs/libaccounts-glib: add ~arm keyword

Testing on Raspberry Pi 2.

Package-Manager: portage-2.2.28

 net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
index 66a39ef..ea4aac7 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://gitlab.com/accounts-sso/libaccounts-glib/repository/archive.tar
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE="debug"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2016-02-28 Thread Manuel Rüger
commit: 49cd59447e186ab1049d9d74c4bd70a3dffaaf2a
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Feb 28 12:24:17 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Feb 28 12:24:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49cd5944

net-libs/libaccounts-glib: Revbump to use correct tarball

Package-Manager: portage-2.2.27

 .../libaccounts-glib-1.21-r2.ebuild| 45 ++
 1 file changed, 45 insertions(+)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
new file mode 100644
index 000..66a39ef
--- /dev/null
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r2.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils 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/libaccounts-glib/repository/archive.tar.gz?ref=VERSION_${PV}
 -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
+
+RDEPEND="
+   dev-db/sqlite:3
+   dev-libs/glib:2
+   dev-libs/libxml2
+"
+DEPEND="${RDEPEND}
+   dev-util/gtk-doc
+"
+
+RESTRICT="test"
+
+DOCS=( AUTHORS NEWS )
+
+src_prepare() {
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --disable-python \
+   --disable-tests \
+   $(use_enable debug)
+}
+
+src_install() {
+   default
+   prune_libtool_files
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2016-02-28 Thread Manuel Rüger
commit: 99b39a6eefc15a3553c10177e6f4e94964cedbf8
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Feb 28 12:23:30 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Feb 28 12:23:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99b39a6e

net-libs/libaccounts-glib: Update Manifest

Package-Manager: portage-2.2.27

 net-libs/libaccounts-glib/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
index 8a0bb1c..e505ef8 100644
--- a/net-libs/libaccounts-glib/Manifest
+++ b/net-libs/libaccounts-glib/Manifest
@@ -1,2 +1,2 @@
 DIST libaccounts-glib-1.19.tar.gz 126032 SHA256 
098362920817fb2e4429814b8a26451c00bddd5e4702ab584a37fda42a539e50 SHA512 
1f0dfb3ee9faa32e08c839130bb2fb32d71ab57973d9a5704e145d192815795c3a8ddb4cc004e12647dffb02bd6e5f3ae908dfd7006e14f9b18e6454b5eb3d76
 WHIRLPOOL 
36e7a5b33dbc5ffdbffb0cdcfe21d07c624601002b3959d25698fcad786bc3b00ada074597042dbb45e95bc8b7518b66f24fefc8bbebf6b516ddc91c233ba4b2
-DIST libaccounts-glib-1.21.tar.gz 126032 SHA256 
098362920817fb2e4429814b8a26451c00bddd5e4702ab584a37fda42a539e50 SHA512 
1f0dfb3ee9faa32e08c839130bb2fb32d71ab57973d9a5704e145d192815795c3a8ddb4cc004e12647dffb02bd6e5f3ae908dfd7006e14f9b18e6454b5eb3d76
 WHIRLPOOL 
36e7a5b33dbc5ffdbffb0cdcfe21d07c624601002b3959d25698fcad786bc3b00ada074597042dbb45e95bc8b7518b66f24fefc8bbebf6b516ddc91c233ba4b2
+DIST libaccounts-glib-1.21.tar.gz 127061 SHA256 
27cb75f3f2f0ce736b77f0fd0432f8d565297f0735846a2862577eadaec92488 SHA512 
3eef882597392387a962dddbc49e4428f7e11e329fac1c3f4d39f3ef315118274b253e36095754d6392802cf298f2bfc0adf30b9a114b047082cda231bb10f60
 WHIRLPOOL 
46f8f04958199b4b1b91f1b03b66772e1a46440f390c30fef43c09f1171af28d41f57fb92d1303263d1771d21ff9e035729ff2396637894dd811dc0fd314f059



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2016-02-28 Thread Manuel Rüger
commit: 143da003427f281c2b75cb83f5ecc1b7ac37ded2
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Feb 28 12:24:36 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Feb 28 12:24:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=143da003

net-libs/libaccounts-glib: Remove old

Package-Manager: portage-2.2.27

 .../libaccounts-glib-1.21-r1.ebuild| 45 --
 1 file changed, 45 deletions(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.21-r1.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r1.ebuild
deleted file mode 100644
index 66a39ef..000
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.21-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools eutils 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/libaccounts-glib/repository/archive.tar.gz?ref=VERSION_${PV}
 -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"
-
-RDEPEND="
-   dev-db/sqlite:3
-   dev-libs/glib:2
-   dev-libs/libxml2
-"
-DEPEND="${RDEPEND}
-   dev-util/gtk-doc
-"
-
-RESTRICT="test"
-
-DOCS=( AUTHORS NEWS )
-
-src_prepare() {
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   --disable-python \
-   --disable-tests \
-   $(use_enable debug)
-}
-
-src_install() {
-   default
-   prune_libtool_files
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2016-02-24 Thread Manuel Rüger
commit: 4bc2745524d48d8dd4be365253f2977019e8edda
Author: Manuel Rüger  gentoo  org>
AuthorDate: Wed Feb 24 23:29:05 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Wed Feb 24 23:29:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bc27455

net-libs/libaccounts-glib: Fix SRC_URI. Thanks to Andreas Sturmlechner

Package-Manager: portage-2.2.27

 .../libaccounts-glib-1.21-r1.ebuild| 45 ++
 1 file changed, 45 insertions(+)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.21-r1.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r1.ebuild
new file mode 100644
index 000..66a39ef
--- /dev/null
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.21-r1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils 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/libaccounts-glib/repository/archive.tar.gz?ref=VERSION_${PV}
 -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
+
+RDEPEND="
+   dev-db/sqlite:3
+   dev-libs/glib:2
+   dev-libs/libxml2
+"
+DEPEND="${RDEPEND}
+   dev-util/gtk-doc
+"
+
+RESTRICT="test"
+
+DOCS=( AUTHORS NEWS )
+
+src_prepare() {
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --disable-python \
+   --disable-tests \
+   $(use_enable debug)
+}
+
+src_install() {
+   default
+   prune_libtool_files
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2016-02-24 Thread Manuel Rüger
commit: 97a11c7cc191606b80fd67be9ade004a51af090b
Author: Manuel Rüger  gentoo  org>
AuthorDate: Wed Feb 24 23:29:37 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Wed Feb 24 23:29:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97a11c7c

net-libs/libaccounts-glib: Remove old

Package-Manager: portage-2.2.27

 .../libaccounts-glib/libaccounts-glib-1.21.ebuild  | 45 --
 1 file changed, 45 deletions(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.21.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.21.ebuild
deleted file mode 100644
index 339afc3..000
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.21.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools eutils 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/libaccounts-glib/repository/archive.tar.gz?ref=VERSION_1.19
 -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"
-
-RDEPEND="
-   dev-db/sqlite:3
-   dev-libs/glib:2
-   dev-libs/libxml2
-"
-DEPEND="${RDEPEND}
-   dev-util/gtk-doc
-"
-
-RESTRICT="test"
-
-DOCS=( AUTHORS NEWS )
-
-src_prepare() {
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   --disable-python \
-   --disable-tests \
-   $(use_enable debug)
-}
-
-src_install() {
-   default
-   prune_libtool_files
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2016-02-24 Thread Manuel Rüger
commit: 4d8ae1d47d0657e8671778761d414fcb000c15c4
Author: Manuel Rüger  gentoo  org>
AuthorDate: Wed Feb 24 21:00:32 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Wed Feb 24 21:01:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d8ae1d4

net-libs/libaccounts-glib: Remove old

Package-Manager: portage-2.2.27

 net-libs/libaccounts-glib/Manifest |  1 -
 .../libaccounts-glib/libaccounts-glib-1.18.ebuild  | 30 --
 2 files changed, 31 deletions(-)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
index 0c2cb55..8a0bb1c 100644
--- a/net-libs/libaccounts-glib/Manifest
+++ b/net-libs/libaccounts-glib/Manifest
@@ -1,3 +1,2 @@
-DIST libaccounts-glib-1.18.tar.gz 579435 SHA256 
7aab9ec2ba3ae2548125f4bb330ed433e8066c672e32101a339cbb7f4657ff56 SHA512 
133b336cd000f302f14d4285d5a3c6d032a2b5497bf8ce5cd22175e6c847b54e4f8919a6c37786c9b39bac874146683a1bc0547db3f2563e3fe7a3d686d82b85
 WHIRLPOOL 
102cdd1261bff9980c14f6563bcc41fc561b1751cc6adcc5ed7f6045800c8974443a99512f18352d2ebecd58ee9f69bebd30b52a8106fb15d59095705afaefe9
 DIST libaccounts-glib-1.19.tar.gz 126032 SHA256 
098362920817fb2e4429814b8a26451c00bddd5e4702ab584a37fda42a539e50 SHA512 
1f0dfb3ee9faa32e08c839130bb2fb32d71ab57973d9a5704e145d192815795c3a8ddb4cc004e12647dffb02bd6e5f3ae908dfd7006e14f9b18e6454b5eb3d76
 WHIRLPOOL 
36e7a5b33dbc5ffdbffb0cdcfe21d07c624601002b3959d25698fcad786bc3b00ada074597042dbb45e95bc8b7518b66f24fefc8bbebf6b516ddc91c233ba4b2
 DIST libaccounts-glib-1.21.tar.gz 126032 SHA256 
098362920817fb2e4429814b8a26451c00bddd5e4702ab584a37fda42a539e50 SHA512 
1f0dfb3ee9faa32e08c839130bb2fb32d71ab57973d9a5704e145d192815795c3a8ddb4cc004e12647dffb02bd6e5f3ae908dfd7006e14f9b18e6454b5eb3d76
 WHIRLPOOL 
36e7a5b33dbc5ffdbffb0cdcfe21d07c624601002b3959d25698fcad786bc3b00ada074597042dbb45e95bc8b7518b66f24fefc8bbebf6b516ddc91c233ba4b2

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild
deleted file mode 100644
index b3373fd..000
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
-HOMEPAGE="https://01.org/gsso/;
-SRC_URI="http://dev.gentoo.org/~kensington/distfiles/${P}.tar.gz;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="debug"
-
-RESTRICT="test"
-
-DEPEND="
-   dev-db/sqlite:3
-   dev-libs/glib:2
-   dev-libs/libxml2"
-
-RDEPEND="$DEPEND"
-
-src_configure() {
-   export HAVE_GCOV_FALSE='#'
-   econf \
-   $(use_enable debug) \
-   --disable-tests
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2016-02-24 Thread Manuel Rüger
commit: a00eecf841d03aa2c43cd0348870223303645686
Author: Manuel Rüger  gentoo  org>
AuthorDate: Wed Feb 24 21:00:06 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Wed Feb 24 21:01:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a00eecf8

net-libs/libaccounts-glib: Version bump

Package-Manager: portage-2.2.27

 net-libs/libaccounts-glib/Manifest |  1 +
 .../libaccounts-glib/libaccounts-glib-1.21.ebuild  | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
index 8b5f871..0c2cb55 100644
--- a/net-libs/libaccounts-glib/Manifest
+++ b/net-libs/libaccounts-glib/Manifest
@@ -1,2 +1,3 @@
 DIST libaccounts-glib-1.18.tar.gz 579435 SHA256 
7aab9ec2ba3ae2548125f4bb330ed433e8066c672e32101a339cbb7f4657ff56 SHA512 
133b336cd000f302f14d4285d5a3c6d032a2b5497bf8ce5cd22175e6c847b54e4f8919a6c37786c9b39bac874146683a1bc0547db3f2563e3fe7a3d686d82b85
 WHIRLPOOL 
102cdd1261bff9980c14f6563bcc41fc561b1751cc6adcc5ed7f6045800c8974443a99512f18352d2ebecd58ee9f69bebd30b52a8106fb15d59095705afaefe9
 DIST libaccounts-glib-1.19.tar.gz 126032 SHA256 
098362920817fb2e4429814b8a26451c00bddd5e4702ab584a37fda42a539e50 SHA512 
1f0dfb3ee9faa32e08c839130bb2fb32d71ab57973d9a5704e145d192815795c3a8ddb4cc004e12647dffb02bd6e5f3ae908dfd7006e14f9b18e6454b5eb3d76
 WHIRLPOOL 
36e7a5b33dbc5ffdbffb0cdcfe21d07c624601002b3959d25698fcad786bc3b00ada074597042dbb45e95bc8b7518b66f24fefc8bbebf6b516ddc91c233ba4b2
+DIST libaccounts-glib-1.21.tar.gz 126032 SHA256 
098362920817fb2e4429814b8a26451c00bddd5e4702ab584a37fda42a539e50 SHA512 
1f0dfb3ee9faa32e08c839130bb2fb32d71ab57973d9a5704e145d192815795c3a8ddb4cc004e12647dffb02bd6e5f3ae908dfd7006e14f9b18e6454b5eb3d76
 WHIRLPOOL 
36e7a5b33dbc5ffdbffb0cdcfe21d07c624601002b3959d25698fcad786bc3b00ada074597042dbb45e95bc8b7518b66f24fefc8bbebf6b516ddc91c233ba4b2

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.21.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.21.ebuild
new file mode 100644
index 000..339afc3
--- /dev/null
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.21.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils 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/libaccounts-glib/repository/archive.tar.gz?ref=VERSION_1.19
 -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
+
+RDEPEND="
+   dev-db/sqlite:3
+   dev-libs/glib:2
+   dev-libs/libxml2
+"
+DEPEND="${RDEPEND}
+   dev-util/gtk-doc
+"
+
+RESTRICT="test"
+
+DOCS=( AUTHORS NEWS )
+
+src_prepare() {
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --disable-python \
+   --disable-tests \
+   $(use_enable debug)
+}
+
+src_install() {
+   default
+   prune_libtool_files
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2015-12-25 Thread Michael Palimaka
commit: eb57c3220e8aa856e1fd89e43d38ec7cb271e8a5
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Dec 25 18:38:51 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Dec 25 18:39:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb57c322

net-libs/libaccounts-glib: add missing dependency

Gentoo-bug: 568914

Package-Manager: portage-2.2.26

 net-libs/libaccounts-glib/libaccounts-glib-1.19.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.19.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.19.ebuild
index 62eefee..92e6a60 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.19.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.19.ebuild
@@ -15,13 +15,14 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="debug"
 
-DEPEND="
+RDEPEND="
dev-db/sqlite:3
dev-libs/glib:2
dev-libs/libxml2
 "
-
-RDEPEND="${DEPEND}"
+DEPEND="${RDEPEND}
+   dev-util/gtk-doc
+"
 
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2015-12-20 Thread Michael Palimaka
commit: 75caaaec250847217d65060697b9a707c91a1502
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Dec 20 17:49:02 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec 20 17:51:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75caaaec

net-libs/libaccounts-glib: version bump

Package-Manager: portage-2.2.26

 net-libs/libaccounts-glib/Manifest |  1 +
 .../libaccounts-glib/libaccounts-glib-1.19.ebuild  | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
index b6f057c..8b5f871 100644
--- a/net-libs/libaccounts-glib/Manifest
+++ b/net-libs/libaccounts-glib/Manifest
@@ -1 +1,2 @@
 DIST libaccounts-glib-1.18.tar.gz 579435 SHA256 
7aab9ec2ba3ae2548125f4bb330ed433e8066c672e32101a339cbb7f4657ff56 SHA512 
133b336cd000f302f14d4285d5a3c6d032a2b5497bf8ce5cd22175e6c847b54e4f8919a6c37786c9b39bac874146683a1bc0547db3f2563e3fe7a3d686d82b85
 WHIRLPOOL 
102cdd1261bff9980c14f6563bcc41fc561b1751cc6adcc5ed7f6045800c8974443a99512f18352d2ebecd58ee9f69bebd30b52a8106fb15d59095705afaefe9
+DIST libaccounts-glib-1.19.tar.gz 126032 SHA256 
098362920817fb2e4429814b8a26451c00bddd5e4702ab584a37fda42a539e50 SHA512 
1f0dfb3ee9faa32e08c839130bb2fb32d71ab57973d9a5704e145d192815795c3a8ddb4cc004e12647dffb02bd6e5f3ae908dfd7006e14f9b18e6454b5eb3d76
 WHIRLPOOL 
36e7a5b33dbc5ffdbffb0cdcfe21d07c624601002b3959d25698fcad786bc3b00ada074597042dbb45e95bc8b7518b66f24fefc8bbebf6b516ddc91c233ba4b2

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.19.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.19.ebuild
new file mode 100644
index 000..62eefee
--- /dev/null
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.19.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils 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/libaccounts-glib/repository/archive.tar.gz?ref=VERSION_1.19
 -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
+
+DEPEND="
+   dev-db/sqlite:3
+   dev-libs/glib:2
+   dev-libs/libxml2
+"
+
+RDEPEND="${DEPEND}"
+
+RESTRICT="test"
+
+DOCS=( AUTHORS NEWS )
+
+src_prepare() {
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --disable-python \
+   --disable-tests \
+   $(use_enable debug)
+}
+
+src_install() {
+   default
+   prune_libtool_files
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2015-09-21 Thread Michael Palimaka
commit: f76cd535db994f9435df53573979c9683feb79db
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Sep 20 21:13:47 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Sep 21 15:20:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f76cd535

net-libs/libaccounts-glib: Really disable broken tests

Bug: https://bugs.gentoo.org/show_bug.cgi?id=560656

Package-Manager: portage-2.2.20.1

 net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild | 11 +++
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild
index 6f974fb..b3373fd 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild
@@ -4,8 +4,6 @@
 
 EAPI=5
 
-inherit autotools
-
 DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
 HOMEPAGE="https://01.org/gsso/;
 SRC_URI="http://dev.gentoo.org/~kensington/distfiles/${P}.tar.gz;
@@ -24,12 +22,9 @@ DEPEND="
 
 RDEPEND="$DEPEND"
 
-src_prepare() {
-   sed -i -e "/tests\/Makefile/d" configure.ac || die
-   eautoreconf
-}
-
 src_configure() {
export HAVE_GCOV_FALSE='#'
-   econf $(use_enable debug)
+   econf \
+   $(use_enable debug) \
+   --disable-tests
 }



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2015-09-14 Thread Michael Palimaka
commit: 27348f02c241301f0230cf0b5c5133bb67037542
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Sep 14 15:06:14 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Sep 14 15:06:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27348f02

net-libs/libaccounts-glib: properly disable broken tests.

Gentoo-bug: 560456

Package-Manager: portage-2.2.20.1

 net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild
index e50e0d4..6f974fb 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild
@@ -4,6 +4,8 @@
 
 EAPI=5
 
+inherit autotools
+
 DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib 
applications"
 HOMEPAGE="https://01.org/gsso/;
 SRC_URI="http://dev.gentoo.org/~kensington/distfiles/${P}.tar.gz;
@@ -22,6 +24,11 @@ DEPEND="
 
 RDEPEND="$DEPEND"
 
+src_prepare() {
+   sed -i -e "/tests\/Makefile/d" configure.ac || die
+   eautoreconf
+}
+
 src_configure() {
export HAVE_GCOV_FALSE='#'
econf $(use_enable debug)



[gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/

2015-08-27 Thread Johannes Huber
commit: b1f5cc245d2255c41229569e67363d41ecc6d8b7
Author: Johannes Huber johu AT gentoo DOT org
AuthorDate: Thu Aug 27 12:40:25 2015 +
Commit: Johannes Huber johu AT gentoo DOT org
CommitDate: Thu Aug 27 12:40:41 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1f5cc24

net-libs/libaccounts-glib: New package

Needed for KDEs Telepathy client based on KF5. Initial ebuild Karol Herbst
git AT karolherbst.de. Improvements by Michael Palimaka 
kensing...@gentoo.org
and me.

Package-Manager: portage-2.2.20.1

 net-libs/libaccounts-glib/Manifest |  1 +
 .../libaccounts-glib/libaccounts-glib-1.18.ebuild  | 28 ++
 net-libs/libaccounts-glib/metadata.xml |  5 
 3 files changed, 34 insertions(+)

diff --git a/net-libs/libaccounts-glib/Manifest 
b/net-libs/libaccounts-glib/Manifest
new file mode 100644
index 000..b6f057c
--- /dev/null
+++ b/net-libs/libaccounts-glib/Manifest
@@ -0,0 +1 @@
+DIST libaccounts-glib-1.18.tar.gz 579435 SHA256 
7aab9ec2ba3ae2548125f4bb330ed433e8066c672e32101a339cbb7f4657ff56 SHA512 
133b336cd000f302f14d4285d5a3c6d032a2b5497bf8ce5cd22175e6c847b54e4f8919a6c37786c9b39bac874146683a1bc0547db3f2563e3fe7a3d686d82b85
 WHIRLPOOL 
102cdd1261bff9980c14f6563bcc41fc561b1751cc6adcc5ed7f6045800c8974443a99512f18352d2ebecd58ee9f69bebd30b52a8106fb15d59095705afaefe9

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild
new file mode 100644
index 000..e50e0d4
--- /dev/null
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION=Accounts SSO (Single Sign-On) management library for GLib 
applications
+HOMEPAGE=https://01.org/gsso/;
+SRC_URI=http://dev.gentoo.org/~kensington/distfiles/${P}.tar.gz;
+
+LICENSE=LGPL-2.1
+SLOT=0
+KEYWORDS=~x86 ~amd64
+IUSE=debug
+
+RESTRICT=test
+
+DEPEND=
+   dev-db/sqlite:3
+   dev-libs/glib:2
+   dev-libs/libxml2
+
+RDEPEND=$DEPEND
+
+src_configure() {
+   export HAVE_GCOV_FALSE='#'
+   econf $(use_enable debug)
+}

diff --git a/net-libs/libaccounts-glib/metadata.xml 
b/net-libs/libaccounts-glib/metadata.xml
new file mode 100644
index 000..a23f444
--- /dev/null
+++ b/net-libs/libaccounts-glib/metadata.xml
@@ -0,0 +1,5 @@
+?xml version=1.0 encoding=UTF-8?
+!DOCTYPE pkgmetadata SYSTEM http://www.gentoo.org/dtd/metadata.dtd;
+pkgmetadata
+   herdkde/herd
+/pkgmetadata