Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
slapos
Commits
e413268e
Commit
e413268e
authored
Oct 05, 2021
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
component/pysvn-python: version up 1.9.15
parent
5dc18e9e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
78 additions
and
75 deletions
+78
-75
component/pysvn-python/buildout.cfg
component/pysvn-python/buildout.cfg
+2
-3
component/pysvn-python/pysvn-1.9.15-inc_lib_dir.patch
component/pysvn-python/pysvn-1.9.15-inc_lib_dir.patch
+75
-56
component/pysvn-python/pysvn-issue-179.patch
component/pysvn-python/pysvn-issue-179.patch
+0
-15
stack/erp5/buildout.cfg
stack/erp5/buildout.cfg
+1
-1
No files found.
component/pysvn-python/buildout.cfg
View file @
e413268e
...
@@ -11,10 +11,9 @@ parts =
...
@@ -11,10 +11,9 @@ parts =
recipe = zc.recipe.egg:custom
recipe = zc.recipe.egg:custom
egg =
egg =
pysvn
pysvn
find-links = http
://pysvn.barrys-emacs.org/source_kits/pysvn-1.7.10.tar.gz
find-links = http
s://sourceforge.net/projects/pysvn/files/pysvn/V1.9.15/pysvn-1.9.15.tar.gz/download
patches =
patches =
${:_profile_base_location_}/pysvn-1.7.10-inc_lib_dir.patch#08371129e0d0a215fb7f7811a860a89c
${:_profile_base_location_}/pysvn-1.9.15-inc_lib_dir.patch#c16eb88a862d4676c0ea2827f51b991a
${:_profile_base_location_}/pysvn-issue-179.patch#bd3f9629f95f0f749c5a5e93c797ee2b
patch-options = -p1
patch-options = -p1
patch-binary = ${patch:location}/bin/patch
patch-binary = ${patch:location}/bin/patch
include-dirs =
include-dirs =
...
...
component/pysvn-python/pysvn-1.
7.10
-inc_lib_dir.patch
→
component/pysvn-python/pysvn-1.
9.15
-inc_lib_dir.patch
View file @
e413268e
diff -ur pysvn-1.7.10.orig/setup.py pysvn-1.7.10/setup.py
diff --git a/setup.py b/setup.py
--- pysvn-1.7.10.orig/setup.py 2010-12-30 13:26:51.000000000 +0100
index e5ce838..e2b95f8 100644
+++ pysvn-1.7.10/setup.py 2015-08-14 10:29:25.562686564 +0200
--- a/setup.py
@@ -19,6 +19,10 @@
+++ b/setup.py
@@ -40,9 +40,16 @@
import distutils.sysconfig
import platform
import shutil
import sys
+import subprocess
import os
import os
import os.path
import os.path
import setuptools.command.bdist_egg
+import setuptools.command.bdist_egg
from setuptools.command.build_ext import build_ext
+try:
+try:
+ from ConfigParser import ConfigParser
+ from ConfigParser import ConfigParser
+except ImportError:
+except ImportError:
+ from configparser import ConfigParser
+ from configparser import ConfigParser
+
pysvn_version_info = {}
pysvn_version_info = {}
f = open( 'Builder/version.info', 'r' )
f = open( 'Builder/version.info', 'r' )
@@ -
27,13 +28,26 @@
@@ -
77,6 +84,13 @@
class BuildExtensions(build_ext):
pysvn_version_info[ key ] = value
super( BuildExtensions, self ).build_extension( ext )
def run(self
):
def _build_pysvn( self, ext
):
+ cfg = ConfigParser()
+
cfg = ConfigParser()
+ cfg.read('setup.cfg')
+
cfg.read('setup.cfg')
+ kw = {}
+
kw = {}
+ for key in ('include-dirs', 'library-dirs'):
+
for key in ('include-dirs', 'library-dirs'):
+ if cfg.has_option('build_ext', key):
+
if cfg.has_option('build_ext', key):
+ kw[key] = cfg.get('build_ext', key)
+
kw[key] = cfg.get('build_ext', key)
+
+
# Generate metadata first
dest_dir = os.path.join( os.path.abspath( self.build_lib ), 'pysvn' )
self.run_command("egg_info")
os.chdir('Source')
# Generate metadata first
- os.system(sys.executable + ' setup.py configure')
@@ -91,9 +105,13 @@
class BuildExtensions(build_ext):
+ os.system(sys.executable + ' setup.py configure --include-dirs=%(include-dirs)s --library-dirs=%(library-dirs)s' % kw)
# Invoke the build system. This will generate the __init__.py and
os.system('make clean')
# .so that we'll package.
os.system('make')
os.chdir( 'Source' )
- os.system('make egg DISTDIR="%s"' % os.path.abspath(os.path.join('..', self.dist_dir)))
- os.system( sys.executable + ' setup.py configure' )
+ os.system('rm -rf dist; mkdir -p dist/EGG-INFO')
- os.system( 'make clean' )
+ os.system('cp -rvf pysvn dist')
- os.system( 'make' )
+ os.system('cp -rvf ../pysvn.egg-info/* dist/EGG-INFO')
+ subprocess.check_call(sys.executable + ' setup.py configure --include-dirs=%(include-dirs)s --library-dirs=%(library-dirs)s' % kw, shell=True)
+ os.system('find dist/pysvn -type f | sed s:dist/:: > dist/EGG-INFO/SOURCES.txt')
+ subprocess.check_call('make clean', shell=True)
+ setuptools.command.bdist_egg.make_zipfile(
+ subprocess.check_call('make', shell=True)
+ self.egg_output, 'dist', verbose=self.verbose,
+ subprocess.check_call('rm -rf dist; mkdir -p dist/EGG-INFO', shell=True)
+ dry_run=self.dry_run, mode=self.gen_header())
+ subprocess.check_call('cp -rvf pysvn dist', shell=True)
os.chdir('..') # Go back in parent directory
+ subprocess.check_call('cp -rvf ../pysvn.egg-info/* dist/EGG-INFO', shell=True)
# Add to 'Distribution.dist_files' so that the "upload" command works
+ subprocess.check_call('find dist/pysvn -type f | sed s:dist/:: > dist/EGG-INFO/SOURCES.txt', shell=True)
getattr( self.distribution, 'dist_files', [] ).append(
diff -ur pysvn-1.7.10.orig/Source/setup_configure.py pysvn-1.7.10/Source/setup_configure.py
# Copy the built files to the destination pysvn/ directory.
--- pysvn-1.7.10.orig/Source/setup_configure.py 2014-11-09 11:55:47.000000000 +0100
self.mkpath( dest_dir )
+++ pysvn-1.7.10/Source/setup_configure.py 2015-08-17 10:41:05.781767086 +0200
diff --git a/Source/setup_configure.py b/Source/setup_configure.py
@@ -54,6 +54,8 @@
index 2bf8ca1..7037f8f 100644
class Options:
--- a/Source/setup_configure.py
+++ b/Source/setup_configure.py
@@ -55,6 +55,8 @@
class Options:
all_options_info = {
all_options_info = {
'--arch': (2, '<arch>'),
'--arch': (2, '<arch>'),
'--distro-dir': (2, '<dir>'),
+ '--library-dirs': (1, '<dir>:<dir>:...'),
+ '--library-dirs': (1, '<dir>:<dir>:...'),
+ '--include-dirs': (1, '<dir>:<dir>:...'),
+ '--include-dirs': (1, '<dir>:<dir>:...'),
'--apr-inc-dir': (1, '<dir>'),
'--apr-inc-dir': (1, '<dir>'),
'--apu-inc-dir': (1, '<dir>'),
'--apu-inc-dir': (1, '<dir>'),
'--apr-lib-dir': (1, '<dir>'),
'--apr-lib-dir': (1, '<dir>'),
@@ -5
11,12 +513,16 @@
@@ -5
42,12 +544,16 @@
class Compiler:
raise last_exception
raise last_exception
def find_svn_bin( self ):
def find_svn_bin( self ):
...
@@ -70,28 +80,28 @@ diff -ur pysvn-1.7.10.orig/Source/setup_configure.py pysvn-1.7.10/Source/setup_c
...
@@ -70,28 +80,28 @@ diff -ur pysvn-1.7.10.orig/Source/setup_configure.py pysvn-1.7.10/Source/setup_c
+ return ''
+ return ''
def find_svn_lib( self ):
def find_svn_lib( self ):
folder = self.find_dir(
last_exception = None
@@ -
589,8 +595,8 @@
@@ -
633,8 +639,8 @@
class Compiler:
# override the base_dir_list from the command line kw
# override the base_dir_list from the command line kw
svn_root_dir = None
svn_root_dir = None
- if self.options.hasOption( kw ):
- if self.options.hasOption( kw ):
- base_dir_list = [self.options.getOption( kw )]
- base_dir_list = [self.options.getOption( kw )]
+ if kw and self.options.hasOption( kw ):
+ if kw and self.options.hasOption( kw ):
+ base_dir_list = self.options.getOption( kw ) + base_dir_list
+ base_dir_list = [self.options.getOption( kw )] + base_dir_list
debug( '__find_dir base_dir_list=%r' % (base_dir_list,) )
elif( self.options.hasOption( '--svn-root-dir' )
@@ -644,7 +650,7 @@
class Compiler:
and svn_root_suffix is not None ):
@@ -604,7 +610,7 @@
if self.verbose:
if self.verbose:
print( 'Info: Checking for %s in %s' % (name, full_check_file) )
print( 'Info: Checking for %s in %s' % (name, full_check_file) )
if os.path.exists( full_check_file ):
if os.path.exists( full_check_file ):
- return os.path.abspath( dirname )
- return os.path.abspath( dirname )
+ return dirname
+ return dirname
raise SetupError( '
c
annot find %s %s - use %s' % (name, check_file, kw) )
raise SetupError( '
C
annot find %s %s - use %s' % (name, check_file, kw) )
@@ -6
29,6 +635,17 @@
@@ -6
69,6 +675,17 @@
class Compiler:
def getSvnVersion( self ):
def getSvnVersion( self ):
return self.__svn_version_tuple
return self.__svn_version_tuple
...
@@ -109,33 +119,42 @@ diff -ur pysvn-1.7.10.orig/Source/setup_configure.py pysvn-1.7.10/Source/setup_c
...
@@ -109,33 +119,42 @@ diff -ur pysvn-1.7.10.orig/Source/setup_configure.py pysvn-1.7.10/Source/setup_c
class Win32CompilerMSVC90(Compiler):
class Win32CompilerMSVC90(Compiler):
def __init__( self, setup ):
def __init__( self, setup ):
@@ -1093,7 +1110,7 @@
@@ -1185,6 +1202,7 @@
class UnixCompilerGCC(CompilerGCC):
'%(PYCXX)s/Src',
CompilerGCC.__init__( self, setup )
'/usr/share/python%s/CXX' % distutils.sysconfig.get_python_version() # typical Linux
self._find_paths_pycxx_dir = [
+ '../Import/pycxx-7.1.5',
distutils.sysconfig.get_python_inc(), # typical Linux
'/usr/include'
]
@@ -1194,7 +1212,7 @@
class UnixCompilerGCC(CompilerGCC):
'/usr/src/CXX'
]
]
- self._find_paths_svn_inc = [
- self._find_paths_svn_inc = [
+ self._find_paths_svn_inc = self._include_dirs() + [
+ self._find_paths_svn_inc = self._include_dirs() + [
'/usr/include/subversion-1', # typical Linux
'/usr/include/subversion-1', # typical Linux
'/usr/local/include/subversion-1', # typical *BSD
'/usr/local/include/subversion-1', # typical *BSD
'/usr/pkg/include/subversion-1', # netbsd
'/usr/pkg/include/subversion-1', # netbsd
@@ -1
103,14 +1120,14 @@
@@ -1
204,7 +1222,7 @@
class UnixCompilerGCC(CompilerGCC):
'/usr/local/bin',
# typical *BSD
'/usr/local/bin', # typical *BSD
'/usr/pkg/bin',
# netbsd
'/usr/pkg/bin', # netbsd
]
]
- self._find_paths_svn_lib = [
- self._find_paths_svn_lib = [
+ self._find_paths_svn_lib = self._library_dirs() + [
+ self._find_paths_svn_lib = self._library_dirs() + [
'/usr/lib64', # typical 64bit Linux
'/usr/lib64', # typical 64bit Linux
'/usr/lib', # typical Linux
'/usr/lib', # typical Linux
'/usr/local/lib64', # typical 64bit Linux
'/usr/local/lib64', # typical 64bit Linux
'/usr/local/lib', # typical *BSD
@@ -1212,7 +1230,7 @@
class UnixCompilerGCC(CompilerGCC):
'/usr/pkg/lib', # netbsd
'/usr/pkg/lib', # netbsd
'/usr/lib/x86_64-linux-gnu', # debian/unbuntu
]
]
- self._find_paths_apr_inc = [
- self._find_paths_apr_inc = [
+ self._find_paths_apr_inc = self._include_dirs() + [
+ self._find_paths_apr_inc = self._include_dirs() + [
'/usr/include/apr-1', # typical Linux
'/usr/include/apr-1', # typical Linux
'/usr/include/apr-1.0', # typical Linux
'/usr/local/apr/include/apr-1', # Mac OS X www.metissian.com
'/usr/local/apr/include/apr-1', # Mac OS X www.metissian.com
'/usr/pkg/include/apr-1', # netbsd
@@ -1223,7 +1241,7 @@
class UnixCompilerGCC(CompilerGCC):
@@ -1120,7 +1137,7 @@
'/usr/local/include/apache2', # alternate *BSD
'/usr/local/include/apache2', # alternate *BSD
]
]
self._find_paths_apr_util_inc = self._find_paths_apr_inc
self._find_paths_apr_util_inc = self._find_paths_apr_inc
...
@@ -144,7 +163,7 @@ diff -ur pysvn-1.7.10.orig/Source/setup_configure.py pysvn-1.7.10/Source/setup_c
...
@@ -144,7 +163,7 @@ diff -ur pysvn-1.7.10.orig/Source/setup_configure.py pysvn-1.7.10/Source/setup_c
'/usr/lib64', # typical 64bit Linux
'/usr/lib64', # typical 64bit Linux
'/usr/lib', # typical Linux
'/usr/lib', # typical Linux
'/usr/local/lib64', # typical 64bit Linux
'/usr/local/lib64', # typical 64bit Linux
@@ -1
186,6 +1203,8 @@
@@ -1
310,6 +1328,8 @@
class LinuxCompilerGCC(UnixCompilerGCC):
if not self.setup.options.hasOption( '--norpath' ):
if not self.setup.options.hasOption( '--norpath' ):
py_ld_libs.extend( [
py_ld_libs.extend( [
'-Wl,--rpath',
'-Wl,--rpath',
...
...
component/pysvn-python/pysvn-issue-179.patch
deleted
100644 → 0
View file @
5dc18e9e
http://pysvn.tigris.org/ds/viewMessage.do?dsForumId=1334&dsMessageId=3094617
diff -ur pysvn-1.7.10.orig/Source/pysvn_svnenv.cpp pysvn-1.7.10/Source/pysvn_svnenv.cpp
--- pysvn-1.7.10.orig/Source/pysvn_svnenv.cpp 2010-11-20 13:02:37.000000000 +0100
+++ pysvn-1.7.10/Source/pysvn_svnenv.cpp 2015-08-17 17:39:50.491209720 +0200
@@ -292,8 +292,8 @@
if( accept_permanently )
{
new_cred->may_save = 1;
- new_cred->accepted_failures = accepted_failures;
}
+ new_cred->accepted_failures = accepted_failures;
*cred = new_cred;
stack/erp5/buildout.cfg
View file @
e413268e
...
@@ -621,7 +621,7 @@ depends =
...
@@ -621,7 +621,7 @@ depends =
Acquisition = 2.13.12+SlapOSPatched001
Acquisition = 2.13.12+SlapOSPatched001
Products.DCWorkflow = 2.2.4+SlapOSPatched001
Products.DCWorkflow = 2.2.4+SlapOSPatched001
ocropy = 1.0+SlapOSPatched001
ocropy = 1.0+SlapOSPatched001
pysvn = 1.
7.10+SlapOSPatched002
pysvn = 1.
9.15+SlapOSPatched001
python-ldap = 2.4.32+SlapOSPatched001
python-ldap = 2.4.32+SlapOSPatched001
python-magic = 0.4.12+SlapOSPatched001
python-magic = 0.4.12+SlapOSPatched001
PyPDF2 = 1.26.0+SlapOSPatched001
PyPDF2 = 1.26.0+SlapOSPatched001
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment