From nobody@FreeBSD.org  Tue Apr  9 19:35:12 2013
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115])
	by hub.freebsd.org (Postfix) with ESMTP id 206B5D9B
	for <freebsd-gnats-submit@FreeBSD.org>; Tue,  9 Apr 2013 19:35:12 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22])
	by mx1.freebsd.org (Postfix) with ESMTP id 121F87BE
	for <freebsd-gnats-submit@FreeBSD.org>; Tue,  9 Apr 2013 19:35:12 +0000 (UTC)
Received: from red.freebsd.org (localhost [127.0.0.1])
	by red.freebsd.org (8.14.5/8.14.5) with ESMTP id r39JZBeO056596
	for <freebsd-gnats-submit@FreeBSD.org>; Tue, 9 Apr 2013 19:35:11 GMT
	(envelope-from nobody@red.freebsd.org)
Received: (from nobody@localhost)
	by red.freebsd.org (8.14.5/8.14.5/Submit) id r39JZBC1056595;
	Tue, 9 Apr 2013 19:35:11 GMT
	(envelope-from nobody)
Message-Id: <201304091935.r39JZBC1056595@red.freebsd.org>
Date: Tue, 9 Apr 2013 19:35:11 GMT
From: klm <klm@uidzero.org>
To: freebsd-gnats-submit@FreeBSD.org
Subject: New port: devel/libklel - The KoreLogic Expression Language Library
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         177737
>Category:       ports
>Synopsis:       New port: devel/libklel - The KoreLogic Expression Language Library
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    pawel
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Apr 09 19:40:00 UTC 2013
>Closed-Date:    Fri Apr 26 16:46:53 UTC 2013
>Last-Modified:  Fri Apr 26 16:50:00 UTC 2013
>Originator:     klm
>Release:        
>Organization:
>Environment:
>Description:
The KoreLogic Expression Language Library is a C library that provides a simple expression language that can be embedded in other programs.This library does not implement a full programming language, but rather a simpler expression language called KL-EL that is designed to provide arithmetic and logic operations useful in situations where embedding a full programming language would be overkill. KL-EL expressions have access to a full set of arithmetic and logic operations, and they can access functions and variables exported from the embedding program. Unlike most other languages of its kind, KL-EL is statically and strongly typed, which helps ensure that expressions are valid before they are executed.The embedding API is designed to be easy to use, and the library itself is designed to be very small.

>How-To-Repeat:

>Fix:


Patch attached with submission follows:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	libklel
#	libklel/files
#	libklel/Makefile
#	libklel/distinfo
#	libklel/pkg-descr
#	libklel/pkg-plist
#
echo c - libklel
mkdir -p libklel > /dev/null 2>&1
echo c - libklel/files
mkdir -p libklel/files > /dev/null 2>&1
echo x - libklel/Makefile
sed 's/^X//' >libklel/Makefile << 'be7083baa573b5ceb7ac3176e47d5345'
X#
X# $FreeBSD$
X#
X
XPORTNAME=		libklel
XPORTVERSION=		1.1.0
XCATEGORIES=		devel
XMASTER_SITES=		SF
X
XMAINTAINER=		klm@uidzero.org
XCOMMENT=		The KoreLogic Expression Language Library
X
XGNU_CONFIGURE=		yes
X
XMAN1=			klel-expr.1
XMAN3=			klelapi.3 klellang.3 klelstdlib.3 kleltut.3
X
XLIB_DEPENDS+=		pcre:${PORTSDIR}/devel/pcre
XCONFIGURE_ARGS+=	--with-pcre=${LOCALBASE}
X
X.include <bsd.port.mk>
be7083baa573b5ceb7ac3176e47d5345
echo x - libklel/distinfo
sed 's/^X//' >libklel/distinfo << '96411905feb0a26bcada35aa56084391'
XSHA256 (libklel-1.1.0.tar.gz) = ad2b02ec34fd2e79ba412935a0eb913e498fa0ddf56f85b9f3ee319e9583697c
XSIZE (libklel-1.1.0.tar.gz) = 413259
96411905feb0a26bcada35aa56084391
echo x - libklel/pkg-descr
sed 's/^X//' >libklel/pkg-descr << '612d4d69abcee95aa9032df18bf73aab'
XThe KoreLogic Expression Language Library is a C library that
Xprovides a simple expression language that can be embedded in other
Xprograms. This library does not implement a full programming language,
Xbut rather a simpler expression language called KL-EL that is
Xdesigned to provide arithmetic and logic operations useful in
Xsituations where embedding a full programming language would be
Xoverkill. KL-EL expressions have access to a full set of arithmetic
Xand logic operations, and they can access functions and variables
Xexported from the embedding program. Unlike most other languages
Xof its kind, KL-EL is statically and strongly typed, which helps
Xensure that expressions are valid before they are executed. The
Xembedding API is designed to be easy to use, and the library itself
Xis designed to be very small.
X
XWWW: http://sourceforge.net/projects/libklel/
612d4d69abcee95aa9032df18bf73aab
echo x - libklel/pkg-plist
sed 's/^X//' >libklel/pkg-plist << '74d971b5a174f2019c324d7364c5fb67'
Xbin/klel-expr
Xinclude/klel-pstdint.h
Xinclude/klel.h
Xlib/libklel.a
Xlib/libklel.la
Xlib/libklel.so
Xlib/libklel.so.2
74d971b5a174f2019c324d7364c5fb67
exit



