Advertisement
vinraghav2

mpv

Jul 3rd, 2022
1,199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.22 KB | None | 0 0
  1. !./rebuild -j8
  2.  
  3. + git pull --rebase
  4. Already up to date.
  5. Current branch master is up to date.
  6. + do_clone_all
  7. + do_clone ffmpeg https://github.com/FFmpeg/FFmpeg.git
  8. + set -ex
  9. + test -e ffmpeg
  10. + git clone https://github.com/FFmpeg/FFmpeg.git ffmpeg
  11. Cloning into 'ffmpeg'...
  12. remote: Enumerating objects: 666519, done.
  13. remote: Counting objects: 100% (64/64), done.
  14. remote: Compressing objects: 100% (42/42), done.
  15. remote: Total 666519 (delta 24), reused 49 (delta 22), pack-reused 666455
  16. Receiving objects: 100% (666519/666519), 301.80 MiB | 23.22 MiB/s, done.
  17. Resolving deltas: 100% (526080/526080), done.
  18. Checking out files: 100% (7793/7793), done.
  19. + cd ffmpeg
  20. + git remote set-url origin https://github.com/FFmpeg/FFmpeg.git
  21. + git fetch
  22. + do_clone libass https://github.com/libass/libass.git
  23. + set -ex
  24. + test -e libass
  25. + git clone https://github.com/libass/libass.git libass
  26. Cloning into 'libass'...
  27. remote: Enumerating objects: 9003, done.
  28. remote: Counting objects: 100% (998/998), done.
  29. remote: Compressing objects: 100% (478/478), done.
  30. remote: Total 9003 (delta 658), reused 682 (delta 495), pack-reused 8005
  31. Receiving objects: 100% (9003/9003), 3.13 MiB | 12.87 MiB/s, done.
  32. Resolving deltas: 100% (6133/6133), done.
  33. + cd libass
  34. + git remote set-url origin https://github.com/libass/libass.git
  35. + git fetch
  36. + do_clone mpv https://github.com/mpv-player/mpv.git
  37. + set -ex
  38. + test -e mpv
  39. + git clone https://github.com/mpv-player/mpv.git mpv
  40. Cloning into 'mpv'...
  41. remote: Enumerating objects: 292164, done.
  42. remote: Counting objects: 100% (304/304), done.
  43. remote: Compressing objects: 100% (158/158), done.
  44. remote: Total 292164 (delta 180), reused 204 (delta 140), pack-reused 291860
  45. Receiving objects: 100% (292164/292164), 94.64 MiB | 21.41 MiB/s, done.
  46. Resolving deltas: 100% (230260/230260), done.
  47. + cd mpv
  48. + git remote set-url origin https://github.com/mpv-player/mpv.git
  49. + git fetch
  50. + checkout ffmpeg master
  51. + local branch=master
  52. + [ -z  ]
  53. + [ -d config/ ]
  54. + do_gitmaster ffmpeg
  55. + set -ex
  56. + cd ffmpeg
  57. + git checkout origin/master
  58. Note: checking out 'origin/master'.
  59.  
  60. You are in 'detached HEAD' state. You can look around, make experimental
  61. changes and commit them, and you can discard any commits you make in this
  62. state without impacting any branches by performing another checkout.
  63.  
  64. If you want to create a new branch to retain commits you create, you may
  65. do so (now or later) by using -b with the checkout command again. Example:
  66.  
  67.   git checkout -b <new-branch-name>
  68.  
  69. HEAD is now at 33fe3b73c2 avcodec/tests/snowenc: Remove unused-but-set variable
  70. + git remote prune origin
  71. + checkout libass master
  72. + local branch=master
  73. + [ -z  ]
  74. + [ -d config/ ]
  75. + do_gitmaster libass
  76. + set -ex
  77. + cd libass
  78. + git checkout origin/master
  79. Note: checking out 'origin/master'.
  80.  
  81. You are in 'detached HEAD' state. You can look around, make experimental
  82. changes and commit them, and you can discard any commits you make in this
  83. state without impacting any branches by performing another checkout.
  84.  
  85. If you want to create a new branch to retain commits you create, you may
  86. do so (now or later) by using -b with the checkout command again. Example:
  87.  
  88.   git checkout -b <new-branch-name>
  89.  
  90. HEAD is now at a2b39cd Switch to non-recursive Makefile
  91. + git remote prune origin
  92. + checkout mpv master
  93. + local branch=master
  94. + [ -z  ]
  95. + [ -d config/ ]
  96. + do_gitmaster mpv
  97. + set -ex
  98. + cd mpv
  99. + git checkout origin/master
  100. Note: checking out 'origin/master'.
  101.  
  102. You are in 'detached HEAD' state. You can look around, make experimental
  103. changes and commit them, and you can discard any commits you make in this
  104. state without impacting any branches by performing another checkout.
  105.  
  106. If you want to create a new branch to retain commits you create, you may
  107. do so (now or later) by using -b with the checkout command again. Example:
  108.  
  109.   git checkout -b <new-branch-name>
  110.  
  111. HEAD is now at 369168b9be context_x11egl: remove supposed transparency fix
  112. + git remote prune origin
  113. + do_update_debian_versions
  114. + scripts/debian-update-versions
  115. + do_bootstrap
  116. + scripts/mpv-bootstrap
  117. Downloading https://waf.io/waf-2.0.20...
  118. Checksum verified.
  119. 'distclean' finished successfully (0.005s)
  120. Running autoreconf...
  121. ./autogen.sh: 3: ./autogen.sh: autoreconf: not found
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement