Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-servers/pshs: pshs-0.2.2.ebuild pshs-9999.ebuild metadata.xml ChangeLog
Date: Mon, 01 Dec 2014 19:19:59
Message-Id: 20141201191954.32F53B4E4@oystercatcher.gentoo.org
1 mgorny 14/12/01 19:19:54
2
3 Modified: pshs-9999.ebuild metadata.xml ChangeLog
4 Added: pshs-0.2.2.ebuild
5 Log:
6 Version bump, now with QRCode printing support.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
9
10 Revision Changes Path
11 1.4 www-servers/pshs/pshs-9999.ebuild
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pshs/pshs-9999.ebuild?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pshs/pshs-9999.ebuild?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pshs/pshs-9999.ebuild?r1=1.3&r2=1.4
16
17 Index: pshs-9999.ebuild
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-servers/pshs/pshs-9999.ebuild,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- pshs-9999.ebuild 6 Jul 2014 13:23:20 -0000 1.3
24 +++ pshs-9999.ebuild 1 Dec 2014 19:19:54 -0000 1.4
25 @@ -1,6 +1,6 @@
26 # Copyright 1999-2014 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-servers/pshs/pshs-9999.ebuild,v 1.3 2014/07/06 13:23:20 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-servers/pshs/pshs-9999.ebuild,v 1.4 2014/12/01 19:19:54 mgorny Exp $
30
31 EAPI=5
32
33 @@ -20,10 +20,11 @@
34 LICENSE="BSD"
35 SLOT="0"
36 KEYWORDS="~amd64 ~x86"
37 -IUSE="+magic +netlink upnp"
38 +IUSE="+magic +netlink qrcode upnp"
39
40 RDEPEND=">=dev-libs/libevent-2:0=
41 magic? ( sys-apps/file:0= )
42 + qrcode? ( media-gfx/qrencode:0= )
43 upnp? ( net-libs/miniupnpc:0= )"
44 DEPEND="${RDEPEND}
45 netlink? ( sys-apps/iproute2
46 @@ -39,6 +40,7 @@
47 myeconfargs=(
48 $(use_enable magic libmagic)
49 $(use_enable netlink)
50 + $(use_enable qrcode qrencode)
51 $(use_enable upnp)
52 )
53
54
55
56
57 1.5 www-servers/pshs/metadata.xml
58
59 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pshs/metadata.xml?rev=1.5&view=markup
60 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pshs/metadata.xml?rev=1.5&content-type=text/plain
61 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pshs/metadata.xml?r1=1.4&r2=1.5
62
63 Index: metadata.xml
64 ===================================================================
65 RCS file: /var/cvsroot/gentoo-x86/www-servers/pshs/metadata.xml,v
66 retrieving revision 1.4
67 retrieving revision 1.5
68 diff -u -r1.4 -r1.5
69 --- metadata.xml 14 Dec 2012 15:31:09 -0000 1.4
70 +++ metadata.xml 1 Dec 2014 19:19:54 -0000 1.5
71 @@ -10,6 +10,7 @@
72 using libmagic (<pkg>sys-apps/file</pkg>)</flag>
73 <flag name='netlink'>Use libnetlink (<pkg>sys-apps/iproute2</pkg>) to
74 get network interface addresses</flag>
75 + <flag name='qrcode'>Enable generating QRCodes for server URL</flag>
76 </use>
77 <upstream>
78 <maintainer status="active">
79
80
81
82 1.8 www-servers/pshs/ChangeLog
83
84 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pshs/ChangeLog?rev=1.8&view=markup
85 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pshs/ChangeLog?rev=1.8&content-type=text/plain
86 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pshs/ChangeLog?r1=1.7&r2=1.8
87
88 Index: ChangeLog
89 ===================================================================
90 RCS file: /var/cvsroot/gentoo-x86/www-servers/pshs/ChangeLog,v
91 retrieving revision 1.7
92 retrieving revision 1.8
93 diff -u -r1.7 -r1.8
94 --- ChangeLog 6 Jul 2014 13:23:20 -0000 1.7
95 +++ ChangeLog 1 Dec 2014 19:19:54 -0000 1.8
96 @@ -1,6 +1,12 @@
97 # ChangeLog for www-servers/pshs
98 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
99 -# $Header: /var/cvsroot/gentoo-x86/www-servers/pshs/ChangeLog,v 1.7 2014/07/06 13:23:20 mgorny Exp $
100 +# $Header: /var/cvsroot/gentoo-x86/www-servers/pshs/ChangeLog,v 1.8 2014/12/01 19:19:54 mgorny Exp $
101 +
102 +*pshs-0.2.2 (01 Dec 2014)
103 +
104 + 01 Dec 2014; Michał Górny <mgorny@g.o> +pshs-0.2.2.ebuild,
105 + metadata.xml, pshs-9999.ebuild:
106 + Version bump, now with QRCode printing support.
107
108 06 Jul 2014; Michał Górny <mgorny@g.o> pshs-0.2.1.ebuild,
109 pshs-9999.ebuild:
110
111
112
113 1.1 www-servers/pshs/pshs-0.2.2.ebuild
114
115 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pshs/pshs-0.2.2.ebuild?rev=1.1&view=markup
116 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-servers/pshs/pshs-0.2.2.ebuild?rev=1.1&content-type=text/plain
117
118 Index: pshs-0.2.2.ebuild
119 ===================================================================
120 # Copyright 1999-2014 Gentoo Foundation
121 # Distributed under the terms of the GNU General Public License v2
122 # $Header: /var/cvsroot/gentoo-x86/www-servers/pshs/pshs-0.2.2.ebuild,v 1.1 2014/12/01 19:19:54 mgorny Exp $
123
124 EAPI=5
125
126 inherit autotools-utils
127
128 DESCRIPTION="Pretty small HTTP server - a command-line tool to share files"
129 HOMEPAGE="https://bitbucket.org/mgorny/pshs/"
130 SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2"
131
132 LICENSE="BSD"
133 SLOT="0"
134 KEYWORDS="~amd64 ~x86"
135 IUSE="+magic +netlink qrcode upnp"
136
137 RDEPEND=">=dev-libs/libevent-2:0=
138 magic? ( sys-apps/file:0= )
139 qrcode? ( media-gfx/qrencode:0= )
140 upnp? ( net-libs/miniupnpc:0= )"
141 DEPEND="${RDEPEND}
142 netlink? ( sys-apps/iproute2
143 >=sys-kernel/linux-headers-2.6.27 )"
144 # libnetlink is static only ATM
145
146 src_configure() {
147 myeconfargs=(
148 $(use_enable magic libmagic)
149 $(use_enable netlink)
150 $(use_enable qrcode qrencode)
151 $(use_enable upnp)
152 )
153
154 autotools-utils_src_configure
155 }