Opened 19 years ago

Closed 19 years ago

Last modified 8 years ago

#3889 closed defect (fixed)

cvs2svn requires outdated python

Reported by: ecronin (Eric Cronin) Owned by: macports-tickets@…
Priority: Normal Milestone:
Component: ports Version: 1.0
Keywords: Cc:
Port: cvs2svn

Description (last modified by ryandesign (Ryan Carsten Schmidt))

Python 2.4 is the current default dependency for python (in particular, its what subversion- pythonbindings uses). The cvs2svn Portfile requires python 2.3, although it runs fine with 2.4. The attached patch updates things so that the newer python is used.

--- Portfile.orig       Thu Jul  7 07:51:00 2005
+++ Portfile    Thu Jul  7 07:53:26 2005
@@ -16,14 +16,14 @@
 master_sites           http://cvs2svn.tigris.org/files/documents/1462/16792/
 checksums              md5 8e273e69123872f0ff55ade7cff8e7c8
 
-depends_lib            bin:${prefix}/bin/python2.3:python23
+depends_lib            bin:${prefix}/bin/python2.4:python24
 
 configure              {}
 build                  {}
 destroot               {
                                xinstall -m 755 ${worksrcpath}/cvs2svn ${destroot}${prefix}/bin
-                               xinstall -m 755 -d ${destroot}${prefix}/lib/python2.3/site-packages/cvs2svn_rcsparse/
+                               xinstall -m 755 -d ${destroot}${prefix}/lib/python2.4/site-packages/cvs2svn_rcsparse/
                                xinstall -m 644 -W ${worksrcpath}/cvs2svn_rcsparse __init__.py \
                                        common.py compat.py debug.py default.py texttools.py \
-                                       ${destroot}${prefix}/lib/python2.3/site-packages/cvs2svn_rcsparse
+                                       ${destroot}${prefix}/lib/python2.4/site-packages/cvs2svn_rcsparse
                        }

Change History (3)

comment:1 Changed 19 years ago by danielluke (Daniel J. Luke)

Status: newassigned

comment:2 Changed 19 years ago by danielluke (Daniel J. Luke)

Resolution: fixed
Status: assignedclosed

I'm actually going to change this in a slightly different way (I'm going to make it match the way subversion-pythonbindings finds the site-packages directory).

Fix is tested and committed, thanks!

comment:3 Changed 8 years ago by ryandesign (Ryan Carsten Schmidt)

Description: modified (diff)
Port: cvs2svn added
Note: See TracTickets for help on using tickets.