From owner-svn-ports-all@freebsd.org Thu Mar 9 23:38:37 2017 Return-Path: Delivered-To: svn-ports-all@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 D1B9BD05B9B; Thu, 9 Mar 2017 23:38:37 +0000 (UTC) (envelope-from cpm@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 AC4F61617; Thu, 9 Mar 2017 23:38:37 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v29NcajU018973; Thu, 9 Mar 2017 23:38:36 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v29NcaI0018969; Thu, 9 Mar 2017 23:38:36 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201703092338.v29NcaI0018969@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Thu, 9 Mar 2017 23:38:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435810 - in head/devel: . py-stackexchange 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.23 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, 09 Mar 2017 23:38:37 -0000 Author: cpm Date: Thu Mar 9 23:38:36 2017 New Revision: 435810 URL: https://svnweb.freebsd.org/changeset/ports/435810 Log: Add new port devel/py-stackexchange Py-StackExchange is a simple Python binding for the StackExchange API. Py-StackExchange API coverage: - Access any StackExchange site, with just its URL. Even those that aren't online yet. - If you just can't decide which one to use, you can use StackAuth to look up the full list of sites. - Once you're online, you can view everything about users, questions, answers, badges, comments and tags. - You can even go back in time by playing with post revisions. - Help users by looking up every StackExchange account they have. Every single one. - See how well an SE site is doing; check its site statistics. - Search the questions of StackExchange sites. WWW: https://github.com/lucjon/Py-StackExchange Added: head/devel/py-stackexchange/ head/devel/py-stackexchange/Makefile (contents, props changed) head/devel/py-stackexchange/distinfo (contents, props changed) head/devel/py-stackexchange/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Mar 9 23:20:46 2017 (r435809) +++ head/devel/Makefile Thu Mar 9 23:38:36 2017 (r435810) @@ -4701,6 +4701,7 @@ SUBDIR += py-speaklater SUBDIR += py-spyder SUBDIR += py-sqlcc + SUBDIR += py-stackexchange SUBDIR += py-statgrab SUBDIR += py-statsd SUBDIR += py-stdnum Added: head/devel/py-stackexchange/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-stackexchange/Makefile Thu Mar 9 23:38:36 2017 (r435810) @@ -0,0 +1,24 @@ +# Created by: Carlos J. Puga Medina +# $FreeBSD$ + +PORTNAME= stackexchange +PORTVERSION= 2.2.6 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= py-${PORTNAME}-${PORTVERSION} + +MAINTAINER= cpm@FreeBSD.org +COMMENT= Python binding to the StackExchange website APIs + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.8.0:devel/py-six + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/devel/py-stackexchange/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-stackexchange/distinfo Thu Mar 9 23:38:36 2017 (r435810) @@ -0,0 +1,3 @@ +TIMESTAMP = 1488762464 +SHA256 (py-stackexchange-2.2.6.tar.gz) = deadc9b8f916f1273ae12f12623e036fa4d3342e4ec585e62ce167b9ddb797fb +SIZE (py-stackexchange-2.2.6.tar.gz) = 27257 Added: head/devel/py-stackexchange/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-stackexchange/pkg-descr Thu Mar 9 23:38:36 2017 (r435810) @@ -0,0 +1,16 @@ +Py-StackExchange is a simple Python binding for the StackExchange API. + +Py-StackExchange API coverage: +- Access any StackExchange site, with just its URL. Even those that aren't + online yet. +- If you just can't decide which one to use, you can use StackAuth to look up + the full list of sites. +- Once you're online, you can view everything about users, questions, answers, + badges, comments and tags. +- You can even go back in time by playing with post revisions. +- Help users by looking up every StackExchange account they have. Every single + one. +- See how well an SE site is doing; check its site statistics. +- Search the questions of StackExchange sites. + +WWW: https://github.com/lucjon/Py-StackExchange