View | Details | Raw Unified | Return to bug 233999 | Differences between
and this patch

Collapse All | Expand All

(-)security/py-exscript/Makefile (+34 lines)
Line 0 Link Here
1
# $FreeBSD: head/security/exscript/Makefile$
2
3
PORTNAME=	exscript
4
DISTVERSIONPREFIX=	v
5
DISTVERSION=	2.6
6
CATEGORIES=	security python
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
9
MAINTAINER=	jhay@FreeBSD.org
10
COMMENT=	Automating Telnet and SSH
11
12
LICENSE=	MIT
13
LICENSE_FILE=	${WRKSRC}/COPYING
14
15
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}future>=0:devel/py-future@${PY_FLAVOR} \
16
		${PYTHON_PKGNAMEPREFIX}configparser>=0:devel/py-configparser@${PY_FLAVOR} \
17
		${PYTHON_PKGNAMEPREFIX}pycryptodomex>=0:security/py-pycryptodomex@${PY_FLAVOR} \
18
		${PYTHON_PKGNAMEPREFIX}paramiko>=1.17:security/py-paramiko@${PY_FLAVOR}
19
20
NO_ARCH=	yes
21
USES=		python
22
USE_PYTHON=	autoplist concurrent distutils
23
USE_GITHUB=	yes
24
GH_ACCOUNT=	knipknap
25
26
post-patch:
27
	@${REINPLACE_CMD} -e \
28
		"{s#__version__ = '[^']*'#__version__ = '${PORTVERSION}'#;}" \
29
		${BUILD_WRKSRC}/VERSION.in
30
	@${REINPLACE_CMD} -e \
31
		"{s#__version__ = '[^']*'#__version__ = '${PORTVERSION}'#;}" \
32
		${BUILD_WRKSRC}/Exscript/version.py
33
34
.include <bsd.port.mk>
(-)security/py-exscript/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1565510934
2
SHA256 (knipknap-exscript-v2.6_GH0.tar.gz) = e3e2064d0183d30bd9cdb13ee760603e4cd0ff190ae2ac8f97329300967dca90
3
SIZE (knipknap-exscript-v2.6_GH0.tar.gz) = 272225
(-)security/py-exscript/pkg-descr (+6 lines)
Line 0 Link Here
1
Exscript is a Python module and a template processor for automating network
2
connections over protocols such as Telnet or SSH.
3
We attempt to create the best possible set of tools for working with
4
Telnet and SSH.
5
6
WWW: https://github.com/knipknap/exscript

Return to bug 233999