From xmj@chaot.net  Sat Dec  7 16:54:27 2013
Return-Path: <xmj@chaot.net>
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 8CE895B5
	for <FreeBSD-gnats-submit@freebsd.org>; Sat,  7 Dec 2013 16:54:27 +0000 (UTC)
Received: from dd16522.kasserver.com (dd16522.kasserver.com [85.13.137.124])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by mx1.freebsd.org (Postfix) with ESMTPS id 1A34418D0
	for <FreeBSD-gnats-submit@freebsd.org>; Sat,  7 Dec 2013 16:54:26 +0000 (UTC)
Received: from mx12.chaot.net (62.65.222.235.cable.starman.ee [62.65.222.235])
	by dd16522.kasserver.com (Postfix) with ESMTPSA id E4D38456012
	for <FreeBSD-gnats-submit@freebsd.org>; Sat,  7 Dec 2013 17:45:36 +0100 (CET)
Received: from localhost (1003@localhost [local]);
	by mx12.chaot.net (OpenSMTPD) with ESMTPA id 00062a91;
	for <FreeBSD-gnats-submit@freebsd.org>;
	Sat, 7 Dec 2013 18:45:35 +0200 (EET)
Message-Id: <2245811489.enqueue@mx12.chaot.net>
Date: Sat, 7 Dec 2013 18:45:35 +0200 (EET)
From: Johannes Jost Meixner <xmj@chaot.net>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [NEW PORT] science/py-pyaixi: Implementation of the MC-AIXI-CTW AI algorithm
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         184572
>Category:       ports
>Synopsis:       [NEW PORT] science/py-pyaixi: Implementation of the MC-AIXI-CTW AI algorithm
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    wg
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Dec 07 17:00:04 UTC 2013
>Closed-Date:    Sun Dec 08 14:12:53 UTC 2013
>Last-Modified:  Sun Dec  8 14:20:02 UTC 2013
>Originator:     Johannes Jost Meixner
>Release:        FreeBSD 11.0-CURRENT amd64
>Organization:
Goldener Grund OUe
>Environment:
System: FreeBSD mx12.chaot.net 11.0-CURRENT FreeBSD 11.0-CURRENT #3: Thu Nov  7 16:08:22 EET
>Description:
pyaixi is a pure Python implementation of the Monte Carlo-AIXI-Context Tree Weighting
(MC-AIXI-CTW) artificial intelligence algorithm.

This is an approximation of the AIXI universal artificial intelligence
algorithm, which describes a model-based, reinforcement-learning agent capable
of general learning.

WWW: https://github.com/gkassel/pyaixi

Generated with FreeBSD Port Tools 0.99_8 (mode: new)
>How-To-Repeat:
>Fix:

