Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/contest/, app-benchmarks/contest/files/, profiles/
Date: Mon, 01 Feb 2021 09:50:33
Message-Id: 1612173011.f3628c21070326d4b0a82eefb494851b6dad9e3a.mgorny@gentoo
1 commit: f3628c21070326d4b0a82eefb494851b6dad9e3a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 1 09:46:59 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 1 09:50:11 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3628c21
7
8 app-benchmarks/contest: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/706824
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 app-benchmarks/contest/Manifest | 1 -
14 app-benchmarks/contest/contest-0.61-r1.ebuild | 37 ----------------------
15 .../files/contest-0.61-fix-buildsystem.patch | 22 -------------
16 .../contest/files/contest-fortify_sources.patch | 11 -------
17 app-benchmarks/contest/metadata.xml | 5 ---
18 profiles/package.mask | 6 ----
19 6 files changed, 82 deletions(-)
20
21 diff --git a/app-benchmarks/contest/Manifest b/app-benchmarks/contest/Manifest
22 deleted file mode 100644
23 index 948697b5dbd..00000000000
24 --- a/app-benchmarks/contest/Manifest
25 +++ /dev/null
26 @@ -1 +0,0 @@
27 -DIST contest-0.61.tar.bz2 29204 BLAKE2B 76e19365026b63f4a37c45905769f28c921455cb4020666898efa332d88627d85e5044f385556f07325537b6b4f80079b301fd9915f068754dd80d815092ff86 SHA512 34fb83a3b37d67d9729ce14fdd066010c7360a401d21f3566be8dae7271a30f01cc5b84092405ddfb6961a2284af0a18ce6709ab6d4ab68607aa98f975815131
28
29 diff --git a/app-benchmarks/contest/contest-0.61-r1.ebuild b/app-benchmarks/contest/contest-0.61-r1.ebuild
30 deleted file mode 100644
31 index f5671af63d0..00000000000
32 --- a/app-benchmarks/contest/contest-0.61-r1.ebuild
33 +++ /dev/null
34 @@ -1,37 +0,0 @@
35 -# Copyright 1999-2020 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=6
39 -
40 -inherit flag-o-matic toolchain-funcs
41 -
42 -DESCRIPTION="Test system responsiveness to compare different kernels"
43 -HOMEPAGE="http://users.tpg.com.au/ckolivas/contest/"
44 -SRC_URI="http://www.tux.org/pub/kernel/people/ck/apps/${PN}/${P}.tar.bz2"
45 -
46 -LICENSE="GPL-2"
47 -SLOT="0"
48 -KEYWORDS="amd64 ppc x86"
49 -
50 -RDEPEND=">=app-benchmarks/dbench-2.0"
51 -PATCHES=(
52 - "${FILESDIR}/${PN}-fortify_sources.patch"
53 - "${FILESDIR}/${P}-fix-buildsystem.patch"
54 -)
55 -
56 -src_prepare() {
57 - # fix #570250 by restoring pre-GCC5 inline semantics
58 - append-cflags -std=gnu89
59 -
60 - default
61 - tc-export CC
62 -}
63 -src_compile() {
64 - emake
65 -}
66 -
67 -src_install() {
68 - dobin contest
69 - doman contest.1
70 - dodoc README
71 -}
72
73 diff --git a/app-benchmarks/contest/files/contest-0.61-fix-buildsystem.patch b/app-benchmarks/contest/files/contest-0.61-fix-buildsystem.patch
74 deleted file mode 100644
75 index 7e8c6b7eb6a..00000000000
76 --- a/app-benchmarks/contest/files/contest-0.61-fix-buildsystem.patch
77 +++ /dev/null
78 @@ -1,22 +0,0 @@
79 ---- contest-0.61/Makefile
80 -+++ contest-0.61/Makefile
81 -@@ -1,8 +1,8 @@
82 - INSTPATH=/usr
83 - BIN=$(INSTPATH)/bin
84 - MAN=$(INSTPATH)/man
85 --CC=gcc
86 --CFLAGS= -W -Wall -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations \
87 -+CC?=gcc
88 -+CFLAGS?= -W -Wall -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations \
89 - -g -O2
90 -
91 - ifeq ($(shell uname),FreeBSD)
92 -@@ -14,7 +14,7 @@
93 - list_load.o
94 -
95 - contest: $(objs)
96 -- $(CC) $(CFLAGS) -o $@ $(objs) $(KVM)
97 -+ $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $(objs) $(KVM)
98 - contest.1.gz: contest.1
99 - gzip -c contest.1 > contest.1.gz
100 - install: contest contest.1.gz
101
102 diff --git a/app-benchmarks/contest/files/contest-fortify_sources.patch b/app-benchmarks/contest/files/contest-fortify_sources.patch
103 deleted file mode 100644
104 index 04206582261..00000000000
105 --- a/app-benchmarks/contest/files/contest-fortify_sources.patch
106 +++ /dev/null
107 @@ -1,11 +0,0 @@
108 ---- contest-0.61/bmark.c 2009-02-27 23:13:44.000000000 +0000
109 -+++ contest-0.61/bmark.c 2009-02-27 23:12:44.000000000 +0000
110 -@@ -47,7 +47,7 @@
111 - }
112 - /* child */
113 -
114 -- if((tmpfd=open(TMP_FILE, O_RDWR|O_CREAT|O_TRUNC))==-1){
115 -+ if((tmpfd=open(TMP_FILE, O_RDWR|O_CREAT|O_TRUNC, S_IRUSR|S_IWUSR))==-1){
116 - printsys("Could not open temporary file\n");
117 - }
118 - if(dup2(tmpfd, TMP_FD)==-1){
119
120 diff --git a/app-benchmarks/contest/metadata.xml b/app-benchmarks/contest/metadata.xml
121 deleted file mode 100644
122 index 6f49eba8f49..00000000000
123 --- a/app-benchmarks/contest/metadata.xml
124 +++ /dev/null
125 @@ -1,5 +0,0 @@
126 -<?xml version="1.0" encoding="UTF-8"?>
127 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
128 -<pkgmetadata>
129 -<!-- maintainer-needed -->
130 -</pkgmetadata>
131
132 diff --git a/profiles/package.mask b/profiles/package.mask
133 index 7f48ea238a6..67ceeae2082 100644
134 --- a/profiles/package.mask
135 +++ b/profiles/package.mask
136 @@ -218,12 +218,6 @@ net-dialup/diald
137 # Removal in 30 days.
138 net-vpn/networkmanager-wireguard
139
140 -# Stephan Hartmann <sultan@g.o> (2021-01-01)
141 -# Fails with -fno-common, homepage gone, source gone,
142 -# no maintainer.
143 -# Removal in 30 days. See bug #706824.
144 -app-benchmarks/contest
145 -
146 # Sam James <sam@g.o> (2021-01-01)
147 # UnrealIRCd 4.x is EOL. Please upgrade to 5.x.
148 # To be removed shortly.