Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libisds: metadata.xml libisds-9999.ebuild libisds-0.3.1.ebuild ChangeLog
Date: Tue, 29 Jun 2010 14:21:11
Message-Id: 20100629142109.239632C621@corvid.gentoo.org
1 scarabeus 10/06/29 14:21:08
2
3 Modified: metadata.xml libisds-9999.ebuild
4 libisds-0.3.1.ebuild ChangeLog
5 Log:
6 Update to install static libs only when required. Update deps. Use upstream tarball.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 net-libs/libisds/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libisds/metadata.xml?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libisds/metadata.xml?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libisds/metadata.xml?r1=1.1&r2=1.2
15
16 Index: metadata.xml
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libisds/metadata.xml,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- metadata.xml 29 Jun 2010 14:03:45 -0000 1.1
23 +++ metadata.xml 29 Jun 2010 14:21:08 -0000 1.2
24 @@ -1,6 +1,11 @@
25 <?xml version="1.0" encoding="UTF-8"?>
26 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
27 <pkgmetadata>
28 +<longdescription>
29 + A library for accessing ISDS (Informační systém datových schránek
30 + / Data Box Information System) SOAP services as defined in Czech ISDS Act
31 + (300/2008 Coll.) and implied documents.
32 +</longdescription>
33 <maintainer>
34 <email>scarabeus@g.o</email>
35 <name>Tomáš Chvátal</name>
36
37
38
39 1.2 net-libs/libisds/libisds-9999.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libisds/libisds-9999.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libisds/libisds-9999.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libisds/libisds-9999.ebuild?r1=1.1&r2=1.2
44
45 Index: libisds-9999.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/net-libs/libisds/libisds-9999.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- libisds-9999.ebuild 29 Jun 2010 14:03:45 -0000 1.1
52 +++ libisds-9999.ebuild 29 Jun 2010 14:21:08 -0000 1.2
53 @@ -1,46 +1,54 @@
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libisds/libisds-9999.ebuild,v 1.1 2010/06/29 14:03:45 scarabeus Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libisds/libisds-9999.ebuild,v 1.2 2010/06/29 14:21:08 scarabeus Exp $
58
59 EAPI=3
60
61 -[[ ${PV} = 9999* ]] && GIT="git"
62 +[[ ${PV} = 9999* ]] && GIT="git autotools"
63 EGIT_REPO_URI="git://repo.or.cz/${PN}.git"
64 -inherit base autotools ${GIT}
65 +inherit base ${GIT}
66
67 -DESCRIPTION="Client library to access ISDS Soap service"
68 -HOMEPAGE="http://www.abclinuxu.cz/datove-schranky/libisds"
69 +DESCRIPTION="Client library for accessing ISDS Soap services"
70 +HOMEPAGE="http://xpisar.wz.cz/libisds/"
71 if [[ ${PV} = 9999* ]]; then
72 SRC_URI=""
73 KEYWORDS=""
74 else
75 - SRC_URI="http://dev.gentooexperimental.org/~scarabeus/${P}.tar.bz2"
76 + SRC_URI="http://xpisar.wz.cz/libisds/dist/${P}.tar.bz2"
77 KEYWORDS="~amd64 ~x86"
78 fi
79 LICENSE="LGPL-2"
80
81 SLOT="0"
82 -IUSE="debug test"
83 +IUSE="debug nls static-libs test"
84
85 -RDEPEND="
86 +COMMON_DEPEND="
87 + app-crypt/gpgme
88 dev-libs/expat
89 dev-libs/libgcrypt
90 dev-libs/libxml2
91 net-misc/curl[ssl]
92 "
93 -DEPEND="${RDEPEND}
94 +DEPEND="${COMMON_DEPEND}
95 dev-util/pkgconfig
96 - sys-devel/gettext"
97 + nls? ( sys-devel/gettext )
98 +"
99 +RDEPEND="${COMMON_DEPEND}
100 + >=app-crypt/gnupg-2
101 +"
102 +
103 +DOCS=( "NEWS" "README" "AUTHORS" "ChangeLog" )
104
105 src_prepare() {
106 base_src_prepare
107 - eautoreconf
108 + [[ ${PV} = 9999* ]] && eautoreconf
109 }
110
111 src_configure() {
112 econf \
113 --disable-fatalwarnings \
114 - $(use_enable test) \
115 - $(use_enable debug)
116 -
117 + $(use_enable debug) \
118 + $(use_enable nls) \
119 + $(use_enable static-libs static) \
120 + $(use_enable test)
121 }
122
123
124
125 1.2 net-libs/libisds/libisds-0.3.1.ebuild
126
127 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libisds/libisds-0.3.1.ebuild?rev=1.2&view=markup
128 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libisds/libisds-0.3.1.ebuild?rev=1.2&content-type=text/plain
129 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libisds/libisds-0.3.1.ebuild?r1=1.1&r2=1.2
130
131 Index: libisds-0.3.1.ebuild
132 ===================================================================
133 RCS file: /var/cvsroot/gentoo-x86/net-libs/libisds/libisds-0.3.1.ebuild,v
134 retrieving revision 1.1
135 retrieving revision 1.2
136 diff -u -r1.1 -r1.2
137 --- libisds-0.3.1.ebuild 29 Jun 2010 14:03:45 -0000 1.1
138 +++ libisds-0.3.1.ebuild 29 Jun 2010 14:21:08 -0000 1.2
139 @@ -1,46 +1,54 @@
140 # Copyright 1999-2010 Gentoo Foundation
141 # Distributed under the terms of the GNU General Public License v2
142 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libisds/libisds-0.3.1.ebuild,v 1.1 2010/06/29 14:03:45 scarabeus Exp $
143 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libisds/libisds-0.3.1.ebuild,v 1.2 2010/06/29 14:21:08 scarabeus Exp $
144
145 EAPI=3
146
147 -[[ ${PV} = 9999* ]] && GIT="git"
148 +[[ ${PV} = 9999* ]] && GIT="git autotools"
149 EGIT_REPO_URI="git://repo.or.cz/${PN}.git"
150 -inherit base autotools ${GIT}
151 +inherit base ${GIT}
152
153 -DESCRIPTION="Client library to access ISDS Soap service"
154 -HOMEPAGE="http://www.abclinuxu.cz/datove-schranky/libisds"
155 +DESCRIPTION="Client library for accessing ISDS Soap services"
156 +HOMEPAGE="http://xpisar.wz.cz/libisds/"
157 if [[ ${PV} = 9999* ]]; then
158 SRC_URI=""
159 KEYWORDS=""
160 else
161 - SRC_URI="http://dev.gentooexperimental.org/~scarabeus/${P}.tar.bz2"
162 + SRC_URI="http://xpisar.wz.cz/libisds/dist/${P}.tar.bz2"
163 KEYWORDS="~amd64 ~x86"
164 fi
165 LICENSE="LGPL-2"
166
167 SLOT="0"
168 -IUSE="debug test"
169 +IUSE="debug nls static-libs test"
170
171 -RDEPEND="
172 +COMMON_DEPEND="
173 + app-crypt/gpgme
174 dev-libs/expat
175 dev-libs/libgcrypt
176 dev-libs/libxml2
177 net-misc/curl[ssl]
178 "
179 -DEPEND="${RDEPEND}
180 +DEPEND="${COMMON_DEPEND}
181 dev-util/pkgconfig
182 - sys-devel/gettext"
183 + nls? ( sys-devel/gettext )
184 +"
185 +RDEPEND="${COMMON_DEPEND}
186 + >=app-crypt/gnupg-2
187 +"
188 +
189 +DOCS=( "NEWS" "README" "AUTHORS" "ChangeLog" )
190
191 src_prepare() {
192 base_src_prepare
193 - eautoreconf
194 + [[ ${PV} = 9999* ]] && eautoreconf
195 }
196
197 src_configure() {
198 econf \
199 --disable-fatalwarnings \
200 - $(use_enable test) \
201 - $(use_enable debug)
202 -
203 + $(use_enable debug) \
204 + $(use_enable nls) \
205 + $(use_enable static-libs static) \
206 + $(use_enable test)
207 }
208
209
210
211 1.2 net-libs/libisds/ChangeLog
212
213 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libisds/ChangeLog?rev=1.2&view=markup
214 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libisds/ChangeLog?rev=1.2&content-type=text/plain
215 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libisds/ChangeLog?r1=1.1&r2=1.2
216
217 Index: ChangeLog
218 ===================================================================
219 RCS file: /var/cvsroot/gentoo-x86/net-libs/libisds/ChangeLog,v
220 retrieving revision 1.1
221 retrieving revision 1.2
222 diff -u -r1.1 -r1.2
223 --- ChangeLog 29 Jun 2010 14:03:45 -0000 1.1
224 +++ ChangeLog 29 Jun 2010 14:21:08 -0000 1.2
225 @@ -1,11 +1,16 @@
226 # ChangeLog for net-libs/libisds
227 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
228 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libisds/ChangeLog,v 1.1 2010/06/29 14:03:45 scarabeus Exp $
229 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libisds/ChangeLog,v 1.2 2010/06/29 14:21:08 scarabeus Exp $
230 +
231 + 29 Jun 2010; Tomáš Chvátal <scarabeus@g.o> libisds-0.3.1.ebuild,
232 + libisds-9999.ebuild, metadata.xml:
233 + Update to install static libs only when required. Update deps. Use
234 + upstream tarball.
235
236 *libisds-9999 (29 Jun 2010)
237 *libisds-0.3.1 (29 Jun 2010)
238
239 29 Jun 2010; Tomáš Chvátal <scarabeus@g.o>
240 +libisds-0.3.1.ebuild, +libisds-9999.ebuild, +metadata.xml:
241 - Add client interface to czech "datove stranky" soap service.
242 + Add client interface to czech "datove schranky" soap service.