Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Jul 2015 15:33:57 +0000 (UTC)
From:      Fukang Chen <loader@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r391568 - in head/devel: . py-semantic_version
Message-ID:  <201507081533.t68FXvLY077708@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: loader (doc committer)
Date: Wed Jul  8 15:33:56 2015
New Revision: 391568
URL: https://svnweb.freebsd.org/changeset/ports/391568

Log:
  [NEW] devel/py-semantic_version: Python library provides
  a few tools to handle SemVer in Python
  
  This small python library provides a few tools to handle
  SemVer in Python. It follows strictly the 2.0.0 version
  of the SemVer scheme.
  
  WWW: https://github.com/rbarrois/python-semanticversion
  
  Approved by: koobs
  Differential Revision: https://reviews.freebsd.org/D3021

Added:
  head/devel/py-semantic_version/
  head/devel/py-semantic_version/Makefile   (contents, props changed)
  head/devel/py-semantic_version/distinfo   (contents, props changed)
  head/devel/py-semantic_version/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Jul  8 15:19:40 2015	(r391567)
+++ head/devel/Makefile	Wed Jul  8 15:33:56 2015	(r391568)
@@ -4148,6 +4148,7 @@
     SUBDIR += py-sanetime
     SUBDIR += py-scripttest
     SUBDIR += py-sdl2
+    SUBDIR += py-semantic_version
     SUBDIR += py-serpent
     SUBDIR += py-setproctitle
     SUBDIR += py-setuptools

Added: head/devel/py-semantic_version/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-semantic_version/Makefile	Wed Jul  8 15:33:56 2015	(r391568)
@@ -0,0 +1,33 @@
+# Created by: loader <loader@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	semantic_version
+PORTVERSION=	2.4.2
+DISTVERSIONPREFIX=	v
+CATEGORIES=	devel python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	loader@FreeBSD.org
+COMMENT=	Python library provides a few tools to handle SemVer in Python
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django>0:${PORTSDIR}/www/py-django
+
+OPTIONS_DEFINE=	TESTS
+
+TESTS_DESC=		Install test suite requirements
+TESTS_BUILD_DEPENDS=	${TEST_DEPENDS}
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	rbarrois
+GH_PROJECT=	python-semanticversion
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+regression-test: build
+	@cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test
+
+.include <bsd.port.mk>

Added: head/devel/py-semantic_version/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-semantic_version/distinfo	Wed Jul  8 15:33:56 2015	(r391568)
@@ -0,0 +1,2 @@
+SHA256 (rbarrois-python-semanticversion-v2.4.2_GH0.tar.gz) = 81c03a9fffe5366950b2f6a6db231dd0a475b3c105a27544d8a480f271f60a0d
+SIZE (rbarrois-python-semanticversion-v2.4.2_GH0.tar.gz) = 28781

Added: head/devel/py-semantic_version/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-semantic_version/pkg-descr	Wed Jul  8 15:33:56 2015	(r391568)
@@ -0,0 +1,5 @@
+This small python library provides a few tools to handle
+SemVer in Python. It follows strictly the 2.0.0 version
+of the SemVer scheme.
+
+WWW: https://github.com/rbarrois/python-semanticversion



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