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: libtinynotify-0.2.1.ebuild metadata.xml ChangeLog libtinynotify-0.2.ebuild
Date: Mon, 09 Jan 2012 20:46:04
Message-Id: 20120109204554.6D9FA2004B@flycatcher.gentoo.org
1 mgorny 12/01/09 20:45:54
2
3 Modified: metadata.xml ChangeLog
4 Added: libtinynotify-0.2.1.ebuild
5 Removed: libtinynotify-0.2.ebuild
6 Log:
7 Version bump. The new version fixes a few code issues.
8
9 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.3 x11-libs/libtinynotify/metadata.xml
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libtinynotify/metadata.xml?rev=1.3&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libtinynotify/metadata.xml?rev=1.3&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libtinynotify/metadata.xml?r1=1.2&r2=1.3
17
18 Index: metadata.xml
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libtinynotify/metadata.xml,v
21 retrieving revision 1.2
22 retrieving revision 1.3
23 diff -u -r1.2 -r1.3
24 --- metadata.xml 24 Sep 2011 11:04:55 -0000 1.2
25 +++ metadata.xml 9 Jan 2012 20:45:53 -0000 1.3
26 @@ -10,6 +10,6 @@
27 <email>mgorny@g.o</email>
28 <name>Michał Górny</name>
29 </maintainer>
30 - <bugs-to>http://bugs.gentoo.org/enter_bug.cgi?product=Gentoo%20Linux&amp;component=Applications&amp;short_desc=x11-libs/libtinynotify:%20</bugs-to>
31 + <bugs-to>https://github.com/mgorny/libtinynotify/issues/</bugs-to>
32 </upstream>
33 </pkgmetadata>
34
35
36
37 1.6 x11-libs/libtinynotify/ChangeLog
38
39 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libtinynotify/ChangeLog?rev=1.6&view=markup
40 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libtinynotify/ChangeLog?rev=1.6&content-type=text/plain
41 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libtinynotify/ChangeLog?r1=1.5&r2=1.6
42
43 Index: ChangeLog
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libtinynotify/ChangeLog,v
46 retrieving revision 1.5
47 retrieving revision 1.6
48 diff -u -r1.5 -r1.6
49 --- ChangeLog 18 Sep 2011 09:28:42 -0000 1.5
50 +++ ChangeLog 9 Jan 2012 20:45:54 -0000 1.6
51 @@ -1,6 +1,12 @@
52 # ChangeLog for x11-libs/libtinynotify
53 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
54 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libtinynotify/ChangeLog,v 1.5 2011/09/18 09:28:42 mgorny Exp $
55 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
56 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libtinynotify/ChangeLog,v 1.6 2012/01/09 20:45:54 mgorny Exp $
57 +
58 +*libtinynotify-0.2.1 (09 Jan 2012)
59 +
60 + 09 Jan 2012; Michał Górny <mgorny@g.o> -libtinynotify-0.2.ebuild,
61 + +libtinynotify-0.2.1.ebuild, metadata.xml:
62 + Version bump. The new version fixes a few code issues.
63
64 18 Sep 2011; Michał Górny <mgorny@g.o> libtinynotify-0.2.ebuild:
65 Fix implicit $(use_enable debug). Update gtk-doc dep and thus remove test
66
67
68
69 1.1 x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild
70
71 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild?rev=1.1&view=markup
72 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild?rev=1.1&content-type=text/plain
73
74 Index: libtinynotify-0.2.1.ebuild
75 ===================================================================
76 # Copyright 1999-2012 Gentoo Foundation
77 # Distributed under the terms of the GNU General Public License v2
78 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild,v 1.1 2012/01/09 20:45:53 mgorny Exp $
79
80 EAPI=4
81
82 inherit autotools-utils
83
84 DESCRIPTION="A lightweight implementation of Desktop Notification Spec"
85 HOMEPAGE="https://github.com/mgorny/libtinynotify/"
86 SRC_URI="mirror://github/mgorny/${PN}/${P}.tar.bz2"
87
88 LICENSE="BSD"
89 SLOT="0"
90 KEYWORDS="~amd64 ~x86"
91 IUSE="debug doc static-libs"
92
93 RDEPEND="sys-apps/dbus"
94 DEPEND="${RDEPEND}
95 dev-util/pkgconfig
96 doc? ( >=dev-util/gtk-doc-1.18 )"
97
98 DOCS=( README )
99
100 src_configure() {
101 myeconfargs=(
102 $(use_enable debug)
103 $(use_enable doc gtk-doc)
104 )
105
106 autotools-utils_src_configure
107 }