View | Details | Raw Unified | Return to bug 280001
Collapse All | Expand All

(-)b/net/Makefile (+1 lines)
Lines 1084-1089 Link Here
1084
    SUBDIR += py-netaddr
1084
    SUBDIR += py-netaddr
1085
    SUBDIR += py-netif
1085
    SUBDIR += py-netif
1086
    SUBDIR += py-netifaces
1086
    SUBDIR += py-netifaces
1087
    SUBDIR += py-netifaces-plus
1087
    SUBDIR += py-netsnmpagent
1088
    SUBDIR += py-netsnmpagent
1088
    SUBDIR += py-nnpy
1089
    SUBDIR += py-nnpy
1089
    SUBDIR += py-ntplib
1090
    SUBDIR += py-ntplib
(-)b/net/py-netifaces-plus/Makefile (+26 lines)
Added Link Here
1
PORTNAME=	netifaces-plus
2
PORTVERSION=	0.12.2
3
CATEGORIES=	net python
4
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
5
6
MAINTAINER=	kiwi@oav.net	
7
COMMENT=	Getting network addresses from Python 3
8
WWW=		https://pypi.org/project/netifaces-plus/
9
10
LICENSE=	MIT
11
12
USES=		python
13
USE_GITHUB=	yes
14
USE_PYTHON=	allflavors autoplist distutils cython
15
16
GH_ACCOUNT=	tsukumijima
17
GH_PROJECT=     ${PORTNAME}
18
GH_TAGNAME=     742dd07
19
20
post-install:
21
	${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_netifaces*.so
22
23
do-test:
24
	@cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} test.py
25
26
.include <bsd.port.mk>
(-)b/net/py-netifaces-plus/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1718895152
2
SHA256 (tsukumijima-netifaces-plus-0.12.2-742dd07_GH0.tar.gz) = 3164adbba24d6456c22c55285a14a5b09d19e0bb4e19d6ba90b1faab971ef2d2
3
SIZE (tsukumijima-netifaces-plus-0.12.2-742dd07_GH0.tar.gz) = 28944
(-)b/net/py-netifaces-plus/pkg-descr (-1 / +5 lines)
Added Link Here
0
- 
1
Getting network addresses from Python
2
3
It's been irritating me for ages that it isn't possible to
4
straightforwardly get the network address(es) of the machine
5
you're running on from a Python program.

Return to bug 280001