Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-kernel/aufs-sources: ChangeLog aufs-sources-3.15.5.ebuild aufs-sources-3.14.12.ebuild aufs-sources-3.10.48.ebuild
Date: Thu, 10 Jul 2014 06:06:14
Message-Id: 20140710060610.5C3C42004E@flycatcher.gentoo.org
1 jlec 14/07/10 06:06:10
2
3 Modified: ChangeLog
4 Added: aufs-sources-3.15.5.ebuild
5 aufs-sources-3.14.12.ebuild
6 aufs-sources-3.10.48.ebuild
7 Log:
8 sys-kernel/aufs-sources: Bump to latest aufs3, genpatches and linux release
9
10 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
11
12 Revision Changes Path
13 1.134 sys-kernel/aufs-sources/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/ChangeLog?rev=1.134&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/ChangeLog?rev=1.134&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/ChangeLog?r1=1.133&r2=1.134
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v
22 retrieving revision 1.133
23 retrieving revision 1.134
24 diff -u -r1.133 -r1.134
25 --- ChangeLog 6 Jul 2014 08:19:35 -0000 1.133
26 +++ ChangeLog 10 Jul 2014 06:06:09 -0000 1.134
27 @@ -1,6 +1,14 @@
28 # ChangeLog for sys-kernel/aufs-sources
29 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v 1.133 2014/07/06 08:19:35 jlec Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v 1.134 2014/07/10 06:06:09 jlec Exp $
32 +
33 +*aufs-sources-3.15.5 (10 Jul 2014)
34 +*aufs-sources-3.14.12 (10 Jul 2014)
35 +*aufs-sources-3.10.48 (10 Jul 2014)
36 +
37 + 10 Jul 2014; Justin Lecher <jlec@g.o> +aufs-sources-3.10.48.ebuild,
38 + +aufs-sources-3.14.12.ebuild, +aufs-sources-3.15.5.ebuild:
39 + Bump to latest aufs3, genpatches and linux release
40
41 *aufs-sources-3.12.24 (06 Jul 2014)
42
43
44
45
46 1.1 sys-kernel/aufs-sources/aufs-sources-3.15.5.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.15.5.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.15.5.ebuild?rev=1.1&content-type=text/plain
50
51 Index: aufs-sources-3.15.5.ebuild
52 ===================================================================
53 # Copyright 1999-2014 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.15.5.ebuild,v 1.1 2014/07/10 06:06:10 jlec Exp $
56
57 EAPI=5
58
59 ETYPE="sources"
60 K_WANT_GENPATCHES="base extras experimental"
61 K_GENPATCHES_VER="7"
62 K_DEBLOB_AVAILABLE="1"
63 UNIPATCH_STRICTORDER=1
64 inherit kernel-2 eutils readme.gentoo
65 detect_version
66 detect_arch
67
68 AUFS_VERSION=3.15_p20140707
69 AUFS_TARBALL="aufs-sources-${AUFS_VERSION}.tar.xz"
70 # git archive -v --remote=git://git.code.sf.net/p/aufs/aufs3-standalone aufs${AUFS_VERSION/_p*} > aufs-sources-${AUFS_VERSION}.tar
71 AUFS_URI="http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL}"
72
73 KEYWORDS="~amd64 ~x86"
74 HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/"
75 IUSE="deblob experimental module vanilla"
76
77 DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree and aufs3 support"
78 SRC_URI="
79 ${KERNEL_URI}
80 ${ARCH_URI}
81 ${AUFS_URI}
82 !vanilla? ( ${GENPATCHES_URI} )
83 "
84
85 PDEPEND=">=sys-fs/aufs-util-3.9"
86
87 README_GENTOO_SUFFIX="-r1"
88
89 src_unpack() {
90 if use vanilla; then
91 unset UNIPATCH_LIST_GENPATCHES UNIPATCH_LIST_DEFAULT
92 ewarn "You are using USE=vanilla"
93 ewarn "This will drop all support from the gentoo kernel security team"
94 fi
95
96 UNIPATCH_LIST="
97 "${WORKDIR}"/aufs3-kbuild.patch
98 "${WORKDIR}"/aufs3-base.patch
99 "${WORKDIR}"/aufs3-mmap.patch"
100
101 use module && UNIPATCH_LIST+=" "${WORKDIR}"/aufs3-standalone.patch"
102
103 unpack ${AUFS_TARBALL}
104
105 einfo "Using aufs3 version: ${AUFS_VERSION}"
106
107 kernel-2_src_unpack
108 }
109
110 src_prepare() {
111 if ! use module; then
112 sed -e 's:tristate:bool:g' -i "${WORKDIR}"/fs/aufs/Kconfig || die
113 fi
114 cp -f "${WORKDIR}"/include/uapi/linux/aufs_type.h include/uapi/linux/aufs_type.h || die
115 cp -rf "${WORKDIR}"/{Documentation,fs} . || die
116 }
117
118 src_install() {
119 kernel-2_src_install
120 dodoc "${WORKDIR}"/{aufs3-loopback,vfs-ino,tmpfs-idr}.patch
121 docompress -x /usr/share/doc/${PF}/{aufs3-loopback,vfs-ino,tmpfs-idr}.patch
122 readme.gentoo_create_doc
123 }
124 pkg_postinst() {
125 kernel-2_pkg_postinst
126 einfo "For more info on this patchset, and how to report problems, see:"
127 einfo "${HOMEPAGE}"
128 has_version sys-fs/aufs-util || \
129 elog "In order to use aufs FS you need to install sys-fs/aufs-util"
130
131 readme.gentoo_pkg_postinst
132 }
133
134 pkg_postrm() {
135 kernel-2_pkg_postrm
136 }
137
138
139
140 1.1 sys-kernel/aufs-sources/aufs-sources-3.14.12.ebuild
141
142 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.14.12.ebuild?rev=1.1&view=markup
143 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.14.12.ebuild?rev=1.1&content-type=text/plain
144
145 Index: aufs-sources-3.14.12.ebuild
146 ===================================================================
147 # Copyright 1999-2014 Gentoo Foundation
148 # Distributed under the terms of the GNU General Public License v2
149 # $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.14.12.ebuild,v 1.1 2014/07/10 06:06:10 jlec Exp $
150
151 EAPI=5
152
153 ETYPE="sources"
154 K_WANT_GENPATCHES="base extras experimental"
155 K_GENPATCHES_VER="16"
156 K_DEBLOB_AVAILABLE="1"
157 UNIPATCH_STRICTORDER=1
158 inherit kernel-2 eutils readme.gentoo
159 detect_version
160 detect_arch
161
162 AUFS_VERSION=3.14_p20140707
163 AUFS_TARBALL="aufs-sources-${AUFS_VERSION}.tar.xz"
164 # git archive -v --remote=git://git.code.sf.net/p/aufs/aufs3-standalone aufs${AUFS_VERSION/_p*} > aufs-sources-${AUFS_VERSION}.tar
165 AUFS_URI="http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL}"
166
167 KEYWORDS="~amd64 ~x86"
168 HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/"
169 IUSE="deblob experimental module vanilla"
170
171 DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree and aufs3 support"
172 SRC_URI="
173 ${KERNEL_URI}
174 ${ARCH_URI}
175 ${AUFS_URI}
176 !vanilla? ( ${GENPATCHES_URI} )
177 "
178
179 PDEPEND=">=sys-fs/aufs-util-3.9"
180
181 README_GENTOO_SUFFIX="-r1"
182
183 src_unpack() {
184 if use vanilla; then
185 unset UNIPATCH_LIST_GENPATCHES UNIPATCH_LIST_DEFAULT
186 ewarn "You are using USE=vanilla"
187 ewarn "This will drop all support from the gentoo kernel security team"
188 fi
189
190 UNIPATCH_LIST="
191 "${WORKDIR}"/aufs3-kbuild.patch
192 "${WORKDIR}"/aufs3-base.patch
193 "${WORKDIR}"/aufs3-mmap.patch"
194
195 use module && UNIPATCH_LIST+=" "${WORKDIR}"/aufs3-standalone.patch"
196
197 unpack ${AUFS_TARBALL}
198
199 einfo "Using aufs3 version: ${AUFS_VERSION}"
200
201 kernel-2_src_unpack
202 }
203
204 src_prepare() {
205 if ! use module; then
206 sed -e 's:tristate:bool:g' -i "${WORKDIR}"/fs/aufs/Kconfig || die
207 fi
208 cp -f "${WORKDIR}"/include/uapi/linux/aufs_type.h include/uapi/linux/aufs_type.h || die
209 cp -rf "${WORKDIR}"/{Documentation,fs} . || die
210 }
211
212 src_install() {
213 kernel-2_src_install
214 dodoc "${WORKDIR}"/{aufs3-loopback,vfs-ino,tmpfs-idr}.patch
215 docompress -x /usr/share/doc/${PF}/{aufs3-loopback,vfs-ino,tmpfs-idr}.patch
216 readme.gentoo_create_doc
217 }
218 pkg_postinst() {
219 kernel-2_pkg_postinst
220 einfo "For more info on this patchset, and how to report problems, see:"
221 einfo "${HOMEPAGE}"
222 has_version sys-fs/aufs-util || \
223 elog "In order to use aufs FS you need to install sys-fs/aufs-util"
224
225 readme.gentoo_pkg_postinst
226 }
227
228 pkg_postrm() {
229 kernel-2_pkg_postrm
230 }
231
232
233
234 1.1 sys-kernel/aufs-sources/aufs-sources-3.10.48.ebuild
235
236 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.10.48.ebuild?rev=1.1&view=markup
237 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.10.48.ebuild?rev=1.1&content-type=text/plain
238
239 Index: aufs-sources-3.10.48.ebuild
240 ===================================================================
241 # Copyright 1999-2014 Gentoo Foundation
242 # Distributed under the terms of the GNU General Public License v2
243 # $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.10.48.ebuild,v 1.1 2014/07/10 06:06:10 jlec Exp $
244
245 EAPI=5
246
247 ETYPE="sources"
248 K_WANT_GENPATCHES="base extras experimental"
249 K_GENPATCHES_VER="56"
250 K_DEBLOB_AVAILABLE="1"
251 UNIPATCH_STRICTORDER=1
252 inherit kernel-2 eutils readme.gentoo
253 detect_version
254 detect_arch
255
256 AUFS_VERSION=3.10.x_p20140707
257 AUFS_TARBALL="aufs-sources-${AUFS_VERSION}.tar.xz"
258 # git archive -v --remote=git://git.code.sf.net/p/aufs/aufs3-standalone aufs${AUFS_VERSION/_p*} > aufs-sources-${AUFS_VERSION}.tar
259 AUFS_URI="http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL}"
260
261 KEYWORDS="~amd64 ~x86"
262 HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/"
263 IUSE="deblob experimental module vanilla"
264
265 DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree and aufs3 support"
266 SRC_URI="
267 ${KERNEL_URI}
268 ${ARCH_URI}
269 ${AUFS_URI}
270 !vanilla? ( ${GENPATCHES_URI} )
271 "
272
273 PDEPEND=">=sys-fs/aufs-util-3.9"
274
275 README_GENTOO_SUFFIX="-r1"
276
277 src_unpack() {
278 if use vanilla; then
279 unset UNIPATCH_LIST_GENPATCHES UNIPATCH_LIST_DEFAULT
280 ewarn "You are using USE=vanilla"
281 ewarn "This will drop all support from the gentoo kernel security team"
282 fi
283
284 UNIPATCH_LIST="
285 "${WORKDIR}"/aufs3-kbuild.patch
286 "${WORKDIR}"/aufs3-base.patch
287 "${WORKDIR}"/aufs3-mmap.patch"
288
289 use module && UNIPATCH_LIST+=" "${WORKDIR}"/aufs3-standalone.patch"
290
291 unpack ${AUFS_TARBALL}
292
293 einfo "Using aufs3 version: ${AUFS_VERSION}"
294
295 kernel-2_src_unpack
296 }
297
298 src_prepare() {
299 if ! use module; then
300 sed -e 's:tristate:bool:g' -i "${WORKDIR}"/fs/aufs/Kconfig || die
301 fi
302 cp -f "${WORKDIR}"/include/uapi/linux/aufs_type.h include/uapi/linux/aufs_type.h || die
303 cp -rf "${WORKDIR}"/{Documentation,fs} . || die
304 }
305
306 src_install() {
307 kernel-2_src_install
308 dodoc "${WORKDIR}"/{aufs3-loopback,vfs-ino,tmpfs-idr}.patch
309 docompress -x /usr/share/doc/${PF}/{aufs3-loopback,vfs-ino,tmpfs-idr}.patch
310 readme.gentoo_create_doc
311 }
312
313 pkg_postinst() {
314 kernel-2_pkg_postinst
315 einfo "For more info on this patchset, and how to report problems, see:"
316 einfo "${HOMEPAGE}"
317 has_version sys-fs/aufs-util || \
318 elog "In order to use aufs FS you need to install sys-fs/aufs-util"
319
320 readme.gentoo_pkg_postinst
321 }
322
323 pkg_postrm() {
324 kernel-2_pkg_postrm
325 }