diff options
author | Greg Kroah-Hartman <gregkh@gentoo.org> | 2004-04-01 18:00:28 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@gentoo.org> | 2004-04-01 18:00:28 +0000 |
commit | 662bab3ad5a2bde69d534239a60f50726ae4164c (patch) | |
tree | 925cd4799882414da2627a32edfd01eb280a46bf /sys-apps/hotplug-base | |
parent | ~amd64 (Manifest recommit) (diff) | |
download | gentoo-2-662bab3ad5a2bde69d534239a60f50726ae4164c.tar.gz gentoo-2-662bab3ad5a2bde69d534239a60f50726ae4164c.tar.bz2 gentoo-2-662bab3ad5a2bde69d534239a60f50726ae4164c.zip |
2004_04_01 version bump
Diffstat (limited to 'sys-apps/hotplug-base')
-rw-r--r-- | sys-apps/hotplug-base/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/hotplug-base/Manifest | 2 | ||||
-rw-r--r-- | sys-apps/hotplug-base/files/digest-hotplug-base-20040401 | 1 | ||||
-rw-r--r-- | sys-apps/hotplug-base/hotplug-base-20040401.ebuild | 27 |
4 files changed, 34 insertions, 1 deletions
diff --git a/sys-apps/hotplug-base/ChangeLog b/sys-apps/hotplug-base/ChangeLog index a62a3cdb8ce9..dfc11f5c952d 100644 --- a/sys-apps/hotplug-base/ChangeLog +++ b/sys-apps/hotplug-base/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/hotplug # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hotplug-base/ChangeLog,v 1.2 2004/03/30 00:12:14 gregkh Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hotplug-base/ChangeLog,v 1.3 2004/04/01 18:00:28 gregkh Exp $ + + 01 Apr 2004; Greg Kroah-Hartman <gregkh@gentoo.org> : + version bump for upstream 2004_04_01 release. 29 Mar 2004; Greg Kroah-Hartman <gregkh@gentoo.org> hotplug-base-20040329.ebuild: diff --git a/sys-apps/hotplug-base/Manifest b/sys-apps/hotplug-base/Manifest index d283b2c1b06b..a18b5b8cbfe5 100644 --- a/sys-apps/hotplug-base/Manifest +++ b/sys-apps/hotplug-base/Manifest @@ -1,4 +1,6 @@ MD5 363a79eb4e4bc708b77a1179529f67d6 ChangeLog 696 MD5 9965d64e0d3dddbbe2a7819389e2b7a7 hotplug-base-20040329.ebuild 743 MD5 075d5a933d6175160a02ddf15bd4f454 metadata.xml 260 +MD5 9965d64e0d3dddbbe2a7819389e2b7a7 hotplug-base-20040401.ebuild 743 MD5 cdf598564a6f23642c5a1c9518432670 files/digest-hotplug-base-20040329 69 +MD5 5be3a96d844a1f0db96e2268b94f6094 files/digest-hotplug-base-20040401 69 diff --git a/sys-apps/hotplug-base/files/digest-hotplug-base-20040401 b/sys-apps/hotplug-base/files/digest-hotplug-base-20040401 new file mode 100644 index 000000000000..d910ec23412b --- /dev/null +++ b/sys-apps/hotplug-base/files/digest-hotplug-base-20040401 @@ -0,0 +1 @@ +MD5 d677a75d6dd6cabbb929470418ad8018 hotplug-2004_04_01.tar.gz 41287 diff --git a/sys-apps/hotplug-base/hotplug-base-20040401.ebuild b/sys-apps/hotplug-base/hotplug-base-20040401.ebuild new file mode 100644 index 000000000000..9dcedff0226e --- /dev/null +++ b/sys-apps/hotplug-base/hotplug-base-20040401.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hotplug-base/hotplug-base-20040401.ebuild,v 1.1 2004/04/01 18:00:28 gregkh Exp $ + +inherit eutils + +# source maintainers named it hotplug-YYYY_MM_DD instead of hotplug-YYYYMMDD +MY_P=hotplug-${PV:0:4}_${PV:4:2}_${PV:6:2} +S=${WORKDIR}/${MY_P} +DESCRIPTION="Base Hotplug framework" +HOMEPAGE="http://linux-hotplug.sourceforge.net" +SRC_URI="mirror://kernel/linux/utils/kernel/hotplug/${MY_P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ia64 ~mips" + +src_unpack() { + unpack ${A} +} + +src_install() { + into / + dosbin sbin/hotplug + keepdir /etc/hotplug.d/ +} + |