Changes between Version 49 and Version 50 of CommittersTipsAndTricks


Ignore:
Timestamp:
Sep 11, 2012, 5:58:02 PM (12 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

repository URL changed

Legend:

Unmodified
Added
Removed
Modified
  • CommittersTipsAndTricks

    v49 v50  
    2525== Create an experimental users directory in the MacPorts Subversion repository ==
    2626
    27 Use the [/browser Trac Browser] to explore the MacPorts Subversion repository. The repository root is located at `https://svn.macosforge.org/repository/macports`.
     27Use the [/browser Trac Browser] to explore the MacPorts Subversion repository. The repository root is located at `https://svn.macports.org/repository/macports`.
    2828
    2929See also the explanation of [http://guide.macports.org/#development.local-repositories local development port trees] in the guide.
     
    3232
    3333{{{
    34 svn mkdir https://svn.macosforge.org/repository/macports/users/<YourMacPortsUserName>
     34svn mkdir https://svn.macports.org/repository/macports/users/<YourMacPortsUserName>
    3535}}}
    3636
     
    3838
    3939{{{
    40 $ svn co https://svn.macosforge.org/repository/macports/users/<YourMacPortsUserName> ~/myports
     40$ svn co https://svn.macports.org/repository/macports/users/<YourMacPortsUserName> ~/myports
    4141}}}
    4242
     
    5151{{{
    5252$ svn mkdir ~/myports/devel
    53 $ svn copy https://svn.macosforge.org/repository/macports/trunk/dports/devel/cableswig ~/myports/devel/
     53$ svn copy https://svn.macports.org/repository/macports/trunk/dports/devel/cableswig ~/myports/devel/
    5454}}}
    5555
    5656Another option for a large branch is to copy everything at the server side, where the copy is equivalent to a unix hard link in the file system; e.g.:
    5757{{{
    58 $ svn mkdir https://svn.macosforge.org/repository/macports/users/<YourMacPortsUserName>/devel
     58$ svn mkdir https://svn.macports.org/repository/macports/users/<YourMacPortsUserName>/devel
    5959$ svn copy \
    60       https://svn.macosforge.org/repository/macports/trunk/dports/devel/cableswig \
    61       https://svn.macosforge.org/repository/macports/users/<YourMacPortsUserName>/devel/cableswig \
     60      https://svn.macports.org/repository/macports/trunk/dports/devel/cableswig \
     61      https://svn.macports.org/repository/macports/users/<YourMacPortsUserName>/devel/cableswig \
    6262      -m "experimental modifications to cableswig"
    6363$ cd ~/myports
     
    110110{{{
    111111cd ~/macports/dports/devel/cableswig
    112 svn merge  -r ${EXP_BRANCH_REV}:HEAD  https://svn.macosforge.org/repository/macports/users/<YourMacPortsUserName>/devel/cableswig/Portfile Portfile
     112svn merge  -r ${EXP_BRANCH_REV}:HEAD  https://svn.macports.org/repository/macports/users/<YourMacPortsUserName>/devel/cableswig/Portfile Portfile
    113113}}}
    114114
     
    264264 * [BbeditLanguageModule BBEdit, TextWrangler]
    265265 * [https://github.com/textmate/macports.tmbundle TextMate]
    266  * [https://svn.macosforge.org/repository/macports/contrib/mpvim/ vim]
     266 * [https://svn.macports.org/repository/macports/contrib/mpvim/ vim]
    267267
    268268== Checksum tips ==