As we discussed in the last meeting, we reset the ports tree and began from scratch, even though this change involves porting all the packages. Starting small and growing gradually, this approach will reduce build times and consequently lower energy consumption in a world affected by climate change. We will add new ports as users needs arise; ok h3artbl33d@

This commit is contained in:
purplerain 2024-05-26 03:08:12 +00:00
parent 83a0aaf92c
commit 9a3af55370
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
59377 changed files with 98673 additions and 4712155 deletions

View file

@ -5,11 +5,7 @@ COMMENT-ruby= ruby interface to subversion
COMMENT-ap2= apache2 subversion modules
COMMENT-gnome-keyring= GNOME keyring support for subversion
VERSION= 1.14.2
REVISION-main= 0
REVISION-ruby= 0
REVISION-python= 1
REVISION-gnome-keyring= 1
VERSION= 1.14.3
DISTNAME= subversion-${VERSION:S/rc/-rc/}
PKGNAME-main= subversion-${VERSION}
PKGNAME-perl= p5-SVN-${VERSION}
@ -18,6 +14,8 @@ PKGNAME-ruby= ruby${MODRUBY_BINREV}-subversion-${VERSION}
PKGNAME-ap2= ap2-subversion-${VERSION}
PKGNAME-gnome-keyring= gnome-keyring-subversion-${VERSION}
REVISION= 0
SO_VERSION= 6.0
SVN_LIBS= svn_client-1 svn_delta-1 svn_diff-1 svn_fs-1 \
svn_fs_base-1 svn_fs_fs-1 svn_fs_util-1 svn_fs_x-1 \
@ -232,8 +230,6 @@ post-build:
${MAKE_FLAGS} svn-populate-node-origins-index
do-test:
@cd ${WRKBUILD} && ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} \
${ALL_TEST_FLAGS} check FS_TYPE=bdb CLEANUP=1
@cd ${WRKBUILD} && ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} \
${ALL_TEST_FLAGS} check FS_TYPE=fsfs CLEANUP=1
.if ${BUILD_PACKAGES:M-perl}

View file

@ -1,2 +1,2 @@
SHA256 (subversion-1.14.2.tar.bz2) = yRMOjQt1copm8OcDj8dwUuZxgw14W1YWqtU7SBDTzCg=
SIZE (subversion-1.14.2.tar.bz2) = 8606570
SHA256 (subversion-1.14.3.tar.bz2) = lJ79RRoJQ19+hXNXTHHHtxsZTYRIkPpJzWHSJi6hpEA=
SIZE (subversion-1.14.3.tar.bz2) = 8569985

View file

@ -1,34 +0,0 @@
From 8ff4cfd06ce554e9df31a088c9d09f45278c6de4 Mon Sep 17 00:00:00 2001
From: Yasuhito Futatsuki <futatuki@apache.org>
Date: Tue, 20 Sep 2022 12:57:06 +0000
Subject: [PATCH] swig-py: Fix conditionals by SWIG version and by Python
version for proxy code.
Index: subversion/bindings/swig/include/proxy.swg
--- subversion/bindings/swig/include/proxy.swg.orig
+++ subversion/bindings/swig/include/proxy.swg
@@ -66,7 +66,6 @@
fn()
%}
-#if defined(SWIGPYTHON_PY3)
#if SWIG_VERSION >= 0x040000
%pythoncode %{
# -classic and -modern options have been dropped and this variable
@@ -76,7 +75,7 @@
_set_instance_attr = _swig_setattr_nondynamic_instance_variable(object.__setattr__)
%}
-#else
+#elif defined(SWIGPYTHON_PY3)
%pythoncode %{
# SWIG classes generated with -modern do not define this variable
try:
@@ -90,7 +89,6 @@
_set_instance_attr = _swig_setattr_nondynamic_method(object.__setattr__)
%}
-#endif
#else
%pythoncode %{
# SWIG classes generated with -classic do not define this variable,