View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0011173CMakeModulespublic2010-08-25 19:102011-02-07 10:41
ReporterHans Johnson 
Assigned ToDavid Cole 
PriorityhighSeveritymajorReproducibilityhave not tried
StatusclosedResolutionfixed 
PlatformOSOS Version
Product VersionCMake-2-8 
Target VersionFixed in Version 
Summary0011173: SVN_USERNAME and SVN_PASSWORD breaks ExternalProject
DescriptionIt looks like SVN_USERNAME and SVN_PASSWORD are now required. This appears to change the behavior of svn to have

"svn co <URI> --username= --password= <PATH>"

when it used to be:
"svn co <URI> <PATH>"

The second option would prompt for username and password once per machine, and store the response in my cache.

The first option is avoiding looking in the cache.

=====================================
I believe that the --username and --password options should be left off the command line if they are blank.

=====================================
This requires that I make a "dummy" so that unattended checkouts can occur.



Additional Information    get_property(svn_revision TARGET ${name} PROPERTY _EP_SVN_REVISION)
    get_property(svn_username TARGET ${name} PROPERTY _EP_SVN_USERNAME)
    get_property(svn_password TARGET ${name} PROPERTY _EP_SVN_PASSWORD)

    set(repository "${svn_repository} user=${svn_username} password=${svn_password}")
    set(module)
    set(tag ${svn_revision})
    configure_file(
      "${CMAKE_ROOT}/Modules/RepositoryInfo.txt.in"
      "${stamp_dir}/${name}-svninfo.txt"
      @ONLY
      )
TagsNo tags attached.
Attached Files

 Relationships
related to 0010484closedBrad King There is no way to run svn/git/hg with custom options like --username. 

  Notes
(0021966)
Hans Johnson (reporter)
2010-08-25 19:28

I can not add relation ships here. It is related to the closed bug issue:

http://www.cmake.org/Bug/view.php?id=8128 [^]
(0022664)
David Cole (manager)
2010-10-22 16:32

Fixed in 'next' branch of CMake today:
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6e1282f840fe50707c928079465ab315f07a59fe [^]
(0025313)
David Cole (manager)
2011-02-07 10:41

Closing resolved issues that have not been updated in more than 3 months.

 Issue History
Date Modified Username Field Change
2010-08-25 19:10 Hans Johnson New Issue
2010-08-25 19:28 Hans Johnson Note Added: 0021966
2010-08-27 15:50 David Cole Status new => assigned
2010-08-27 15:50 David Cole Assigned To => David Cole
2010-08-29 02:35 Kovarththanan Rajaratnam Category CMake => Modules
2010-08-29 02:35 Kovarththanan Rajaratnam Additional Information Updated
2010-09-09 17:58 David Cole Priority normal => high
2010-09-09 17:58 David Cole Additional Information Updated
2010-10-22 16:32 David Cole Note Added: 0022664
2010-10-22 16:32 David Cole Status assigned => resolved
2010-10-22 16:32 David Cole Resolution open => fixed
2011-01-17 15:57 Brad King Relationship added related to 0010484
2011-02-07 10:41 David Cole Note Added: 0025313
2011-02-07 10:41 David Cole Status resolved => closed


Copyright © 2000 - 2018 MantisBT Team