mirror of
https://github.com/sbopkg/sbopkg
synced 2024-11-09 19:50:25 +03:00
sqg: Added manual page.
Signed-off-by: Willy Sudiarto Raharjo <willysr@sbopkg.org>
This commit is contained in:
parent
8c8c557a1f
commit
684134dddb
90
src/usr/man/man8/sqg.8
Normal file
90
src/usr/man/man8/sqg.8
Normal file
@ -0,0 +1,90 @@
|
||||
.\"=====================================================================
|
||||
.TH sqg 8 "xxxDATExxx" sbopkg-xxxVERSIONxxx ""
|
||||
.\"=====================================================================
|
||||
.SH NAME
|
||||
sqg \- SBo Queue Generator
|
||||
.\"=====================================================================
|
||||
.SH SYNOPSIS
|
||||
.B sqg
|
||||
.RI [ options ]
|
||||
.\"=====================================================================
|
||||
.SH DESCRIPTION
|
||||
.B sqg
|
||||
is a command-line script to generate queue file(s) to be used by
|
||||
sbopkg in order to list all dependencies for a certain package.
|
||||
.\"=====================================================================
|
||||
.SH OPTIONS
|
||||
.\"---------------------------------------------------------------------
|
||||
.TP 5
|
||||
.BI \-p " PACKAGE(s)"
|
||||
Creates queuefile(s) for individual package(s).
|
||||
Multiple packages can be passed with quotes.
|
||||
.IP
|
||||
.B
|
||||
Package names are case-sensitive.
|
||||
.IP
|
||||
For example:
|
||||
.RS
|
||||
.IP
|
||||
.nf
|
||||
\fC# sqg -p "pkg1 pkg2".\fP
|
||||
.fi
|
||||
.RE
|
||||
.IP
|
||||
will generate queue file for
|
||||
.IR pkg1
|
||||
and
|
||||
.IR pkg2 .
|
||||
.TP
|
||||
.BI \-a
|
||||
Builds queuefiles for all packages.
|
||||
.TP
|
||||
.BI \-j " <num>"
|
||||
Number of concurrent queuefile generation processes.
|
||||
This could heavily raise disk I/O so use with care.
|
||||
.IP
|
||||
.B
|
||||
Requires: GNU parallel (auto-detected)
|
||||
.IP
|
||||
Default: 1
|
||||
.TP
|
||||
.BI \-o " <output>"
|
||||
User-defined queue output filename (without .sqf extension).
|
||||
This could be useful to create custom queue file.
|
||||
Multiple packages can be passed with quotes.
|
||||
.IP
|
||||
For example:
|
||||
.RS
|
||||
.IP
|
||||
.nf
|
||||
\fC# sqg -p "qt5-webkit sshblock letsencrypt" -o myqueue\fP
|
||||
.fi
|
||||
.RE
|
||||
.IP
|
||||
will create a new queue called
|
||||
.B myqueue
|
||||
containing all dependencies for qt5-webkit, sshblock, and letsencrypt.
|
||||
.IP
|
||||
You can then run
|
||||
.B
|
||||
sbopkg -i myqueue
|
||||
to have them installed (make sure to pick Queue).
|
||||
.\"=====================================================================
|
||||
.SH AUTHORS
|
||||
Willy Sudiarto Raharjo
|
||||
<willysr@sbopkg.org>
|
||||
|
||||
Chess Griffin
|
||||
<chess@chessgriffin.com>
|
||||
.PP
|
||||
Mauro Giachero
|
||||
<mauro.giachero@gmail.com>
|
||||
.PP
|
||||
slakmagik
|
||||
<slakmagik@gmail.com>
|
||||
.\"=====================================================================
|
||||
.\" Make the release process handle a DOCDIR here? But the files from
|
||||
.\" the official tarball go here.
|
||||
.SH SEE ALSO
|
||||
.BR sbopkg.conf (5),
|
||||
.IR /usr/doc/sbopkg-xxxVERSIONxxx/README-queuefiles
|
@ -1,6 +1,6 @@
|
||||
SBOPKG NEWS
|
||||
|
||||
sbopkg-dev (2017-06-18 01:40:00 UTC)
|
||||
sbopkg-dev (2017-06-25 08:58:00 UTC)
|
||||
FEATURES
|
||||
* sqg: Parallelize building of single and all packages by option -j.
|
||||
Requires GNU Parallel.
|
||||
@ -14,6 +14,7 @@ sbopkg-dev (2017-06-18 01:40:00 UTC)
|
||||
You can then run sbopkg -i <queue-name> to install all packages+deps.
|
||||
Feature Request by Jeremy/bassmadrigal (Fixed #13).
|
||||
Implement contributions from Marcel Saegebarth.
|
||||
* sqg: Added manual page for sqg.
|
||||
|
||||
MODIFICATIONS
|
||||
* bash-completion: Complete -i and -b when git repo is used
|
||||
|
151
tools/sqg8.html
Normal file
151
tools/sqg8.html
Normal file
@ -0,0 +1,151 @@
|
||||
Content-type: text/html
|
||||
|
||||
<HTML><HEAD><TITLE>Manpage of sqg</TITLE>
|
||||
</HEAD><BODY>
|
||||
<H1>sqg</H1>
|
||||
Section: (8)<BR>Updated: June 2017<BR><A HREF="#index">Index</A>
|
||||
<A HREF="http://localhost/cgi-bin/man/man2html">Return to Main Contents</A><HR>
|
||||
|
||||
|
||||
<A NAME="lbAB"> </A>
|
||||
<H2>NAME</H2>
|
||||
|
||||
sqg - SBo Queue Generator
|
||||
|
||||
<A NAME="lbAC"> </A>
|
||||
<H2>SYNOPSIS</H2>
|
||||
|
||||
<B>sqg</B>
|
||||
|
||||
[<I>options</I>]
|
||||
|
||||
|
||||
<A NAME="lbAD"> </A>
|
||||
<H2>DESCRIPTION</H2>
|
||||
|
||||
<B>sqg</B>
|
||||
|
||||
is a command-line script to generate queue file(s) to be used by
|
||||
sbopkg in order to list all dependencies for a certain package.
|
||||
|
||||
<A NAME="lbAE"> </A>
|
||||
<H2>OPTIONS</H2>
|
||||
|
||||
|
||||
<DL COMPACT>
|
||||
<DT><B>-p</B><I> PACKAGE(s)</I>
|
||||
|
||||
<DD>
|
||||
Creates queuefile(s) for individual package(s).
|
||||
Multiple packages can be passed with quotes.
|
||||
<DT><DD>
|
||||
<B>Package names are case-sensitive.</B>
|
||||
|
||||
<DT><DD>
|
||||
For example:
|
||||
<DL COMPACT><DT><DD>
|
||||
<DL COMPACT>
|
||||
<DT><DD>
|
||||
<PRE>
|
||||
# sqg -p "pkg1 pkg2".
|
||||
</PRE>
|
||||
|
||||
</DL>
|
||||
</DL>
|
||||
|
||||
<DT><DD>
|
||||
will generate queue file for
|
||||
<I>pkg1</I>
|
||||
|
||||
and
|
||||
<I>pkg2</I>.
|
||||
|
||||
<DT><B>-a</B>
|
||||
|
||||
<DD>
|
||||
Builds queuefiles for all packages.
|
||||
<DT><B>-j</B><I> <num></I>
|
||||
|
||||
<DD>
|
||||
Number of concurrent queuefile generation processes.
|
||||
This could heavily raise disk I/O so use with care.
|
||||
<DT><DD>
|
||||
<B>Requires: GNU parallel (auto-detected)</B>
|
||||
|
||||
<DT><DD>
|
||||
Default: 1
|
||||
<DT><B>-o</B><I> <output></I>
|
||||
|
||||
<DD>
|
||||
<BR> User-defined queue output filename (without .sqf extension).
|
||||
This could be useful to create custom queue file.
|
||||
Multiple packages can be passed with quotes.
|
||||
<DT><DD>
|
||||
For example:
|
||||
<DL COMPACT><DT><DD>
|
||||
<DL COMPACT>
|
||||
<DT><DD>
|
||||
<PRE>
|
||||
# sqg -p "qt5-webkit sshblock letsencrypt" -o myqueue
|
||||
</PRE>
|
||||
|
||||
</DL>
|
||||
</DL>
|
||||
|
||||
<DT><DD>
|
||||
will create a new queue called
|
||||
<B>myqueue</B>
|
||||
|
||||
containing all dependencies for qt5-webkit, sshblock, and letsencrypt.
|
||||
<DT><DD>
|
||||
You can then run
|
||||
<B>sbopkg -i myqueue</B>
|
||||
|
||||
to have them installed (make sure to pick Queue).
|
||||
|
||||
</DL>
|
||||
<A NAME="lbAF"> </A>
|
||||
<H2>AUTHORS</H2>
|
||||
|
||||
Willy Sudiarto Raharjo
|
||||
<<A HREF="mailto:willysr@sbopkg.org">willysr@sbopkg.org</A>>
|
||||
<P>
|
||||
Chess Griffin
|
||||
<<A HREF="mailto:chess@chessgriffin.com">chess@chessgriffin.com</A>>
|
||||
<P>
|
||||
|
||||
Mauro Giachero
|
||||
<<A HREF="mailto:mauro.giachero@gmail.com">mauro.giachero@gmail.com</A>>
|
||||
<P>
|
||||
|
||||
slakmagik
|
||||
<<A HREF="mailto:slakmagik@gmail.com">slakmagik@gmail.com</A>>
|
||||
|
||||
|
||||
|
||||
<A NAME="lbAG"> </A>
|
||||
<H2>SEE ALSO</H2>
|
||||
|
||||
<B><A HREF="http://localhost/cgi-bin/man/man2html?5+sbopkg.conf">sbopkg.conf</A></B>(5),
|
||||
|
||||
<I>/usr/doc/sbopkg-0.38.2/README-queuefiles</I>
|
||||
|
||||
<P>
|
||||
|
||||
<HR>
|
||||
<A NAME="index"> </A><H2>Index</H2>
|
||||
<DL>
|
||||
<DT><A HREF="#lbAB">NAME</A><DD>
|
||||
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
|
||||
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
|
||||
<DT><A HREF="#lbAE">OPTIONS</A><DD>
|
||||
<DT><A HREF="#lbAF">AUTHORS</A><DD>
|
||||
<DT><A HREF="#lbAG">SEE ALSO</A><DD>
|
||||
</DL>
|
||||
<HR>
|
||||
This document was created by
|
||||
<A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>,
|
||||
using the manual pages.<BR>
|
||||
Time: 08:55:23 GMT, June 25, 2017
|
||||
</BODY>
|
||||
</HTML>
|
Loading…
Reference in New Issue
Block a user