Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 27 Mar 2016 15:31:06 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r411995 - in head/devel: . py-adb
Message-ID:  <201603271531.u2RFV6sL075882@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603271531.u2RFV6sL075882>