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

Collapse All | Expand All

(-)codeville/Makefile (-4 / +4 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	codeville
4
PORTNAME=	codeville
5
PORTVERSION=	0.1.17
5
PORTVERSION=	0.1.18
6
CATEGORIES=	devel python
6
CATEGORIES=	devel python
7
MASTER_SITES=	https://BSDforge.com/projects/source/devel/codeville/
7
MASTER_SITES=	https://BSDforge.com/projects/source/devel/codeville/
8
8
Lines 12-21 Link Here
12
LICENSE=	BSD3CLAUSE
12
LICENSE=	BSD3CLAUSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
13
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
14
14
15
DEPRECATED=	Uses deprecated version of python
15
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future@${PY_FLAVOR}
16
EXPIRATION_DATE=	2020-09-15
16
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future@${PY_FLAVOR}
17
17
18
USES=		python:2.7 tar:xz
18
USES=		python:3.7+ tar:txz
19
USE_PYTHON=	distutils autoplist
19
USE_PYTHON=	distutils autoplist
20
NO_ARCH=	yes
20
NO_ARCH=	yes
21
21
(-)codeville/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1466283269
1
TIMESTAMP = 1608019339
2
SHA256 (codeville-0.1.17.tar.xz) = 8b7df400dec5b5d8eefe4f5d5de0b8aeff501736fb08b7094bb833d73079e901
2
SHA256 (codeville-0.1.18.txz) = 526fe707bce189b0022d28a35028abf8b165ed093f749934a647fc7e83b27095
3
SIZE (codeville-0.1.17.tar.xz) = 70216
3
SIZE (codeville-0.1.18.txz) = 74772
(-)codeville/files/patch-MANIFEST.in (-2 / +2 lines)
Lines 1-5 Link Here
1
--- MANIFEST.in.orig	2014-06-20 11:53:26.000000000 -0700
1
--- MANIFEST.in.orig	2021-02-08 12:26:11.017320000 -0800
2
+++ MANIFEST.in	2014-06-20 11:53:44.000000000 -0700
2
+++ MANIFEST.in	2021-02-08 12:26:35.586414000 -0800
3
@@ -1,4 +1,4 @@
3
@@ -1,4 +1,4 @@
4
-recursive-include Codeville *.py *.pyd
4
-recursive-include Codeville *.py *.pyd
5
+recursive-include Codeville *.py
5
+recursive-include Codeville *.py
(-)codeville/files/patch-setup.py (-9 / +10 lines)
Lines 1-10 Link Here
1
--- setup.py.orig	2016-06-13 06:31:53.378976000 -0700
1
--- setup.py.orig	2021-02-08 12:27:00.496565000 -0800
2
+++ setup.py	2016-06-13 06:32:11.276473000 -0700
2
+++ setup.py	2021-02-08 12:29:53.074327000 -0800
3
@@ -46,6 +46,5 @@
3
@@ -9,7 +9,7 @@
4
     packages = ["Codeville", "Codeville/old"],
4
 from distutils.core import setup
5
     ext_modules = plat_ext,
5
 import shutil
6
 import sys
7
-assert sys.version >= '2', "Install Python 2.0 or greater"
8
+assert sys.version >= '3', "Install Python 3.0 or greater"
6
 
9
 
7
-    scripts = scripts,
10
 scripts = ["cdv", "cdvserver", "cdvpasswd", "cdv-agent", "cdvupgrade"]
8
-    data_files = data_files
11
 plat_ext = []
9
+    scripts = scripts
10
     )

Return to bug 251772