diff options
author | Guy Martin <gmsoft@gentoo.org> | 2003-07-09 15:03:30 +0000 |
---|---|---|
committer | Guy Martin <gmsoft@gentoo.org> | 2003-07-09 15:03:30 +0000 |
commit | f8a2c1364867d01ff181d260183e4f14ed24263f (patch) | |
tree | 219fd0cb199308ba58cac028e6465dd9fe5a3c7b /sys-kernel | |
parent | Version bump. Marked stable. (diff) | |
download | historical-f8a2c1364867d01ff181d260183e4f14ed24263f.tar.gz historical-f8a2c1364867d01ff181d260183e4f14ed24263f.tar.bz2 historical-f8a2c1364867d01ff181d260183e4f14ed24263f.zip |
Version bump. Marked stable.
Diffstat (limited to 'sys-kernel')
-rw-r--r-- | sys-kernel/hppa-sources/Manifest | 4 | ||||
-rw-r--r-- | sys-kernel/hppa-sources/files/digest-hppa-sources-2.4.21_p2 | 2 | ||||
-rw-r--r-- | sys-kernel/hppa-sources/hppa-sources-2.4.21_p2.ebuild | 36 |
3 files changed, 40 insertions, 2 deletions
diff --git a/sys-kernel/hppa-sources/Manifest b/sys-kernel/hppa-sources/Manifest index 3460251c14a7..e8e1f3e2a5be 100644 --- a/sys-kernel/hppa-sources/Manifest +++ b/sys-kernel/hppa-sources/Manifest @@ -1,4 +1,4 @@ -MD5 f59dd7ec7c6a81a95e7b64e5de7ec505 ChangeLog 1412 +MD5 be6cb438077f30799257fe644821c914 ChangeLog 1561 MD5 08d3ae9435fc657c612337605f656e57 hppa-sources-2.4.20_p23.ebuild 1192 MD5 4a3e484c2c12d8f14545d613ef3e701e hppa-sources-2.4.20_p24.ebuild 1192 MD5 727bd5c9d1f2319ad41119ee65639d4e hppa-sources-2.4.20_p26.ebuild 1192 @@ -6,7 +6,7 @@ MD5 3d886e2b7a924498bbf99ff58bf4bc28 hppa-sources-2.4.20_p27.ebuild 1192 MD5 5503ec036a92ad55d75161cda1dfa529 hppa-sources-2.4.20_p32.ebuild 1086 MD5 71afae84944a5266d22fcd6efe642444 hppa-sources-2.4.20_p35.ebuild 1086 MD5 1b887007b26f6719fc5f52699c1b2c66 hppa-sources-2.4.21_p1.ebuild 1086 -MD5 1b887007b26f6719fc5f52699c1b2c66 hppa-sources-2.4.21_p2.ebuild 1086 +MD5 1a11a0e6156a7631bf689616defa7cfc hppa-sources-2.4.21_p2.ebuild 1085 MD5 01d1fe38889531699beb942fa16b623f files/digest-hppa-sources-2.4.20_p23 137 MD5 78549931a8b17222bd342f1a313dc23d files/digest-hppa-sources-2.4.20_p24 137 MD5 c3fef9e5327a666de48141ff2ad58d08 files/digest-hppa-sources-2.4.20_p26 137 diff --git a/sys-kernel/hppa-sources/files/digest-hppa-sources-2.4.21_p2 b/sys-kernel/hppa-sources/files/digest-hppa-sources-2.4.21_p2 new file mode 100644 index 000000000000..459fe22a63bb --- /dev/null +++ b/sys-kernel/hppa-sources/files/digest-hppa-sources-2.4.21_p2 @@ -0,0 +1,2 @@ +MD5 f51e12efa18bb828cf57d9d4a81b2fb1 linux-2.4.21.tar.bz2 28533733 +MD5 05017c19925549a8fe8780a52c0c8fa6 patch-2.4.21-pa2.diff.gz 683321 diff --git a/sys-kernel/hppa-sources/hppa-sources-2.4.21_p2.ebuild b/sys-kernel/hppa-sources/hppa-sources-2.4.21_p2.ebuild new file mode 100644 index 000000000000..2406703535e5 --- /dev/null +++ b/sys-kernel/hppa-sources/hppa-sources-2.4.21_p2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/hppa-sources/hppa-sources-2.4.21_p2.ebuild,v 1.1 2003/07/09 15:03:18 gmsoft Exp $ +#OKV=original kernel version, KV=patched kernel version. They can be the same. + +ETYPE="sources" +inherit kernel +OKV="${PV/_p*/}" +PATCH_LEVEL="${PV/${OKV}_p/}" +KV=${OKV}-pa${PATCH_LEVEL} +EXTRAVERSION="-pa${PATCH_LEVEL}" +S=${WORKDIR}/linux-${KV} + +# What's in this kernel? + +# INCLUDED: +# stock 2.4.20 kernel sources +# patches for hppa + +DESCRIPTION="Full sources for the Linux kernel with patch for hppa" +SRC_URI="http://www.kernel.org/pub/linux/kernel/v2.4/linux-${OKV}.tar.bz2 http://ftp.parisc-linux.org/cvs/patch-${KV}.diff.gz" +HOMEPAGE="http://www.kernel.org/ http://www.gentoo.org/ http://parisc-linux.org" +KEYWORDS="hppa -*" +SLOT="${KV}" + + +src_unpack() { + unpack linux-${OKV}.tar.bz2 + mv ${WORKDIR}/linux-${OKV} ${WORKDIR}/linux-${KV} + cd ${S} + unpack patch-${KV}.diff.gz + patch -p 1 < ${S}/patch-${KV}.diff + + + kernel_universal_unpack +} |