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