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