Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libtinynotify: ChangeLog libtinynotify-0.1.0.ebuild libtinynotify-0.0.2.ebuild
Date: Mon, 29 Aug 2011 22:05:24
Message-Id: 20110829220414.C0E7B2004C@flycatcher.gentoo.org
1 mgorny 11/08/29 22:04:14
2
3 Modified: ChangeLog
4 Added: libtinynotify-0.1.0.ebuild
5 Removed: libtinynotify-0.0.2.ebuild
6 Log:
7 Version bump. The new version adds support for re-establishing D-Bus connections and a simple event API for notifications closing.
8
9 (Portage version: 2.2.0_alpha51_p49/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.3 x11-libs/libtinynotify/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libtinynotify/ChangeLog?rev=1.3&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libtinynotify/ChangeLog?rev=1.3&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libtinynotify/ChangeLog?r1=1.2&r2=1.3
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libtinynotify/ChangeLog,v
21 retrieving revision 1.2
22 retrieving revision 1.3
23 diff -u -r1.2 -r1.3
24 --- ChangeLog 24 Aug 2011 11:28:29 -0000 1.2
25 +++ ChangeLog 29 Aug 2011 22:04:14 -0000 1.3
26 @@ -1,6 +1,13 @@
27 # ChangeLog for x11-libs/libtinynotify
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libtinynotify/ChangeLog,v 1.2 2011/08/24 11:28:29 mgorny Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libtinynotify/ChangeLog,v 1.3 2011/08/29 22:04:14 mgorny Exp $
31 +
32 +*libtinynotify-0.1.0 (29 Aug 2011)
33 +
34 + 29 Aug 2011; Michał Górny <mgorny@g.o> -libtinynotify-0.0.2.ebuild,
35 + +libtinynotify-0.1.0.ebuild:
36 + Version bump. The new version adds support for re-establishing D-Bus
37 + connections and a simple event API for notifications closing.
38
39 *libtinynotify-0.0.2 (24 Aug 2011)
40
41
42
43
44 1.1 x11-libs/libtinynotify/libtinynotify-0.1.0.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libtinynotify/libtinynotify-0.1.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libtinynotify/libtinynotify-0.1.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libtinynotify-0.1.0.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libtinynotify/libtinynotify-0.1.0.ebuild,v 1.1 2011/08/29 22:04:14 mgorny Exp $
54
55 EAPI=4
56 inherit autotools-utils
57
58 DESCRIPTION="A lightweight implementation of Desktop Notification Spec"
59 HOMEPAGE="https://github.com/mgorny/libtinynotify/"
60 SRC_URI="http://cloud.github.com/downloads/mgorny/${PN}/${P}.tar.bz2"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="debug doc static-libs"
66
67 RDEPEND="sys-apps/dbus"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig
70 doc? ( dev-util/gtk-doc )"
71
72 DOCS=( README )
73
74 # requires gtk-doc-1.18
75 RESTRICT=test
76
77 src_configure() {
78 myeconfargs=(
79 $(use_enable doc gtk-doc)
80 )
81
82 autotools-utils_src_configure
83 }