Opened 19 years ago

Last modified 8 years ago

#3889 closed defect

cvs2svn requires outdated python — at Initial Version

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

Description

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 (0)

Note: See TracTickets for help on using tickets.