svn commit: r524784 - in head/textproc: . uni

Thierry Thomas thierry at FreeBSD.org
Sat Feb 1 17:54:03 UTC 2020


Author: thierry
Date: Sat Feb  1 17:54:02 2020
New Revision: 524784
URL: https://svnweb.freebsd.org/changeset/ports/524784

Log:
  Adding textproc/uni, a too to query he Unicode database from the commandline.

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Sat Feb  1 17:27:30 2020	(r524783)
+++ head/textproc/Makefile	Sat Feb  1 17:54:02 2020	(r524784)
@@ -1771,6 +1771,7 @@
     SUBDIR += uml2svg
     SUBDIR += uncle
     SUBDIR += uncrustify
+    SUBDIR += uni
     SUBDIR += uni2ascii
     SUBDIR += unoconv
     SUBDIR += unroff

Added: head/textproc/uni/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/uni/Makefile	Sat Feb  1 17:54:02 2020	(r524784)
@@ -0,0 +1,26 @@
+# Created by: Thierry Thomas <thierry at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	uni
+PORTVERSION=	1.0.0
+DISTVERSIONPREFIX=	v
+CATEGORIES=	textproc
+
+MAINTAINER=	thierry at FreeBSD.org
+COMMENT=	Query the Unicode database from the commandline
+
+LICENSE=	MIT
+
+USES=		go:modules
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	arp242
+
+GO_PKGNAME=	arp242.net/uni
+GH_TUPLE=	golang:sys:bd437916bb0e:golang_sys/vendor/golang.org/x/sys	\
+		google:go-cmp:v0.3.1:google_go_cmp/vendor/github.com/google/go-cmp
+#GO_BUILDFLAGS=	-ldflags "-X main.version=${PORTVERSION}"
+
+PLIST_FILES=	bin/${PORTNAME}
+
+.include <bsd.port.mk>

Added: head/textproc/uni/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/uni/distinfo	Sat Feb  1 17:54:02 2020	(r524784)
@@ -0,0 +1,7 @@
+TIMESTAMP = 1580578321
+SHA256 (arp242-uni-v1.0.0_GH0.tar.gz) = 04edf69aca7b086328fa1a7bd8e06617ba074eaec041eda6bdad7a1ba0a00dee
+SIZE (arp242-uni-v1.0.0_GH0.tar.gz) = 395346
+SHA256 (golang-sys-bd437916bb0e_GH0.tar.gz) = 649b142ea9aec8da603327e456442cb625ddd8a99cddb2e4ee72c9a40a9fd712
+SIZE (golang-sys-bd437916bb0e_GH0.tar.gz) = 1515958
+SHA256 (google-go-cmp-v0.3.1_GH0.tar.gz) = a95fa266e5c2283b813102f265c1bdf5b78100f9889b984aef828eb094efe6e3
+SIZE (google-go-cmp-v0.3.1_GH0.tar.gz) = 76403

Added: head/textproc/uni/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/uni/pkg-descr	Sat Feb  1 17:54:02 2020	(r524784)
@@ -0,0 +1,10 @@
+uni queries the Unicode database from the commandline.
+
+There are four commands: identify codepoints in a string, search for codepoints,
+print codepoints by class, block, or range, and emoji to find emojis.
+
+It includes full support for Unicode 12.1 (May 2019) with full Emoji support (a
+surprisingly large amount of emoji pickers don't deal with emoji sequences very
+well).
+
+WWW: https://github.com/arp242/uni


More information about the svn-ports-head mailing list