pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

triforce-afl: Updated Makefile to require python 27



Module Name:	pkgsrc-wip
Committed By:	akulpillai <vishnu%akulpillai.com@localhost>
Pushed By:	akulpillai
Date:		Fri May 31 08:24:30 2019 +0000
Changeset:	90843588f23125937ba0147c17a3ae132f8675f3

Modified Files:
	triforce-afl/Makefile
	triforce-afl/PLIST
	triforce-afl/distinfo
	triforce-afl/patches/patch-qemu__mode_build__qemu__support.sh

Log Message:
triforce-afl: Updated Makefile to require python 27

Removed x86_64-bsd-user form target list.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=90843588f23125937ba0147c17a3ae132f8675f3

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 triforce-afl/Makefile                                         | 4 ++--
 triforce-afl/PLIST                                            | 1 -
 triforce-afl/distinfo                                         | 2 +-
 triforce-afl/patches/patch-qemu__mode_build__qemu__support.sh | 9 ++++-----
 4 files changed, 7 insertions(+), 9 deletions(-)

diffs:
diff --git a/triforce-afl/Makefile b/triforce-afl/Makefile
index 5dbd8f014f..2601e11b44 100644
--- a/triforce-afl/Makefile
+++ b/triforce-afl/Makefile
@@ -11,10 +11,10 @@ HOMEPAGE=	https://github.com/nccgroup/TriforceAFL/
 COMMENT=	AFL/QEMU fuzzing with full-system emulation
 LICENSE=	apache-2.0
 
-WRKSRC=		${WRKDIR}/TriforceAFL-${GITHUB_TAG}
-
 USE_TOOLS=	bison gmake pkg-config makeinfo perl:build
 
+PYTHON_VERSIONS_ACCEPTED=	27
+
 .include "../../devel/glib2/buildlink3.mk"
 .include "../../devel/ncurses/buildlink3.mk"
 .include "../../devel/zlib/buildlink3.mk"
diff --git a/triforce-afl/PLIST b/triforce-afl/PLIST
index c65108e004..a702c51d41 100644
--- a/triforce-afl/PLIST
+++ b/triforce-afl/PLIST
@@ -8,7 +8,6 @@ bin/afl-g++
 bin/afl-gcc
 bin/afl-gotcpu
 bin/afl-plot
-bin/afl-qemu-trace
 bin/afl-showmap
 bin/afl-tmin
 bin/afl-whatsup
diff --git a/triforce-afl/distinfo b/triforce-afl/distinfo
index 846cf5df79..d57b55c5ca 100644
--- a/triforce-afl/distinfo
+++ b/triforce-afl/distinfo
@@ -4,7 +4,7 @@ SHA1 (TriforceAFL-2a8ed329233a921044c903222fc3aa029ef68c69.tar.gz) = 9ab14327000
 RMD160 (TriforceAFL-2a8ed329233a921044c903222fc3aa029ef68c69.tar.gz) = e4c34a542de1e6a5f6cad204fcea17858e7b6a34
 SHA512 (TriforceAFL-2a8ed329233a921044c903222fc3aa029ef68c69.tar.gz) = aac1abb5e9d334923a4d6dab159e518bce1944573884e1012620aff139d4d0abcdbca41104c1c2eed9006fc277321f1f13212a698a7b7c49c6b0f1f98078d2e0
 Size (TriforceAFL-2a8ed329233a921044c903222fc3aa029ef68c69.tar.gz) = 32045053 bytes
-SHA1 (patch-qemu__mode_build__qemu__support.sh) = ecb1dc079de08072e31d67d0d992d13cb343ca5a
+SHA1 (patch-qemu__mode_build__qemu__support.sh) = 43030caa2f9ea1c737aa3e3701fbf473a10b1e0b
 SHA1 (patch-qemu__mode_qemu_Makefile) = 8d8baa55e4f93ba635f9399c8e0a29f6f59d2292
 SHA1 (patch-qemu__mode_qemu_audio_audio.c) = aaa82ac3208ef605cb6f5b0fabd38a0d223f21f2
 SHA1 (patch-qemu__mode_qemu_hw_display_omap__dss.c) = 48f38ead6aa5a14b13f87e44217bb551817280ad
diff --git a/triforce-afl/patches/patch-qemu__mode_build__qemu__support.sh b/triforce-afl/patches/patch-qemu__mode_build__qemu__support.sh
index adf7b85a1d..d12d8f4c81 100644
--- a/triforce-afl/patches/patch-qemu__mode_build__qemu__support.sh
+++ b/triforce-afl/patches/patch-qemu__mode_build__qemu__support.sh
@@ -1,22 +1,21 @@
 $NetBSD$
 
-Build qemu x86_64-bsd-user instead of linux user
+Don't build bsd-user
 
 --- qemu_mode/build_qemu_support.sh.orig	2017-05-31 22:53:05.000000000 +0000
 +++ qemu_mode/build_qemu_support.sh
-@@ -6,12 +6,12 @@
+@@ -6,12 +6,11 @@
  cd qemu
  
  CFLAGS="-O3" ./configure --disable-werror \
 -  --enable-system --enable-linux-user \
-+  --enable-system --enable-bsd-user \
++  --enable-system --disable-bsd-user \
    --enable-guest-base --disable-gtk --disable-sdl --disable-vnc \
 -  --target-list="x86_64-linux-user x86_64-softmmu arm-softmmu aarch64-softmmu"
-+  --target-list="x86_64-bsd-user x86_64-softmmu arm-softmmu aarch64-softmmu"
++  --target-list="x86_64-softmmu arm-softmmu aarch64-softmmu"
  
  make
 -cp -f "x86_64-linux-user/qemu-x86_64" "../../afl-qemu-trace"
-+cp -f "x86_64-bsd-user/qemu-x86_64" "../../afl-qemu-trace"
  cp -f "x86_64-softmmu/qemu-system-x86_64" "../../afl-qemu-system-trace"
  cp -f "x86_64-softmmu/qemu-system-x86_64" "../../qemu-system-x86_64"
  cp -f "arm-softmmu/qemu-system-arm" "../../qemu-system-arm"


Home | Main Index | Thread Index | Old Index