From owner-svn-ports-head@FreeBSD.ORG Thu Dec 11 22:17:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 38E8AE68; Thu, 11 Dec 2014 22:17:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 18DE0C38; Thu, 11 Dec 2014 22:17:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBBMHoxI006110; Thu, 11 Dec 2014 22:17:50 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBBMHov2006107; Thu, 11 Dec 2014 22:17:50 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201412112217.sBBMHov2006107@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 11 Dec 2014 22:17:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374552 - in head/sysutils/ansible: . files X-SVN-Group: ports-head 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.18-1 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, 11 Dec 2014 22:17:51 -0000 Author: koobs Date: Thu Dec 11 22:17:49 2014 New Revision: 374552 URL: https://svnweb.freebsd.org/changeset/ports/374552 QAT: https://qat.redports.org/buildarchive/r374552/ Log: sysutils/ansible: Update to 1.8.2 - Update to 1.8.2 - Remove MASTERFILES, DISTFILES (unnecessary with USE_GITHUB) - Update COMMENT - Remove ACCELERATE option, move pycrypto to RUN_DEPENDS While I'm here: - Add LICENSE_FILE - pkg-descr: Strip trailing slash from WWW: URL - GH_PROJECT defaults to ${PORTNAME}, remove it Changes: https://raw.githubusercontent.com/ansible/ansible/v1.8.2/CHANGELOG.md PR: 195557 Submitted by: Nikolai Lifanov (maintainer) Deleted: head/sysutils/ansible/files/ansible.desktop Modified: head/sysutils/ansible/Makefile head/sysutils/ansible/distinfo Modified: head/sysutils/ansible/Makefile ============================================================================== --- head/sysutils/ansible/Makefile Thu Dec 11 21:50:42 2014 (r374551) +++ head/sysutils/ansible/Makefile Thu Dec 11 22:17:49 2014 (r374552) @@ -2,39 +2,30 @@ # $FreeBSD$ PORTNAME= ansible -PORTVERSION= 1.7.2 +PORTVERSION= 1.8.2 CATEGORIES= sysutils python -MASTER_SITES= SF/lifanov-ports-distfiles/sysutils/${PORTNAME}/:icons -DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \ - ${PORTNAME}.png:icons -EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} MAINTAINER= lifanov@mail.lifanov.com -COMMENT= Simple ssh-based configuration management and orchestration system +COMMENT= Radically simple IT automation LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:${PORTSDIR}/devel/py-yaml \ + ${PYTHON_PKGNAMEPREFIX}pycrypto>0:${PORTSDIR}/security/py-pycrypto \ ${PYTHON_PKGNAMEPREFIX}paramiko>0:${PORTSDIR}/security/py-paramiko \ ${PYTHON_PKGNAMEPREFIX}Jinja2>0:${PORTSDIR}/devel/py-Jinja2 -OPTIONS_DEFINE= ACCELERATE EXAMPLES -OPTIONS_DEFAULT= ACCELERATE - -ACCELERATE_DESC= Enable Accelerated Mode (Uses pycrypto and keyczar) -ACCELERATE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycrypto>0:${PORTSDIR}/security/py-pycrypto \ - ${PYTHON_PKGNAMEPREFIX}keyczar>0:${PORTSDIR}/security/py-keyczar +OPTIONS_DEFINE= EXAMPLES USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME} -GH_PROJECT= ${PORTNAME} GH_TAGNAME= ${GH_COMMIT} -GH_COMMIT= d3c28fe +GH_COMMIT= 6f568bd USES= cpe python:2 shebangfix USE_PYTHON= autoplist distutils -SHEBANG_FILES= library/*/* \ - lib/ansible/runner/action_plugins/synchronize.py +SHEBANG_FILES= lib/ansible/runner/action_plugins/synchronize.py CPE_VENDOR= ansibleworks SUB_FILES= pkg-message @@ -44,24 +35,26 @@ PLIST_FILES+= man/man1/ansible-doc.1.gz man/man1/ansible-playbook.1.gz \ man/man1/ansible-pull.1.gz \ man/man1/ansible-vault.1.gz \ - man/man1/ansible.1.gz \ - ${DESKTOPDIR:S,^${PREFIX}/,,}/${PORTNAME}.desktop \ - share/pixmaps/${PORTNAME}.png + man/man1/ansible.1.gz PORTEXAMPLES= ansible.cfg hosts post-patch: -.for f in bin/ansible-galaxy docs/man/man1/ansible-playbook.1 \ - docs/man/man1/ansible.1 examples/ansible.cfg \ - examples/hosts lib/ansible/constants.py \ - lib/ansible/playbook/__init__.py lib/ansible/runner/__init__.py \ - library/system/setup +.for f in bin/ansible-galaxy docs/man/man1/ansible-galaxy.1 \ + docs/man/man1/ansible-playbook.1 docs/man/man1/ansible.1 \ + examples/ansible.cfg examples/hosts lib/ansible/constants.py \ + lib/ansible/module_utils/urls.py lib/ansible/playbook/__init__.py \ + lib/ansible/runner/__init__.py plugins/README.md \ + plugins/inventory/cobbler.py plugins/inventory/collins.py \ + plugins/inventory/nova.py plugins/inventory/spacewalk.py \ + v2/ansible/constants.py v2/ansible/playbook/role/definition.py @${REINPLACE_CMD} -e 's|/etc/ansible|${ETCDIR}|' ${WRKSRC}/${f} .endfor .for f in docs/man/man1/ansible-playbook.1 docs/man/man1/ansible.1 \ examples/ansible.cfg lib/ansible/constants.py \ - lib/ansible/playbook/__init__.py lib/ansible/runner/__init__.py + lib/ansible/playbook/__init__.py lib/ansible/runner/__init__.py \ + v2/ansible/constants.py @${REINPLACE_CMD} -e 's|/usr/share/ansible|${DATADIR}|' ${WRKSRC}/${f} .endfor @@ -72,9 +65,5 @@ post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/ansible.cfg ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/hosts ${STAGEDIR}${EXAMPLESDIR} - ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png \ - ${STAGEDIR}${PREFIX}/share/pixmaps/ - ${INSTALL_DATA} ${FILESDIR}/${PORTNAME}.desktop \ - ${STAGEDIR}${DESKTOPDIR} .include Modified: head/sysutils/ansible/distinfo ============================================================================== --- head/sysutils/ansible/distinfo Thu Dec 11 21:50:42 2014 (r374551) +++ head/sysutils/ansible/distinfo Thu Dec 11 22:17:49 2014 (r374552) @@ -1,4 +1,2 @@ -SHA256 (ansible-1.7.2.tar.gz) = e27afa6074cf5c4451d0ae2002413d6328357daa0b5c678490d56b45a4ba2179 -SIZE (ansible-1.7.2.tar.gz) = 1267016 -SHA256 (ansible.png) = 9bf68abd2c95db4dc8dfc091c0e0e0a9716891f28d157e3f04e541d96e1c6850 -SIZE (ansible.png) = 1160 +SHA256 (ansible-1.8.2.tar.gz) = 629d88f44e60b1a581a6164762447635121d4dd272bf2fd0a55f681895daa5b1 +SIZE (ansible-1.8.2.tar.gz) = 934386