diff options
author | Mike Pagano <mpagano@gentoo.org> | 2016-10-25 14:44:35 -0400 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2016-10-25 14:45:06 -0400 |
commit | 56815940f9fbf0ad9c2cc6eb1d9920d454fda650 (patch) | |
tree | 6e5cf8f58cf294f899fdd402be8b177787ef0e82 /sys-kernel/git-sources | |
parent | dev-lang/php: Security version bump for 7.0 series (diff) | |
download | gentoo-56815940f9fbf0ad9c2cc6eb1d9920d454fda650.tar.gz gentoo-56815940f9fbf0ad9c2cc6eb1d9920d454fda650.tar.bz2 gentoo-56815940f9fbf0ad9c2cc6eb1d9920d454fda650.zip |
sys-kernel/git-ources: Linux patch 4.9 rc2
Package-Manager: portage-2.3.0
Diffstat (limited to 'sys-kernel/git-sources')
-rw-r--r-- | sys-kernel/git-sources/Manifest | 1 | ||||
-rw-r--r-- | sys-kernel/git-sources/git-sources-4.9_rc2.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest index d2d9bfcb69fe..f7afacdbfb10 100644 --- a/sys-kernel/git-sources/Manifest +++ b/sys-kernel/git-sources/Manifest @@ -1,2 +1,3 @@ DIST linux-4.8.tar.xz 91966856 SHA256 3e9150065f193d3d94bcf46a1fe9f033c7ef7122ab71d75a7fb5a2f0c9a7e11a SHA512 a48a065f21e1c7c4de4cf8ca47b8b8d9a70f86b64e7cfa6e01be490f78895745b9c8790734b1d22182cf1f930fb87eaaa84e62ec8cc1f64ac4be9b949e7c0358 WHIRLPOOL 3888c8c07db0c069f827245d4d7306087f78f7d03e8240eb1fcd13622cd5dbe1c17cd8ed7dc11513f77f3efd5dbd84e2b48e82bdb9b9bfd2242fd62ae32812d5 DIST patch-4.9-rc1.xz 6697396 SHA256 427d6035e65ec53889b1d0c30facfe1c2e80f1617b2842011311f82a4338b295 SHA512 978643c86a428f89616e1149aa05547d965fc5c4b8264ef0847ff10a987f33c9d0d549c28a8f832c79781676691227bfff1601266fe9f0bcdb4ad3a5a8e1a3ed WHIRLPOOL 755cbc5ad1362ac8c938c2d4de39f23b685fc9e0ca9a56d1746efc6c2d935bafc8f3d85f147db9ac6ef556e7178fa68751e3ff00185db83bb7429b01df679629 +DIST patch-4.9-rc2.xz 6748836 SHA256 a1d5fba9bcf704566ac096fe16bb417421aa426f490240d3219a1f7201d4ea99 SHA512 28bea3f4d00b1b61944517f38efeb60226ef7498fa991370e8bf5fadf536722fed0fbbda94ad1842e50c5599227bce1e8f27340956dc285e9ed4d2fc72170fb3 WHIRLPOOL 2436ef0d669b5e9ea0351d334e07a194d5dfe36cb25fa1e5b0421f8e72a5a21d30c5bf3897f42777da037d37887c272b7086f137591eb8bc83fb141adb6315b6 diff --git a/sys-kernel/git-sources/git-sources-4.9_rc2.ebuild b/sys-kernel/git-sources/git-sources-4.9_rc2.ebuild new file mode 100644 index 000000000000..462921a42a37 --- /dev/null +++ b/sys-kernel/git-sources/git-sources-4.9_rc2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +UNIPATCH_STRICTORDER="yes" +K_NOUSENAME="yes" +K_NOSETEXTRAVERSION="yes" +K_NOUSEPR="yes" +K_SECURITY_UNSUPPORTED="1" +K_BASE_VER="4.8" +K_EXP_GENPATCHES_NOUSE="1" +K_FROM_GIT="yes" +ETYPE="sources" +CKV="${PVR/-r/-git}" + +# only use this if it's not an _rc/_pre release +[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}" +inherit kernel-2 +detect_version + +DESCRIPTION="The very latest -git version of the Linux kernel" +HOMEPAGE="https://www.kernel.org" +SRC_URI="${KERNEL_URI}" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and +experimental nature. If you have any issues, try a matching vanilla-sources +ebuild -- if the problem is not there, please contact the upstream kernel +developers at https://bugzilla.kernel.org and on the linux-kernel mailing list to +report the problem so it can be fixed in time for the next kernel release." + +RDEPEND="" +DEPEND="${RDEPEND} + >=sys-devel/patch-2.7.4" + +pkg_postinst() { + postinst_sources +} |