summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2017-01-16 10:33:15 +0100
committerLars Wendler <polynomial-c@gentoo.org>2017-01-16 10:58:02 +0100
commitdf68a0530e1bd59fac1dd8b3c30db4711003375a (patch)
treeb91f031044b1b3610f8a7d93f44a585692da7d97
parentdev-lang/ghc: bump up to 8.0.2, no KEYWORDS or binaries yet (diff)
downloadgentoo-df68a0530e1bd59fac1dd8b3c30db4711003375a.tar.gz
gentoo-df68a0530e1bd59fac1dd8b3c30db4711003375a.tar.bz2
gentoo-df68a0530e1bd59fac1dd8b3c30db4711003375a.zip
sys-fs/xfsdump: Removed old.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
-rw-r--r--sys-fs/xfsdump/Manifest2
-rw-r--r--sys-fs/xfsdump/files/xfsdump-3.1.5-config-platform.patch26
-rw-r--r--sys-fs/xfsdump/xfsdump-3.1.3.ebuild44
-rw-r--r--sys-fs/xfsdump/xfsdump-3.1.5.ebuild57
4 files changed, 0 insertions, 129 deletions
diff --git a/sys-fs/xfsdump/Manifest b/sys-fs/xfsdump/Manifest
index a65ac80c7e6e..8d3f4bdcc900 100644
--- a/sys-fs/xfsdump/Manifest
+++ b/sys-fs/xfsdump/Manifest
@@ -1,3 +1 @@
-DIST xfsdump-3.1.3.tar.gz 826922 SHA256 f02138a5d96e06c506ac8cb6e4fedeb0bf7d7cf8b9747f262d0735b885dbf8fa SHA512 18f5ce7e249b317247012246fd7c5980f62cc46a5718adc80a3137be4f2d7c47edd7d1286e31fbae9c0629a49fc13482308e37950c5122165929088e467865b9 WHIRLPOOL cb80202e16c14ac279ffc698acf1ad3b1fe7365a451d05bba5ec5410b6cdcaf06f7f1986f374130cc40d0a43ccb0eedb2ed433a3e41c6701e9c94c247d821207
-DIST xfsdump-3.1.5.tar.gz 848863 SHA256 2f1fad1754c94163a2401e69fa09ef06f587f780239a131e7ec0a14a3a3959e3 SHA512 107d23e3d1a84aaef0ef4c0f541f37a860ccbef996e0886a6f56f01c7998451210b127289c21ec71e9ef5db7d124d479b41017e9e3d5c2d9c68b2dbbfd316620 WHIRLPOOL ed7d6c11c4354540d8accb8c0d4955fc039bdead3c2f854e609756d14a856b862884adc1dba059ed28fa57ece76c8be3f073b8058c59dbac807a7af9fbbf482d
DIST xfsdump-3.1.6.tar.gz 848698 SHA256 7f78c11ca527477d90e5e62b0778f3ad96f2b71c19173044e9aca9515fff42d0 SHA512 6d8eff10c65e0a0893525590953ccb7ec0095ba528725ffe3f18260e6cb8f66dd3945c60477500e84421a9ed57fae9e8f0f25c3c0900be3671f30ca6951ed5e7 WHIRLPOOL 87182e97a5676be6ad36cf74e37d9ca312d742d20eb5396917a156842fe62a23c582e16862fb384fe7706097d9f0c7a6a8faced06fec0a999ac06ceb426eb7e3
diff --git a/sys-fs/xfsdump/files/xfsdump-3.1.5-config-platform.patch b/sys-fs/xfsdump/files/xfsdump-3.1.5-config-platform.patch
deleted file mode 100644
index 1c8c855b37b4..000000000000
--- a/sys-fs/xfsdump/files/xfsdump-3.1.5-config-platform.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-a few xfsprogs defs are still used in the code base.
-these are copied from the platform_defs.h.in file.
-
---- include/config.h.in
-+++ include/config.h.in
-@@ -21,4 +21,20 @@
- #endif
- #include <locale.h>
-
-+#define IRIX_DEV_BITSMAJOR 14
-+#define IRIX_DEV_BITSMINOR 18
-+#define IRIX_DEV_MAXMAJ 0x1ff
-+#define IRIX_DEV_MAXMIN 0x3ffff
-+#define IRIX_DEV_MAJOR(dev) ((int)(((unsigned)(dev) >> IRIX_DEV_BITSMINOR) \
-+ & IRIX_DEV_MAXMAJ))
-+#define IRIX_DEV_MINOR(dev) ((int)((dev) & IRIX_DEV_MAXMIN))
-+#define IRIX_MKDEV(major,minor) ((xfs_dev_t)(((major) << IRIX_DEV_BITSMINOR) \
-+ | (minor&IRIX_DEV_MAXMIN)))
-+#define IRIX_DEV_TO_KDEVT(dev) makedev(IRIX_DEV_MAJOR(dev),IRIX_DEV_MINOR(dev))
-+
-+#ifndef min
-+#define min(a,b) (((a)<(b))?(a):(b))
-+#define max(a,b) (((a)>(b))?(a):(b))
-+#endif
-+
- #endif /* __CONFIG_H__ */
diff --git a/sys-fs/xfsdump/xfsdump-3.1.3.ebuild b/sys-fs/xfsdump/xfsdump-3.1.3.ebuild
deleted file mode 100644
index b242a9e90635..000000000000
--- a/sys-fs/xfsdump/xfsdump-3.1.3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit multilib eutils
-
-DESCRIPTION="xfs dump/restore utilities"
-HOMEPAGE="http://oss.sgi.com/projects/xfs"
-SRC_URI="ftp://oss.sgi.com/projects/xfs/cmd_tars/${P}.tar.gz
- ftp://oss.sgi.com/projects/xfs/previous/cmd_tars/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 -sparc x86"
-IUSE=""
-
-RDEPEND="sys-fs/e2fsprogs
- !<sys-fs/xfsprogs-3
- sys-apps/dmapi
- >=sys-apps/attr-2.4.19"
-DEPEND="${RDEPEND}
- sys-devel/gettext"
-
-src_prepare() {
- sed -i \
- -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \
- include/builddefs.in \
- || die
- epatch "${FILESDIR}"/${PN}-3.0.5-prompt-overflow.patch #335115
- epatch "${FILESDIR}"/${PN}-3.0.4-no-symlink.patch #311881
-}
-
-src_configure() {
- unset PLATFORM #184564
- export OPTIMIZER=${CFLAGS}
- export DEBUG=-DNDEBUG
-
- econf \
- --libdir=/$(get_libdir) \
- --libexecdir=/usr/$(get_libdir) \
- --sbindir=/sbin
-}
diff --git a/sys-fs/xfsdump/xfsdump-3.1.5.ebuild b/sys-fs/xfsdump/xfsdump-3.1.5.ebuild
deleted file mode 100644
index b64e028716d5..000000000000
--- a/sys-fs/xfsdump/xfsdump-3.1.5.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit multilib eutils
-
-DESCRIPTION="xfs dump/restore utilities"
-HOMEPAGE="http://oss.sgi.com/projects/xfs"
-SRC_URI="ftp://oss.sgi.com/projects/xfs/cmd_tars/${P}.tar.gz
- ftp://oss.sgi.com/projects/xfs/previous/cmd_tars/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc ~x86"
-IUSE=""
-
-RDEPEND="sys-fs/e2fsprogs
- >=sys-fs/xfsprogs-3.2.0
- sys-apps/dmapi
- >=sys-apps/attr-2.4.19"
-DEPEND="${RDEPEND}
- sys-devel/gettext"
-
-src_prepare() {
- sed -i \
- -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \
- include/builddefs.in \
- || die
- epatch "${FILESDIR}"/${PN}-3.0.5-prompt-overflow.patch #335115
- epatch "${FILESDIR}"/${PN}-3.0.4-no-symlink.patch #311881
-
- # The release when used with xfsprogs-4.2+ is ... a mess.
- epatch "${FILESDIR}"/${P}-config-platform.patch
- find -type f -name '*.c' -exec sed -i \
- -e '1i#include "config.h"' \
- -e '1i#include <assert.h>' \
- -e '1i#include <fcntl.h>' \
- -e '1i#include <stdarg.h>' \
- -e '1i#include <stdlib.h>' \
- -e '1i#include <string.h>' \
- -e '1i#include <unistd.h>' \
- -e '1i#include <sys/wait.h>' \
- {} + || die
-}
-
-src_configure() {
- unset PLATFORM #184564
- export OPTIMIZER=${CFLAGS}
- export DEBUG=-DNDEBUG
-
- econf \
- --libdir="${EPREFIX}/$(get_libdir)" \
- --libexecdir="${EPREFIX}/usr/$(get_libdir)" \
- --sbindir="${EPREFIX}/sbin"
-}