Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Jul 2018 12:14:52 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r475540 - in head/devel: . py-pymaven-patch
Message-ID:  <201807281214.w6SCEqO3072982@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Sat Jul 28 12:14:51 2018
New Revision: 475540
URL: https://svnweb.freebsd.org/changeset/ports/475540

Log:
  pymaven is a library for working with maven repositories via python. pymaven is
  not intended as a complete replacement of the maven build system, but instead as
  a way for python programs to fetch artifacts and artifact dependencies from
  maven2 repositories.
  
  Note: This is a forked version from the 2.x branch that supports unicode and
        uses other routines for data structures.
  
  WWW: https://github.com/nexB/pymaven
  
  PR:		229498
  Submitted by:	freebsd_ports@k-worx.org
  Sponsored by:	iXsystems Inc.

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Jul 28 12:13:55 2018	(r475539)
+++ head/devel/Makefile	Sat Jul 28 12:14:51 2018	(r475540)
@@ -4883,6 +4883,7 @@
     SUBDIR += py-pylru
     SUBDIR += py-pylru-cache
     SUBDIR += py-pymarc
+    SUBDIR += py-pymaven-patch
     SUBDIR += py-pympler
     SUBDIR += py-pymtbl
     SUBDIR += py-pyopencl

Added: head/devel/py-pymaven-patch/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pymaven-patch/Makefile	Sat Jul 28 12:14:51 2018	(r475540)
@@ -0,0 +1,31 @@
+# $FreeBSD$
+
+PORTNAME=	pymaven-patch
+DISTVERSIONPREFIX=	v
+DISTVERSION=	0.2.5.patch
+CATEGORIES=	devel python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	freebsd_ports@k-worx.org
+COMMENT=	Library for interfacing with maven
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}lxml>=3.4.4:devel/py-lxml@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}requests>=2.7.0:www/py-requests@${PY_FLAVOR}
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR}
+
+USES=		python:2.7
+USE_PYTHON=	distutils autoplist
+USE_GITHUB=	yes
+GH_ACCOUNT=	nexB
+GH_PROJECT=	pymaven
+
+NO_ARCH=	yes
+
+do-test:
+	@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
+
+.include <bsd.port.mk>

Added: head/devel/py-pymaven-patch/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pymaven-patch/distinfo	Sat Jul 28 12:14:51 2018	(r475540)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1530204677
+SHA256 (nexB-pymaven-v0.2.5.patch_GH0.tar.gz) = 07872e7adcf12112d9b3638b2b9cd1d51f5acb0279d2d97eeda411dd41c839b5
+SIZE (nexB-pymaven-v0.2.5.patch_GH0.tar.gz) = 224358

Added: head/devel/py-pymaven-patch/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pymaven-patch/pkg-descr	Sat Jul 28 12:14:51 2018	(r475540)
@@ -0,0 +1,9 @@
+pymaven is a library for working with maven repositories via python. pymaven is
+not intended as a complete replacement of the maven build system, but instead as
+a way for python programs to fetch artifacts and artifact dependencies from
+maven2 repositories. 
+
+Note: This is a forked version from the 2.x branch that supports unicode and
+      uses other routines for data structures.
+
+WWW: https://github.com/nexB/pymaven



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