Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Jul 2012 12:38:46 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r301089 - in head/devel/py-pygithub: . files
Message-ID:  <201207181238.q6ICckbI071202@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Wed Jul 18 12:38:45 2012
New Revision: 301089
URL: http://svn.freebsd.org/changeset/ports/301089

Log:
  - Update to 1.3
  - Remove LICENSE_FILE
  
  Changes:
  
  1.3: (2012-07-13)
  - Implement markdown rendering
  - GitAuthor.date is now a datetime, thank you bilderbuchi
  - Fix documentation of Github.get_gist: id is a string, not an integer
  
  1.2: (2012-06-29)
  - Implement legacy search APIs, thank you kukuts for telling me Github had
    released them
  - Fix a bug with issue labels containing spaces, thank you philipkimmey for
    detecting the bug and fixing it
  - Clarify how collections of objects are returned by get_* methods, thank you
    bilderbuchi for asking
  
  PR:		ports/169848
  Submitted by:	Kubilay Kocak <koobs.freebsd@gmail.com> (maintainer)

Modified:
  head/devel/py-pygithub/Makefile   (contents, props changed)
  head/devel/py-pygithub/distinfo   (contents, props changed)
  head/devel/py-pygithub/files/patch-setup.py   (contents, props changed)
  head/devel/py-pygithub/pkg-plist   (contents, props changed)

Modified: head/devel/py-pygithub/Makefile
==============================================================================
--- head/devel/py-pygithub/Makefile	Wed Jul 18 12:36:58 2012	(r301088)
+++ head/devel/py-pygithub/Makefile	Wed Jul 18 12:38:45 2012	(r301089)
@@ -6,8 +6,8 @@
 #
 
 PORTNAME=	pygithub
-PORTVERSION=	1.1
-CATEGORIES=	devel python www
+PORTVERSION=	1.3
+CATEGORIES=	devel www python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 DISTNAME=	PyGithub-${PORTVERSION}
@@ -16,12 +16,11 @@ MAINTAINER=	koobs.freebsd@gmail.com
 COMMENT=	Use the full Github API v3 with Python
 
 LICENSE=	LGPL3
-LICENSE_FILE=	${WRKSRC}/COPYING
 
 USE_ZIP=	yes
 USE_PYTHON=	yes
 USE_PYDISTUTILS=yes
 
-PYDISTUTILS_PKGNAME=PyGithub
+PYDISTUTILS_PKGNAME=	PyGithub
 
 .include <bsd.port.mk>

Modified: head/devel/py-pygithub/distinfo
==============================================================================
--- head/devel/py-pygithub/distinfo	Wed Jul 18 12:36:58 2012	(r301088)
+++ head/devel/py-pygithub/distinfo	Wed Jul 18 12:38:45 2012	(r301089)
@@ -1,2 +1,2 @@
-SHA256 (PyGithub-1.1.zip) = ab7d50986670d69e2d4e46efbc7483cc991994edc966ec6a8e8325a51d2777a6
-SIZE (PyGithub-1.1.zip) = 100158
+SHA256 (PyGithub-1.3.zip) = a4953433fdec4ae81692d88323f353067a74d38419ea8cd4836392b8231d015c
+SIZE (PyGithub-1.3.zip) = 102285

Modified: head/devel/py-pygithub/files/patch-setup.py
==============================================================================
--- head/devel/py-pygithub/files/patch-setup.py	Wed Jul 18 12:36:58 2012	(r301088)
+++ head/devel/py-pygithub/files/patch-setup.py	Wed Jul 18 12:38:45 2012	(r301089)
@@ -1,11 +1,11 @@
---- ./setup.py.orig	2012-06-29 17:52:26.000000000 +1000
-+++ ./setup.py	2012-06-29 17:52:35.000000000 +1000
+--- ./setup.py.orig	2012-07-13 21:42:12.000000000 +1000
++++ ./setup.py	2012-07-14 19:15:08.000000000 +1000
 @@ -54,9 +54,6 @@
      packages = [
          "github",
      ],
 -    package_data = {
--        "github": [ "../ReadMe.md", "../COPYING*", "../doc/*.md" ]
+-        "github": [ "ReadMe.md", "COPYING*", "doc/*.md" ]
 -    },
      classifiers = [
          "Development Status :: 5 - Production/Stable",

Modified: head/devel/py-pygithub/pkg-plist
==============================================================================
--- head/devel/py-pygithub/pkg-plist	Wed Jul 18 12:36:58 2012	(r301088)
+++ head/devel/py-pygithub/pkg-plist	Wed Jul 18 12:38:45 2012	(r301089)
@@ -110,6 +110,9 @@
 %%PYTHON_SITELIBDIR%%/github/Label.py
 %%PYTHON_SITELIBDIR%%/github/Label.pyc
 %%PYTHON_SITELIBDIR%%/github/Label.pyo
+%%PYTHON_SITELIBDIR%%/github/Legacy.py
+%%PYTHON_SITELIBDIR%%/github/Legacy.pyc
+%%PYTHON_SITELIBDIR%%/github/Legacy.pyo
 %%PYTHON_SITELIBDIR%%/github/Milestone.py
 %%PYTHON_SITELIBDIR%%/github/Milestone.pyc
 %%PYTHON_SITELIBDIR%%/github/Milestone.pyo



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201207181238.q6ICckbI071202>