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

Collapse All | Expand All

(-)b/UPDATING (+23 lines)
Lines 5-10 they are unavoidable. Link Here
5
You should get into the habit of checking this file for changes each time
5
You should get into the habit of checking this file for changes each time
6
you update your ports collection, before attempting any port upgrades.
6
you update your ports collection, before attempting any port upgrades.
7
7
8
20221128:
9
  AFFECTS: devel/py-proxmoxer
10
  AUTHOR: einar@isnic.is
11
12
  AuthenticationError Moved
13
14
  proxmoxer.backends.https.AuthenticationError was moved to
15
  proxmoxer.AuthenticationError (the class itself is the same).
16
  Any imports or references to proxmoxer.backends.https.AuthenticationError
17
  should be changed to proxmoxer.AuthenticationError.
18
  
19
  ProxmoxResourceBase Removed
20
21
  While this should be a fully internal change, the ProxmoxResourceBase
22
  class was removed. Use ProxmoxResource instead.
23
24
  Removed ProxmoxHTTPTicketAuth
25
26
  The auth_token and csrf_token arguments are no longer supported. If an
27
  existing (still valid) token needs to be used, you can pass the token
28
  as password and proxmoxer will attempt to renew the ticket and retrieve
29
  a new token and CSRF token.
30
8
20221126:
31
20221126:
9
  AFFECTS: textproc/kibana8
32
  AFFECTS: textproc/kibana8
10
  AUTHOR: otis@FreeBSD.org
33
  AUTHOR: otis@FreeBSD.org
(-)b/devel/py-proxmoxer/Makefile (-8 / +2 lines)
Lines 1-5 Link Here
1
PORTNAME=	proxmoxer
1
PORTNAME=	proxmoxer
2
PORTVERSION=	1.3.1
2
PORTVERSION=	2.0.0
3
CATEGORIES=	devel python
3
CATEGORIES=	devel python
4
MASTER_SITES=	CHEESESHOP
4
MASTER_SITES=	CHEESESHOP
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
Lines 12-27 LICENSE= MIT Link Here
12
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
12
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
13
13
14
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}requests>=2.0.0:www/py-requests@${PY_FLAVOR}
14
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}requests>=2.0.0:www/py-requests@${PY_FLAVOR}
15
TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR} \
16
		${PYTHON_PKGNAMEPREFIX}paramiko>=0:security/py-paramiko@${PY_FLAVOR}
17
15
18
USES=		python
16
USES=		python
19
USE_PYTHON=	autoplist distutils nose
17
USE_PYTHON=	autoplist distutils
20
18
21
NO_ARCH=	yes
19
NO_ARCH=	yes
22
20
23
# do-test:
24
# 	# openssh requires absent py-openssh_wrapper; also note that https tests fail
25
# 	@cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} nosetests-${PYTHON_VER} -e openssh
26
27
.include <bsd.port.mk>
21
.include <bsd.port.mk>
(-)b/devel/py-proxmoxer/distinfo (-4 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1668784325
1
TIMESTAMP = 1669626053
2
SHA256 (proxmoxer-1.3.1.tar.gz) = ef32c549877bf4439da6df3dff08be10d9dfe3bfc8a25d676a786ffe861ee096
2
SHA256 (proxmoxer-2.0.0.tar.gz) = f592426c16ec9a00f141379da1dd72d2a6fcf46f9ee181484906668ad2f31357
3
SIZE (proxmoxer-1.3.1.tar.gz) = 15387
3
SIZE (proxmoxer-2.0.0.tar.gz) = 17447
4
- 

Return to bug 268036