From owner-svn-ports-all@FreeBSD.ORG Sun Jan 25 00:10:25 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 15AA3A89; Sun, 25 Jan 2015 00:10:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 01FC83CF; Sun, 25 Jan 2015 00:10:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0P0AOA7086465; Sun, 25 Jan 2015 00:10:24 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0P0ANrr086150; Sun, 25 Jan 2015 00:10:23 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201501250010.t0P0ANrr086150@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sun, 25 Jan 2015 00:10:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377843 - in head/devel: . editline X-SVN-Group: ports-head 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.18-1 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: Sun, 25 Jan 2015 00:10:25 -0000 Author: bapt Date: Sun Jan 25 00:10:22 2015 New Revision: 377843 URL: https://svnweb.freebsd.org/changeset/ports/377843 QAT: https://qat.redports.org/buildarchive/r377843/ Log: This is a line editing library. It can be linked into almost any program to provide command-line editing and history. It is call-compatible with the FSF readline library, but is a fraction of the size (and offers fewer features). The editline library was created by Simmule Turner and Rich Salz back in 1992. At the time they chose to distribute the code under a "C News-like" copyright, see the file LICENSE for details. The small size (<30k), lack of dependencies (no ncurses needed!) and the free license should make this library interesting to many embedded developers WWW: https://github.com/troglobit/editline Added: head/devel/editline/ head/devel/editline/Makefile (contents, props changed) head/devel/editline/distinfo (contents, props changed) head/devel/editline/pkg-descr (contents, props changed) head/devel/editline/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jan 25 00:06:22 2015 (r377842) +++ head/devel/Makefile Sun Jan 25 00:10:22 2015 (r377843) @@ -387,6 +387,7 @@ SUBDIR += ebnf2yacc SUBDIR += ecgi SUBDIR += edb + SUBDIR += editline SUBDIR += efivar SUBDIR += efl SUBDIR += eggdbus Added: head/devel/editline/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/editline/Makefile Sun Jan 25 00:10:22 2015 (r377843) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= editline +PORTVERSION= 1.14.2 +CATEGORIES= devel +MASTER_SITES= GHR + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Minix editline: A free readline() for UNIX + +LICENSE= BSD4CLAUSE + +USES= libtool +USE_GITHUB= yes +GH_ACCOUNT= troglobit +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +USE_LDCONFIG= yes + +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip + +.include Added: head/devel/editline/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/editline/distinfo Sun Jan 25 00:10:22 2015 (r377843) @@ -0,0 +1,2 @@ +SHA256 (editline-1.14.2.tar.gz) = a4ee39906c87f843ecac4d95e4d7586429f6ead92cdadc9a3c1e28fe82c3c9da +SIZE (editline-1.14.2.tar.gz) = 338506 Added: head/devel/editline/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/editline/pkg-descr Sun Jan 25 00:10:22 2015 (r377843) @@ -0,0 +1,12 @@ +This is a line editing library. It can be linked into almost any program to +provide command-line editing and history. It is call-compatible with the FSF +readline library, but is a fraction of the size (and offers fewer features). + +The editline library was created by Simmule Turner and Rich Salz back in 1992. +At the time they chose to distribute the code under a "C News-like" copyright, +see the file LICENSE for details. + +The small size (<30k), lack of dependencies (no ncurses needed!) and the free +license should make this library interesting to many embedded developers + +WWW: https://github.com/troglobit/editline Added: head/devel/editline/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/editline/pkg-plist Sun Jan 25 00:10:22 2015 (r377843) @@ -0,0 +1,6 @@ +include/editline.h +lib/libeditline.a +lib/libeditline.so +lib/libeditline.so.0 +lib/libeditline.so.0.0.0 +man/man3/editline.3.gz