svn commit: r471198 - in head/devel: . replxx
Tobias Kortkamp
tobik at FreeBSD.org
Thu May 31 08:42:30 UTC 2018
Author: tobik
Date: Thu May 31 08:42:29 2018
New Revision: 471198
URL: https://svnweb.freebsd.org/changeset/ports/471198
Log:
New port: devel/replxx
A small, portable GNU readline replacement which is capable of
handling UTF-8 characters. Unlike GNU readline, which is GPL, this
library uses a BSD license and can be used in any kind of program.
This replxx implementation is based on the work by ArangoDB Team
and Salvatore Sanfilippo and 10gen Inc. The goal is to create a
zero-config, BSD licensed, readline replacement usable in Apache2
or BSD licensed programs.
WWW: https://github.com/AmokHuginnsson/replxx
PR: 228602
Submitted by: Goran Mekić <meka at tilda.center>
Added:
head/devel/replxx/
head/devel/replxx/Makefile (contents, props changed)
head/devel/replxx/distinfo (contents, props changed)
head/devel/replxx/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Thu May 31 08:41:44 2018 (r471197)
+++ head/devel/Makefile Thu May 31 08:42:29 2018 (r471198)
@@ -5324,6 +5324,7 @@
SUBDIR += renpy
SUBDIR += renpy6
SUBDIR += replay
+ SUBDIR += replxx
SUBDIR += rhtvision
SUBDIR += riscv64-binutils
SUBDIR += riscv64-gcc
Added: head/devel/replxx/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/replxx/Makefile Thu May 31 08:42:29 2018 (r471198)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME= replxx
+DISTVERSIONPREFIX= release-
+DISTVERSION= 0.0.1
+CATEGORIES= devel
+
+MAINTAINER= meka at tilda.center
+COMMENT= Portable readline library capable of handling UTF-8
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE.md
+
+USES= cmake:outsource compiler:c++14-lang
+USE_GITHUB= yes
+GH_ACCOUNT= AmokHuginnsson
+
+PLIST_FILES= include/replxx.h \
+ include/replxx.hxx \
+ lib/libreplxx.a
+
+.include <bsd.port.mk>
Added: head/devel/replxx/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/replxx/distinfo Thu May 31 08:42:29 2018 (r471198)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1527691097
+SHA256 (AmokHuginnsson-replxx-release-0.0.1_GH0.tar.gz) = af0576e401e43d88fadabdc193e7cbed20d0a8538ae3d9228732211d1b255348
+SIZE (AmokHuginnsson-replxx-release-0.0.1_GH0.tar.gz) = 56543
Added: head/devel/replxx/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/replxx/pkg-descr Thu May 31 08:42:29 2018 (r471198)
@@ -0,0 +1,10 @@
+A small, portable GNU readline replacement which is capable of
+handling UTF-8 characters. Unlike GNU readline, which is GPL, this
+library uses a BSD license and can be used in any kind of program.
+
+This replxx implementation is based on the work by ArangoDB Team
+and Salvatore Sanfilippo and 10gen Inc. The goal is to create a
+zero-config, BSD licensed, readline replacement usable in Apache2
+or BSD licensed programs.
+
+WWW: https://github.com/AmokHuginnsson/replxx
More information about the svn-ports-all
mailing list