Changeset a6d9935c for general/prog


Ignore:
Timestamp:
06/21/2013 11:53:30 AM (11 years ago)
Author:
Krejzi <krejzi@…>
Branches:
systemd-11177
Children:
08bb8d2c
Parents:
c67fbf64
Message:

Sync systemd and main branches.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@11311 af4574ff-66df-0310-9fd7-8a98e5e911e0

Location:
general/prog
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • general/prog/mercurial.xml

    rc67fbf64 ra6d9935c  
    123123  </sect2>
    124124
     125  <sect2 role="configuration">
     126    <title>Configuring Mercurial</title>
     127
     128    <sect3 id="mercurial-config">
     129      <title>Config Files</title>
     130
     131      <para>
     132        <filename>/etc/mercurial/hgrc</filename>
     133      </para>
     134
     135      <indexterm zone="mercurial mercurial-config">
     136        <primary sortas="e-etc-mercurial-hgrc">/etc/mercurial/hgrc</primary>
     137      </indexterm>
     138
     139      <para>
     140        If you have installed the <xref linkend="cacerts"/> and you want
     141        <application>Mercurial</application> to use them, as the
     142        <systemitem class="username">root</systemitem> user:
     143      </para>
     144
     145<screen role="root"><userinput>install -v -d -m755 /etc/mercurial &amp;&amp;
     146cat &gt; /etc/mercurial/hgrc &lt;&lt; "EOF"
     147<literal>[web]
     148cacerts = /etc/ssl/ca-bundle.crt</literal>
     149EOF</userinput></screen>
     150
     151    </sect3>
     152
     153  </sect2>
     154
    125155  <sect2 role="content">
    126156    <title>Contents</title>
     
    134164        <seg>hg</seg>
    135165        <seg>none</seg>
    136         <seg>/usr/lib/python2.7/site-packages/hgext and
     166        <seg>/etc/mercurial, /usr/lib/python2.7/site-packages/hgext and
    137167        /usr/lib/python2.7/site-packages/mercurial</seg>
    138168      </seglistitem>
  • general/prog/other-tools.xml

    rc67fbf64 ra6d9935c  
    10641064
    10651065    <sect3 role="package">
    1066       <title>Lua</title>
    1067 
    1068       <para><application>Lua</application> is a powerful light-weight
    1069       programming language designed for extending applications. It is also
    1070       frequently used as a general-purpose, stand-alone language. It is free
    1071       software. <application>Lua</application> combines simple procedural
    1072       syntax with powerful data description constructs based on associative
    1073       arrays and extensible semantics. It is dynamically typed, interpreted
    1074       from bytecodes, and has automatic memory management with garbage
    1075       collection, making it ideal for configuration, scripting, and rapid
    1076       prototyping. A fundamental concept in the design of
    1077       <application>Lua</application> is to provide meta-mechanisms for
    1078       implementing features, instead of providing a host of features directly
    1079       in the language. For example, although <application>Lua</application> is
    1080       not a pure object-oriented language, it does provide meta-mechanisms for
    1081       implementing classes and inheritance. <application>Lua</application>'s
    1082       meta-mechanisms bring an economy of concepts and keep the language small,
    1083       while allowing the semantics to be extended in unconventional ways.
    1084       Extensible semantics is a distinguishing feature of
    1085       <application>Lua</application>. <application>Lua</application> is a
    1086       language engine that you can embed into your application. This means
    1087       that, besides syntax and semantics, it has an API that allows the
    1088       application to exchange data with <application>Lua</application> programs
    1089       and also to extend <application>Lua</application> with C functions. In
    1090       this sense, it can be regarded as a language framework for building
    1091       domain-specific languages. <application>Lua</application> is implemented
    1092       as a small library of C functions, written in ANSI C, and compiles
    1093       unmodified in all known platforms. The implementation goals are
    1094       simplicity, efficiency, portability, and low embedding cost. The result
    1095       is a fast language engine with small footprint, making it ideal in
    1096       embedded systems too.</para>
    1097 
    1098       <itemizedlist spacing="compact">
    1099         <listitem>
    1100           <para>Project Home Page: <ulink
    1101           url="http://www.lua.org/"/></para>
    1102         </listitem>
    1103         <listitem>
    1104           <para>Download Location: <ulink
    1105           url="http://www.lua.org/download.html"/></para>
    1106         </listitem>
    1107       </itemizedlist>
    1108 
    1109     </sect3>
    1110 
    1111     <sect3 role="package">
    11121066      <title>Mercury</title>
    11131067
  • general/prog/prog.xml

    rc67fbf64 ra6d9935c  
    4040  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="librep.xml"/>
    4141  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="llvm.xml"/>
     42  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="lua.xml"/>
    4243  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mercurial.xml"/>
    4344  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="nasm.xml"/>
Note: See TracChangeset for help on using the changeset viewer.