diff options
author | Mike Pagano <mpagano@gentoo.org> | 2019-03-24 19:12:31 -0400 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2019-03-24 19:12:39 -0400 |
commit | a32695c1d8b05ae7e4e298190eeeef6ad0f95c59 (patch) | |
tree | f058e791c8e71dd670c8bec5767f17c1aea0cdf1 /sys-kernel | |
parent | kde-misc/plasma-redshift-control: EAPI-7 bump, fix with redshift-1.12 (diff) | |
download | gentoo-a32695c1d8b05ae7e4e298190eeeef6ad0f95c59.tar.gz gentoo-a32695c1d8b05ae7e4e298190eeeef6ad0f95c59.tar.bz2 gentoo-a32695c1d8b05ae7e4e298190eeeef6ad0f95c59.zip |
sys-kernel/git-sources: Linux patch 5.1-rc2
Signed-off-by: Mike Pagano <mpagano@gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Diffstat (limited to 'sys-kernel')
-rw-r--r-- | sys-kernel/git-sources/Manifest | 1 | ||||
-rw-r--r-- | sys-kernel/git-sources/git-sources-5.1_rc2.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest index f2baaf2ce786..cf4a57dba95f 100644 --- a/sys-kernel/git-sources/Manifest +++ b/sys-kernel/git-sources/Manifest @@ -1,2 +1,3 @@ DIST linux-5.0.tar.xz 105235152 BLAKE2B 59635c87a4123c90ab8598c9ea5167096aa6bc765e9d8456d00f3da7530e89e925b3925c99f1a6c96ac0ded7df3ac7df52c75672f0a66acc40f563200892e064 SHA512 3fbab70c7b03b1a10e9fa14d1e2e1f550faba4f5792b7699ca006951da74ab86e7d7f19c6a67849ab99343186e7d6f2752cd910d76222213b93c1eab90abf1b0 DIST patch-5.1-rc1.patch 38814968 BLAKE2B 857ecb5a7c0e6514bedd377dd70602083953ada74b5561090d6003c113206609f98461e03522403c9571288e0922bfd2649885d44b49640a0722cf15c3e837b3 SHA512 e43656458c3caaebe41b1799d1fd5991c22522c23b25f89c91f747c606e7b52fb363d85dc0d4b8d013e916ccbba6f09f96a894b5613e823b8dccfd1b891fd854 +DIST patch-5.1-rc2.patch 39225075 BLAKE2B 3b4efa4ac54a76f18ec1cea311c21f9599a5d353d89fced007673633ef137d4dbdaa8b1617614784d53fbe8b44fed26318d7ef51baf2f80467d0801a0e57dd7f SHA512 6872b3513fb6f8e2d6de9d83d1dd7e182e4a60a3e9638e53072b3513c21bdd1ea7f081ce5c28e5d53b5a60859e14de1959de2f24d6c91ef3a2db0318240f7eb8 diff --git a/sys-kernel/git-sources/git-sources-5.1_rc2.ebuild b/sys-kernel/git-sources/git-sources-5.1_rc2.ebuild new file mode 100644 index 000000000000..775e4fb8b978 --- /dev/null +++ b/sys-kernel/git-sources/git-sources-5.1_rc2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +UNIPATCH_STRICTORDER="yes" +K_NOUSENAME="yes" +K_NOSETEXTRAVERSION="yes" +K_NOUSEPR="yes" +K_SECURITY_UNSUPPORTED="1" +K_BASE_VER="5.0" +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.5" + +pkg_postinst() { + postinst_sources +} |