summaryrefslogtreecommitdiff
path: root/app-misc/pipeworks
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /app-misc/pipeworks
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'app-misc/pipeworks')
-rw-r--r--app-misc/pipeworks/Manifest1
-rw-r--r--app-misc/pipeworks/files/pipeworks-0.4-makefile.patch26
-rw-r--r--app-misc/pipeworks/metadata.xml10
-rw-r--r--app-misc/pipeworks/pipeworks-0.4-r2.ebuild26
4 files changed, 0 insertions, 63 deletions
diff --git a/app-misc/pipeworks/Manifest b/app-misc/pipeworks/Manifest
deleted file mode 100644
index 52204d218658..000000000000
--- a/app-misc/pipeworks/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pipeworks-0.4.tar.gz 11560 BLAKE2B ddc28cc26e4f6305eacf6f888cb11a205f1ec64b180a328dda7e250cfef8d98f52374301066ef844739f7f85a4d344307d21d4704c33f450db2740121a631182 SHA512 ddd9875deab26d0f0b673846c7838733a2c3ec573fbd06d85e4058adb3b0d5274daeac1165b573743b8b3da6aa05c24b9ecc0ac788b24a42cf0f379a8eb56ebd
diff --git a/app-misc/pipeworks/files/pipeworks-0.4-makefile.patch b/app-misc/pipeworks/files/pipeworks-0.4-makefile.patch
deleted file mode 100644
index 8a52d158b0e4..000000000000
--- a/app-misc/pipeworks/files/pipeworks-0.4-makefile.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -18,21 +18,11 @@
- # along with pipeworks; if not, write to the Free Software
- # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
--CC= gcc -Wall
-+CFLAGS += -Wall
-
- all: pipeworks
-
--filesize.o: Makefile filesize.h filesize.c
-- $(CC) -c -o filesize.o filesize.c
--
--timemanip.o: Makefile timemanip.h timemanip.c
-- $(CC) -c -o timemanip.o timemanip.c
--
--pipeworks.o: Makefile pipeworks.c filesize.h
-- $(CC) -c -o pipeworks.o pipeworks.c
--
--pipeworks: pipeworks.o filesize.o timemanip.o
-- $(CC) -o pipeworks pipeworks.o filesize.o timemanip.o
-+pipeworks: filesize.o timemanip.o
-
- clean:
- rm -f *.o *~ pipeworks
diff --git a/app-misc/pipeworks/metadata.xml b/app-misc/pipeworks/metadata.xml
deleted file mode 100644
index 70a62212909c..000000000000
--- a/app-misc/pipeworks/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <longdescription>
- pipeworks is a benchmarking tool for pipelines that is very similar to pipemeter. It writes its stdin to its
- stdout, while reporting the data flow rate to stderr. It features adjustable block size and bandwidth limiting
- capabilities.
- </longdescription>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/app-misc/pipeworks/pipeworks-0.4-r2.ebuild b/app-misc/pipeworks/pipeworks-0.4-r2.ebuild
deleted file mode 100644
index 5398b744d774..000000000000
--- a/app-misc/pipeworks/pipeworks-0.4-r2.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="Small utility that measures throughput between stdin and stdout"
-HOMEPAGE="https://sourceforge.net/projects/pipeworks/"
-SRC_URI="https://downloads.sourceforge.net/pipeworks/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-
-PATCHES=( "${FILESDIR}"/${P}-makefile.patch )
-
-src_configure() {
- tc-export CC
-}
-
-src_install() {
- dobin pipeworks
- doman pipeworks.1
- dodoc Changelog README
-}