From owner-svn-ports-head@freebsd.org Sun Sep 15 21:43:25 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 16B2FE8D89; Sun, 15 Sep 2019 21:43:25 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46WjY86tnkz3HBh; Sun, 15 Sep 2019 21:43:24 +0000 (UTC) (envelope-from dbaio@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 B5AD0E79B; Sun, 15 Sep 2019 21:43:24 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8FLhOL7093714; Sun, 15 Sep 2019 21:43:24 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8FLhNkH093710; Sun, 15 Sep 2019 21:43:23 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201909152143.x8FLhNkH093710@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sun, 15 Sep 2019 21:43:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512129 - in head/devel: . py-wlc X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/devel: . py-wlc X-SVN-Commit-Revision: 512129 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.29 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: Sun, 15 Sep 2019 21:43:25 -0000 Author: dbaio Date: Sun Sep 15 21:43:23 2019 New Revision: 512129 URL: https://svnweb.freebsd.org/changeset/ports/512129 Log: Add devel/py-wlc: Command line utility for Weblate Command line utility for Weblate, translation tool with tight version control integration. It uses the Weblate's REST API. WWW: https://github.com/WeblateOrg/wlc WWW: https://pypi.org/project/wlc/ Added: head/devel/py-wlc/ head/devel/py-wlc/Makefile (contents, props changed) head/devel/py-wlc/distinfo (contents, props changed) head/devel/py-wlc/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Sep 15 20:16:38 2019 (r512128) +++ head/devel/Makefile Sun Sep 15 21:43:23 2019 (r512129) @@ -5165,6 +5165,7 @@ SUBDIR += py-whichcraft SUBDIR += py-whistle SUBDIR += py-widgetsnbextension + SUBDIR += py-wlc SUBDIR += py-wrapt SUBDIR += py-wsgi_intercept SUBDIR += py-wsgi_xmlrpc Added: head/devel/py-wlc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-wlc/Makefile Sun Sep 15 21:43:23 2019 (r512129) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= wlc +PORTVERSION= 1.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@FreeBSD.org +COMMENT= Command line utility for Weblate + +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xdg>0:devel/py-xdg@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} + +USES= python:3.5+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-wlc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-wlc/distinfo Sun Sep 15 21:43:23 2019 (r512129) @@ -0,0 +1,3 @@ +TIMESTAMP = 1568579023 +SHA256 (wlc-1.1.tar.gz) = 886c8d4e689eb5a24968b80f9ff76a971276fbb45cf2a11a5ed53d10ed7eb53c +SIZE (wlc-1.1.tar.gz) = 47285 Added: head/devel/py-wlc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-wlc/pkg-descr Sun Sep 15 21:43:23 2019 (r512129) @@ -0,0 +1,5 @@ +Command line utility for Weblate, translation tool with tight version control +integration. It uses the Weblate's REST API. + +WWW: https://github.com/WeblateOrg/wlc +WWW: https://pypi.org/project/wlc/