dev-libs/libexplain: remove last rited package
authorMikle Kolyada <zlogene@gentoo.org>
Sat, 29 Dec 2018 12:33:40 +0000 (15:33 +0300)
committerMikle Kolyada <zlogene@gentoo.org>
Sat, 29 Dec 2018 12:33:40 +0000 (15:33 +0300)
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
dev-libs/libexplain/Manifest [deleted file]
dev-libs/libexplain/files/libexplain-0.45-configure.patch [deleted file]
dev-libs/libexplain/files/libexplain-missing-defines.patch [deleted file]
dev-libs/libexplain/libexplain-1.4-r1.ebuild [deleted file]
dev-libs/libexplain/libexplain-1.4-r2.ebuild [deleted file]
dev-libs/libexplain/libexplain-1.4.ebuild [deleted file]
dev-libs/libexplain/metadata.xml [deleted file]

diff --git a/dev-libs/libexplain/Manifest b/dev-libs/libexplain/Manifest
deleted file mode 100644 (file)
index 5ec22de..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DIST libexplain-1.4.tar.gz 4770006 BLAKE2B 537829a492f24b73051f1df2865fe5851af71046a2c6b4ca40c3b06594b1b386233fa2ff47e7f4753e5fdee08ca1f8fe5141bc7b1fda815c95c8927d6747b794 SHA512 c236732f57d0688fed173c27474a00a39c9ac6d5dfbd22f3b68b5d0fff7a70fb130bcedbeb174767f4fd2c012148025e92635cc8df2b958774a3cfba58e6ff2c
diff --git a/dev-libs/libexplain/files/libexplain-0.45-configure.patch b/dev-libs/libexplain/files/libexplain-0.45-configure.patch
deleted file mode 100644 (file)
index 0f031fb..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -26,6 +26,10 @@
- AC_PROG_RANLIB
- AC_PROG_YACC
-+LT_INIT
-+top_builddir=`pwd`
-+AC_SUBST(top_builddir)
-+
- case "$YACC" in
- *bison*)
-   ;;
---- libexplain-0.45.D001.orig/Makefile.in
-+++ libexplain-0.45.D001/Makefile.in
-@@ -35,6 +35,7 @@
- #
- # directory containing the source
- #
-+top_builddir = @top_builddir@
- srcdir = @srcdir@
- VPATH = @srcdir@
diff --git a/dev-libs/libexplain/files/libexplain-missing-defines.patch b/dev-libs/libexplain/files/libexplain-missing-defines.patch
deleted file mode 100644 (file)
index bb1170c..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
---- libexplain-1.4.D001.orig/libexplain/buffer/file_inode_flags.c
-+++ libexplain-1.4.D001/libexplain/buffer/file_inode_flags.c
-@@ -28,6 +28,14 @@
-
- #if defined(FS_IOC_GETFLAGS) || defined(FS_IOC32_GETFLAGS)
-
-+#ifndef FS_ECOMPR_FL
-+#define FS_ECOMPR_FL                    0x00000800 /* Compression error */
-+#endif
-+
-+#ifndef FS_DIRECTIO_FL
-+#define FS_DIRECTIO_FL                  0x00100000 /* Use direct i/o */
-+#endif
-+
- void
- explain_buffer_file_inode_flags(explain_string_buffer_t *sb, int value)
- {
-
diff --git a/dev-libs/libexplain/libexplain-1.4-r1.ebuild b/dev-libs/libexplain/libexplain-1.4-r1.ebuild
deleted file mode 100644 (file)
index 94aaf26..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Library which may be used to explain Unix and Linux system call errors"
-HOMEPAGE="http://libexplain.sourceforge.net/"
-SRC_URI="http://libexplain.sourceforge.net/${P}.tar.gz"
-
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-LICENSE="GPL-3 LGPL-3"
-IUSE="static-libs"
-
-DEPEND="
-       sys-apps/acl
-       sys-apps/groff
-       app-text/ghostscript-gpl
-       >=sys-kernel/linux-headers-2.6.35"
-
-RDEPEND="
-       ${DEPEND}
-       sys-libs/libcap
-       sys-process/lsof
-       sys-libs/glibc"
-
-# Test fails with:
-# This is not a bug, but it does indicate where libexplain's ioctl support
-# could be improved.
-RESTRICT="test"
-
-PATCHES=( "${FILESDIR}"/${PN}-0.45-configure.patch )
-
-src_prepare() {
-       # Portage incompatible test
-       sed \
-               -e '/t0524a/d' \
-               -e '/t0363a/d' \
-               -i Makefile.in || die
-
-       cp -v "${S}"/etc/configure.ac "${S}" || die
-       default
-       eautoreconf
-}
-
-src_install() {
-       default
-}
diff --git a/dev-libs/libexplain/libexplain-1.4-r2.ebuild b/dev-libs/libexplain/libexplain-1.4-r2.ebuild
deleted file mode 100644 (file)
index d008b1f..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Library which may be used to explain Unix and Linux system call errors"
-HOMEPAGE="http://libexplain.sourceforge.net/"
-SRC_URI="http://libexplain.sourceforge.net/${P}.tar.gz"
-
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-LICENSE="GPL-3 LGPL-3"
-IUSE="static-libs"
-
-DEPEND="
-       sys-apps/acl
-       sys-apps/groff
-       app-text/ghostscript-gpl
-       >=sys-kernel/linux-headers-2.6.35"
-
-RDEPEND="
-       ${DEPEND}
-       sys-libs/libcap
-       sys-process/lsof
-       sys-libs/glibc"
-
-# Test fails with:
-# This is not a bug, but it does indicate where libexplain's ioctl support
-# could be improved.
-RESTRICT="test"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-0.45-configure.patch
-       "${FILESDIR}"/libexplain-missing-defines.patch
-)
-
-src_prepare() {
-       # Portage incompatible test
-       sed \
-               -e '/t0524a/d' \
-               -e '/t0363a/d' \
-               -i Makefile.in || die
-
-       cp -v "${S}"/etc/configure.ac "${S}" || die
-       default
-       eautoreconf
-}
-
-src_install() {
-       default
-}
diff --git a/dev-libs/libexplain/libexplain-1.4.ebuild b/dev-libs/libexplain/libexplain-1.4.ebuild
deleted file mode 100644 (file)
index c92cd08..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
-AUTOTOOLS_IN_SOURCE_BUILD=1
-
-inherit autotools-utils
-
-DESCRIPTION="Library which may be used to explain Unix and Linux system call errors"
-HOMEPAGE="http://libexplain.sourceforge.net/"
-SRC_URI="http://libexplain.sourceforge.net/${P}.tar.gz"
-
-SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
-LICENSE="GPL-3 LGPL-3"
-IUSE="static-libs"
-
-RDEPEND="
-       sys-libs/libcap
-       >=sys-libs/glibc-2.11
-       sys-process/lsof"
-DEPEND="${RDEPEND}
-       >=sys-kernel/linux-headers-2.6.35
-       app-text/ghostscript-gpl
-       sys-apps/groff
-"
-# Test fails with:
-# This is not a bug, but it does indicate where libexplain's ioctl support
-# could be improved.
-RESTRICT="test"
-
-DOCS=( README )
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-0.45-configure.patch
-)
-
-src_prepare() {
-       # Portage incompatible test
-       sed \
-               -e '/t0524a/d' \
-               -e '/t0363a/d' \
-               -i Makefile.in || die
-
-       cp "${S}"/etc/configure.ac "${S}" || die
-
-       autotools-utils_src_prepare
-}
diff --git a/dev-libs/libexplain/metadata.xml b/dev-libs/libexplain/metadata.xml
deleted file mode 100644 (file)
index 3300321..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>shell-tools@gentoo.org</email>
-    <name>Gentoo Shell Tools Project</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="sourceforge">libexplain</remote-id>
-  </upstream>
-</pkgmetadata>