From owner-svn-ports-head@freebsd.org Sun Mar 27 15:31:08 2016 Return-Path: Delivered-To: svn-ports-head@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 16A16ADF553; Sun, 27 Mar 2016 15:31:08 +0000 (UTC) (envelope-from jbeich@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 C8DA51B92; Sun, 27 Mar 2016 15:31:07 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2RFV6d8076606; Sun, 27 Mar 2016 15:31:06 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2RFV6sL075882; Sun, 27 Mar 2016 15:31:06 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201603271531.u2RFV6sL075882@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 27 Mar 2016 15:31:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411995 - in head/devel: . py-adb 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.21 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, 27 Mar 2016 15:31:08 -0000 Author: jbeich Date: Sun Mar 27 15:31:06 2016 New Revision: 411995 URL: https://svnweb.freebsd.org/changeset/ports/411995 Log: devel/py-adb: add new port py-adb is mainly targeted to users that need to communicate with Android devices in an automated fashion, such as in automated testing. It does not have a daemon between the client and the device, and therefore does not support multiple simultaneous commands to the same device. It does support any number of devices and never communicates with a device that it wasn't intended to, unlike the Android project's ADB. https://pypi.python.org/pypi/adb Added: head/devel/py-adb/ head/devel/py-adb/Makefile (contents, props changed) head/devel/py-adb/distinfo (contents, props changed) head/devel/py-adb/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Mar 27 15:30:29 2016 (r411994) +++ head/devel/Makefile Sun Mar 27 15:31:06 2016 (r411995) @@ -3931,6 +3931,7 @@ SUBDIR += py-ToscaWidgets SUBDIR += py-TurboJinja SUBDIR += py-ZopeUndo + SUBDIR += py-adb SUBDIR += py-akismet SUBDIR += py-aniso8601 SUBDIR += py-anonfunc Added: head/devel/py-adb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-adb/Makefile Sun Mar 27 15:31:06 2016 (r411995) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= adb +PORTVERSION= 1.1.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Pure-python implementation of ADB and Fastboot protocols + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libusb1>0:devel/py-libusb1 \ + ${PYTHON_PKGNAMEPREFIX}gflags>0:devel/py-gflags \ + ${PYTHON_PKGNAMEPREFIX}m2crypto>0:security/py-m2crypto + +NO_ARCH= yes +USES= python:-2.7 +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-adb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-adb/distinfo Sun Mar 27 15:31:06 2016 (r411995) @@ -0,0 +1,2 @@ +SHA256 (adb-1.1.1.tar.gz) = 867c819e031210272d55ff97deaefd0514f62fd809154e1a04f77ce5632fd40c +SIZE (adb-1.1.1.tar.gz) = 18255 Added: head/devel/py-adb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-adb/pkg-descr Sun Mar 27 15:31:06 2016 (r411995) @@ -0,0 +1,9 @@ +py-adb is mainly targeted to users that need to communicate with +Android devices in an automated fashion, such as in automated +testing. It does not have a daemon between the client and the device, +and therefore does not support multiple simultaneous commands to the +same device. It does support any number of devices and never +communicates with a device that it wasn't intended to, unlike the +Android project's ADB. + +WWW: https://pypi.python.org/pypi/adb