Changeset cb1e2842
- Timestamp:
- 01/29/2017 06:49:47 PM (7 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, plabs/python-mods, qt5new, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 0732d97d
- Parents:
- e07a345
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
re07a345 rcb1e2842 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day "2 8"> <!-- Always 2 digits -->3 <!ENTITY day "29"> <!-- Always 2 digits --> 4 4 <!ENTITY month "01"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2017"> … … 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate "January 2 8th &year;">9 <!ENTITY releasedate "January 29th &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> -
general/genlib/xapian.xml
re07a345 rcb1e2842 8 8 "http://oligarchy.co.uk/xapian/&xapian-version;/xapian-core-&xapian-version;.tar.xz"> 9 9 <!ENTITY xapian-download-ftp " "> 10 <!ENTITY xapian-md5sum " cd7615e14a87a033cee2993a016edc43">10 <!ENTITY xapian-md5sum "143f72693219f7fc5913815ed858f295"> 11 11 <!ENTITY xapian-size "2.7 MB"> 12 <!ENTITY xapian-buildsize "12 0 MB (add 113MB for tests)">13 <!ENTITY xapian-time "1.7 SBU (add 26SBU for tests)">12 <!ENTITY xapian-buildsize "121 MB (add 95 MB for tests)"> 13 <!ENTITY xapian-time "1.7 SBU (add up to 179 SBU for tests)"> 14 14 ]> 15 15 … … 83 83 84 84 <para> 85 To run the test suite, issue: <command>make check</command>. 86 Several tests based on valgrind fail. 85 The regression tests are not recommended. On a fast (3.2 GHz i7) 86 system they took over five hours and two of four tests (the valgrind 87 tests) failed. To run the test suite anyway, 88 issue: <command>make check</command>. 87 89 </para> 88 90 -
introduction/welcome/changelog.xml
re07a345 rcb1e2842 44 44 --> 45 45 <listitem> 46 <para>January 29th, 2017</para> 47 <itemizedlist> 48 <listitem> 49 <para>[bdubbs] - Update to libevent-2.1.8. Fixes 50 <ulink url="&blfs-ticket-root;8804">#8804</ulink>.</para> 51 </listitem> 52 <listitem> 53 <para>[bdubbs] - Update to xapian-core-1.4.3. Fixes 54 <ulink url="&blfs-ticket-root;8809">#8809</ulink>.</para> 55 </listitem> 56 </itemizedlist> 57 </listitem> 58 59 <listitem> 46 60 <para>January 28th, 2017</para> 47 61 <itemizedlist> -
networking/netlibs/libevent.xml
re07a345 rcb1e2842 5 5 %general-entities; 6 6 7 <!ENTITY libevent-download-http " &sourceforge-repo;/levent/libevent-&libevent-version;-stable.tar.gz">7 <!ENTITY libevent-download-http "https://github.com/nmathewson/Libevent/archive/release-&libevent-version;-stable.tar.gz"> 8 8 <!ENTITY libevent-download-ftp " "> 9 <!ENTITY libevent-md5sum " c4c56f986aa985677ca1db89630a2e11">10 <!ENTITY libevent-size " 835KB">11 <!ENTITY libevent-buildsize "1 9 MB (additional 1 MB for the tests and 6MB for the API documentation)">12 <!ENTITY libevent-time "0. 3 SBU (additional 1.3SBU for the tests)">9 <!ENTITY libevent-md5sum "d7baf6be3ef9886df0aa1ee04701318a"> 10 <!ENTITY libevent-size "688 KB"> 11 <!ENTITY libevent-buildsize "16 MB (additional 1 MB for the tests and 4 MB for the API documentation)"> 12 <!ENTITY libevent-time "0.5 SBU (additional 8.6 SBU for the tests)"> 13 13 ]> 14 14 … … 41 41 &lfs7a_checked; 42 42 43 <note> 44 <para>Download this file via wget as:</para> 45 <screen><userinput>wget &libevent-download-http; \ 46 -O Libevent-release-&libevent-version;.tar.gz</userinput></screen> 47 <para>The unusual file name matches the extracted top level 48 directory.</para> 49 </note> 50 43 51 <bridgehead renderas="sect3">Package Information</bridgehead> 44 52 <itemizedlist spacing="compact"> … … 76 84 77 85 <bridgehead renderas="sect3">libevent Dependencies</bridgehead> 86 87 <bridgehead renderas="sect4">Required</bridgehead> 88 <para role="required"> 89 <xref linkend="cmake"/> 90 </para> 78 91 79 92 <bridgehead renderas="sect4">Recommended</bridgehead> … … 100 113 </para> 101 114 102 <screen><userinput>./configure --prefix=/usr --disable-static && 115 <screen><userinput>mkdir build && 116 cd build && 117 118 cmake -DCMAKE_INSTALL_PREFIX=/usr \ 119 -DEVENT__BUILD_SHARED_LIBRARIES=ON \ 120 .. && 121 103 122 make</userinput></screen> 104 123 105 124 <para> 106 125 If you have <xref linkend="doxygen"/> installed and wish to build API 107 documentation, issue <command>doxygen Doxyfile</command>. 108 </para> 126 documentation, use: 127 </para> 128 129 <screen><userinput>cd .. && 130 doxygen Doxyfile && 131 cd build</userinput></screen> 109 132 110 133 <para> … … 124 147 125 148 <screen role="root"><userinput>install -v -m755 -d /usr/share/doc/libevent-&libevent-version;/api && 126 cp -v -R doxygen/html/* \149 cp -v -R ../doxygen/html/* \ 127 150 /usr/share/doc/libevent-&libevent-version;/api</userinput></screen> 128 151 </sect2> 129 152 <!-- 130 153 <sect2 role="commands"> 131 154 <title>Command Explanations</title> … … 135 158 136 159 </sect2> 137 160 --> 138 161 <sect2 role="content"> 139 162 <title>Contents</title> … … 146 169 <seglistitem> 147 170 <seg> 148 event_rpcgen.py171 None 149 172 </seg> 150 173 <seg> 151 libevent_core.so, 152 libevent_extra.so, 153 libevent_openssl.so, 154 libevent_pthreads.so and 155 libevent.so 174 libevent.so, 175 libevent_core.so, and 176 libevent_extra.so 156 177 </seg> 157 178 <seg> 158 /usr/include/event2 and 179 /usr/include/event2, 180 /usr/lib/cmake/libevent, and 159 181 /usr/share/doc/libevent-&libevent-version; 160 182 </seg> … … 168 190 <?dbhtml list-presentation="table"?> 169 191 170 <varlistentry id=" event_rpcgen.py">171 <term>< command>event_rpcgen.py</command></term>192 <varlistentry id="libevent-lib"> 193 <term><filename class="libraryfile">libevent.so</filename></term> 172 194 <listitem> 173 195 <para> 174 does this.....196 contains functions that ..... 175 197 </para> 176 <indexterm zone="libevent event_rpcgen.py">177 <primary sortas=" b-event_rpcgen.py">event_rpcgen.py</primary>198 <indexterm zone="libevent libevent-lib"> 199 <primary sortas="c-libevent">libevent.so</primary> 178 200 </indexterm> 179 201 </listitem> … … 204 226 </listitem> 205 227 </varlistentry> 206 </variablelist>207 208 <varlistentry id="libevent_openssl">209 <term><filename class="libraryfile">libevent_openssl.so</filename></term>210 <listitem>211 <para>212 contains functions that .....213 </para>214 <indexterm zone="libevent libevent_openssl">215 <primary sortas="c-libevent_openssl">libevent_openssl.so</primary>216 </indexterm>217 </listitem>218 </varlistentry>219 </variablelist>220 221 <varlistentry id="libevent_pthreads">222 <term><filename class="libraryfile">libevent_pthreads.so</filename></term>223 <listitem>224 <para>225 contains functions that .....226 </para>227 <indexterm zone="libevent libevent_pthreads">228 <primary sortas="c-libevent_pthreads">libevent_pthreads.so</primary>229 </indexterm>230 </listitem>231 </varlistentry>232 </variablelist>233 234 <varlistentry id="libevent-lib">235 <term><filename class="libraryfile">libevent.so</filename></term>236 <listitem>237 <para>238 contains functions that .....239 </para>240 <indexterm zone="libevent libevent-lib">241 <primary sortas="c-libevent">libevent.so</primary>242 </indexterm>243 </listitem>244 </varlistentry>245 228 246 229 </variablelist> --> -
networking/netprogs/nfs-utils.xml
re07a345 rcb1e2842 68 68 <bridgehead renderas="sect4">Optional</bridgehead> 69 69 <para role="optional"> 70 <xref linkend="libevent"/>,71 70 <xref linkend="sqlite"/> and 71 72 72 <phrase revision="sysv"><ulink url="http://www.citi.umich.edu/projects/nfsv4/linux/">libnfsidmap</ulink></phrase> 73 73 74 <phrase revision="systemd"><xref linkend="libnfsidmap"/></phrase> 75 74 76 (for NFSv4 support), 75 77 <xref linkend="mitkrb"/> or 76 78 <ulink url="http://www.citi.umich.edu/projects/nfsv4/linux/">libgssapi</ulink>, and 77 79 <ulink url="http://www.citi.umich.edu/projects/nfsv4/linux/">librpcsecgss</ulink> (for GSS and RPC security support) and 80 78 81 <xref linkend="libcap-pam"/> 79 82 </para> -
networking/netprogs/ntp.xml
re07a345 rcb1e2842 71 71 <para role="optional"> 72 72 <xref linkend="libcap-pam"/>, 73 < xref linkend="libevent"/>,73 <!-- <xref linkend="libevent"/>, recheck at next version --> 74 74 <xref linkend="openssl"/>, 75 75 <ulink url="http://www.thrysoee.dk/editline/">libedit</ulink>, and -
packages.ent
re07a345 rcb1e2842 168 168 <!ENTITY wayland-protocols-version "1.7"> 169 169 <!ENTITY wv-version "1.2.9"> 170 <!ENTITY xapian-version "1.4. 2">170 <!ENTITY xapian-version "1.4.3"> 171 171 <!ENTITY yaml-version "0.1.6"> 172 172 … … 427 427 <!ENTITY glib-networking-version "2.50.0"> 428 428 <!ENTITY ldns-version "1.7.0"> 429 <!ENTITY libevent-version "2. 0.22">429 <!ENTITY libevent-version "2.1.8"> 430 430 <!ENTITY libnl-version "3.2.29"> 431 431 <!ENTITY libnl-dl-version "3_2_29"> -
xsoft/other/transmission.xml
re07a345 rcb1e2842 106 106 </para> 107 107 108 <screen><userinput>./configure --prefix=/usr && 108 <screen><userinput>./configure --prefix=/usr \ 109 LIBEVENT_CFLAGS=-I/usr/include \ 110 LIBEVENT_LIBS=-levent&& 109 111 make</userinput></screen> 110 112 … … 142 144 <sect2 role="commands"> 143 145 <title>Command Explanations</title> 146 147 <para>The <envar>LIBEVENT_CFLAGS</envar> and <envar>LIBEVENT_LIBS</envar> 148 environment variables are needed because <xref linkend="libinput"/> 149 no longer installs pkg-config files.</para> 144 150 145 151 <!-- with-gtk is auto detected if gtk3 is present -->
Note:
See TracChangeset
for help on using the changeset viewer.