Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-kernel/pf-sources: pf-sources-3.11.2.ebuild ChangeLog
Date: Sat, 28 Sep 2013 13:08:32
Message-Id: 20130928130817.EF05B2004C@flycatcher.gentoo.org
1 hwoarang 13/09/28 13:08:17
2
3 Modified: ChangeLog
4 Added: pf-sources-3.11.2.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.6/cvs/Linux x86_64, signed Manifest commit with key C2BA7F3C!)
9
10 Revision Changes Path
11 1.103 sys-kernel/pf-sources/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/pf-sources/ChangeLog?rev=1.103&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/pf-sources/ChangeLog?rev=1.103&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/pf-sources/ChangeLog?r1=1.102&r2=1.103
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-kernel/pf-sources/ChangeLog,v
20 retrieving revision 1.102
21 retrieving revision 1.103
22 diff -u -r1.102 -r1.103
23 --- ChangeLog 9 Sep 2013 14:27:51 -0000 1.102
24 +++ ChangeLog 28 Sep 2013 13:08:17 -0000 1.103
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-kernel/pf-sources
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/pf-sources/ChangeLog,v 1.102 2013/09/09 14:27:51 wired Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/pf-sources/ChangeLog,v 1.103 2013/09/28 13:08:17 hwoarang Exp $
30 +
31 +*pf-sources-3.11.2 (28 Sep 2013)
32 +
33 + 28 Sep 2013; Markos Chandras <hwoarang@g.o> +pf-sources-3.11.2.ebuild:
34 + Version bump
35
36 *pf-sources-3.11.1 (09 Sep 2013)
37
38
39
40
41 1.1 sys-kernel/pf-sources/pf-sources-3.11.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/pf-sources/pf-sources-3.11.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/pf-sources/pf-sources-3.11.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pf-sources-3.11.2.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/pf-sources/pf-sources-3.11.2.ebuild,v 1.1 2013/09/28 13:08:17 hwoarang Exp $
51
52 EAPI="5"
53 inherit readme.gentoo versionator
54
55 COMPRESSTYPE=".bz2"
56 K_USEPV="yes"
57 UNIPATCH_STRICTORDER="yes"
58 K_SECURITY_UNSUPPORTED="1"
59
60 CKV="$(get_version_component_range 1-2)"
61 ETYPE="sources"
62 inherit kernel-2
63 detect_version
64 K_NOSETEXTRAVERSION="don't_set_it"
65
66 DESCRIPTION="Linux kernel fork with new features, including the -ck patchset (BFS), BFQ, TuxOnIce and UKSM"
67 HOMEPAGE="http://pf.natalenko.name/"
68
69 PF_FILE="patch-${PV}-pf${COMPRESSTYPE}"
70 PF_URI="http://pf.natalenko.name/sources/$(get_version_component_range 1-2)/${PF_FILE}"
71 EXPERIMENTAL_PATCHES=(
72 # http://ck-hack.blogspot.com/2010/11/create-task-groups-by-tty-comment.html
73 # http://ck.kolivas.org/patches/bfs/bfs357-penalise_fork_depth_account_threads.patch
74 )
75 EXPERIMENTAL_URI="
76 experimental? (
77 ${EXPERIMENTAL_PATCHES[@]}
78 )
79 "
80 SRC_URI="${KERNEL_URI} ${PF_URI}" # \${EXPERIMENTAL_URI}
81
82 KEYWORDS="-* ~amd64 ~ppc ~ppc64 ~x86"
83 IUSE="" # experimental
84
85 KV_FULL="${PVR}-pf"
86 S="${WORKDIR}"/linux-"${KV_FULL}"
87
88 DISABLE_AUTOFORMATTING="yes"
89 DOC_CONTENTS="
90 ${P} has the following optional runtime dependencies:
91 - sys-apps/tuxonice-userui: provides minimal userspace progress
92 information related to suspending and resuming process.
93 - sys-power/hibernate-script or sys-power/pm-utils: runtime utilities
94 for hibernating and suspending your computer."
95
96 pkg_setup(){
97 ewarn
98 ewarn "${PN} is *not* supported by the Gentoo Kernel Project in any way."
99 ewarn "If you need support, please contact the pf developers directly."
100 ewarn "Do *not* open bugs in Gentoo's bugzilla unless you have issues with"
101 ewarn "the ebuilds. Thank you."
102 ewarn
103 kernel-2_pkg_setup
104 }
105
106 src_prepare(){
107 epatch "${DISTDIR}"/"${PF_FILE}"
108 }
109
110 src_install() {
111 kernel-2_src_install
112 readme.gentoo_create_doc
113 }
114
115 pkg_postinst() {
116 kernel-2_pkg_postinst
117 readme.gentoo_print_elog
118 }
119
120 K_EXTRAEINFO="For more info on pf-sources and details on how to report problems,
121 see: ${HOMEPAGE}."