Guest User

Untitled

a guest
Jun 25th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.18 KB | None | 0 0
  1. $ # Fail log while installing LibRTMP via brew on macOS HighSierra.
  2. $ # ------------------------------------------------------------------
  3. $ # TL;DR
  4. $ # 2018/06/24 Still can NOT install them. Provably deprecated.
  5. $ # ------------------------------------------------------------------
  6. $ # Env
  7. $ # ------------------------------------------------------------------
  8. $ sw_vers
  9. ProductName: Mac OS X
  10. ProductVersion: 10.13.5
  11. BuildVersion: 17F77
  12. $ brew --version
  13. Homebrew 1.6.9-17-gb87fc8c
  14. Homebrew/homebrew-core (git revision 89b66f; last commit 2018-06-24)
  15. $ # ------------------------------------------------------------------
  16. $ # Install log
  17. $ # ------------------------------------------------------------------
  18. $ # Install LibRTMP
  19. $ brew install librtmp
  20. Error: No available formula with the name "librtmp"
  21. ==> Searching for a previously deleted formula (in the last month)...
  22. Warning: homebrew/core is shallow clone. To get complete history run:
  23. git -C "$(brew --repo homebrew/core)" fetch --unshallow
  24.  
  25. Error: No previously deleted formula found.
  26. ==> Searching for similarly named formulae...
  27. Error: No similarly named formulae found.
  28. ==> Searching taps...
  29. ==> Searching taps on GitHub...
  30. Error: No formulae found in taps.
  31. $ # (fail) oh...
  32. $
  33. $ # Update brew
  34. $ brew update
  35. Already up-to-date.
  36. $
  37. $ # Inspect brew
  38. $ brew doctor
  39. Please note that these warnings are just used to help the Homebrew maintainers
  40. with debugging if you file an issue. If everything you use Homebrew for is
  41. working fine: please don't worry or file an issue; just ignore this. Thanks!
  42.  
  43. Warning: "config" scripts exist outside your system or Homebrew directories.
  44. `./configure` scripts often look for *-config scripts to determine if
  45. software packages are installed, and what additional flags to use when
  46. compiling and linking.
  47.  
  48. Having additional scripts in your path can confuse software installed via
  49. Homebrew if the config script overrides a system or Homebrew provided
  50. script of the same name. We found the following "config" scripts:
  51. /Volumes/Macintosh_SD/Users/admin/.pyenv/shims/python-config
  52. /Volumes/Macintosh_SD/Users/admin/.pyenv/shims/python3-config
  53. /Volumes/Macintosh_SD/Users/admin/.pyenv/shims/python3.6-config
  54. /Volumes/Macintosh_SD/Users/admin/.pyenv/shims/python3.6m-config
  55. $ # (not much problem) hmmm...
  56. $
  57. $ # Re-fetch repo unshallow as told
  58. $ git -C "$(brew --repo homebrew/core)" fetch --unshallow
  59. remote: Counting objects: 317485, done.
  60. remote: Compressing objects: 100% (136091/136091), done.
  61. remote: Total 317485 (delta 182135), reused 313936 (delta 178598), pack-reused 0
  62. Receiving objects: 100% (317485/317485), 85.60 MiB | 2.46 MiB/s, done.
  63. Resolving deltas: 100% (182135/182135), completed with 3538 local objects.
  64. $
  65. $ # Update brew
  66. $ brew update
  67. Already up-to-date.
  68. $
  69. $ # Install LibRTMP
  70. $ brew install librtmp
  71. Error: No available formula with the name "librtmp"
  72. ==> Searching for a previously deleted formula (in the last month)...
  73. Warning: homebrew/core is shallow clone. To get complete history run:
  74. git -C "$(brew --repo homebrew/core)" fetch --unshallow
  75.  
  76. Error: No previously deleted formula found.
  77. ==> Searching for similarly named formulae...
  78. Error: No similarly named formulae found.
  79. ==> Searching taps...
  80. ==> Searching taps on GitHub...
  81. Error: No formulae found in taps.
  82. $ # (fail) :-( OMG
  83. $
  84. $ # Reset repo unshallow
  85. $ cd "$(brew --repo)" && git fetch --unshallow && git reset --hard origin/master && brew update
  86. remote: Counting objects: 56322, done.
  87. remote: Compressing objects: 100% (16169/16169), done.
  88. remote: Total 56322 (delta 39913), reused 54816 (delta 38677), pack-reused 0
  89. Receiving objects: 100% (56322/56322), 8.57 MiB | 1.81 MiB/s, done.
  90. Resolving deltas: 100% (39913/39913), completed with 202 local objects.
  91. HEAD is now at b87fc8c53 Merge pull request #4369 from MikeMcQuaid/cache_store_mkpath
  92. Already up-to-date.
  93. $
  94. $ # Install LibRTMP
  95. $ brew install librtmp
  96. Error: No available formula with the name "librtmp"
  97. ==> Searching for a previously deleted formula (in the last month)...
  98. Error: No previously deleted formula found.
  99. ==> Searching for similarly named formulae...
  100. Error: No similarly named formulae found.
  101. ==> Searching taps...
  102. ==> Searching taps on GitHub...
  103. Error: No formulae found in taps.
  104. $ # (fail) ヽ(`Π”Β΄)οΎ‰ WTF!!
Add Comment
Please, Sign In to add comment