diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2005-07-21 03:39:23 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2005-07-21 03:39:23 +0000 |
commit | f770fd0101e1ff89fd05303cf4ac32592e725aee (patch) | |
tree | 0a3ef25d21aa3e84e334f27988c940b782436209 /sys-cluster/openpbs-common | |
parent | add a desktop entry (diff) | |
download | gentoo-2-f770fd0101e1ff89fd05303cf4ac32592e725aee.tar.gz gentoo-2-f770fd0101e1ff89fd05303cf4ac32592e725aee.tar.bz2 gentoo-2-f770fd0101e1ff89fd05303cf4ac32592e725aee.zip |
This is the new env.d entry to keep the PBS directories from being removed.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sys-cluster/openpbs-common')
-rw-r--r-- | sys-cluster/openpbs-common/ChangeLog | 8 | ||||
-rw-r--r-- | sys-cluster/openpbs-common/Manifest | 3 | ||||
-rw-r--r-- | sys-cluster/openpbs-common/files/digest-openpbs-common-1.1.0 | 0 | ||||
-rw-r--r-- | sys-cluster/openpbs-common/files/pbs-env.d | 6 | ||||
-rw-r--r-- | sys-cluster/openpbs-common/openpbs-common-1.1.0.ebuild | 23 |
5 files changed, 39 insertions, 1 deletions
diff --git a/sys-cluster/openpbs-common/ChangeLog b/sys-cluster/openpbs-common/ChangeLog index 4f736a72a17b..b86914cf5f4b 100644 --- a/sys-cluster/openpbs-common/ChangeLog +++ b/sys-cluster/openpbs-common/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-cluster/openpbs-common # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openpbs-common/ChangeLog,v 1.2 2005/07/07 11:48:12 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openpbs-common/ChangeLog,v 1.3 2005/07/21 03:39:23 robbat2 Exp $ + +*openpbs-common-1.1.0 (21 Jul 2005) + + 21 Jul 2005; Robin H. Johnson <robbat2@gentoo.org> +files/pbs-env.d, + +openpbs-common-1.1.0.ebuild: + This is the new env.d entry to keep the PBS directories from being removed. 07 Jul 2005; Markus Rothe <corsair@gentoo.org> openpbs-common-1.0.0.ebuild: diff --git a/sys-cluster/openpbs-common/Manifest b/sys-cluster/openpbs-common/Manifest index efa4359b08c1..c200bfc53049 100644 --- a/sys-cluster/openpbs-common/Manifest +++ b/sys-cluster/openpbs-common/Manifest @@ -1,6 +1,9 @@ MD5 f1bfa8fb842f2c3b00e181fe7aa5c486 openpbs-common-1.0.0.ebuild 563 MD5 5d93f2cabc4bea6a14a822d6dee62996 ChangeLog 574 MD5 cde8b4e93c9339eb99fe3ad45941c99b metadata.xml 160 +MD5 e48b98a0c15a4a531798ae28e454c64a openpbs-common-1.1.0.ebuild 597 MD5 cfb199330d75f94a15402a9d9f3bdff2 files/pbs-conf.d 448 MD5 47ee3396eff14ab1876fbcb8d817a035 files/pbs-init.d 2622 MD5 d41d8cd98f00b204e9800998ecf8427e files/digest-openpbs-common-1.0.0 0 +MD5 d41d8cd98f00b204e9800998ecf8427e files/digest-openpbs-common-1.1.0 0 +MD5 6cc6d4bc9495323cff5288be557f6b7d files/pbs-env.d 250 diff --git a/sys-cluster/openpbs-common/files/digest-openpbs-common-1.1.0 b/sys-cluster/openpbs-common/files/digest-openpbs-common-1.1.0 new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/sys-cluster/openpbs-common/files/digest-openpbs-common-1.1.0 diff --git a/sys-cluster/openpbs-common/files/pbs-env.d b/sys-cluster/openpbs-common/files/pbs-env.d new file mode 100644 index 000000000000..ed9c1dd9147b --- /dev/null +++ b/sys-cluster/openpbs-common/files/pbs-env.d @@ -0,0 +1,6 @@ +# /etc/env.d/25pbs +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License, v2 or later + +# This is to stop portage removing stuff from here. Including empty directories! +CONFIG_PROTECT="/usr/spool/PBS" diff --git a/sys-cluster/openpbs-common/openpbs-common-1.1.0.ebuild b/sys-cluster/openpbs-common/openpbs-common-1.1.0.ebuild new file mode 100644 index 000000000000..688695c6329e --- /dev/null +++ b/sys-cluster/openpbs-common/openpbs-common-1.1.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openpbs-common/openpbs-common-1.1.0.ebuild,v 1.1 2005/07/21 03:39:23 robbat2 Exp $ + +inherit eutils + +DESCRIPTION="Shared files for all OpenPBS implementations in Gentoo" +HOMEPAGE="http://www.gentoo.org" +SRC_URI="" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="virtual/pbs" + +src_install() { + newinitd ${FILESDIR}/pbs-init.d pbs + newconfd ${FILESDIR}/pbs-conf.d pbs + newenvd ${FILESDIR}/pbs-env.d 25pbs +} |