From owner-svn-ports-head@FreeBSD.ORG Wed Feb 19 06:05:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2F920F39; Wed, 19 Feb 2014 06:05:45 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 170221C88; Wed, 19 Feb 2014 06:05:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1J65iG3064565; Wed, 19 Feb 2014 06:05:44 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1J65iOc064557; Wed, 19 Feb 2014 06:05:44 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201402190605.s1J65iOc064557@svn.freebsd.org> From: Kubilay Kocak Date: Wed, 19 Feb 2014 06:05:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345005 - in head/textproc: . py-transifex-client 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.17 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: Wed, 19 Feb 2014 06:05:45 -0000 Author: koobs Date: Wed Feb 19 06:05:43 2014 New Revision: 345005 URL: http://svnweb.freebsd.org/changeset/ports/345005 QAT: https://qat.redports.org/buildarchive/r345005/ Log: textproc/py-transifex-client: Command line interface for Transifex The Transifex Command-line Client is a command line tool that enables you to easily manage your translations within a project without the need of an elaborate UI system. You can use the command line client to easily create new resources, map locale files to translations and synchronize your Transifex project with your local repository and vice verca. Translators and localization managers can also use it to handle large volumes of translation files easily and without much hassle. WWW: http://www.transifex.com/ Added: head/textproc/py-transifex-client/ head/textproc/py-transifex-client/Makefile (contents, props changed) head/textproc/py-transifex-client/distinfo (contents, props changed) head/textproc/py-transifex-client/pkg-descr (contents, props changed) head/textproc/py-transifex-client/pkg-plist (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Wed Feb 19 05:44:13 2014 (r345004) +++ head/textproc/Makefile Wed Feb 19 06:05:43 2014 (r345005) @@ -1203,6 +1203,7 @@ SUBDIR += py-syck SUBDIR += py-texttable SUBDIR += py-trans + SUBDIR += py-transifex-client SUBDIR += py-translationstring SUBDIR += py-tvgrab SUBDIR += py-twistedLore Added: head/textproc/py-transifex-client/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-transifex-client/Makefile Wed Feb 19 06:05:43 2014 (r345005) @@ -0,0 +1,27 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= transifex-client +PORTVERSION= 0.10 +CATEGORIES= textproc python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Command line interface for Transifex + +LICENSE= GPLv2 + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock + +USE_GITHUB= yes +USE_PYTHON= -2.7 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +GH_ACCOUNT= transifex +GH_COMMIT= 84c9dcc + +regression-test: build + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test + +.include Added: head/textproc/py-transifex-client/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-transifex-client/distinfo Wed Feb 19 06:05:43 2014 (r345005) @@ -0,0 +1,2 @@ +SHA256 (transifex-client-0.10.tar.gz) = 3de66de38b37d0be200b0a208a862c4f3f5f1561c9db55818045dc2b52a86870 +SIZE (transifex-client-0.10.tar.gz) = 71822 Added: head/textproc/py-transifex-client/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-transifex-client/pkg-descr Wed Feb 19 06:05:43 2014 (r345005) @@ -0,0 +1,11 @@ +The Transifex Command-line Client is a command line tool that enables you +to easily manage your translations within a project without the need of an +elaborate UI system. + +You can use the command line client to easily create new resources, map +locale files to translations and synchronize your Transifex project with +your local repository and vice verca. Translators and localization managers +can also use it to handle large volumes of translation files easily and +without much hassle. + +WWW: https://www.transifex.com/ Added: head/textproc/py-transifex-client/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-transifex-client/pkg-plist Wed Feb 19 06:05:43 2014 (r345005) @@ -0,0 +1 @@ +@comment $FreeBSD$