Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Jul 2020 12:40:40 +0000 (UTC)
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r542629 - in head/devel: . zydis
Message-ID:  <202007201240.06KCeeP7046746@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lwhsu
Date: Mon Jul 20 12:40:40 2020
New Revision: 542629
URL: https://svnweb.freebsd.org/changeset/ports/542629

Log:
  Add devel/zydis, fast and lightweight x86/x86-64 disassembler library
  
  PR:		248022
  Submitted by:	Martin Filla <freebsd@sysctl.cz>

Added:
  head/devel/zydis/
  head/devel/zydis/Makefile   (contents, props changed)
  head/devel/zydis/distinfo   (contents, props changed)
  head/devel/zydis/pkg-descr   (contents, props changed)
  head/devel/zydis/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Jul 20 12:04:48 2020	(r542628)
+++ head/devel/Makefile	Mon Jul 20 12:40:40 2020	(r542629)
@@ -6845,6 +6845,7 @@
     SUBDIR += zpu-binutils
     SUBDIR += zpu-gcc
     SUBDIR += zthread
+    SUBDIR += zydis
     SUBDIR += zziplib
 
 .include <bsd.port.subdir.mk>

Added: head/devel/zydis/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/zydis/Makefile	Mon Jul 20 12:40:40 2020	(r542629)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	zydis
+DISTVERSIONPREFIX=	v
+DISTVERSION=	3.1.0
+CATEGORIES=	devel
+
+MAINTAINER=	freebsd@sysctl.cz
+COMMENT=	Fast and lightweight x86/x86-64 disassembler library
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		cmake localbase:ldflags
+USE_GITHUB=	yes
+GH_ACCOUNT=	zyantific
+GH_PROJECT=	zydis
+
+GH_TUPLE=	zyantific:zycore-c:273e26a:zydis/dependencies/zycore
+
+.include <bsd.port.mk>

Added: head/devel/zydis/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/zydis/distinfo	Mon Jul 20 12:40:40 2020	(r542629)
@@ -0,0 +1,5 @@
+TIMESTAMP = 1594918289
+SHA256 (zyantific-zydis-v3.1.0_GH0.tar.gz) = fc543fef03137e63be4b6153c597f413c8de5e25414a0bc35dbd6ffbc383990d
+SIZE (zyantific-zydis-v3.1.0_GH0.tar.gz) = 488696
+SHA256 (zyantific-zycore-c-273e26a_GH0.tar.gz) = 5c26133056dc10e5f18d5ca1cbcaf546af3f7fba84e2e821ed4d8dacdb544a3b
+SIZE (zyantific-zycore-c-273e26a_GH0.tar.gz) = 56388

Added: head/devel/zydis/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/zydis/pkg-descr	Mon Jul 20 12:40:40 2020	(r542629)
@@ -0,0 +1,3 @@
+Fast and lightweight x86/x86-64 disassembler library.
+
+WWW: https://zydis.re

Added: head/devel/zydis/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/zydis/pkg-plist	Mon Jul 20 12:40:40 2020	(r542629)
@@ -0,0 +1,27 @@
+bin/ZydisDisasm
+bin/ZydisInfo
+include/Zydis/Decoder.h
+include/Zydis/DecoderTypes.h
+include/Zydis/Formatter.h
+include/Zydis/FormatterBuffer.h
+include/Zydis/Generated/EnumISAExt.h
+include/Zydis/Generated/EnumISASet.h
+include/Zydis/Generated/EnumInstructionCategory.h
+include/Zydis/Generated/EnumMnemonic.h
+include/Zydis/Generated/EnumRegister.h
+include/Zydis/Internal/DecoderData.h
+include/Zydis/Internal/FormatterATT.h
+include/Zydis/Internal/FormatterBase.h
+include/Zydis/Internal/FormatterIntel.h
+include/Zydis/Internal/SharedData.h
+include/Zydis/Internal/String.h
+include/Zydis/MetaInfo.h
+include/Zydis/Mnemonic.h
+include/Zydis/Register.h
+include/Zydis/SharedTypes.h
+include/Zydis/ShortString.h
+include/Zydis/Status.h
+include/Zydis/Utils.h
+include/Zydis/Zydis.h
+include/ZydisExportConfig.h
+lib/libZydis.a



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007201240.06KCeeP7046746>