Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 26 Oct 2019 06:15:23 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r515673 - in head/devel: . xbyak
Message-ID:  <201910260615.x9Q6FNnR054326@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sat Oct 26 06:15:23 2019
New Revision: 515673
URL: https://svnweb.freebsd.org/changeset/ports/515673

Log:
  New port: devel/xbyak: Header-only JIT assembler for x86/x64 SIMD

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Oct 26 00:17:36 2019	(r515672)
+++ head/devel/Makefile	Sat Oct 26 06:15:23 2019	(r515673)
@@ -6557,6 +6557,7 @@
     SUBDIR += wxGlade
     SUBDIR += wxformbuilder
     SUBDIR += xa65
+    SUBDIR += xbyak
     SUBDIR += xc3sprog
     SUBDIR += xdg-user-dirs
     SUBDIR += xdg-utils

Added: head/devel/xbyak/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/xbyak/Makefile	Sat Oct 26 06:15:23 2019	(r515673)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	xbyak
+DISTVERSIONPREFIX=	v
+DISTVERSION=	5.83
+CATEGORIES=	devel
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Header-only JIT assembler for x86/x64 SIMD
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/COPYRIGHT
+
+USES=		cmake
+USE_GITHUB=	yes
+GH_ACCOUNT=	herumi
+
+NO_BUILD=	yes
+NO_ARCH=	yes
+
+PLIST_FILES=	include/xbyak/xbyak.h \
+		include/xbyak/xbyak_bin2hex.h \
+		include/xbyak/xbyak_mnemonic.h \
+		include/xbyak/xbyak_util.h
+
+.include <bsd.port.mk>

Added: head/devel/xbyak/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/xbyak/distinfo	Sat Oct 26 06:15:23 2019	(r515673)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1572070251
+SHA256 (herumi-xbyak-v5.83_GH0.tar.gz) = 08296a4b2d1ce61278597b09674612b9f83a23f861a5781821538c462489cd18
+SIZE (herumi-xbyak-v5.83_GH0.tar.gz) = 222481

Added: head/devel/xbyak/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/xbyak/pkg-descr	Sat Oct 26 06:15:23 2019	(r515673)
@@ -0,0 +1,9 @@
+This is a header-only library which enables to dynamically assemble
+x86(IA32), x64(AMD64, x86-64) mnemonic.
+
+Features:
+* header file library
+* Intel/MASM like syntax
+* Full suppor of AVX-512
+
+WWW: https://github.com/herumi/xbyak



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