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.14.14.ebuild aufs-sources-3.15.7.ebuild aufs-sources-3.10.50.ebuild
Date: Wed, 30 Jul 2014 07:40:09
Message-Id: 20140730074002.1E1DA2004E@flycatcher.gentoo.org
1 jlec 14/07/30 07:40:01
2
3 Modified: ChangeLog
4 Added: aufs-sources-3.14.14.ebuild
5 aufs-sources-3.15.7.ebuild
6 aufs-sources-3.10.50.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.137 sys-kernel/aufs-sources/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/ChangeLog?rev=1.137&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/ChangeLog?rev=1.137&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/ChangeLog?r1=1.136&r2=1.137
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v
22 retrieving revision 1.136
23 retrieving revision 1.137
24 diff -u -r1.136 -r1.137
25 --- ChangeLog 25 Jul 2014 06:35:08 -0000 1.136
26 +++ ChangeLog 30 Jul 2014 07:40:00 -0000 1.137
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.136 2014/07/25 06:35:08 jlec Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v 1.137 2014/07/30 07:40:00 jlec Exp $
32 +
33 +*aufs-sources-3.15.7 (30 Jul 2014)
34 +*aufs-sources-3.14.14 (30 Jul 2014)
35 +*aufs-sources-3.10.50 (30 Jul 2014)
36 +
37 + 30 Jul 2014; Justin Lecher <jlec@g.o> +aufs-sources-3.10.50.ebuild,
38 + +aufs-sources-3.14.14.ebuild, +aufs-sources-3.15.7.ebuild:
39 + Bump to latest aufs3, genpatches and linux release
40
41 *aufs-sources-3.12.25 (25 Jul 2014)
42
43
44
45
46 1.1 sys-kernel/aufs-sources/aufs-sources-3.14.14.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.14.14.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.14.14.ebuild?rev=1.1&content-type=text/plain
50
51 Index: aufs-sources-3.14.14.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.14.14.ebuild,v 1.1 2014/07/30 07:40:00 jlec Exp $
56
57 EAPI=5
58
59 ETYPE="sources"
60 K_WANT_GENPATCHES="base extras experimental"
61 K_GENPATCHES_VER="18"
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.14_p20140728
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
125 pkg_postinst() {
126 kernel-2_pkg_postinst
127 einfo "For more info on this patchset, and how to report problems, see:"
128 einfo "${HOMEPAGE}"
129 has_version sys-fs/aufs-util || \
130 elog "In order to use aufs FS you need to install sys-fs/aufs-util"
131
132 readme.gentoo_pkg_postinst
133 }
134
135 pkg_postrm() {
136 kernel-2_pkg_postrm
137 }
138
139
140
141 1.1 sys-kernel/aufs-sources/aufs-sources-3.15.7.ebuild
142
143 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.15.7.ebuild?rev=1.1&view=markup
144 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.15.7.ebuild?rev=1.1&content-type=text/plain
145
146 Index: aufs-sources-3.15.7.ebuild
147 ===================================================================
148 # Copyright 1999-2014 Gentoo Foundation
149 # Distributed under the terms of the GNU General Public License v2
150 # $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.15.7.ebuild,v 1.1 2014/07/30 07:40:00 jlec Exp $
151
152 EAPI=5
153
154 ETYPE="sources"
155 K_WANT_GENPATCHES="base extras experimental"
156 K_GENPATCHES_VER="9"
157 K_DEBLOB_AVAILABLE="1"
158 UNIPATCH_STRICTORDER=1
159 inherit kernel-2 eutils readme.gentoo
160 detect_version
161 detect_arch
162
163 AUFS_VERSION=3.15_p20140728
164 AUFS_TARBALL="aufs-sources-${AUFS_VERSION}.tar.xz"
165 # git archive -v --remote=git://git.code.sf.net/p/aufs/aufs3-standalone aufs${AUFS_VERSION/_p*} > aufs-sources-${AUFS_VERSION}.tar
166 AUFS_URI="http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL}"
167
168 KEYWORDS="~amd64 ~x86"
169 HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/"
170 IUSE="deblob experimental module vanilla"
171
172 DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree and aufs3 support"
173 SRC_URI="
174 ${KERNEL_URI}
175 ${ARCH_URI}
176 ${AUFS_URI}
177 !vanilla? ( ${GENPATCHES_URI} )
178 "
179
180 PDEPEND=">=sys-fs/aufs-util-3.9"
181
182 README_GENTOO_SUFFIX="-r1"
183
184 src_unpack() {
185 if use vanilla; then
186 unset UNIPATCH_LIST_GENPATCHES UNIPATCH_LIST_DEFAULT
187 ewarn "You are using USE=vanilla"
188 ewarn "This will drop all support from the gentoo kernel security team"
189 fi
190
191 UNIPATCH_LIST="
192 "${WORKDIR}"/aufs3-kbuild.patch
193 "${WORKDIR}"/aufs3-base.patch
194 "${WORKDIR}"/aufs3-mmap.patch"
195
196 use module && UNIPATCH_LIST+=" "${WORKDIR}"/aufs3-standalone.patch"
197
198 unpack ${AUFS_TARBALL}
199
200 einfo "Using aufs3 version: ${AUFS_VERSION}"
201
202 kernel-2_src_unpack
203 }
204
205 src_prepare() {
206 if ! use module; then
207 sed -e 's:tristate:bool:g' -i "${WORKDIR}"/fs/aufs/Kconfig || die
208 fi
209 cp -f "${WORKDIR}"/include/uapi/linux/aufs_type.h include/uapi/linux/aufs_type.h || die
210 cp -rf "${WORKDIR}"/{Documentation,fs} . || die
211 }
212
213 src_install() {
214 kernel-2_src_install
215 dodoc "${WORKDIR}"/{aufs3-loopback,vfs-ino,tmpfs-idr}.patch
216 docompress -x /usr/share/doc/${PF}/{aufs3-loopback,vfs-ino,tmpfs-idr}.patch
217 readme.gentoo_create_doc
218 }
219
220 pkg_postinst() {
221 kernel-2_pkg_postinst
222 einfo "For more info on this patchset, and how to report problems, see:"
223 einfo "${HOMEPAGE}"
224 has_version sys-fs/aufs-util || \
225 elog "In order to use aufs FS you need to install sys-fs/aufs-util"
226
227 readme.gentoo_pkg_postinst
228 }
229
230 pkg_postrm() {
231 kernel-2_pkg_postrm
232 }
233
234
235
236 1.1 sys-kernel/aufs-sources/aufs-sources-3.10.50.ebuild
237
238 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.10.50.ebuild?rev=1.1&view=markup
239 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.10.50.ebuild?rev=1.1&content-type=text/plain
240
241 Index: aufs-sources-3.10.50.ebuild
242 ===================================================================
243 # Copyright 1999-2014 Gentoo Foundation
244 # Distributed under the terms of the GNU General Public License v2
245 # $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.10.50.ebuild,v 1.1 2014/07/30 07:40:00 jlec Exp $
246
247 EAPI=5
248
249 ETYPE="sources"
250 K_WANT_GENPATCHES="base extras experimental"
251 K_GENPATCHES_VER="58"
252 K_DEBLOB_AVAILABLE="1"
253 UNIPATCH_STRICTORDER=1
254 inherit kernel-2 eutils readme.gentoo
255 detect_version
256 detect_arch
257
258 AUFS_VERSION=3.10.x_p20140728
259 AUFS_TARBALL="aufs-sources-${AUFS_VERSION}.tar.xz"
260 # git archive -v --remote=git://git.code.sf.net/p/aufs/aufs3-standalone aufs${AUFS_VERSION/_p*} > aufs-sources-${AUFS_VERSION}.tar
261 AUFS_URI="http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL}"
262
263 KEYWORDS="~amd64 ~x86"
264 HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/"
265 IUSE="deblob experimental module vanilla"
266
267 DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree and aufs3 support"
268 SRC_URI="
269 ${KERNEL_URI}
270 ${ARCH_URI}
271 ${AUFS_URI}
272 !vanilla? ( ${GENPATCHES_URI} )
273 "
274
275 PDEPEND=">=sys-fs/aufs-util-3.9"
276
277 README_GENTOO_SUFFIX="-r1"
278
279 src_unpack() {
280 if use vanilla; then
281 unset UNIPATCH_LIST_GENPATCHES UNIPATCH_LIST_DEFAULT
282 ewarn "You are using USE=vanilla"
283 ewarn "This will drop all support from the gentoo kernel security team"
284 fi
285
286 UNIPATCH_LIST="
287 "${WORKDIR}"/aufs3-kbuild.patch
288 "${WORKDIR}"/aufs3-base.patch
289 "${WORKDIR}"/aufs3-mmap.patch"
290
291 use module && UNIPATCH_LIST+=" "${WORKDIR}"/aufs3-standalone.patch"
292
293 unpack ${AUFS_TARBALL}
294
295 einfo "Using aufs3 version: ${AUFS_VERSION}"
296
297 kernel-2_src_unpack
298 }
299
300 src_prepare() {
301 if ! use module; then
302 sed -e 's:tristate:bool:g' -i "${WORKDIR}"/fs/aufs/Kconfig || die
303 fi
304 cp -f "${WORKDIR}"/include/uapi/linux/aufs_type.h include/uapi/linux/aufs_type.h || die
305 cp -rf "${WORKDIR}"/{Documentation,fs} . || die
306 }
307
308 src_install() {
309 kernel-2_src_install
310 dodoc "${WORKDIR}"/{aufs3-loopback,vfs-ino,tmpfs-idr}.patch
311 docompress -x /usr/share/doc/${PF}/{aufs3-loopback,vfs-ino,tmpfs-idr}.patch
312 readme.gentoo_create_doc
313 }
314
315 pkg_postinst() {
316 kernel-2_pkg_postinst
317 einfo "For more info on this patchset, and how to report problems, see:"
318 einfo "${HOMEPAGE}"
319 has_version sys-fs/aufs-util || \
320 elog "In order to use aufs FS you need to install sys-fs/aufs-util"
321
322 readme.gentoo_pkg_postinst
323 }
324
325 pkg_postrm() {
326 kernel-2_pkg_postrm
327 }