Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libsignon-glib/
Date: Sun, 27 Mar 2016 17:10:26
Message-Id: 1459098605.c1eedfd6583abf34219857cf8849aaea6bcabec3.kensington@gentoo
1 commit: c1eedfd6583abf34219857cf8849aaea6bcabec3
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 27 17:09:51 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 27 17:10:05 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1eedfd6
7
8 net-libs/libsignon-glib: remove old
9
10 Package-Manager: portage-2.2.28
11
12 net-libs/libsignon-glib/Manifest | 1 -
13 net-libs/libsignon-glib/libsignon-glib-1.12.ebuild | 77 ----------------------
14 2 files changed, 78 deletions(-)
15
16 diff --git a/net-libs/libsignon-glib/Manifest b/net-libs/libsignon-glib/Manifest
17 index ef6cea7..fbe55c3 100644
18 --- a/net-libs/libsignon-glib/Manifest
19 +++ b/net-libs/libsignon-glib/Manifest
20 @@ -1,2 +1 @@
21 -DIST libsignon-glib-1.12.tar.xz 42384 SHA256 bd7e3be291e3173f20dda5376e1387be5d1705b12a00885e93f2cc900a9b4463 SHA512 5d5a3918898dce9d8b10597ac95428bef4753a1c626b6e7fef54e9024327b0849ddb628b25801504c336cf6fe2ebc16e5264bb576ecab16457ccf17918f042cf WHIRLPOOL 5766ad1fe50a6637d2f8e5fe6b092599112c9b6fb56dd44502568d41d61d3208d8d5a00ce1c698848f3fbeb0eb0a1ee82bcbebaff74428a97f634589e56d9def
22 DIST libsignon-glib-1.13.tar.gz 51601 SHA256 8e0e450e719c16f79d3c3aadb98656ed5967a2f2cd24c1d9cd5747e670a087bc SHA512 aaae6a37a113685eb36ddccd497e387617cf0900506638cbafbac282c4d63ade41f4c915ad6f04214c58af580b70d9062ecf3e1618b6f5fe07dad50c5dc125a6 WHIRLPOOL 8f0d1d51588e42c9fac51883a9ecb08b6ad4949fc8f335c2259f967ea8f3555b04b3ca46f323b20591a2bc85dc1b5bba3968fec1be3e4dfd7a9464e2c5d6880e
23
24 diff --git a/net-libs/libsignon-glib/libsignon-glib-1.12.ebuild b/net-libs/libsignon-glib/libsignon-glib-1.12.ebuild
25 deleted file mode 100644
26 index 80ab757..0000000
27 --- a/net-libs/libsignon-glib/libsignon-glib-1.12.ebuild
28 +++ /dev/null
29 @@ -1,77 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -
36 -PYTHON_COMPAT=( python{2_7,3_3,3_4} )
37 -inherit autotools python-r1
38 -
39 -DESCRIPTION="GLib binding for the D-Bus API provided by signond"
40 -HOMEPAGE="https://01.org/gsso/"
41 -SRC_URI="http://dev.gentoo.org/~johu/distfiles/${P}.tar.xz"
42 -
43 -SLOT="0"
44 -LICENSE="LGPL-2.1"
45 -KEYWORDS="~amd64 ~x86"
46 -IUSE="debug doc python test"
47 -
48 -RDEPEND="
49 - dev-libs/glib:2
50 - net-libs/signond
51 -"
52 -DEPEND="${RDEPEND}
53 - dev-libs/check
54 - dev-util/gdbus-codegen
55 - python? ( ${PYTHON_DEPS} )
56 - doc? ( dev-util/gtk-doc )
57 -"
58 -
59 -DOCS=( AUTHORS NEWS README )
60 -
61 -# needs more love
62 -RESTRICT="test"
63 -
64 -src_prepare() {
65 - if ! use doc; then
66 - epatch "${FILESDIR}/${P}-doc-disable.patch"
67 - fi
68 -
69 - eautoreconf
70 -}
71 -
72 -src_configure() {
73 - myconfigure() {
74 - local myeconfargs=(
75 - $(use_enable debug)
76 - $(use_enable doc gtk-doc)
77 - $(use_enable python)
78 - $(use_enable test tests)
79 - )
80 -
81 - econf "${myeconfargs[@]}"
82 - }
83 -
84 - if use python; then
85 - python_copy_sources
86 - python_foreach_impl run_in_build_dir myconfigure
87 - else
88 - myconfigure
89 - fi
90 -}
91 -
92 -src_compile() {
93 - # fails to compile with more than one thread
94 - MAKEOPTS="${MAKEOPTS} -j1"
95 - default
96 - if use python; then
97 - python_foreach_impl run_in_build_dir default
98 - fi
99 -}
100 -
101 -src_install() {
102 - default
103 - if use python; then
104 - python_foreach_impl run_in_build_dir default
105 - fi
106 -}