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

(-)net-mgmt/py-pysmi/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	pysmi
4
PORTNAME=	pysmi
5
PORTVERSION=	0.0.6
5
PORTVERSION=	0.0.7
6
CATEGORIES=	net-mgmt python
6
CATEGORIES=	net-mgmt python
7
MASTER_SITES=	CHEESESHOP \
7
MASTER_SITES=	CHEESESHOP \
8
		SF/pysmi/pysmi/${PORTVERSION}
8
		SF/pysmi/pysmi/${PORTVERSION}
(-)net-mgmt/py-pysmi/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (pysmi-0.0.6.tar.gz) = f04641fd88239ad6708aad9f8b24bc1606b225346bb6a7bb7253cc2103a7d9a0
1
TIMESTAMP = 1487436747
2
SIZE (pysmi-0.0.6.tar.gz) = 55917
2
SHA256 (pysmi-0.0.7.tar.gz) = 999f6db9e16f4cc2804263d825553dbdd188c4313ca5c1244eeb20a3c4a60116
3
SIZE (pysmi-0.0.7.tar.gz) = 56233
(-)net-mgmt/py-pysmi/files/patch-setup.py (-10 / +11 lines)
Lines 1-12 Link Here
1
--- setup.py.orig	2015-11-07 19:23:39 UTC
1
--- setup.py.orig	2016-02-13 18:11:15 UTC
2
+++ setup.py
2
+++ setup.py
3
@@ -80,7 +80,8 @@ params.update( {
3
@@ -83,7 +83,9 @@ params.update({
4
                   'pysmi.parser',
4
                  'pysmi.parser',
5
                   'pysmi.codegen',
5
                  'pysmi.codegen',
6
                   'pysmi.borrower',
6
                  'pysmi.borrower',
7
-                  'pysmi.writer' ],
7
-                 'pysmi.writer'],
8
+                  'pysmi.writer',
8
+                 'pysmi.writer',
9
+                  'pysmi.tests' ],
9
+                 'pysmi.tests',
10
     'scripts': [ os.path.join('scripts','mibdump.py') ]
10
+    ],
11
 } )
11
     'scripts': [os.path.join('scripts', 'mibdump.py')]
12
 })
12
 
13
 
(-)net-mgmt/py-pysmi/files/tests__init__.py (-1 / +1 lines)
Lines 1-7 Link Here
1
from unittest import SkipTest, TestSuite
1
from unittest import SkipTest, TestSuite
2
2
3
3
4
def load_tests(loader, tests, pattern):
4
def load_tests(*args, **kwargs):
5
    import suite
5
    import suite
6
    return suite.suite
6
    return suite.suite
7
7

Return to bug 217206