Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/accountsservice/
Date: Fri, 17 Aug 2018 00:12:57
Message-Id: 1534464741.131c0448ac92a8571ccfff21de931777f9a1405c.leio@gentoo
1 commit: 131c0448ac92a8571ccfff21de931777f9a1405c
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 17 00:01:10 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 17 00:12:21 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=131c0448
7
8 sys-apps/accountsservice: security bump to 0.6.50
9
10 Bug: https://bugs.gentoo.org/659916
11 Package-Manager: Portage-2.3.46, Repoman-2.3.10
12
13 sys-apps/accountsservice/Manifest | 1 +
14 .../accountsservice/accountsservice-0.6.50.ebuild | 58 ++++++++++++++++++++++
15 2 files changed, 59 insertions(+)
16
17 diff --git a/sys-apps/accountsservice/Manifest b/sys-apps/accountsservice/Manifest
18 index 2e0a9fdecf9..3f86949ecd7 100644
19 --- a/sys-apps/accountsservice/Manifest
20 +++ b/sys-apps/accountsservice/Manifest
21 @@ -1 +1,2 @@
22 DIST accountsservice-0.6.45.tar.xz 382740 BLAKE2B ce88e53c7d0187f53ed0a2758f81c8e2d1083ab1c95ec6cddebb2167b36706b1537ecf74b7904a9002c6179cfdf811a3268451af9443727ba9793a9af06cf8aa SHA512 09975f9fa03a3177d923de6d6f6e6acfffeb2ff4924c45eaac78c994c16974427c8e936a87034747ba494d2bb3df6e8a92ff44db387761b06e06e311d7cf105a
23 +DIST accountsservice-0.6.50.tar.xz 384484 BLAKE2B 52c06ba85498f292204834f967211d8f0940786dc2ea3070124d3aecccd551375bfbc8fc31f23a2c3c86e23359294307656c3b927c4e819fc102d8626ae0dd82 SHA512 6e07cd318452b1cbedeacd729f0ebb200525caf1b09981abb2bac16fd90756a790ebec08aca0a0cea016f14ab27c159a68fe1332ef4bc636c5863b8c61040f64
24
25 diff --git a/sys-apps/accountsservice/accountsservice-0.6.50.ebuild b/sys-apps/accountsservice/accountsservice-0.6.50.ebuild
26 new file mode 100644
27 index 00000000000..0b54f0f7bc2
28 --- /dev/null
29 +++ b/sys-apps/accountsservice/accountsservice-0.6.50.ebuild
30 @@ -0,0 +1,58 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +GNOME2_EAUTORECONF="yes"
36 +
37 +inherit gnome2 systemd
38 +
39 +DESCRIPTION="D-Bus interfaces for querying and manipulating user account information"
40 +HOMEPAGE="https://www.freedesktop.org/wiki/Software/AccountsService/"
41 +SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz"
42 +
43 +LICENSE="GPL-3+"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
46 +
47 +IUSE="doc elogind +introspection selinux systemd"
48 +REQUIRED_USE="?? ( elogind systemd )"
49 +
50 +CDEPEND="
51 + >=dev-libs/glib-2.44:2
52 + sys-auth/polkit
53 + elogind? ( >=sys-auth/elogind-229.4 )
54 + introspection? ( >=dev-libs/gobject-introspection-0.9.12:= )
55 + systemd? ( >=sys-apps/systemd-186:0= )
56 + !systemd? ( !elogind? ( sys-auth/consolekit ) )
57 +"
58 +DEPEND="${CDEPEND}
59 + dev-libs/libxslt
60 + dev-util/gdbus-codegen
61 + >=dev-util/gtk-doc-am-1.15
62 + >=dev-util/intltool-0.40
63 + sys-devel/gettext
64 + virtual/pkgconfig
65 + doc? (
66 + app-text/docbook-xml-dtd:4.1.2
67 + app-text/xmlto )
68 +"
69 +RDEPEND="${CDEPEND}
70 + selinux? ( sec-policy/selinux-accountsd )
71 +"
72 +
73 +PATCHES=(
74 + "${FILESDIR}"/${PN}-0.6.35-gentoo-system-users.patch
75 +)
76 +
77 +src_configure() {
78 + gnome2_src_configure \
79 + --disable-static \
80 + --disable-more-warnings \
81 + --localstatedir="${EPREFIX}"/var \
82 + --enable-admin-group="wheel" \
83 + --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" \
84 + $(use_enable doc docbook-docs) \
85 + $(use_enable elogind) \
86 + $(use_enable introspection) \
87 + $(use_enable systemd)
88 +}