yay.8 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. '\" t
  2. .TH "YAY" "8" "04/12/2017" "yay" "yay Manual"
  3. .nh
  4. .ad l
  5. .SH "NAME"
  6. yay \- AUR Helper written in go.
  7. .SH "SYNOPSIS"
  8. .sp
  9. \fIyay\fR <operation> [options] [packages]
  10. .SH "DESCRIPTION"
  11. .sp
  12. yay is a pacman wrapper with AUR support. It passes options to makepkg and pacman after resolving packages to install/upgrade.
  13. .SH "OPERATIONS"
  14. .PP
  15. \fB\-Cd\fR
  16. .RS 4
  17. Remove uneeded dependencies\&.
  18. .RE
  19. .PP
  20. \fB\-G\fR
  21. .RS 4
  22. Downloads PKGBUILD from ABS or AUR.
  23. .RE
  24. .PP
  25. \fB\-Qstats\fR
  26. .RS 4
  27. Displays information about installed packages and system health. If there are orphaned or out-of-date packages, warnings will be displayed\&.
  28. .RE
  29. .PP
  30. \fB\-Ss\fR
  31. .RS 4
  32. Search for package in repositories and AUR\&.
  33. .RE
  34. .PP
  35. \fB\-Si\fR
  36. .RS 4
  37. Show information for a package in the repositories or AUR\&.
  38. .RE
  39. .PP
  40. \fB\-Syu\fR
  41. .RS 4
  42. Upgrade packages from the repositories and the AUR\&.
  43. .RE
  44. .PP
  45. \fB\-h, \-\-help\fR
  46. .RS 4
  47. Show yay usage\&.
  48. .RE
  49. .PP
  50. \fB<NO OPERATION>\fR
  51. .RS 4
  52. Displays menu for package install selection (yogurt mode)\&.
  53. .RE
  54. .PP
  55. All other operations will be passed to pacman\&.
  56. .PP
  57. .SH "OPTIONS"
  58. .PP
  59. \fB\-\-topdown\fR
  60. .RS 4
  61. Display repository packages first and then AUR packages\&.
  62. .RE
  63. .PP
  64. \fB\-\-bottomup\fR
  65. .RS 4
  66. Show AUR packages first and then repository packages\&.
  67. .RE
  68. .PP
  69. \fB\-\-devel\fR
  70. .RS 4
  71. Check -git/-svn/-hg development version\&.
  72. .RE
  73. .PP
  74. \fB\-\-nodevel\fR
  75. .RS 4
  76. Disable development version checking\&.
  77. .RE
  78. .PP
  79. \fB\-\-afterclean\fR
  80. .RS 4
  81. Clean package sources after successful build\&.
  82. .RE
  83. .PP
  84. \fB\-\-noafterclean\fR
  85. .RS 4
  86. Disable package sources cleaning after successful build\&.
  87. .RE
  88. .PP
  89. \fB\-\-timeupdate\fR
  90. .RS 4
  91. Check package's modification date and version\&.
  92. .RE
  93. .PP
  94. \fB\-\-notimeupdate\fR
  95. .RS 4
  96. Check only package version change\&.
  97. .RE
  98. .PP
  99. \fB\-\-printconfig\fR
  100. .RS 4
  101. Prints current yay configuration\&.
  102. .RE
  103. .PP
  104. \fB\-\-noconfirm\fR
  105. .RS 4
  106. No user intervention needed unless a package conflict happens. This option will be passed to pacman and makepkg\&.
  107. .RE
  108. .PP
  109. All other options will be passed to pacman\&.
  110. .PP
  111. .SH "EXAMPLES"
  112. .sp
  113. .RS 4
  114. .ie n \{\
  115. \h'-04'\(bu\h'+03'\c
  116. .\}
  117. .el \{\
  118. .sp -1
  119. .IP \(bu 2.3
  120. .\}
  121. Sync and update packages from repository and AUR:
  122. yay \-Syu
  123. .RE
  124. .sp
  125. .RS 4
  126. .ie n \{\
  127. \h'-04'\(bu\h'+03'\c
  128. .\}
  129. .el \{\
  130. .sp -1
  131. .IP \(bu 2.3
  132. .\}
  133. Check installed packages health:
  134. yay \-Qstats
  135. .RE
  136. .PP
  137. .sp
  138. For a package called \fIname\fR:
  139. .sp
  140. .RS 4
  141. .ie n \{\
  142. \h'-04'\(bu\h'+03'\c
  143. .\}
  144. .el \{\
  145. .sp -1
  146. .IP \(bu 2.3
  147. .\}
  148. Search:
  149. yay \-Ss \fIname\fR
  150. .RE
  151. .sp
  152. .RS 4
  153. .ie n \{\
  154. \h'-04'\(bu\h'+03'\c
  155. .\}
  156. .el \{\
  157. .sp -1
  158. .IP \(bu 2.3
  159. .\}
  160. Install:
  161. yay \-S \fIname\fR
  162. .RE
  163. .sp
  164. .RS 4
  165. .ie n \{\
  166. \h'-04'\(bu\h'+03'\c
  167. .\}
  168. .el \{\
  169. .sp -1
  170. .IP \(bu 2.3
  171. .\}
  172. Install without confirmations:
  173. yay \-S \-\-noconfirm \fIname\fR
  174. .RE
  175. .sp
  176. .RS 4
  177. .ie n \{\
  178. \h'-04'\(bu\h'+03'\c
  179. .\}
  180. .el \{\
  181. .sp -1
  182. .IP \(bu 2.3
  183. .\}
  184. Get information about a package:
  185. yay \-Si \fIname\fR
  186. .RE
  187. .sp
  188. .RS 4
  189. .ie n \{\
  190. \h'-04'\(bu\h'+03'\c
  191. .\}
  192. .el \{\
  193. .sp -1
  194. .IP \(bu 2.3
  195. .\}
  196. Search and install using yogurt mode:
  197. yay \fIname\fR
  198. .RE
  199. .SH "SEE ALSO"
  200. .sp
  201. \fBmakepkg\fR(8)
  202. .sp
  203. \fBpacman\fR(8)
  204. .sp
  205. \fBpacman.conf\fR(5)
  206. .SH "AUTHORS"
  207. .sp
  208. Jguer <joaogg3@gmail\&.com>