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.8.5.ebuild ChangeLog
Date: Sat, 30 Mar 2013 14:44:17
Message-Id: 20130330144414.65E012171D@flycatcher.gentoo.org
1 jlec 13/03/30 14:44:14
2
3 Modified: ChangeLog
4 Added: aufs-sources-3.8.5.ebuild
5 Log:
6 sys-kernel/aufs-sources: Bump to genpatches 3.8-8 and latest aufs
7
8 (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
9
10 Revision Changes Path
11 1.24 sys-kernel/aufs-sources/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/ChangeLog?rev=1.24&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/ChangeLog?rev=1.24&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/ChangeLog?r1=1.23&r2=1.24
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v
20 retrieving revision 1.23
21 retrieving revision 1.24
22 diff -u -r1.23 -r1.24
23 --- ChangeLog 21 Mar 2013 12:25:50 -0000 1.23
24 +++ ChangeLog 30 Mar 2013 14:44:14 -0000 1.24
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-kernel/aufs-sources
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v 1.23 2013/03/21 12:25:50 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/ChangeLog,v 1.24 2013/03/30 14:44:14 jlec Exp $
30 +
31 +*aufs-sources-3.8.5 (30 Mar 2013)
32 +
33 + 30 Mar 2013; Justin Lecher <jlec@g.o> +aufs-sources-3.8.5.ebuild:
34 + Bump to genpatches 3.8-8 and latest aufs
35
36 *aufs-sources-3.8.4 (21 Mar 2013)
37
38
39
40
41 1.1 sys-kernel/aufs-sources/aufs-sources-3.8.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.8.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.8.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: aufs-sources-3.8.5.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.8.5.ebuild,v 1.1 2013/03/30 14:44:14 jlec Exp $
51
52 EAPI=5
53
54 ETYPE="sources"
55 K_WANT_GENPATCHES="base extras"
56 K_GENPATCHES_VER="8"
57 K_DEBLOB_AVAILABLE="1"
58 inherit kernel-2 eutils
59 detect_version
60 detect_arch
61
62 AUFS_VERSION=3.8_p20130325
63 AUFS_TARBALL="aufs-sources-${AUFS_VERSION}.tar.xz"
64 # git archive -v --remote=git://aufs.git.sourceforge.net/gitroot/aufs/aufs3-standalone.git aufs3.8 > aufs-sources-${AUFS_VERSION}.tar
65 AUFS_URI="http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL}"
66
67 KEYWORDS="~amd64 ~x86"
68 HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/"
69 IUSE="deblob module proc"
70
71 DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree and aufs3 support"
72 SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI} ${AUFS_URI}"
73
74 UNIPATCH_LIST="
75 "${WORKDIR}"/aufs3-kbuild.patch
76 "${WORKDIR}"/aufs3-base.patch"
77
78 PDEPEND=">=sys-fs/aufs-util-3.8"
79
80 src_unpack() {
81 use module && UNIPATCH_LIST+=" "${WORKDIR}"/aufs3-standalone.patch"
82 use proc && UNIPATCH_LIST+=" "${WORKDIR}"/aufs3-proc.patch"
83 unpack ${AUFS_TARBALL}
84 kernel-2_src_unpack
85 }
86
87 src_prepare() {
88 if ! use module; then
89 sed -e 's:tristate:bool:g' -i "${WORKDIR}"/fs/aufs/Kconfig || die
90 fi
91 if ! use proc; then
92 sed '/config AUFS_PROC_MAP/,/^$/d' -i "${WORKDIR}"/fs/aufs/Kconfig || die
93 fi
94 cp -i "${WORKDIR}"/include/linux/aufs_type.h include/linux/aufs_type.h || die
95 cp -i "${WORKDIR}"/include/uapi/linux/aufs_type.h include/uapi/linux/aufs_type.h || die
96 cp -ri "${WORKDIR}"/{Documentation,fs} . || die
97 }
98
99 pkg_postinst() {
100 kernel-2_pkg_postinst
101 einfo "For more info on this patchset, and how to report problems, see:"
102 einfo "${HOMEPAGE}"
103 has_version sys-fs/aufs-util && \
104 einfo "In order to use aufs FS you need to install sys-fs/aufs-util"
105 }
106
107 pkg_postrm() {
108 kernel-2_pkg_postrm
109 }