Replace jam build-remote-repository with jam upload-packages

* We are moving the HaikuPorts repositories over from haiku-files.org
  to packages.haiku-os.org, and we will be creating new repositories
  during a push hook from now on. As a result, only a small helper for
  uploading new packages into the appropriate upload folder is required.
This commit is contained in:
Oliver Tappe
2013-11-03 23:53:31 +01:00
parent 79f5b73db6
commit e4bd712d11
2 changed files with 11 additions and 18 deletions
+5 -5
View File
@@ -66,11 +66,11 @@ rule ProcessCommandLineArguments
}
}
# Copy the given set of local package files to the remote repository
# and create a new version of that remote repository.
case build-remote-repository : {
BuildRemoteHaikuPortsRepository $(JAM_TARGETS[1])
: $(JAM_TARGETS[2-]) ;
# Copy the given set of local package files to the git repository
# server, where they will be used for creating a new repository
# during the push hook.
case upload-packages : {
UploadPackages $(JAM_TARGETS[1]) : $(JAM_TARGETS[2-]) ;
JAM_TARGETS = $(JAM_TARGETS[1]) ;
NotFile $(JAM_TARGETS) ;
Always $(JAM_TARGETS) ;