--- .shar begins here ---
# 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:
#
#	py-pyaixi
#	py-pyaixi/pkg-descr
#	py-pyaixi/Makefile
#	py-pyaixi/distinfo
#
echo c - py-pyaixi
mkdir -p py-pyaixi > /dev/null 2>&1
echo x - py-pyaixi/pkg-descr
sed 's/^X//' >py-pyaixi/pkg-descr << 'a764fbf5396cf527a83bec82c25d140d'
Xpyaixi is a pure Python implementation of the Monte Carlo-AIXI-Context Tree Weighting
X(MC-AIXI-CTW) artificial intelligence algorithm.
X
XThis is an approximation of the AIXI universal artificial intelligence
Xalgorithm, which describes a model-based, reinforcement-learning agent capable
Xof general learning.
X
XWWW: https://github.com/gkassel/pyaixi
a764fbf5396cf527a83bec82c25d140d
echo x - py-pyaixi/Makefile
sed 's/^X//' >py-pyaixi/Makefile << '05f151c3b8e5ab730c594d02c8658d2a'
X# Created by: Johannes Meixner <xmj@chaot.net>
X# $FreeBSD$
X
XPORTNAME=	pyaixi
XPORTVERSION=	1.0.3
XCATEGORIES=	science python
XMASTER_SITES=	CHEESESHOP
XPKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
X
XMAINTAINER=	xmj@chaot.net
XCOMMENT=	Implementation of the MC-AIXI-CTW AI algorithm
X
XLICENSE=	CCbySA
XLICENSE_NAME=	Creative Commons Attribution-ShareAlike 3.0 \
X			   	Unported License
XLICENSE_FILE=	${WRKSRC}/LICENSE.txt
XLICENSE_PERMS=	auto-accept dist-mirror pkg-mirror pkg-sell dist-sell
X
XUSES=	dos2unix
XUSE_PYTHON=		2.7
XUSE_PYDISTUTILS=	yes
XPYDISTUTILS_AUTOPLIST=	yes
X
XPORTDOCS=	changelog.txt \
X			todo.txt
X
XPORTEXAMPLES=	*
X
XOPTIONS_DEFINE=	DOCS EXAMPLES
XOPTIONSFILE?=	${PORT_DBDIR}/py-${PORTNAME}/options
XEXAMPLESDIR=	${PREFIX}/share/examples/py-${PORTNAME}
XDOCSDIR=	${PREFIX}/share/doc/py-${PORTNAME}
X
Xpost-install:
X	${MKDIR} ${STAGEDIR}${DOCSDIR}
X	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/doc/|} \
X	   	${STAGEDIR}${DOCSDIR}
X	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
X	${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/conf/|} \
X	   	${STAGEDIR}${EXAMPLESDIR}
X
X.include <bsd.port.mk>
05f151c3b8e5ab730c594d02c8658d2a
echo x - py-pyaixi/distinfo
sed 's/^X//' >py-pyaixi/distinfo << 'c96bf40ba109252a4c68479c4431f3fc'
XSHA256 (pyaixi-1.0.3.tar.gz) = 5d58cd3162740dbf082c16c4a8f377169e6dc4643a1848a4f3a793310ad261db
XSIZE (pyaixi-1.0.3.tar.gz) = 48553
c96bf40ba109252a4c68479c4431f3fc
exit
--- .shar ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Sat Dec 7 17:00:32 UTC 2013 
Responsible-Changed-Why:  
freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184572 
Responsible-Changed-From-To: freebsd-python->wg 
Responsible-Changed-By: wg 
Responsible-Changed-When: Sun Dec 8 14:12:35 UTC 2013 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184572 
State-Changed-From-To: open->closed 
State-Changed-By: wg 
State-Changed-When: Sun Dec 8 14:12:52 UTC 2013 
State-Changed-Why:  
New port added. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/184572: commit references a PR
Date: Sun,  8 Dec 2013 14:13:00 +0000 (UTC)

 Author: wg
 Date: Sun Dec  8 14:12:47 2013
 New Revision: 335895
 URL: http://svnweb.freebsd.org/changeset/ports/335895
 
 Log:
   science/py-pyaixi: Implementation of the MC-AIXI-CTW AI algorithm
   
   pyaixi is a pure Python implementation of the Monte Carlo-AIXI-Context Tree
   Weighting (MC-AIXI-CTW) artificial intelligence algorithm.
   
   This is an approximation of the AIXI universal artificial intelligence
   algorithm, which describes a model-based, reinforcement-learning agent capable
   of general learning.
   
   WWW: https://github.com/gkassel/pyaixi
   
   PR:		ports/184572
   Submitted by:	Johannes Jost Meixner <xmj chaot.net>
 
 Added:
   head/science/py-pyaixi/
   head/science/py-pyaixi/Makefile   (contents, props changed)
   head/science/py-pyaixi/distinfo   (contents, props changed)
   head/science/py-pyaixi/pkg-descr   (contents, props changed)
 Modified:
   head/science/Makefile
 
 Modified: head/science/Makefile
 ==============================================================================
 --- head/science/Makefile	Sun Dec  8 14:11:54 2013	(r335894)
 +++ head/science/Makefile	Sun Dec  8 14:12:47 2013	(r335895)
 @@ -156,6 +156,7 @@
      SUBDIR += py-obspy
      SUBDIR += py-paida
      SUBDIR += py-pupynere
 +    SUBDIR += py-pyaixi
      SUBDIR += py-pydap
      SUBDIR += py-pydicom
      SUBDIR += py-scikit-learn
 
 Added: head/science/py-pyaixi/Makefile
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/science/py-pyaixi/Makefile	Sun Dec  8 14:12:47 2013	(r335895)
 @@ -0,0 +1,41 @@
 +# Created by: Johannes Meixner <xmj@chaot.net>
 +# $FreeBSD$
 +
 +PORTNAME=	pyaixi
 +PORTVERSION=	1.0.3
 +CATEGORIES=	science python
 +MASTER_SITES=	CHEESESHOP
 +PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 +
 +MAINTAINER=	xmj@chaot.net
 +COMMENT=	Implementation of the MC-AIXI-CTW AI algorithm
 +
 +LICENSE=	CCbySA
 +LICENSE_NAME=	Creative Commons Attribution-ShareAlike 3.0 \
 +		Unported License
 +LICENSE_FILE=	${WRKSRC}/LICENSE.txt
 +LICENSE_PERMS=	auto-accept dist-mirror pkg-mirror pkg-sell dist-sell
 +
 +USES=	dos2unix
 +USE_PYTHON=		2.7
 +USE_PYDISTUTILS=	yes
 +PYDISTUTILS_AUTOPLIST=	yes
 +
 +PORTDOCS=	changelog.txt \
 +		todo.txt
 +
 +PORTEXAMPLES=	*
 +
 +OPTIONS_DEFINE=	DOCS EXAMPLES
 +EXAMPLESDIR=	${PREFIX}/share/examples/py-${PORTNAME}
 +DOCSDIR=	${PREFIX}/share/doc/py-${PORTNAME}
 +
 +post-install:
 +	${MKDIR} ${STAGEDIR}${DOCSDIR}
 +	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/doc/|} \
 +		${STAGEDIR}${DOCSDIR}
 +	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
 +	${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/conf/|} \
 +		${STAGEDIR}${EXAMPLESDIR}
 +
 +.include <bsd.port.mk>
 
 Added: head/science/py-pyaixi/distinfo
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/science/py-pyaixi/distinfo	Sun Dec  8 14:12:47 2013	(r335895)
 @@ -0,0 +1,2 @@
 +SHA256 (pyaixi-1.0.3.tar.gz) = 5d58cd3162740dbf082c16c4a8f377169e6dc4643a1848a4f3a793310ad261db
 +SIZE (pyaixi-1.0.3.tar.gz) = 48553
 
 Added: head/science/py-pyaixi/pkg-descr
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/science/py-pyaixi/pkg-descr	Sun Dec  8 14:12:47 2013	(r335895)
 @@ -0,0 +1,8 @@
 +pyaixi is a pure Python implementation of the Monte Carlo-AIXI-Context Tree Weighting
 +(MC-AIXI-CTW) artificial intelligence algorithm.
 +
 +This is an approximation of the AIXI universal artificial intelligence
 +algorithm, which describes a model-based, reinforcement-learning agent capable
 +of general learning.
 +
 +WWW: https://github.com/gkassel/pyaixi
 _______________________________________________
 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:
