diff options
Diffstat (limited to 'sys-kernel')
-rw-r--r-- | sys-kernel/git-sources/Manifest | 1 | ||||
-rw-r--r-- | sys-kernel/git-sources/git-sources-4.7_rc6.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest index e9a0c4fd1141..1de56bf0e389 100644 --- a/sys-kernel/git-sources/Manifest +++ b/sys-kernel/git-sources/Manifest @@ -4,3 +4,4 @@ DIST patch-4.7-rc2.xz 5421916 SHA256 d323fd8f7ad015a1f929a3c2ebd99067475d64311b6 DIST patch-4.7-rc3.xz 5479492 SHA256 28302761d18747f9b81e61de6a30f7cde3f818b3b2620f60ca3fc4c7af749636 SHA512 1e4741494f8bb9c00a162b370b6f6d0e6690fdbf07bc0a50b4eb49fe3623a5f2af0a49fe1e28eadf5adce0e5aa583bba30f2e228c9d4ffd3d553b612f085c14b WHIRLPOOL 86a002578ed7b29320b917def28047ca3cf237024700b234db47c4065a7e3718a3d5960fefdc975c4ecddca13157192c92ff3054a61b60bcc7e5e4ce78cca1c0 DIST patch-4.7-rc4.xz 5524308 SHA256 fc7dd4593658bd667ac4088522b6c357d93ee667e2a04c87a72e0c026c5fe8b7 SHA512 bf4be16500078b567f35b2e6a23b1f4857a548904b17960acf91fc2ea62c3f5cd266e75f42f6fcbef5845ba8d06891a8ffdb30c4da92b18f6d85abf340d15051 WHIRLPOOL 4f031a34e5a4d4e252cd97ab6f038e1d111f6e5e0e5e6256e5d86792793bb8248bb8a77b7828969318ed092e9f321b66a651dc0f6a31cc4b64aa45127434e1bc DIST patch-4.7-rc5.xz 5556940 SHA256 331a73d6dfe217046ac8ac2669d3775113cbbdca8321c09d1a54223f3b9a0843 SHA512 614dde04eb5883bce1fa834e4a2a7533046dfc78313bd919d83eb35f32a3c27481776e629738db4923675f4ae07d312da0eb9095492f042d3050f02aa2930aa8 WHIRLPOOL 5b6517ca8e8976573d3c79e8a8ec4517eb21a9292d1c18c6b822410ebc850e592ea4546748a382155bceea0342a71ef33b40df55fb3628438cad5f4a2b0ff909 +DIST patch-4.7-rc6.xz 5603480 SHA256 25c11cc3164145d622391bf80c09ffdc74a7e83f5688add3841e502586ce0e75 SHA512 4809b177d6ab55db4db10554f9048d1ece069f123443b01f2dcc00fca91aea88f7e84a85cca4a1f75b6514f71ab3f8cc479800b75a3ee1d29684e2f1b857cbe3 WHIRLPOOL b9193fc8110a35988edf59feefc1af188fbd34c92493c61af044c1085a9eef2370c778a2456965845710b7d74d376b8982850d338bc3eac4909c80c3fed43205 diff --git a/sys-kernel/git-sources/git-sources-4.7_rc6.ebuild b/sys-kernel/git-sources/git-sources-4.7_rc6.ebuild new file mode 100644 index 000000000000..d666eac10267 --- /dev/null +++ b/sys-kernel/git-sources/git-sources-4.7_rc6.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.6" +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 +} |