From owner-svn-ports-head@freebsd.org Thu Mar 1 13:35:37 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD5F0F2AA4B; Thu, 1 Mar 2018 13:35:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5FD01858F6; Thu, 1 Mar 2018 13:35:37 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 40F0A14E8; Thu, 1 Mar 2018 13:35:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w21DZbkp071511; Thu, 1 Mar 2018 13:35:37 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w21DZaB0071508; Thu, 1 Mar 2018 13:35:36 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201803011335.w21DZaB0071508@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 1 Mar 2018 13:35:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463317 - head/devel/py-tarantool-queue X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-tarantool-queue X-SVN-Commit-Revision: 463317 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2018 13:35:37 -0000 Author: sunpoet Date: Thu Mar 1 13:35:36 2018 New Revision: 463317 URL: https://svnweb.freebsd.org/changeset/ports/463317 Log: Update to 0.1.4 - Sort RUN_DEPENDS - Add NO_ARCH - Allow concurrent installation (USE_PYTHON=concurrent) - Simplify pkg-descr - Update WWW - Take maintainership Changes: https://github.com/tarantool/queue-python/commits/master Modified: head/devel/py-tarantool-queue/Makefile head/devel/py-tarantool-queue/distinfo head/devel/py-tarantool-queue/pkg-descr Modified: head/devel/py-tarantool-queue/Makefile ============================================================================== --- head/devel/py-tarantool-queue/Makefile Thu Mar 1 13:35:31 2018 (r463316) +++ head/devel/py-tarantool-queue/Makefile Thu Mar 1 13:35:36 2018 (r463317) @@ -2,23 +2,24 @@ # $FreeBSD$ PORTNAME= tarantool-queue -PORTVERSION= 0.1.0 +PORTVERSION= 0.1.4 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= python@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Python bindings for Tarantool queue LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tarantool>=0:databases/py-tarantool@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}msgpack-python>=0:devel/py-msgpack-python@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msgpack-python>=0:devel/py-msgpack-python@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tarantool>=0:databases/py-tarantool@${FLAVOR} +NO_ARCH= yes USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist concurrent distutils -do-configure: - ${REINPLACE_CMD} -i -e "1d" ${WRKSRC}/setup.py +post-patch: + @${REINPLACE_CMD} -e 's|tarantool<0.4|tarantool|' ${WRKSRC}/setup.py .include Modified: head/devel/py-tarantool-queue/distinfo ============================================================================== --- head/devel/py-tarantool-queue/distinfo Thu Mar 1 13:35:31 2018 (r463316) +++ head/devel/py-tarantool-queue/distinfo Thu Mar 1 13:35:36 2018 (r463317) @@ -1,2 +1,3 @@ -SHA256 (tarantool-queue-0.1.0.tar.gz) = 8e99b429aaa1465fe7e818534e5f3baccca021e61bb48486e3faece83f6d5e07 -SIZE (tarantool-queue-0.1.0.tar.gz) = 6383 +TIMESTAMP = 1519464568 +SHA256 (tarantool-queue-0.1.4.tar.gz) = 07583ba16857a55fb830a0a432dcdd8bec928256481344a709033c6b3c544641 +SIZE (tarantool-queue-0.1.4.tar.gz) = 8709 Modified: head/devel/py-tarantool-queue/pkg-descr ============================================================================== --- head/devel/py-tarantool-queue/pkg-descr Thu Mar 1 13:35:31 2018 (r463316) +++ head/devel/py-tarantool-queue/pkg-descr Thu Mar 1 13:35:36 2018 (r463317) @@ -1,7 +1,4 @@ -Python Bindings for Tarantool Queue +Python Bindings for Tarantool Queue (https://github.com/tarantool/queue/) -More details about Tarantool Queue on the page: -https://github.com/tarantool/queue - -WWW: https://github.com/tarantool/tarantool-queue-python WWW: https://pypi.python.org/pypi/tarantool-queue +WWW: https://github.com/tarantool/queue-python