Changes between Version 1 and Version 2 of CommittersGuide/Distfiles


Ignore:
Timestamp:
Mar 7, 2009, 10:50:56 AM (15 years ago)
Author:
krischik@…
Comment:

prepare repository

Legend:

Unmodified
Added
Removed
Modified
  • CommittersGuide/Distfiles

    v1 v2  
    11The content of each ports "files" directory should be keept fairly small as it is kopied to every MacPort user harddrive. If larger patches - for example application bundles with icon files are supplied then they should be added to distfiles so they are only donwloaded by those user who are actualy installing the Port.
     2
     3= Setup Repository =
     4
     5First setup a [wiki:CommittersGuide/PersonalSVNRepository PersonalSVNRepository] to maintain the files. Inside your  SVN Repository you should create a directory with the portfiles name and there you prepare the files for the port.
     6
     7Then you create directory for you portfile inside the distfile area of the subversion repository:
     8
     9{{{
     10Repository=http://svn.macosforge.org/repository/macports
     11User=userid
     12Port=portid
     13
     14svn mkdir --username ${User}@macports.org -m"Create staging for ${Port}" ${Repository}/users/${User}/${Port}
     15svn mkdir --username ${User}@macports.org -m"Create distfiles for ${Port}" ${Repository}/distfiles/${Port}
     16}}}
     17
     18Replace '''userid''' and '''portid''' with your onw userid and the Port you are working on.
     19