[Python-modules-commits] [pysvn] 04/07: add kfreebsd and hurd to setup_configure.py

Josué Ortega noahfx-guest at moszumanska.debian.org
Mon Nov 2 01:15:43 UTC 2015


This is an automated email from the git hooks/post-receive script.

noahfx-guest pushed a commit to branch master
in repository pysvn.

commit 5594e8688e3ae2f4f7f592529f914bafccac6ce4
Author: Stefano Rivera <stefanor at debian.org>
Date:   Sun Oct 11 21:16:58 2015 +0200

    add kfreebsd and hurd to setup_configure.py
    
     original Source/setup_configure.py cannot detect kfreebsd and hurd,
     if dpkg-architecture -qDEB_HOST_ARCH_OS returns such platform, it would
     be processed as same as Linux.
    
    Author: Hideki Yamane <henrich at debian.org>
    
    Patch-Name: specify_platform_kfreebsd-hurd_as_linux.patch
---
 Source/setup_configure.py | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/Source/setup_configure.py b/Source/setup_configure.py
index 65fd457..b3d7c34 100644
--- a/Source/setup_configure.py
+++ b/Source/setup_configure.py
@@ -201,6 +201,14 @@ class Setup:
             self.c_utils = LinuxCompilerGCC( self )
             self.c_pysvn = LinuxCompilerGCC( self )
 
+        elif self.platform == 'kfreebsd':
+            self.c_utils = LinuxCompilerGCC( self )
+            self.c_pysvn = LinuxCompilerGCC( self )
+
+        elif self.platform == 'hurd':
+            self.c_utils = LinuxCompilerGCC( self )
+            self.c_pysvn = LinuxCompilerGCC( self )
+
         elif self.platform == 'freebsd':
             self.c_utils = FreeBsdCompilerGCC( self )
             self.c_pysvn = FreeBsdCompilerGCC( self )

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pysvn.git



More information about the Python-modules-commits mailing list