sys-cluster/ocfs: Remove last-rited pkg
authorMichał Górny <mgorny@gentoo.org>
Thu, 10 Oct 2019 12:27:54 +0000 (14:27 +0200)
committerMichał Górny <mgorny@gentoo.org>
Thu, 10 Oct 2019 12:27:54 +0000 (14:27 +0200)
Closes: https://bugs.gentoo.org/693932
Signed-off-by: Michał Górny <mgorny@gentoo.org>
profiles/package.mask
sys-cluster/ocfs/Manifest [deleted file]
sys-cluster/ocfs/metadata.xml [deleted file]
sys-cluster/ocfs/ocfs-1.0.14.ebuild [deleted file]

index 8b4570385dab5b8c88c5aaf78e1600042dd22cc8..41c7770a24d23b251b1bcf89c45e04d7dc3e8363 100644 (file)
@@ -827,12 +827,6 @@ sys-libs/lrmi
 # Removal in 30 days.  Bug #693934.
 sys-fs/scan-ffs
 
-# Michał Górny <mgorny@gentoo.org> (2019-09-09)
-# Added in 2005, not bumped since.  Last upstream release in 2007.
-# EAPI 0.  No amd64 keyword.
-# Removal in 30 days.  Bug #693932.
-sys-cluster/ocfs
-
 # Lars Wendler <polynomial-c@gentoo.org> (2019-09-04)
 # Unofficial build. Superseded by official 2.49.5 release.
 # Masked for removal.
diff --git a/sys-cluster/ocfs/Manifest b/sys-cluster/ocfs/Manifest
deleted file mode 100644 (file)
index f8f2f5d..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DIST ocfs-1.0.14.tar.gz 467237 BLAKE2B 5736e144746b6b8055551ac7388397c3cf78502f962a7ce83fcae2e1a28e88c15c790025c4680b94bca4f183be0cf0cfa942a21236690e7fa04e47ecb965b90b SHA512 0a081806ef65bb988a85d65221210748b3b6eaeb1191dde333120090c8d54818549bdeadd72dd814497d3aa4053ef474ade18c4ced8cbf3423785ff6fb404264
diff --git a/sys-cluster/ocfs/metadata.xml b/sys-cluster/ocfs/metadata.xml
deleted file mode 100644 (file)
index cacaf02..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
-       <email>cluster@gentoo.org</email>
-       <name>Gentoo Cluster Project</name>
-</maintainer>
-<use>
-       <flag name="aio">Add aio support</flag>
-</use>
-</pkgmetadata>
diff --git a/sys-cluster/ocfs/ocfs-1.0.14.ebuild b/sys-cluster/ocfs/ocfs-1.0.14.ebuild
deleted file mode 100644 (file)
index 5fdceaf..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit linux-mod
-
-DESCRIPTION="The Oracle Cluster Filesystem"
-SRC_URI="http://oss.oracle.com/projects/ocfs/dist/files/source/${P}.tar.gz"
-HOMEPAGE="http://oss.oracle.com/projects/ocfs"
-LICENSE="GPL-2"
-
-DEPEND="virtual/linux-sources"
-
-IUSE="aio"
-SLOT="0"
-KEYWORDS="~x86"
-
-pkg_setup() {
-       if kernel_is -ge 2 6; then
-               die "${P} supports only 2.4 kernels"
-       fi
-}
-
-src_compile() {
-       set_arch_to_kernel
-       local myconf
-       use aio && myconf="--enable-aio=yes" || myconf="--enable-aio=no"
-
-       econf \
-               --with-kernel=${KV_DIR} \
-               ${myconf} \
-               || die
-
-       emake || die
-}
-
-src_install() {
-       einstall DESTDIR=${D} || die "Failed to install"
-
-       dodir /etc/ocfs
-       insinto /etc/ocfs
-       doins ocfs2/ocfs.conf
-
-       dodoc README docs/ocfs_doc.zip || die
-}
-
-pkg_postinst() {
-       linux-mod_pkg_postinst
-
-       einfo ""
-       einfo "Please remember to re-emerge ${PN} when you upgrade your kernel!"
-       einfo ""
-       einfo "Please edit the configuration file /etc/ocfs/ocfs.conf"
-       einfo ""
-}