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

Collapse All | Expand All

(-)MOVED (-1 lines)
Lines 15479-15485 Link Here
15479
devel/bbfreeze-loader||2020-09-19|Has expired: Uses deprecated version of python
15479
devel/bbfreeze-loader||2020-09-19|Has expired: Uses deprecated version of python
15480
devel/bicyclerepair||2020-09-19|Has expired: Uses deprecated version of python
15480
devel/bicyclerepair||2020-09-19|Has expired: Uses deprecated version of python
15481
devel/bzrtools||2020-09-19|Has expired: Uses deprecated version of python
15481
devel/bzrtools||2020-09-19|Has expired: Uses deprecated version of python
15482
devel/codeville||2020-09-19|Has expired: Uses deprecated version of python
15483
devel/cvs2svn||2020-09-19|Has expired: Uses deprecated version of python
15482
devel/cvs2svn||2020-09-19|Has expired: Uses deprecated version of python
15484
devel/cx_Freeze||2020-09-19|Has expired: Uses deprecated version of python
15483
devel/cx_Freeze||2020-09-19|Has expired: Uses deprecated version of python
15485
devel/euca2ools||2020-09-19|Has expired: Uses deprecated version of python
15484
devel/euca2ools||2020-09-19|Has expired: Uses deprecated version of python
(-)devel/codeville/Makefile (+30 lines)
Line 0 Link Here
1
# Created by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
2
# $FreeBSD$
3
4
PORTNAME=	codeville
5
PORTVERSION=	0.1.18
6
CATEGORIES=	devel python
7
MASTER_SITES=	https://BSDforge.com/projects/source/devel/codeville/
8
9
MAINTAINER=	portmaster@bsdforge.com
10
COMMENT=	Anarchic control version system without unnecessary re-merges
11
12
LICENSE=	BSD3CLAUSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
14
15
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future@${PY_FLAVOR}
16
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future@${PY_FLAVOR}
17
18
USES=		python:3.7+ tar:txz
19
USE_PYTHON=	distutils autoplist
20
NO_ARCH=	yes
21
22
PORTEXAMPLES=	cdvserver.conf.sample
23
24
OPTIONS_DEFINE=	EXAMPLES
25
26
post-install-EXAMPLES-on:
27
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
28
	${INSTALL_DATA} ${WRKSRC}/${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}
29
30
.include <bsd.port.mk>
(-)devel/codeville/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1608019339
2
SHA256 (codeville-0.1.18.txz) = 526fe707bce189b0022d28a35028abf8b165ed093f749934a647fc7e83b27095
3
SIZE (codeville-0.1.18.txz) = 74772
(-)devel/codeville/files/patch-MANIFEST.in (+8 lines)
Line 0 Link Here
1
--- MANIFEST.in.orig	2014-06-20 11:53:26.000000000 -0700
2
+++ MANIFEST.in	2014-06-20 11:53:44.000000000 -0700
3
@@ -1,4 +1,4 @@
4
-recursive-include Codeville *.py *.pyd
5
+recursive-include Codeville *.py
6
 include cdv cdvserver cdvpasswd cdv-agent cdvupgrade LICENSE.txt
7
 include cdvserver.conf.sample
8
 include src/winrand.c
(-)devel/codeville/files/patch-setup.py (+10 lines)
Line 0 Link Here
1
--- setup.py.orig	2020-12-14 23:57:44.586010000 -0800
2
+++ setup.py	2020-12-14 23:58:37.049240000 -0800
3
@@ -47,6 +47,5 @@
4
     packages = ["Codeville", "Codeville/old"],
5
     ext_modules = plat_ext,
6
 
7
-    scripts = scripts,
8
-    data_files = data_files
9
+    scripts = scripts
10
     )
(-)devel/codeville/pkg-descr (+16 lines)
Line 0 Link Here
1
Codeville is a distributed Version Control System. It began with a novel
2
idea for a merge algorithm, and has grown from there. It is designed to
3
be easy to use, and scale from small personal projects, to very large
4
distributed ones. If you'd like to know why there's need for new merge
5
algorithms, consider what the lead monotone developer had to say:
6
http://article.gmane.org/gmane.comp.version-control.monotone.devel/3264
7
8
Codeville works by creating an identifier for each change that is done,
9
and remembering the list of all changes which have been applied to each
10
file, and the last change which modified each line in each file. When
11
there's a conflict, it checks to see if one of the two sides has already
12
been applied to the other one, and if so, makes the other side win
13
automatically. When there's a non automatically mergeable version conflict,
14
Codeville behaves in almost exactly the same way as CVS.
15
16
WWW: https://bsdforge.com/projects/devel/codeville/

Return to bug 251772