From owner-svn-ports-all@freebsd.org Thu May 31 08:42:30 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A905AEF03BB; Thu, 31 May 2018 08:42:30 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5F3DC789A2; Thu, 31 May 2018 08:42:30 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 41AF217EAD; Thu, 31 May 2018 08:42:30 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4V8gUiw049093; Thu, 31 May 2018 08:42:30 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4V8gToe049089; Thu, 31 May 2018 08:42:29 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201805310842.w4V8gToe049089@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Thu, 31 May 2018 08:42:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471198 - in head/devel: . replxx X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/devel: . replxx X-SVN-Commit-Revision: 471198 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 May 2018 08:42:30 -0000 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ć 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@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 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