summaryrefslogtreecommitdiff
path: root/app-benchmarks/contest
diff options
context:
space:
mode:
Diffstat (limited to 'app-benchmarks/contest')
-rw-r--r--app-benchmarks/contest/Manifest5
-rw-r--r--app-benchmarks/contest/contest-0.61-r1.ebuild37
-rw-r--r--app-benchmarks/contest/files/contest-0.61-fix-buildsystem.patch22
-rw-r--r--app-benchmarks/contest/files/contest-fortify_sources.patch11
-rw-r--r--app-benchmarks/contest/metadata.xml5
5 files changed, 0 insertions, 80 deletions
diff --git a/app-benchmarks/contest/Manifest b/app-benchmarks/contest/Manifest
deleted file mode 100644
index dcb9938ba2b1..000000000000
--- a/app-benchmarks/contest/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-AUX contest-0.61-fix-buildsystem.patch 581 BLAKE2B 9a11fb9b24a674a7bea0c40b9100fa3813954b853cd133cf69b90b0a3381a20ef289793939834c777140709082b262715990900af16c422442fc2215be2922f2 SHA512 35abe08432d62020a1c9daa2c9bae18dd2d8db99d3f938f9eb423d89b30c9d67441922bef5376c9e4b5be1744fb62b6e7c0163033f006225638f95c097f484a3
-AUX contest-fortify_sources.patch 376 BLAKE2B fb2ca7869fc19304c14aa2e52e0d3986f2021703800f547af5f88b866978a016e82b2e2911192465d7836bbbc297ab25f7d7d3499759ee9ff915ee28a2e0e089 SHA512 71bb1d0b594bfa2342622c5495ea0306829ced109fd606bdfb5e1aecc17b11270235f83606961067819097863ba3bff66e5c37c5496028ccce3f1701ee9bdb2f
-DIST contest-0.61.tar.bz2 29204 BLAKE2B 76e19365026b63f4a37c45905769f28c921455cb4020666898efa332d88627d85e5044f385556f07325537b6b4f80079b301fd9915f068754dd80d815092ff86 SHA512 34fb83a3b37d67d9729ce14fdd066010c7360a401d21f3566be8dae7271a30f01cc5b84092405ddfb6961a2284af0a18ce6709ab6d4ab68607aa98f975815131
-EBUILD contest-0.61-r1.ebuild 748 BLAKE2B 381d04337604a40818acdf923dc9303dbd77c04099b1a798744e19ddbffc9bde50c7676be5e73c2a08c4b21fc55cc8eb5a3f19b15aba3adef8fcc09bc6176662 SHA512 0eee6b57d027845e57afb4535ef91c233652803c91f7f0830ef4573b48f95526e403f13627e442419f42232aceebd3be2125e5cb1382529f15e6b883b6266543
-MISC metadata.xml 166 BLAKE2B c254f1fb642881aba57637be14fb0a89b10384f91a128feaec3a8c870d76efc2cbacb92caccc0dee2dd19a5ac5eaf8643080dafa05c4e2ac96a68568927e5afd SHA512 a56648c974a1d14dd4c18237532773c72057a13ab90c58b5da04f185e3c12a8bd8d5c21fb06053507f31766291a82dc7d87b34cd65fd94cfe2af7295c813ef84
diff --git a/app-benchmarks/contest/contest-0.61-r1.ebuild b/app-benchmarks/contest/contest-0.61-r1.ebuild
deleted file mode 100644
index f5671af63d0d..000000000000
--- a/app-benchmarks/contest/contest-0.61-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="Test system responsiveness to compare different kernels"
-HOMEPAGE="http://users.tpg.com.au/ckolivas/contest/"
-SRC_URI="http://www.tux.org/pub/kernel/people/ck/apps/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-
-RDEPEND=">=app-benchmarks/dbench-2.0"
-PATCHES=(
- "${FILESDIR}/${PN}-fortify_sources.patch"
- "${FILESDIR}/${P}-fix-buildsystem.patch"
-)
-
-src_prepare() {
- # fix #570250 by restoring pre-GCC5 inline semantics
- append-cflags -std=gnu89
-
- default
- tc-export CC
-}
-src_compile() {
- emake
-}
-
-src_install() {
- dobin contest
- doman contest.1
- dodoc README
-}
diff --git a/app-benchmarks/contest/files/contest-0.61-fix-buildsystem.patch b/app-benchmarks/contest/files/contest-0.61-fix-buildsystem.patch
deleted file mode 100644
index 7e8c6b7eb6a2..000000000000
--- a/app-benchmarks/contest/files/contest-0.61-fix-buildsystem.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- contest-0.61/Makefile
-+++ contest-0.61/Makefile
-@@ -1,8 +1,8 @@
- INSTPATH=/usr
- BIN=$(INSTPATH)/bin
- MAN=$(INSTPATH)/man
--CC=gcc
--CFLAGS= -W -Wall -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations \
-+CC?=gcc
-+CFLAGS?= -W -Wall -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations \
- -g -O2
-
- ifeq ($(shell uname),FreeBSD)
-@@ -14,7 +14,7 @@
- list_load.o
-
- contest: $(objs)
-- $(CC) $(CFLAGS) -o $@ $(objs) $(KVM)
-+ $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(objs) $(KVM)
- contest.1.gz: contest.1
- gzip -c contest.1 > contest.1.gz
- install: contest contest.1.gz
diff --git a/app-benchmarks/contest/files/contest-fortify_sources.patch b/app-benchmarks/contest/files/contest-fortify_sources.patch
deleted file mode 100644
index 042065822612..000000000000
--- a/app-benchmarks/contest/files/contest-fortify_sources.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- contest-0.61/bmark.c 2009-02-27 23:13:44.000000000 +0000
-+++ contest-0.61/bmark.c 2009-02-27 23:12:44.000000000 +0000
-@@ -47,7 +47,7 @@
- }
- /* child */
-
-- if((tmpfd=open(TMP_FILE, O_RDWR|O_CREAT|O_TRUNC))==-1){
-+ if((tmpfd=open(TMP_FILE, O_RDWR|O_CREAT|O_TRUNC, S_IRUSR|S_IWUSR))==-1){
- printsys("Could not open temporary file\n");
- }
- if(dup2(tmpfd, TMP_FD)==-1){
diff --git a/app-benchmarks/contest/metadata.xml b/app-benchmarks/contest/metadata.xml
deleted file mode 100644
index 6f49eba8f496..000000000000
--- a/app-benchmarks/contest/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>