Changeset b738ceb
- Timestamp:
- 04/16/2019 04:41:13 PM (5 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 9.0, 9.1, gimp3, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- d7f7232
- Parents:
- 289c90f
- Location:
- general
- Files:
-
- 5 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
general/genlib/genlib.xml
r289c90f rb738ceb 122 122 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libxslt.xml"/> 123 123 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libwacom.xml"/> 124 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libyaml.xml"/> 124 125 125 126 <!-- systemd only --> … … 149 150 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="xapian.xml"/> 150 151 151 <!-- systemd only -->152 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="yaml.xml"/>153 152 </chapter> -
general/genlib/libblockdev.xml
r289c90f rb738ceb 81 81 <xref linkend="gobject-introspection"/>, 82 82 <xref linkend="libbytesize"/>, 83 <xref linkend=" parted"/>,84 <xref linkend=" volume_key"/>, and85 <xref linkend=" yaml"/>83 <xref linkend="libyaml"/>, 84 <xref linkend="parted"/>, and 85 <xref linkend="volume_key"/> 86 86 </para> 87 87 -
general/genlib/libyaml.xml
r289c90f rb738ceb 5 5 %general-entities; 6 6 7 <!ENTITY yaml-download-http "https://github.com/yaml/libyaml/archive/&yaml-version;/ yaml-&yaml-version;.tar.gz">7 <!ENTITY yaml-download-http "https://github.com/yaml/libyaml/archive/&yaml-version;/libyaml-dist-&yaml-version;.tar.gz"> 8 8 <!ENTITY yaml-download-ftp " "> 9 9 <!ENTITY yaml-md5sum "2ad4119a57f94739cc39a1b482c81264"> 10 10 <!ENTITY yaml-size "80 KB"> 11 <!ENTITY yaml-buildsize " 3.0MB (with tests)">12 <!ENTITY yaml-time " less than0.1 SBU (with tests)">11 <!ENTITY yaml-buildsize "6.4 MB (with tests)"> 12 <!ENTITY yaml-time "0.1 SBU (with tests)"> 13 13 ]> 14 14 15 <sect1 id=" yaml" xreflabel="YAML-&yaml-version;">16 <?dbhtml filename=" yaml.html"?>15 <sect1 id="libyaml" xreflabel="libyaml-&yaml-version;"> 16 <?dbhtml filename="libyaml.html"?> 17 17 18 18 <sect1info> … … 21 21 </sect1info> 22 22 23 <title> YAML-&yaml-version;</title>23 <title>libyaml-&yaml-version;</title> 24 24 25 <indexterm zone=" yaml">26 <primary sortas="a- YAML">YAML</primary>25 <indexterm zone="libyaml"> 26 <primary sortas="a-libyaml">libyaml</primary> 27 27 </indexterm> 28 28 29 29 <sect2 role="package"> 30 <title>Introduction to YAML</title>30 <title>Introduction to libyaml</title> 31 31 32 32 <para> 33 The <application> YAML</application> package contains a C33 The <application>libyaml</application> package contains a C 34 34 library for parsing and emitting YAML (YAML Ain't Markup 35 Language) .35 Language) code. 36 36 </para> 37 37 … … 72 72 </itemizedlist> 73 73 74 <bridgehead renderas="sect3"> YAMLDependencies</bridgehead>74 <bridgehead renderas="sect3">libyaml Dependencies</bridgehead> 75 75 76 76 <bridgehead renderas="sect4">Optional</bridgehead> … … 80 80 81 81 <para condition="html" role="usernotes">User Notes: 82 <ulink url="&blfs-wiki;/ yaml"/>82 <ulink url="&blfs-wiki;/libyaml"/> 83 83 </para> 84 84 </sect2> 85 85 86 86 <sect2 role="installation"> 87 <title>Installation of YAML</title> 88 89 <note> 90 <para>This package expands to libyaml-&yaml-version;, not 91 the expected yaml-&yaml-version;.</para> 92 </note> 87 <title>Installation of libyaml</title> 93 88 94 89 <para> 95 Install <application> YAML</application> by running the following90 Install <application>libyaml</application> by running the following 96 91 commands: 97 92 </para> 98 93 94 <screen><userinput>./bootstrap && 95 ./configure --prefix=/usr --disable-static && 96 make</userinput></screen> 97 98 <!-- 99 99 <screen><userinput>mkdir build && 100 100 cd build && … … 103 103 -DBUILD_SHARED_LIBS=true \ 104 104 -DCMAKE_BUILD_TYPE=RELEASE .. && 105 make</userinput></screen> 105 make</userinput></screen> --> 106 106 107 107 <para> 108 To test the results, issue: <command>make test</command>.108 To test the results, issue: <command>make check</command>. 109 109 </para> 110 110 … … 151 151 <?dbhtml list-presentation="table"?> 152 152 153 <varlistentry id="libyaml ">153 <varlistentry id="libyaml-lib"> 154 154 <term><filename class="libraryfile">libyaml.so</filename></term> 155 155 <listitem> 156 156 <para> 157 contains API functions for parsing and emitting YAML .157 contains API functions for parsing and emitting YAML code. 158 158 </para> 159 <indexterm zone=" yaml libyaml">159 <indexterm zone="libyaml libyaml-lib"> 160 160 <primary sortas="c-libyaml">libyaml.so</primary> 161 161 </indexterm> -
general/prog/llvm.xml
r289c90f rb738ceb 161 161 <xref linkend="texlive"/> (or <xref linkend="tl-installer"/>), 162 162 <xref linkend="valgrind"/>, 163 <xref linkend=" yaml"/>, <!-- for yaml2obj -->163 <xref linkend="libyaml"/>, <!-- for yaml2obj --> 164 164 <xref linkend="zip"/>, 165 165 <ulink url="http://www.ocaml.org/">OCaml</ulink>, -
general/prog/pyyaml.xml
r289c90f rb738ceb 70 70 <bridgehead renderas="sect5">Required</bridgehead> 71 71 <para role="required"> 72 <xref linkend=" yaml"/>72 <xref linkend="libyaml"/> 73 73 </para> 74 74 -
general/prog/ruby.xml
r289c90f rb738ceb 79 79 <xref linkend="doxygen"/>, 80 80 <xref linkend="graphviz"/>, 81 <xref linkend=" tk"/>,82 <xref linkend=" valgrind"/>, and83 <xref linkend=" yaml"/>81 <xref linkend="libyaml"/>, 82 <xref linkend="tk"/>, and 83 <xref linkend="valgrind"/> 84 84 </para> 85 85
Note:
See TracChangeset
for help on using the changeset viewer.