From owner-svn-ports-all@FreeBSD.ORG Thu Feb 13 10:23:25 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 781D56AC; Thu, 13 Feb 2014 10:23: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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 54F4912FC; Thu, 13 Feb 2014 10:23:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1DANPpq005577; Thu, 13 Feb 2014 10:23:25 GMT (envelope-from tdb@svn.freebsd.org) Received: (from tdb@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1DANOpi005572; Thu, 13 Feb 2014 10:23:24 GMT (envelope-from tdb@svn.freebsd.org) Message-Id: <201402131023.s1DANOpi005572@svn.freebsd.org> From: Tim Bishop Date: Thu, 13 Feb 2014 10:23:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r344086 - in head/devel: . libmowgli2 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.17 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, 13 Feb 2014 10:23:25 -0000 Author: tdb Date: Thu Feb 13 10:23:23 2014 New Revision: 344086 URL: http://svnweb.freebsd.org/changeset/ports/344086 QAT: https://qat.redports.org/buildarchive/r344086/ Log: mowgli is a development framework for C (like GLib), which provides high performance and highly flexible algorithms. It can be used as a supplement to GLib (to add additional functions (dictionaries, hashes), or replace some of the slow GLib list manipulation functions), or stand alone. It also provides a powerful hook system and convenient logging for your code, as well as a high performance block allocator. WWW: http://www.atheme.org/project/mowgli Added: head/devel/libmowgli2/ head/devel/libmowgli2/Makefile (contents, props changed) head/devel/libmowgli2/distinfo (contents, props changed) head/devel/libmowgli2/pkg-descr (contents, props changed) head/devel/libmowgli2/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Feb 13 10:08:28 2014 (r344085) +++ head/devel/Makefile Thu Feb 13 10:23:23 2014 (r344086) @@ -1042,6 +1042,7 @@ SUBDIR += libmimedir SUBDIR += libmonetra SUBDIR += libmowgli + SUBDIR += libmowgli2 SUBDIR += libmpcbdm SUBDIR += libmsiecf SUBDIR += libmsocket Added: head/devel/libmowgli2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libmowgli2/Makefile Thu Feb 13 10:23:23 2014 (r344086) @@ -0,0 +1,20 @@ +# Created by: tdb +# $FreeBSD$ + +PORTNAME= libmowgli2 +PORTVERSION= 2.0.0 +CATEGORIES= devel +MASTER_SITES= http://github.com/atheme/libmowgli-2/archive/ +DISTNAME= libmowgli-${DISTVERSION} + +MAINTAINER= tdb@FreeBSD.org +COMMENT= Development framework for C + +WRKSRC= ${WRKDIR}/libmowgli-2-libmowgli-${DISTVERSION} + +USES= gmake pathfix +PATHFIX_MAKEFILEIN= Makefile +GNU_CONFIGURE= yes +USE_LDCONFIG= yes + +.include Added: head/devel/libmowgli2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libmowgli2/distinfo Thu Feb 13 10:23:23 2014 (r344086) @@ -0,0 +1,2 @@ +SHA256 (libmowgli-2.0.0.tar.gz) = fd48e74f1f706b436e0f25c3d3d63753e9c066ef88e662cd34303ccd3b780798 +SIZE (libmowgli-2.0.0.tar.gz) = 200861 Added: head/devel/libmowgli2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libmowgli2/pkg-descr Thu Feb 13 10:23:23 2014 (r344086) @@ -0,0 +1,8 @@ +mowgli is a development framework for C (like GLib), which provides high +performance and highly flexible algorithms. It can be used as a supplement +to GLib (to add additional functions (dictionaries, hashes), or replace +some of the slow GLib list manipulation functions), or stand alone. It +also provides a powerful hook system and convenient logging for your code, +as well as a high performance block allocator. + +WWW: http://www.atheme.org/project/mowgli Added: head/devel/libmowgli2/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libmowgli2/pkg-plist Thu Feb 13 10:23:23 2014 (r344086) @@ -0,0 +1,66 @@ +include/libmowgli-2/base/argstack.h +include/libmowgli-2/base/bitvector.h +include/libmowgli-2/base/formatter.h +include/libmowgli-2/base/hash.h +include/libmowgli-2/base/hook.h +include/libmowgli-2/base/memslice.h +include/libmowgli-2/base/mowgli_signal.h +include/libmowgli-2/base/random.h +include/libmowgli-2/container/dictionary.h +include/libmowgli-2/container/index.h +include/libmowgli-2/container/list.h +include/libmowgli-2/container/patricia.h +include/libmowgli-2/container/queue.h +include/libmowgli-2/core/alloc.h +include/libmowgli-2/core/allocation_policy.h +include/libmowgli-2/core/allocator.h +include/libmowgli-2/core/assert.h +include/libmowgli-2/core/bootstrap.h +include/libmowgli-2/core/exception.h +include/libmowgli-2/core/heap.h +include/libmowgli-2/core/iterator.h +include/libmowgli-2/core/logger.h +include/libmowgli-2/core/mowgli_string.h +include/libmowgli-2/core/process.h +include/libmowgli-2/core/stdinc.h +include/libmowgli-2/dns/dns.h +include/libmowgli-2/dns/dns_evloop_res.h +include/libmowgli-2/dns/dns_evloop_reslib.h +include/libmowgli-2/eventloop/eventloop.h +include/libmowgli-2/ext/confparse.h +include/libmowgli-2/ext/error_backtrace.h +include/libmowgli-2/ext/getopt_long.h +include/libmowgli-2/ext/global_storage.h +include/libmowgli-2/ext/proctitle.h +include/libmowgli-2/ext/program_opts.h +include/libmowgli-2/linebuf/linebuf.h +include/libmowgli-2/module/module.h +include/libmowgli-2/mowgli.h +include/libmowgli-2/object/class.h +include/libmowgli-2/object/message.h +include/libmowgli-2/object/metadata.h +include/libmowgli-2/object/object.h +include/libmowgli-2/platform/constructor.h +include/libmowgli-2/platform/machine.h +include/libmowgli-2/platform/win32/win32_stdinc.h +include/libmowgli-2/thread/mutex.h +include/libmowgli-2/thread/thread.h +include/libmowgli-2/vio/vio.h +lib/libmowgli-2.so +lib/libmowgli-2.so.0 +lib/libmowgli-2.so.0.0.0 +libdata/pkgconfig/libmowgli-2.pc +@dirrmtry include/libmowgli-2/vio +@dirrmtry include/libmowgli-2/thread +@dirrmtry include/libmowgli-2/platform/win32 +@dirrmtry include/libmowgli-2/platform +@dirrmtry include/libmowgli-2/object +@dirrmtry include/libmowgli-2/module +@dirrmtry include/libmowgli-2/linebuf +@dirrmtry include/libmowgli-2/ext +@dirrmtry include/libmowgli-2/eventloop +@dirrmtry include/libmowgli-2/dns +@dirrmtry include/libmowgli-2/core +@dirrmtry include/libmowgli-2/container +@dirrmtry include/libmowgli-2/base +@dirrmtry include/libmowgli-2