summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conrad@kostecki.com>2018-11-27 23:54:56 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2018-12-16 20:29:13 +0100
commit0fa26d7f579e478eec8b42a9ef27c41eca89e57f (patch)
tree25f2b19e93ad70af3b40eff7a950b6a54a94e9ca /app-benchmarks/stress-ng/files
parentapp-benchmarks/stress-ng: bump to version 0.09.47 (diff)
downloadgentoo-0fa26d7f579e478eec8b42a9ef27c41eca89e57f.tar.gz
gentoo-0fa26d7f579e478eec8b42a9ef27c41eca89e57f.tar.bz2
gentoo-0fa26d7f579e478eec8b42a9ef27c41eca89e57f.zip
app-benchmarks/stress-ng: drop old version
Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Conrad Kostecki <conrad@kostecki.com> Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-benchmarks/stress-ng/files')
-rw-r--r--app-benchmarks/stress-ng/files/stress-ng-0.09.42-makefile.patch64
1 files changed, 0 insertions, 64 deletions
diff --git a/app-benchmarks/stress-ng/files/stress-ng-0.09.42-makefile.patch b/app-benchmarks/stress-ng/files/stress-ng-0.09.42-makefile.patch
deleted file mode 100644
index 66c07acf6793..000000000000
--- a/app-benchmarks/stress-ng/files/stress-ng-0.09.42-makefile.patch
+++ /dev/null
@@ -1,64 +0,0 @@
---- a/Makefile 2018-10-05 11:49:55.000000000 +0200
-+++ b/Makefile 2018-10-05 17:28:38.000000000 +0200
-@@ -21,7 +21,7 @@
- # Codename "portable pressure producer"
- #
-
--CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"' -O2 -std=gnu99 -pipe
-+CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"' -std=gnu99
-
- #
- # Pedantic flags
-@@ -339,12 +339,10 @@
- .o: stress-ng.h Makefile
-
- .c.o: stress-ng.h Makefile $(SRC)
-- @echo "CC $<"
-- @$(CC) $(CFLAGS) -c -o $@ $<
-+ $(CC) $(CFLAGS) -c -o $@ $<
-
- stress-ng: $(OBJS)
-- @echo "LD $@"
-- @$(CC) $(CPPFLAGS) $(CFLAGS) $(OBJS) -lm $(LDFLAGS) -o $@
-+ $(CC) $(CPPFLAGS) $(CFLAGS) $(OBJS) -lm $(LDFLAGS) -o $@
- @sync
-
- makeconfig:
-@@ -365,8 +363,7 @@
- sed '$$ s/.$$//' >> apparmor-data.c
- @echo "};" >> apparmor-data.c
- @echo "const size_t g_apparmor_data_len = sizeof(g_apparmor_data);" >> apparmor-data.c
-- @echo "CC $<"
-- @$(CC) -c apparmor-data.c -o apparmor-data.o
-+ $(CC) -c apparmor-data.c -o apparmor-data.o
- @rm -rf apparmor-data.c apparmor-data.bin
-
- #
-@@ -381,12 +378,10 @@
- perf.o: perf.c perf-event.c
- @$(CC) $(CFLAGS) -E perf-event.c | grep "PERF_COUNT" | sed 's/,/ /' | \
- awk {'print "#define _SNG_" $$1 " (1)"'} > perf-event.h
-- @echo CC $<
-- @$(CC) $(CFLAGS) -c -o $@ $<
-+ $(CC) $(CFLAGS) -c -o $@ $<
-
- stress-vecmath.o: stress-vecmath.c
-- @echo CC $<
-- @$(CC) $(CFLAGS) -fno-builtin -c -o $@ $<
-+ $(CC) $(CFLAGS) -fno-builtin -c -o $@ $<
- @touch stress-ng.c
-
- $(OBJS): stress-ng.h Makefile
-@@ -430,10 +425,10 @@
- ./stress-ng --seq 0 -t 15 --pathological --verbose --times --tz --metrics
-
- .PHONY: install
--install: stress-ng stress-ng.1.gz
-+install: stress-ng
- mkdir -p ${DESTDIR}${BINDIR}
- cp stress-ng ${DESTDIR}${BINDIR}
- mkdir -p ${DESTDIR}${MANDIR}
-- cp stress-ng.1.gz ${DESTDIR}${MANDIR}
-+ cp stress-ng.1 ${DESTDIR}${MANDIR}
- mkdir -p ${DESTDIR}${JOBDIR}
- cp -rp example-jobs/*.job ${DESTDIR}${JOBDIR}