diff options
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.6_rc7.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest index 4fe92fd2e814..15bdf0125566 100644 --- a/sys-kernel/git-sources/Manifest +++ b/sys-kernel/git-sources/Manifest @@ -5,3 +5,4 @@ DIST patch-4.6-rc3.xz 6623292 SHA256 45bc4f50c98d6dfea3c802f89cbae79553c308f3f2f DIST patch-4.6-rc4.xz 6647640 SHA256 707e6c719f33e6b3982af1e8943877135a24ec53fc0cec38cf4ecd468ce3713b SHA512 2a7fea04168369a65807a4e3330e19e4899962060861c72e6325c14dd4a5c05ab940f27c38402d8c5e8304b23c193d4a037940de05a9c06927aafe6dd34dd579 WHIRLPOOL a0ed8e0a31bd2736730b5a6c68d1ee2aca728e6b91206dbbc071aea6a2b6111c642a55e7a7d9636a6e5f7ab67aefe366796a844b06ff81912da59f8041a7e577 DIST patch-4.6-rc5.xz 6290816 SHA256 792466e412ed0f3a1401c7563eef138c03bc76e21e6928e220035eb4a0f42e2f SHA512 ce6e32373b8419bad08eab0cf02fde49391db13269323a762322d406fbfb0348604323a849d8f6f96f1e6e1e93cbf082eb91e5b248e45d633a2f863f9e79ceee WHIRLPOOL 576db33881be4b5ef11fff424b6f5ec263b9863a7211f9273fe2a05519cd9bb96ba70cddcb6593080b62bc0625aa3f4fc0ec47b2d7f9acb3504762c197ce900f DIST patch-4.6-rc6.xz 6323852 SHA256 c066c61cf1d1908ba40e5cf5d894de2dc8e4a7bfc83e69af1fb87ef6308deaa3 SHA512 3af8854917e2d80d7ac626de1bf23a827275313ab1715a16a1447e745a81a96853c1546b32bd53c4234e12b26ef7ef38b36bd0eacf153deaaa4004cea8ae28ac WHIRLPOOL 4bbc31e4e8d34526b59a4369f79424515a59d011ef03a0bcd57668369e46166dcc44dc33563685a2d71c94edc92ec561630a473d6e8101f73fbe46de00edec4d +DIST patch-4.6-rc7.xz 6359368 SHA256 32b97a8f351bb5206ce7470c31f4e50ad8471c2f00893267157fb267e9f9eeed SHA512 65897e22c26abc5d2b1ad13b0661bf8b576b28fcf474319aa290f0c135aa91a5a8705389a7b056f3df99ab29b27a395b6b55852e7dca971e5fb9e759ed60a6ba WHIRLPOOL 049b1ffd25147db34f39145dc8389c3c122c37c7992736687e256ee51f08eec23688006001a42489da2cf8e420f6a9ed2d2544e208a36d688bca9bcc97c3d0fa diff --git a/sys-kernel/git-sources/git-sources-4.6_rc7.ebuild b/sys-kernel/git-sources/git-sources-4.6_rc7.ebuild new file mode 100644 index 000000000000..af024fbe50b0 --- /dev/null +++ b/sys-kernel/git-sources/git-sources-4.6_rc7.ebuild @@ -0,0 +1,40 @@ +# 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="yes" +K_BASE_VER="4.5" +K_EXP_GENPATCHES_NOUSE="1" +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 +} |