From owner-svn-ports-all@freebsd.org Mon Jan 9 14:19:20 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 73B37CA77F5; Mon, 9 Jan 2017 14:19:20 +0000 (UTC) (envelope-from novel@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 4B7141BDB; Mon, 9 Jan 2017 14:19:20 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v09EJJTM011284; Mon, 9 Jan 2017 14:19:19 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v09EJI7T011279; Mon, 9 Jan 2017 14:19:18 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201701091419.v09EJI7T011279@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Mon, 9 Jan 2017 14:19:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430950 - in head/net: . py-suds py-suds-jurko 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: Mon, 09 Jan 2017 14:19:20 -0000 Author: novel Date: Mon Jan 9 14:19:18 2017 New Revision: 430950 URL: https://svnweb.freebsd.org/changeset/ports/430950 Log: Add net/py-suds-jurko, Lightweight SOAP client (jurko's fork) As it conflicts with net/py-suds because of installing the same files, add CONFLICTS_INSTALL to both py-suds-jurko and net/py-suds and bump PORTREVISION for the latter. PR: 215877 Submitted by: Alexander Nusov Added: head/net/py-suds-jurko/ head/net/py-suds-jurko/Makefile (contents, props changed) head/net/py-suds-jurko/distinfo (contents, props changed) head/net/py-suds-jurko/pkg-descr (contents, props changed) Modified: head/net/Makefile head/net/py-suds/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Mon Jan 9 13:48:19 2017 (r430949) +++ head/net/Makefile Mon Jan 9 14:19:18 2017 (r430950) @@ -1046,6 +1046,7 @@ SUBDIR += py-speedtest-cli SUBDIR += py-sshuttle SUBDIR += py-suds + SUBDIR += py-suds-jurko SUBDIR += py-terminado SUBDIR += py-tofu SUBDIR += py-tweepy Added: head/net/py-suds-jurko/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-suds-jurko/Makefile Mon Jan 9 14:19:18 2017 (r430950) @@ -0,0 +1,22 @@ +# Created by: Alexander Nusov +# $FreeBSD$ + +PORTNAME= suds-jurko +PORTVERSION= 0.6 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= alexander.nusov@nfvexpress.com +COMMENT= Lightweight SOAP client (jurko's fork) + +LICENSE= LGPL3 + +NO_ARCH= yes + +CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}suds-[0-9]* + +USES= python tar:bz2 +USE_PYTHON= autoplist distutils + +.include Added: head/net/py-suds-jurko/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-suds-jurko/distinfo Mon Jan 9 14:19:18 2017 (r430950) @@ -0,0 +1,3 @@ +TIMESTAMP = 1481385855 +SHA256 (suds-jurko-0.6.tar.bz2) = 29edb72fd21e3044093d86f33c66cf847c5aaab26d64cb90e69e528ef014e57f +SIZE (suds-jurko-0.6.tar.bz2) = 143985 Added: head/net/py-suds-jurko/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-suds-jurko/pkg-descr Mon Jan 9 14:19:18 2017 (r430950) @@ -0,0 +1,3 @@ +Lightweight SOAP client written in Python (jurko's fork). + +WWW: http://pypi.python.org/pypi/suds-jurko Modified: head/net/py-suds/Makefile ============================================================================== --- head/net/py-suds/Makefile Mon Jan 9 13:48:19 2017 (r430949) +++ head/net/py-suds/Makefile Mon Jan 9 14:19:18 2017 (r430950) @@ -3,7 +3,7 @@ PORTNAME= suds PORTVERSION= 0.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,6 +13,8 @@ COMMENT= SOAP implementation LICENSE= LGPL3 +CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}suds-jurko-* + USES= python:2 USE_PYTHON= autoplist distutils