From owner-svn-ports-head@freebsd.org Fri Jun 17 18:53:11 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BB34DA78E05; Fri, 17 Jun 2016 18:53:11 +0000 (UTC) (envelope-from feld@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 mx1.freebsd.org (Postfix) with ESMTPS id 73D752D44; Fri, 17 Jun 2016 18:53:11 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5HIrAjo035715; Fri, 17 Jun 2016 18:53:10 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5HIrAJC035711; Fri, 17 Jun 2016 18:53:10 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201606171853.u5HIrAJC035711@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 17 Jun 2016 18:53:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417020 - in head/sysutils: . py-logbook X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Jun 2016 18:53:11 -0000 Author: feld Date: Fri Jun 17 18:53:10 2016 New Revision: 417020 URL: https://svnweb.freebsd.org/changeset/ports/417020 Log: Logbook is a nice logging replacement. It should be easy to setup, use and configure and support web applications :) WWW: http://logbook.readthedocs.org/ Added: head/sysutils/py-logbook/ head/sysutils/py-logbook/Makefile (contents, props changed) head/sysutils/py-logbook/distinfo (contents, props changed) head/sysutils/py-logbook/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri Jun 17 17:09:04 2016 (r417019) +++ head/sysutils/Makefile Fri Jun 17 18:53:10 2016 (r417020) @@ -825,6 +825,7 @@ SUBDIR += py-halite SUBDIR += py-honcho SUBDIR += py-iowait + SUBDIR += py-logbook SUBDIR += py-nagiosplugin SUBDIR += py-pkginfo SUBDIR += py-ploy Added: head/sysutils/py-logbook/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-logbook/Makefile Fri Jun 17 18:53:10 2016 (r417020) @@ -0,0 +1,19 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= logbook +PORTVERSION= 0.12.5 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= Logbook-${PORTVERSION} + +MAINTAINER= feld@FreeBSD.org +COMMENT= Logging replacement for Python + +LICENSE= BSD3CLAUSE + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/sysutils/py-logbook/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-logbook/distinfo Fri Jun 17 18:53:10 2016 (r417020) @@ -0,0 +1,3 @@ +TIMESTAMP = 1466189363 +SHA256 (Logbook-0.12.5.tar.gz) = 3567eca498179609433f9dba0dea3d07a74d79822c1e086340dfcd33eb8a8d7e +SIZE (Logbook-0.12.5.tar.gz) = 166031 Added: head/sysutils/py-logbook/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-logbook/pkg-descr Fri Jun 17 18:53:10 2016 (r417020) @@ -0,0 +1,6 @@ +Logbook is a nice logging replacement. + +It should be easy to setup, use and configure and support web +applications :) + +WWW: http://logbook.readthedocs.org/