diff options
author | Mike Pagano <mpagano@gentoo.org> | 2015-08-03 10:26:22 +0000 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2015-08-03 10:26:22 +0000 |
commit | 76811f8c59cf0b30ed901ec7c47228c2bf491d24 (patch) | |
tree | d59627206dca45ca2a889938568cfb2b18a772f9 /sys-kernel | |
parent | This fixes a data corruption bug, which means that all previous ebuilds are w... (diff) | |
download | gentoo-2-76811f8c59cf0b30ed901ec7c47228c2bf491d24.tar.gz gentoo-2-76811f8c59cf0b30ed901ec7c47228c2bf491d24.tar.bz2 gentoo-2-76811f8c59cf0b30ed901ec7c47228c2bf491d24.zip |
Version bump
(Portage version: 2.2.20/cvs/Linux i686, signed Manifest commit with key 3C33C650B576E4E3)
Diffstat (limited to 'sys-kernel')
-rw-r--r-- | sys-kernel/git-sources/ChangeLog | 7 | ||||
-rw-r--r-- | sys-kernel/git-sources/git-sources-4.2_rc5.ebuild | 39 |
2 files changed, 45 insertions, 1 deletions
diff --git a/sys-kernel/git-sources/ChangeLog b/sys-kernel/git-sources/ChangeLog index d1556279472e..a83b667840a3 100644 --- a/sys-kernel/git-sources/ChangeLog +++ b/sys-kernel/git-sources/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-kernel/git-sources # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/ChangeLog,v 1.1441 2015/07/26 20:52:49 mpagano Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/ChangeLog,v 1.1442 2015/08/03 10:26:22 mpagano Exp $ + +*git-sources-4.2_rc5 (03 Aug 2015) + + 03 Aug 2015; Michael Pagano <mpagano@gentoo.org> +git-sources-4.2_rc5.ebuild: + Version bump. *git-sources-4.2_rc4 (26 Jul 2015) diff --git a/sys-kernel/git-sources/git-sources-4.2_rc5.ebuild b/sys-kernel/git-sources/git-sources-4.2_rc5.ebuild new file mode 100644 index 000000000000..37cdbaec7192 --- /dev/null +++ b/sys-kernel/git-sources/git-sources-4.2_rc5.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/git-sources/git-sources-4.2_rc5.ebuild,v 1.1 2015/08/03 10:26:22 mpagano Exp $ + +EAPI="5" +UNIPATCH_STRICTORDER="yes" +K_NOUSENAME="yes" +K_NOSETEXTRAVERSION="yes" +K_NOUSEPR="yes" +K_SECURITY_UNSUPPORTED="yes" +K_BASE_VER="4.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="http://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 http://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 +} |