From owner-svn-ports-all@FreeBSD.ORG Thu May 22 05:40:54 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BA20E42E; Thu, 22 May 2014 05:40:54 +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 8EF4728A5; Thu, 22 May 2014 05:40:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4M5esxu040981; Thu, 22 May 2014 05:40:54 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4M5ervG040977; Thu, 22 May 2014 05:40:53 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201405220540.s4M5ervG040977@svn.freebsd.org> From: Martin Wilke Date: Thu, 22 May 2014 05:40:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r354770 - in head/devel: . py-daemons 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 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, 22 May 2014 05:40:54 -0000 Author: miwi Date: Thu May 22 05:40:53 2014 New Revision: 354770 URL: http://svnweb.freebsd.org/changeset/ports/354770 QAT: https://qat.redports.org/buildarchive/r354770/ Log: Daemons is a resource library for Python developers that want to create daemon processes. The idea is to provide the basic daemon functionality while still giving the developer the ability to customize their daemon for any purpose. WWW: https://pypi.python.org/pypi/daemons PR: ports/187412 Submitted by: fax@nohik.ee Added: head/devel/py-daemons/ head/devel/py-daemons/Makefile (contents, props changed) head/devel/py-daemons/distinfo (contents, props changed) head/devel/py-daemons/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu May 22 05:39:35 2014 (r354769) +++ head/devel/Makefile Thu May 22 05:40:53 2014 (r354770) @@ -3588,6 +3588,7 @@ SUBDIR += py-cxx SUBDIR += py-d2to1 SUBDIR += py-daemon + SUBDIR += py-daemons SUBDIR += py-dal SUBDIR += py-darcsver SUBDIR += py-dateutil Added: head/devel/py-daemons/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-daemons/Makefile Thu May 22 05:40:53 2014 (r354770) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= daemons +PORTVERSION= 0.2.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= fax@nohik.ee +COMMENT= Resource library for Python developers to create daemon processes + +LICENSE= APACHE20 + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/devel/py-daemons/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-daemons/distinfo Thu May 22 05:40:53 2014 (r354770) @@ -0,0 +1,2 @@ +SHA256 (daemons-0.2.1.tar.gz) = fa5da04820a73ee63349db01fb18f2088d1f6d90cc38f342dcd5d82718422a74 +SIZE (daemons-0.2.1.tar.gz) = 17639 Added: head/devel/py-daemons/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-daemons/pkg-descr Thu May 22 05:40:53 2014 (r354770) @@ -0,0 +1,5 @@ +Daemons is a resource library for Python developers that want to create daemon +processes. The idea is to provide the basic daemon functionality while still +giving the developer the ability to customize their daemon for any purpose. + +WWW: https://pypi.python.org/pypi/daemons