summaryrefslogtreecommitdiff
path: root/app-arch/tapeutils
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /app-arch/tapeutils
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'app-arch/tapeutils')
-rw-r--r--app-arch/tapeutils/Manifest1
-rw-r--r--app-arch/tapeutils/files/tapeutils-0.4-fix-C-decl.patch31
-rw-r--r--app-arch/tapeutils/files/tapeutils-0.4-fix-build-system.patch11
-rw-r--r--app-arch/tapeutils/metadata.xml8
-rw-r--r--app-arch/tapeutils/tapeutils-0.4-r1.ebuild30
5 files changed, 0 insertions, 81 deletions
diff --git a/app-arch/tapeutils/Manifest b/app-arch/tapeutils/Manifest
deleted file mode 100644
index 59bb50a77528..000000000000
--- a/app-arch/tapeutils/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST tapeutils-0.4.tar.gz 14116 BLAKE2B 1eb633ef1593b6f50142ae0128438a4346fafdaa4a847ff9e21caf278f1123844af16dc2c04d3d0cc2c015d0ec7fc15eaab48e6be9ae7c18d3cd2972434f2617 SHA512 b87b725c3f1610f5a116263120ffea84a7e81146cc9e46be69391388bb0b3bf4814d16428bfabd285557a0f72a3607f138e454b61989f2606697875e30c948bd
diff --git a/app-arch/tapeutils/files/tapeutils-0.4-fix-C-decl.patch b/app-arch/tapeutils/files/tapeutils-0.4-fix-C-decl.patch
deleted file mode 100644
index ee07c252d168..000000000000
--- a/app-arch/tapeutils/files/tapeutils-0.4-fix-C-decl.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- a/tapecopy.c
-+++ b/tapecopy.c
-@@ -26,6 +26,8 @@
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
-
-+#include <stdlib.h>
-+
- #include "tapeio.h"
- #include "stdio.h"
- #include "stdarg.h"
---- a/tapedump.c
-+++ b/tapedump.c
-@@ -26,6 +26,8 @@
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
-
-+#include <stdlib.h>
-+
- #include "tapeio.h"
- #include "stdio.h"
- #include "stdarg.h"
-@@ -158,7 +160,7 @@
- len = getrec (src, buf, MAX_REC_LEN);
- if (len == 0)
- {
-- printf ("total length of file %d = %d records, %d bytes\n",
-+ printf ("total length of file %d = %d records, %lu bytes\n",
- file, record, filebytes);
- tapebytes += filebytes;
- file++;
diff --git a/app-arch/tapeutils/files/tapeutils-0.4-fix-build-system.patch b/app-arch/tapeutils/files/tapeutils-0.4-fix-build-system.patch
deleted file mode 100644
index e1670a47fe2b..000000000000
--- a/app-arch/tapeutils/files/tapeutils-0.4-fix-build-system.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -20,8 +20,6 @@
- # options
- # -----------------------------------------------------------------------------
-
--CFLAGS = -O2
--LDFLAGS =
-
- # CFLAGS = -g
- # LDFLAGS = -g
diff --git a/app-arch/tapeutils/metadata.xml b/app-arch/tapeutils/metadata.xml
deleted file mode 100644
index a551e17802d7..000000000000
--- a/app-arch/tapeutils/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>robbat2@gentoo.org</email>
- <name>Robin H. Johnson</name>
- </maintainer>
-</pkgmetadata>
diff --git a/app-arch/tapeutils/tapeutils-0.4-r1.ebuild b/app-arch/tapeutils/tapeutils-0.4-r1.ebuild
deleted file mode 100644
index 3910ba59b41b..000000000000
--- a/app-arch/tapeutils/tapeutils-0.4-r1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="Utilities for manipulation of tapes and tape image files"
-HOMEPAGE="http://www.brouhaha.com/~eric/software/tapeutils/"
-SRC_URI="http://www.brouhaha.com/~eric/software/tapeutils/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-RDEPEND="!app-emulation/hercules"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.4-fix-build-system.patch
- "${FILESDIR}"/${PN}-0.4-fix-C-decl.patch
-)
-
-src_configure() {
- tc-export CC
-}
-
-src_install() {
- dobin tapecopy tapedump
- # no docs to install
-}