PageRenderTime 48ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/projects/kaj-fossil-download/latest/Red-test/download.r

http://github.com/Oldes/rs
R | 82 lines | 75 code | 6 blank | 1 comment | 0 complexity | 1ac6cd6c00f1c80288683672d0ec0014 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. #! /usr/bin/env rebol
  2. REBOL [
  3. Title: "Download or update all Red(/System) extensions"
  4. Author: "Kaj de Vos"
  5. Rights: "Copyright (c) 2013 Kaj de Vos"
  6. License: {
  7. PD/CC0
  8. http://creativecommons.org/publicdomain/zero/1.0/
  9. }
  10. _Needs: {
  11. REBOL 2 or 3
  12. Fossil
  13. }
  14. Tabs: 4
  15. ]
  16. credentials: "" ; Anonymous access / "check+out+user[:password]"
  17. user: "" ; Anonymous access / "check-in user"
  18. fossil: either any [exists? %fossil exists? %fossil.exe] [
  19. to-local-file append what-dir %fossil
  20. ][
  21. "fossil"
  22. ]
  23. foreach target [
  24. %test
  25. %common
  26. %C-library
  27. %cURL
  28. %ZeroMQ-binding
  29. %REBOL-3
  30. %Java
  31. %SQLite
  32. %SDL
  33. %OpenGL
  34. %GLib
  35. %GTK
  36. %GTK-WebKit
  37. %OSM-GPS-Map
  38. %GTK-Champlain
  39. %6502
  40. ][
  41. print ["Target" target]
  42. either exists? target [
  43. change-dir target
  44. unless zero? call/wait join fossil " update" [
  45. print ["Updating" target "failed"]
  46. ]
  47. change-dir %..
  48. ][
  49. either any [
  50. exists? archive: join name: join %Red- target %.fossil
  51. (
  52. link: rejoin [http://
  53. either empty? credentials [""] [join credentials "@"]
  54. %red.esperconsultancy.nl/ name
  55. ]
  56. zero? call/wait reform [
  57. fossil "clone"
  58. either empty? user [""] [rejoin ["--admin-user '" user "'"]]
  59. link archive
  60. ]
  61. )(
  62. print ["Downloading" link "failed"]
  63. no
  64. )
  65. ][
  66. make-dir target
  67. change-dir target
  68. unless zero? call/wait rejoin [fossil " open ../" archive] [
  69. print ["Opening" archive "failed"]
  70. ]
  71. change-dir %..
  72. ][
  73. print ["Database" archive "not available"]
  74. ]
  75. ]
  76. ]