Subversion Repositories SvarDOS

Rev

Rev 720 | Rev 1260 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 720 Rev 891
Line 39... Line 39...
39
 
39
 
40
 
40
 
41
=== UPLOADING A NEW PACKAGE ===================================================
41
=== UPLOADING A NEW PACKAGE ===================================================
42
 
42
 
43
So you have created this new SvarDOS SVP package with some very cool software
43
So you have created this new SvarDOS SVP package with some very cool software
44
in it. Great! To upload it to the SvarDOS online repo, copy your zip package
44
in it. Great! To upload it to the SvarDOS online repo, copy your new package
45
to your local svardos-packages directory. Then, instruct svn to add the new
45
to your local svardos-packages directory. Then, instruct svn to add the new
46
file(s) to the repo:
46
file(s) to the repo:
47
 
47
 
48
$ cd svardos-packages
48
$ cd svardos-packages
49
$ svn add package-ver.svp
49
$ svn add package-ver.svp
Line 72... Line 72...
72
$ svn add nasm-2.15.zip              <-- optional (only if package has sources)
72
$ svn add nasm-2.15.zip              <-- optional (only if package has sources)
73
 
73
 
74
Finally, review and commit your changes:
74
Finally, review and commit your changes:
75
 
75
 
76
$ svn st
76
$ svn st
77
$ svn commit -m 'updated NASM to version 2.15'
77
$ svn commit -m 'updated package NASM to version 2.15'
78
 
78
 
79
The repository server will automatically serve the latest available version as
79
The repository server will automatically serve the latest available version as
80
the "preferred" version to users. The version strings are processed (and
80
the "preferred" version to users. The version strings are processed (and
81
compared with each other) through the PHP version_compare() function documented
81
compared with each other) through the PHP version_compare() function documented
82
here: <https://www.php.net/manual/en/function.version-compare>
82
here: <https://www.php.net/manual/en/function.version-compare>