Whitespace cleanup.

Sponsored by:	Absolight
This commit is contained in:
Mathieu Arnold 2017-11-28 14:44:12 +00:00
parent ecd4ead717
commit e1219e9112
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=51232

View file

@ -5417,29 +5417,30 @@ GROUPS= pulse pulse-access pulse-rt</programlisting>
<sect1 xml:id="go-libs"> <sect1 xml:id="go-libs">
<title>Go Libraries</title> <title>Go Libraries</title>
<para>Ports must not package or install Go libs or source code. Only <para>Ports must not package or install Go libs or source code.
<filename>lang/go*</filename> should install into Only <filename>lang/go*</filename> should install into
<varname>GO_SRCDIR</varname> and <varname>GO_LIBDIR</varname>. Go <varname>GO_SRCDIR</varname> and <varname>GO_LIBDIR</varname>.
ports must fetch the required deps at the normal fetch time and Go ports must fetch the required deps at the normal fetch time
should only install the programs and things users need, not the and should only install the programs and things users need, not
things Go developers would need.</para> the things Go developers would need.</para>
<para>Ports should (in order of preference):</para> <para>Ports should (in order of preference):</para>
<itemizedlist> <itemizedlist>
<listitem> <listitem>
<para>Use vendored dependencies included with the package <para>Use vendored dependencies included with the package
source.</para> source.</para>
</listitem> </listitem>
<listitem> <listitem>
<para>Fetch the versions of deps specified by upstream (in the <para>Fetch the versions of deps specified by upstream (in the
case of vendor.json or similar).</para> case of vendor.json or similar).</para>
</listitem> </listitem>
<listitem> <listitem>
<para>As a last resort (deps are not included nor versions <para>As a last resort (deps are not included nor versions
specified exactly) fetch versions of dependencies available specified exactly) fetch versions of dependencies available
at the time of upstream development/release.</para> at the time of upstream development/release.</para>
</listitem> </listitem>
</itemizedlist> </itemizedlist>
</sect1> </sect1>