pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/radare2
Module Name: pkgsrc
Committed By: leot
Date: Sun Mar 21 13:16:47 UTC 2021
Modified Files:
pkgsrc/devel/radare2: Makefile PLIST distinfo
Removed Files:
pkgsrc/devel/radare2/patches: patch-libr_anal_p_pyc.mk
patch-libr_anal_p_wasm.mk patch-libr_debug_Makefile
Log Message:
radare2: Update to 5.1.1
pkgsrc changes:
- Remove no longer needed patches: applied upstream
- Use PRINT_PLIST_AWK so print-PLIST will generate proper PLIST
Changes:
5.1.1
-----
This is a minor bug fix release after 5.1.0 was out. But as usual it
comes with some new features! Contents are mainly bug fixes and
behaviour and abi compat should be fine 5.0.0, this is, all the built
packages for 5.1.x will work.
- New:
* UDS Search: new `/cu' command search for UDS tables, code taken from
binbloom
* Color2g graph nodes
* Visual Gameboy 2bpp Pixmaps: visual mode can be used to search for 2bpp
bitmaps usually embedded in Gameboy roms
* Encoding charsets
* Reverse Shell: new `=r' command to get access to a shell on a machine under
NAT or firewall
- Other Improvements
* Analysis
* Allow to analyze bigger functions by reducing the stackframe usage and
using anal.depth better
* Reclassify some AVR instructions away from SWI
* Assembler
* Improve .fill and rasm2 -hh with documented directives
* Refactor and cleanup the z80 assembler
* bin
* Faster mach0 and dyldcache parsers
* Fix iCj for mach0
* build
* Fix a credentials downgrade problem in Install.sh
* Introduce w32 and w64 in the CI
* Add Windows ZIP in the CI (#18310)
* Assign radare2 binr target
* Support statically linking system OpenSSL
* Define PYC_ROOT and WASM_ROOT (#18290)
* shell
* Add print, println, and placeholder for printf and printfln
To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 pkgsrc/devel/radare2/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/radare2/PLIST
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/radare2/distinfo
cvs rdiff -u -r1.1 -r0 pkgsrc/devel/radare2/patches/patch-libr_anal_p_pyc.mk
cvs rdiff -u -r1.2 -r0 pkgsrc/devel/radare2/patches/patch-libr_anal_p_wasm.mk
cvs rdiff -u -r1.3 -r0 pkgsrc/devel/radare2/patches/patch-libr_debug_Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/radare2/Makefile
diff -u pkgsrc/devel/radare2/Makefile:1.28 pkgsrc/devel/radare2/Makefile:1.29
--- pkgsrc/devel/radare2/Makefile:1.28 Tue Jan 26 14:25:00 2021
+++ pkgsrc/devel/radare2/Makefile Sun Mar 21 13:16:47 2021
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.28 2021/01/26 14:25:00 kamil Exp $
+# $NetBSD: Makefile,v 1.29 2021/03/21 13:16:47 leot Exp $
-DISTNAME= radare2-5.1.0
+DISTNAME= radare2-5.1.1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=radareorg/}
@@ -20,8 +20,12 @@ USE_TOOLS+= gmake patch pkg-config perl
# node
CHECK_INTERPRETER_SKIP+= share/radare2/${PKGVERSION_NOREV}/www/m/fonts/iconjar-map.js
-#PLIST_SUBST+= R2VERSION=${PKGVERSION_NOREV}-git # trunk revision
-PLIST_SUBST+= R2VERSION=${PKGVERSION_NOREV} # release revision
+#R2VERSION= ${PKGVERSION_NOREV}-git # trunk revision
+R2VERSION= ${PKGVERSION_NOREV} # release version
+
+PLIST_SUBST+= R2VERSION=${R2VERSION}
+
+PRINT_PLIST_AWK+= { gsub(/${R2VERSION}/, "$${R2VERSION}") }
.include "options.mk"
Index: pkgsrc/devel/radare2/PLIST
diff -u pkgsrc/devel/radare2/PLIST:1.8 pkgsrc/devel/radare2/PLIST:1.9
--- pkgsrc/devel/radare2/PLIST:1.8 Tue Jan 26 14:25:00 2021
+++ pkgsrc/devel/radare2/PLIST Sun Mar 21 13:16:47 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.8 2021/01/26 14:25:00 kamil Exp $
+@comment $NetBSD: PLIST,v 1.9 2021/03/21 13:16:47 leot Exp $
bin/r2
bin/r2agent
bin/r2p
@@ -128,6 +128,7 @@ include/libr/sdb/config.h
include/libr/sdb/dict.h
include/libr/sdb/ht_inc.h
include/libr/sdb/ht_pp.h
+include/libr/sdb/ht_pu.h
include/libr/sdb/ht_up.h
include/libr/sdb/ht_uu.h
include/libr/sdb/ls.h
@@ -651,8 +652,10 @@ share/radare2/${R2VERSION}/www/m/app.js
share/radare2/${R2VERSION}/www/m/disasmNavProvider.js
share/radare2/${R2VERSION}/www/m/disasmProvider.js
share/radare2/${R2VERSION}/www/m/hexchunkProvider.js
+share/radare2/${R2VERSION}/www/m/images/apple-touch-icon.png
share/radare2/${R2VERSION}/www/m/images/icon.png
share/radare2/${R2VERSION}/www/m/images/rlogo256.png
+share/radare2/${R2VERSION}/www/m/images/touch/chrome-touch-icon-192x192.png
share/radare2/${R2VERSION}/www/m/images/user.jpg
share/radare2/${R2VERSION}/www/m/index.html
share/radare2/${R2VERSION}/www/m/legacy.js
Index: pkgsrc/devel/radare2/distinfo
diff -u pkgsrc/devel/radare2/distinfo:1.11 pkgsrc/devel/radare2/distinfo:1.12
--- pkgsrc/devel/radare2/distinfo:1.11 Tue Jan 26 14:25:00 2021
+++ pkgsrc/devel/radare2/distinfo Sun Mar 21 13:16:47 2021
@@ -1,10 +1,7 @@
-$NetBSD: distinfo,v 1.11 2021/01/26 14:25:00 kamil Exp $
+$NetBSD: distinfo,v 1.12 2021/03/21 13:16:47 leot Exp $
-SHA1 (radare2-5.1.0.tar.gz) = b40c2fad2cf3030e517cba56b71cdac319ffa79d
-RMD160 (radare2-5.1.0.tar.gz) = 5e244dd387ff4c48c7a9c3b57193aad48cc9be66
-SHA512 (radare2-5.1.0.tar.gz) = f973aeeb4d3a1e9eaf889a14bba4d54568dc2527d1160c7d999a7b2c870270cec7dc11a0eed12ae8f1d0aeacf63f14a92c7ca99f44e38573a6ce2276a08180f1
-Size (radare2-5.1.0.tar.gz) = 7908690 bytes
-SHA1 (patch-libr_anal_p_pyc.mk) = d3e590ca6debf89971e915f081592d906a685d49
-SHA1 (patch-libr_anal_p_wasm.mk) = 65e88fe77213602888f4b8ee9bf7750feae5f93f
-SHA1 (patch-libr_debug_Makefile) = 8e903f00bf2678392bcea47ecceaa5ec0d019966
+SHA1 (radare2-5.1.1.tar.gz) = 2689cc0b990bca3ae895e75c2bb98558128638b4
+RMD160 (radare2-5.1.1.tar.gz) = 9e6954a98edbcd2d3130a3201badf62a89442fab
+SHA512 (radare2-5.1.1.tar.gz) = b6728bb59788804f5442d5eec8141f62c3b51f589955589b310733b3aeb28beedb969af540649f454dad96710231df384e389d8b4a1d55627d8370e4d3da454f
+Size (radare2-5.1.1.tar.gz) = 7920840 bytes
SHA1 (patch-sys_ios-sdk.sh) = 3f50b49e75dea1ac02f6d2ce8c556c77276e51d6
Home |
Main Index |
Thread Index |
Old Index