Changes between Version 93 and Version 94 of PortfileRecipes


Ignore:
Timestamp:
Nov 3, 2016, 1:45:03 AM (7 years ago)
Author:
raimue (Rainer Müller)
Comment:

Adapt #replaced-by for use with Git

Legend:

Unmodified
Added
Removed
Modified
  • PortfileRecipes

    v93 v94  
    568568== Replacing and renaming ports == #replaced-by
    569569
    570 When a software project is renamed, a new port is created with the project's new name. The new port should usually not be created from scratch; instead it should be copied from the old port, using the `svn copy` command, to preserve the port's Subversion history. For example, when the developers of the OSXvnc project renamed it to Vine Server, the new vineserver port was created by copying the old osxvnc port:
     570When a software project is renamed, a new port is created with the project's new name. The new port should usually not be created from scratch; but be based on the old port. For example, when the developers of the OSXvnc project renamed it to Vine Server, the new vineserver port was created by copying the old osxvnc port:
    571571
    572572{{{
    573573cd $(port dir osxvnc)/../
    574 svn copy osxvnc vineserver
     574cp -R osxvnc vineserver
    575575}}}
    576576