Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/dbus-glib: dbus-glib-0.104.ebuild ChangeLog
Date: Sat, 04 Jul 2015 15:51:19
Message-Id: 20150704155115.81534740@oystercatcher.gentoo.org
1 pacho 15/07/04 15:51:15
2
3 Modified: ChangeLog
4 Added: dbus-glib-0.104.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.166 dev-libs/dbus-glib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/dbus-glib/ChangeLog?rev=1.166&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/dbus-glib/ChangeLog?rev=1.166&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/dbus-glib/ChangeLog?r1=1.165&r2=1.166
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/ChangeLog,v
20 retrieving revision 1.165
21 retrieving revision 1.166
22 diff -u -r1.165 -r1.166
23 --- ChangeLog 27 May 2015 13:49:19 -0000 1.165
24 +++ ChangeLog 4 Jul 2015 15:51:15 -0000 1.166
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/dbus-glib
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/ChangeLog,v 1.165 2015/05/27 13:49:19 tetromino Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/ChangeLog,v 1.166 2015/07/04 15:51:15 pacho Exp $
30 +
31 +*dbus-glib-0.104 (04 Jul 2015)
32 +
33 + 04 Jul 2015; Pacho Ramos <pacho@g.o> +dbus-glib-0.104.ebuild:
34 + Version bump
35
36 27 May 2015; Alexandre Rostovtsev <tetromino@g.o>
37 -dbus-glib-0.100.2.ebuild, -dbus-glib-0.100.2-r1.ebuild,
38
39
40
41 1.1 dev-libs/dbus-glib/dbus-glib-0.104.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/dbus-glib/dbus-glib-0.104.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/dbus-glib/dbus-glib-0.104.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dbus-glib-0.104.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/dbus-glib/dbus-glib-0.104.ebuild,v 1.1 2015/07/04 15:51:15 pacho Exp $
51
52 EAPI=5
53 inherit bash-completion-r1 eutils multilib-minimal
54
55 DESCRIPTION="D-Bus bindings for glib"
56 HOMEPAGE="http://dbus.freedesktop.org/"
57 SRC_URI="http://dbus.freedesktop.org/releases/${PN}/${P}.tar.gz"
58
59 LICENSE="|| ( GPL-2 AFL-2.1 )"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x86-solaris"
62 IUSE="debug static-libs test"
63
64 CDEPEND="
65 >=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}]
66 >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
67 >=sys-apps/dbus-1.8[${MULTILIB_USEDEP}]
68 "
69 DEPEND="${CDEPEND}
70 >=dev-util/gtk-doc-am-1.14
71 virtual/pkgconfig
72 "
73 RDEPEND="${CDEPEND}
74 abi_x86_32? (
75 !<app-emulation/emul-linux-x86-baselibs-20131008-r8
76 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
77 )
78 "
79
80 DOCS=( AUTHORS ChangeLog HACKING NEWS README )
81
82 set_TBD() {
83 # out of sources build dir for make check
84 export TBD="${BUILD_DIR}-tests"
85 }
86
87 src_prepare() {
88 epatch_user
89 }
90
91 multilib_src_configure() {
92 local myconf=(
93 --localstatedir="${EPREFIX}"/var
94 --enable-bash-completion
95 --disable-gtk-doc
96 $(use_enable debug asserts)
97 $(use_enable static-libs static)
98 )
99
100 ECONF_SOURCE="${S}" econf "${myconf[@]}"
101
102 ln -s "${S}"/doc/reference/html doc/reference/html #460042
103
104 if use test; then
105 set_TBD
106 mkdir "${TBD}"
107 cd "${TBD}"
108 einfo "Running configure in ${TBD}"
109 ECONF_SOURCE="${S}" econf \
110 "${myconf[@]}" \
111 $(use_enable test checks) \
112 $(use_enable test tests) \
113 $(use_enable test asserts) \
114 $(use_with test test-socket-dir "${T}"/dbus-test-socket)
115 fi
116 }
117
118 multilib_src_compile() {
119 emake
120
121 if use test; then
122 set_TBD
123 cd "${TBD}"
124 einfo "Running make in ${TBD}"
125 emake
126 fi
127 }
128
129 multilib_src_test() {
130 set_TBD
131 cd "${TBD}"
132 emake check
133 }
134
135 multilib_src_install_all() {
136 einstalldocs
137
138 newbashcomp "${ED}"/etc/bash_completion.d/dbus-bash-completion.sh dbus-send
139 rm -rf "${ED}"/etc/bash_completion.d || die
140
141 prune_libtool_files
142 }