summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2020-10-30 23:25:17 +0100
committerConrad Kostecki <conikost@gentoo.org>2020-10-30 23:43:12 +0100
commit5413fb9b87df58ec7bcf4922d9049f7c666d131a (patch)
tree48fab373fd970b1d9fafea19eab8de3c80b2964e /app-benchmarks/stress-ng/files
parentapp-benchmarks/stress-ng: bump to version 0.11.23 (diff)
downloadgentoo-5413fb9b87df58ec7bcf4922d9049f7c666d131a.tar.gz
gentoo-5413fb9b87df58ec7bcf4922d9049f7c666d131a.tar.bz2
gentoo-5413fb9b87df58ec7bcf4922d9049f7c666d131a.zip
app-benchmarks/stress-ng: drop old version
Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-benchmarks/stress-ng/files')
-rw-r--r--app-benchmarks/stress-ng/files/stress-ng-0.11.17-makefile.patch61
1 files changed, 0 insertions, 61 deletions
diff --git a/app-benchmarks/stress-ng/files/stress-ng-0.11.17-makefile.patch b/app-benchmarks/stress-ng/files/stress-ng-0.11.17-makefile.patch
deleted file mode 100644
index d3c5e93b0074..000000000000
--- a/app-benchmarks/stress-ng/files/stress-ng-0.11.17-makefile.patch
+++ /dev/null
@@ -1,61 +0,0 @@
---- stress-ng-0.11.17.orig/Makefile 2020-07-27 13:38:23.000000000 +0200
-+++ stress-ng-0.11.17/Makefile 2020-08-09 13:43:30.919796477 +0200
-@@ -21,7 +21,7 @@
- # Codename "synthetic system strainer"
- #
-
--CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"' -O2 -std=gnu99
-+CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"' -std=gnu99
-
- #
- # Pedantic flags
-@@ -358,12 +358,10 @@
- .o: stress-ng.h Makefile
-
- .c.o:
-- @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:
-@@ -384,7 +382,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 $<"
-+ echo "CC $<"
- @$(CC) -c apparmor-data.c -o apparmor-data.o
- @rm -rf apparmor-data.c apparmor-data.bin
-
-@@ -401,12 +399,12 @@
- @$(CC) $(CFLAGS) -E core-perf-event.c | grep "PERF_COUNT" | \
- sed 's/,/ /' | sed s/'^ *//' | \
- awk {'print "#define _SNG_" $$1 " (1)"'} > core-perf-event.h
-- @echo CC $<
-- @$(CC) $(CFLAGS) -c -o $@ $<
-+ echo CC $<
-+ $(CC) $(CFLAGS) -c -o $@ $<
-
- stress-vecmath.o: stress-vecmath.c
-- @echo CC $<
-- @$(CC) $(CFLAGS) -fno-builtin -c -o $@ $<
-+ echo CC $<
-+ $(CC) $(CFLAGS) -fno-builtin -c -o $@ $<
- @touch stress-ng.c
-
- $(OBJS): stress-ng.h Makefile
-@@ -459,7 +457,7 @@
- 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}
- mkdir -p ${DESTDIR}${BASHDIR}