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: aufs-sources-3.10.28.ebuild ChangeLog aufs-sources-3.12.9.ebuild aufs-sources-3.11.9.ebuild aufs-sources-3.11.8.ebuild
Date: Sun, 26 Jan 2014 08:00:16
Message-Id: 20140126080011.D2A1D2004C@flycatcher.gentoo.org
1 jlec 14/01/26 08:00:11
2
3 Modified: ChangeLog
4 Added: aufs-sources-3.10.28.ebuild
5 aufs-sources-3.12.9.ebuild
6 Removed: aufs-sources-3.11.9.ebuild
7 aufs-sources-3.11.8.ebuild
8 Log:
9 sys-kernel/aufs-sources: Bump to latest aufs3, genpatches and linux release
10
11 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
12
13 Revision Changes Path
14 1.88 sys-kernel/aufs-sources/ChangeLog
15
16 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/ChangeLog?rev=1.88&view=markup
17 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/ChangeLog?rev=1.88&content-type=text/plain
18 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/ChangeLog?r1=1.87&r2=1.88
19
20 Index: ChangeLog
21 ===================================================================
22 RCS file: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v
23 retrieving revision 1.87
24 retrieving revision 1.88
25 diff -u -r1.87 -r1.88
26 --- ChangeLog 20 Jan 2014 16:35:29 -0000 1.87
27 +++ ChangeLog 26 Jan 2014 08:00:11 -0000 1.88
28 @@ -1,6 +1,14 @@
29 # ChangeLog for sys-kernel/aufs-sources
30 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v 1.87 2014/01/20 16:35:29 jlec Exp $
32 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v 1.88 2014/01/26 08:00:11 jlec Exp $
33 +
34 +*aufs-sources-3.12.9 (26 Jan 2014)
35 +*aufs-sources-3.10.28 (26 Jan 2014)
36 +
37 + 26 Jan 2014; Justin Lecher <jlec@g.o> +aufs-sources-3.10.28.ebuild,
38 + -aufs-sources-3.11.8.ebuild, -aufs-sources-3.11.9.ebuild,
39 + +aufs-sources-3.12.9.ebuild:
40 + Bump to latest aufs3, genpatches and linux release
41
42 20 Jan 2014; Justin Lecher <jlec@g.o> aufs-sources-3.12.8.ebuild:
43 Fix patching, #498440
44
45
46
47 1.1 sys-kernel/aufs-sources/aufs-sources-3.10.28.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.10.28.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.10.28.ebuild?rev=1.1&content-type=text/plain
51
52 Index: aufs-sources-3.10.28.ebuild
53 ===================================================================
54 # Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.10.28.ebuild,v 1.1 2014/01/26 08:00:11 jlec Exp $
57
58 EAPI=5
59
60 ETYPE="sources"
61 K_WANT_GENPATCHES="base extras experimental"
62 K_GENPATCHES_VER="35"
63 K_DEBLOB_AVAILABLE="1"
64 UNIPATCH_STRICTORDER=1
65 inherit kernel-2 eutils
66 detect_version
67 detect_arch
68
69 AUFS_VERSION=3.10_p20140119
70 AUFS_TARBALL="aufs-sources-${AUFS_VERSION}.tar.xz"
71 # git archive -v --remote=git://git.code.sf.net/p/aufs/aufs3-standalone aufs${AUFS_VERSION/_p*} > aufs-sources-${AUFS_VERSION}.tar
72 AUFS_URI="http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL}"
73
74 KEYWORDS="~amd64 ~x86"
75 HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/"
76 IUSE="deblob experimental module vanilla"
77
78 DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree and aufs3 support"
79 SRC_URI="
80 ${KERNEL_URI}
81 ${ARCH_URI}
82 ${AUFS_URI}
83 !vanilla? ( ${GENPATCHES_URI} )
84 "
85
86 PDEPEND=">=sys-fs/aufs-util-3.9"
87
88 src_unpack() {
89 if use vanilla; then
90 unset UNIPATCH_LIST_GENPATCHES UNIPATCH_LIST_DEFAULT
91 ewarn "You are using USE=vanilla"
92 ewarn "This will drop all support from the gentoo kernel security team"
93 fi
94
95 UNIPATCH_LIST="
96 "${WORKDIR}"/aufs3-kbuild.patch
97 "${WORKDIR}"/aufs3-base.patch
98 "${WORKDIR}"/aufs3-mmap.patch"
99
100 use module && UNIPATCH_LIST+=" "${WORKDIR}"/aufs3-standalone.patch"
101
102 unpack ${AUFS_TARBALL}
103
104 epatch "${FILESDIR}"/${PN}-3.10.26-mmap-aufs3.patch
105
106 kernel-2_src_unpack
107 }
108
109 src_prepare() {
110 if ! use module; then
111 sed -e 's:tristate:bool:g' -i "${WORKDIR}"/fs/aufs/Kconfig || die
112 fi
113 cp -f "${WORKDIR}"/include/uapi/linux/aufs_type.h include/uapi/linux/aufs_type.h || die
114 cp -rf "${WORKDIR}"/{Documentation,fs} . || die
115 }
116
117 pkg_postinst() {
118 kernel-2_pkg_postinst
119 einfo "For more info on this patchset, and how to report problems, see:"
120 einfo "${HOMEPAGE}"
121 has_version sys-fs/aufs-util && \
122 einfo "In order to use aufs FS you need to install sys-fs/aufs-util"
123 }
124
125 pkg_postrm() {
126 kernel-2_pkg_postrm
127 }
128
129
130
131 1.1 sys-kernel/aufs-sources/aufs-sources-3.12.9.ebuild
132
133 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.12.9.ebuild?rev=1.1&view=markup
134 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.12.9.ebuild?rev=1.1&content-type=text/plain
135
136 Index: aufs-sources-3.12.9.ebuild
137 ===================================================================
138 # Copyright 1999-2014 Gentoo Foundation
139 # Distributed under the terms of the GNU General Public License v2
140 # $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.12.9.ebuild,v 1.1 2014/01/26 08:00:11 jlec Exp $
141
142 EAPI=5
143
144 ETYPE="sources"
145 K_WANT_GENPATCHES="base extras experimental"
146 K_GENPATCHES_VER="10"
147 K_DEBLOB_AVAILABLE="1"
148 UNIPATCH_STRICTORDER=1
149 inherit kernel-2 eutils
150 detect_version
151 detect_arch
152
153 AUFS_VERSION=3.12_p20140119
154 AUFS_TARBALL="aufs-sources-${AUFS_VERSION}.tar.xz"
155 # git archive -v --remote=git://git.code.sf.net/p/aufs/aufs3-standalone aufs${AUFS_VERSION/_p*} > aufs-sources-${AUFS_VERSION}.tar
156 AUFS_URI="http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL}"
157
158 KEYWORDS="~amd64 ~x86"
159 HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/"
160 IUSE="deblob experimental module vanilla"
161
162 DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree and aufs3 support"
163 SRC_URI="
164 ${KERNEL_URI}
165 ${ARCH_URI}
166 ${AUFS_URI}
167 !vanilla? ( ${GENPATCHES_URI} )
168 "
169
170 PDEPEND=">=sys-fs/aufs-util-3.9"
171
172 src_unpack() {
173 if use vanilla; then
174 unset UNIPATCH_LIST_GENPATCHES UNIPATCH_LIST_DEFAULT
175 ewarn "You are using USE=vanilla"
176 ewarn "This will drop all support from the gentoo kernel security team"
177 fi
178
179 UNIPATCH_LIST="
180 "${WORKDIR}"/aufs3-kbuild.patch
181 "${WORKDIR}"/aufs3-base.patch
182 "${WORKDIR}"/aufs3-mmap.patch"
183
184 use module && UNIPATCH_LIST+=" "${WORKDIR}"/aufs3-standalone.patch"
185
186 unpack ${AUFS_TARBALL}
187
188 epatch "${FILESDIR}"/${PN}-3.12.7-mmap-aufs3.patch
189
190 kernel-2_src_unpack
191 }
192
193 src_prepare() {
194 if ! use module; then
195 sed -e 's:tristate:bool:g' -i "${WORKDIR}"/fs/aufs/Kconfig || die
196 fi
197 cp -f "${WORKDIR}"/include/uapi/linux/aufs_type.h include/uapi/linux/aufs_type.h || die
198 cp -rf "${WORKDIR}"/{Documentation,fs} . || die
199 }
200
201 pkg_postinst() {
202 kernel-2_pkg_postinst
203 einfo "For more info on this patchset, and how to report problems, see:"
204 einfo "${HOMEPAGE}"
205 has_version sys-fs/aufs-util && \
206 einfo "In order to use aufs FS you need to install sys-fs/aufs-util"
207 }
208
209 pkg_postrm() {
210 kernel-2_pkg_postrm
211 }