Gentoo Archives: gentoo-commits

From: "Alex Alexander (wired)" <wired@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-kernel/pf-sources: pf-sources-3.12.1.ebuild ChangeLog
Date: Mon, 02 Dec 2013 09:11:37
Message-Id: 20131202091128.8BC2F2004B@flycatcher.gentoo.org
1 wired 13/12/02 09:11:28
2
3 Modified: ChangeLog
4 Added: pf-sources-3.12.1.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EB9B4AFA)
9
10 Revision Changes Path
11 1.107 sys-kernel/pf-sources/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/pf-sources/ChangeLog?rev=1.107&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/pf-sources/ChangeLog?rev=1.107&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/pf-sources/ChangeLog?r1=1.106&r2=1.107
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-kernel/pf-sources/ChangeLog,v
20 retrieving revision 1.106
21 retrieving revision 1.107
22 diff -u -r1.106 -r1.107
23 --- ChangeLog 15 Nov 2013 08:51:26 -0000 1.106
24 +++ ChangeLog 2 Dec 2013 09:11:28 -0000 1.107
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.106 2013/11/15 08:51:26 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/pf-sources/ChangeLog,v 1.107 2013/12/02 09:11:28 wired Exp $
30 +
31 +*pf-sources-3.12.1 (02 Dec 2013)
32 +
33 + 02 Dec 2013; Alex Alexander <wired@g.o> +pf-sources-3.12.1.ebuild:
34 + version bump
35
36 15 Nov 2013; Markos Chandras <hwoarang@g.o> -pf-sources-3.10.0.ebuild,
37 -pf-sources-3.11.1.ebuild, -pf-sources-3.11.2.ebuild,
38
39
40
41 1.1 sys-kernel/pf-sources/pf-sources-3.12.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/pf-sources/pf-sources-3.12.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/pf-sources/pf-sources-3.12.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pf-sources-3.12.1.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.12.1.ebuild,v 1.1 2013/12/02 09:11:28 wired 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}."