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