>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->pawel 
Responsible-Changed-By: pawel 
Responsible-Changed-When: Sat Apr 20 15:36:51 UTC 2013 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=177737 
State-Changed-From-To: open->closed 
State-Changed-By: pawel 
State-Changed-When: Fri Apr 26 16:46:52 UTC 2013 
State-Changed-Why:  
New port added, with minor changes. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=177737 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/177737: commit references a PR
Date: Fri, 26 Apr 2013 16:46:49 +0000 (UTC)

 Author: pawel
 Date: Fri Apr 26 16:46:35 2013
 New Revision: 316626
 URL: http://svnweb.freebsd.org/changeset/ports/316626
 
 Log:
   The KoreLogic Expression Language Library is a C library that
   provides a simple expression language that can be embedded in other
   programs. This library does not implement a full programming language,
   but rather a simpler expression language called KL-EL that is
   designed to provide arithmetic and logic operations useful in
   situations where embedding a full programming language would be
   overkill. KL-EL expressions have access to a full set of arithmetic
   and logic operations, and they can access functions and variables
   exported from the embedding program. Unlike most other languages
   of its kind, KL-EL is statically and strongly typed, which helps
   ensure that expressions are valid before they are executed. The
   embedding API is designed to be easy to use, and the library itself
   is designed to be very small.
   
   WWW: http://sourceforge.net/projects/libklel/
   
   PR:		ports/177737
   Submitted by:	klm <klm@uidzero.org>
 
 Added:
   head/devel/libklel/
   head/devel/libklel/Makefile   (contents, props changed)
   head/devel/libklel/distinfo   (contents, props changed)
   head/devel/libklel/pkg-descr   (contents, props changed)
   head/devel/libklel/pkg-plist   (contents, props changed)
 Modified:
   head/devel/Makefile
 
 Modified: head/devel/Makefile
 ==============================================================================
 --- head/devel/Makefile	Fri Apr 26 16:43:59 2013	(r316625)
 +++ head/devel/Makefile	Fri Apr 26 16:46:35 2013	(r316626)
 @@ -1013,6 +1013,7 @@
      SUBDIR += libjson++
      SUBDIR += libk8055
      SUBDIR += libkgapi
 +    SUBDIR += libklel
      SUBDIR += libkolab
      SUBDIR += liblangtag
      SUBDIR += liblas
 
 Added: head/devel/libklel/Makefile
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/devel/libklel/Makefile	Fri Apr 26 16:46:35 2013	(r316626)
 @@ -0,0 +1,22 @@
 +# $FreeBSD$
 +
 +PORTNAME=	libklel
 +PORTVERSION=	1.1.0
 +CATEGORIES=	devel
 +MASTER_SITES=	SF
 +
 +MAINTAINER=	klm@uidzero.org
 +COMMENT=	KoreLogic Expression Language library
 +
 +LIB_DEPENDS=	pcre:${PORTSDIR}/devel/pcre
 +
 +GNU_CONFIGURE=	yes
 +USE_PERL5_BUILD=yes
 +USE_LDCONFIG=	yes
 +
 +CONFIGURE_ARGS+=--with-pcre=${LOCALBASE}
 +
 +MAN1=		klel-expr.1
 +MAN3=		klelapi.3 klellang.3 klelstdlib.3 kleltut.3
 +
 +.include <bsd.port.mk>
 
 Added: head/devel/libklel/distinfo
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/devel/libklel/distinfo	Fri Apr 26 16:46:35 2013	(r316626)
 @@ -0,0 +1,2 @@
 +SHA256 (libklel-1.1.0.tar.gz) = ad2b02ec34fd2e79ba412935a0eb913e498fa0ddf56f85b9f3ee319e9583697c
 +SIZE (libklel-1.1.0.tar.gz) = 413259
 
 Added: head/devel/libklel/pkg-descr
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/devel/libklel/pkg-descr	Fri Apr 26 16:46:35 2013	(r316626)
 @@ -0,0 +1,15 @@
 +The KoreLogic Expression Language Library is a C library that
 +provides a simple expression language that can be embedded in other
 +programs. This library does not implement a full programming language,
 +but rather a simpler expression language called KL-EL that is
 +designed to provide arithmetic and logic operations useful in
 +situations where embedding a full programming language would be
 +overkill. KL-EL expressions have access to a full set of arithmetic
 +and logic operations, and they can access functions and variables
 +exported from the embedding program. Unlike most other languages
 +of its kind, KL-EL is statically and strongly typed, which helps
 +ensure that expressions are valid before they are executed. The
 +embedding API is designed to be easy to use, and the library itself
 +is designed to be very small.
 +
 +WWW: http://sourceforge.net/projects/libklel/
 
 Added: head/devel/libklel/pkg-plist
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/devel/libklel/pkg-plist	Fri Apr 26 16:46:35 2013	(r316626)
 @@ -0,0 +1,7 @@
 +bin/klel-expr
 +include/klel-pstdint.h
 +include/klel.h
 +lib/libklel.a
 +lib/libklel.la
 +lib/libklel.so
 +lib/libklel.so.2
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
>Unformatted:
