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-misc/sw-notify-send: ChangeLog sw-notify-send-1.2.1.ebuild sw-notify-send-1.2.ebuild
Date: Tue, 03 Jan 2012 06:53:36
Message-Id: 20120103065327.A525C2004C@flycatcher.gentoo.org
1 mgorny 12/01/03 06:53:27
2
3 Modified: ChangeLog
4 Added: sw-notify-send-1.2.1.ebuild
5 Removed: sw-notify-send-1.2.ebuild
6 Log:
7 Version bump. The new version fixes timeout support.
8
9 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.6 x11-misc/sw-notify-send/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sw-notify-send/ChangeLog?rev=1.6&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sw-notify-send/ChangeLog?rev=1.6&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sw-notify-send/ChangeLog?r1=1.5&r2=1.6
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-misc/sw-notify-send/ChangeLog,v
21 retrieving revision 1.5
22 retrieving revision 1.6
23 diff -u -r1.5 -r1.6
24 --- ChangeLog 2 Jan 2012 11:17:42 -0000 1.5
25 +++ ChangeLog 3 Jan 2012 06:53:27 -0000 1.6
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-misc/sw-notify-send
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/sw-notify-send/ChangeLog,v 1.5 2012/01/02 11:17:42 mgorny Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/sw-notify-send/ChangeLog,v 1.6 2012/01/03 06:53:27 mgorny Exp $
31 +
32 +*sw-notify-send-1.2.1 (03 Jan 2012)
33 +
34 + 03 Jan 2012; Michał Górny <mgorny@g.o> -sw-notify-send-1.2.ebuild,
35 + +sw-notify-send-1.2.1.ebuild:
36 + Version bump. The new version fixes timeout support.
37
38 *sw-notify-send-1.2 (02 Jan 2012)
39
40
41
42
43 1.1 x11-misc/sw-notify-send/sw-notify-send-1.2.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sw-notify-send/sw-notify-send-1.2.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sw-notify-send/sw-notify-send-1.2.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: sw-notify-send-1.2.1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-misc/sw-notify-send/sw-notify-send-1.2.1.ebuild,v 1.1 2012/01/03 06:53:27 mgorny Exp $
53
54 EAPI=4
55
56 inherit autotools-utils
57
58 MY_PN=tinynotify-send
59 MY_P=${MY_PN}-${PV}
60
61 DESCRIPTION="A system-wide variant of tinynotify-send"
62 HOMEPAGE="https://github.com/mgorny/tinynotify-send/"
63 SRC_URI="mirror://github/mgorny/${MY_PN}/${MY_P}.tar.bz2"
64
65 LICENSE="BSD"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 RDEPEND="x11-libs/libtinynotify
71 ~x11-libs/libtinynotify-cli-${PV}
72 x11-libs/libtinynotify-systemwide"
73 DEPEND="${RDEPEND}
74 dev-util/pkgconfig"
75
76 DOCS=( README )
77 S=${WORKDIR}/${MY_P}
78
79 src_configure() {
80 myeconfargs=(
81 --disable-library
82 --disable-regular
83 --enable-system-wide
84 )
85
86 autotools-utils_src_configure
87 }