Changeset a934691
- Timestamp:
- 09/28/2020 09:48:59 PM (3 years ago)
- Branches:
- 10.1, 11.0, 11.1, 11.2, 11.3, ken/inkscape-core-mods, lazarus, plabs/python-mods, qt5new, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226
- Children:
- 8abf60e
- Parents:
- 288c825
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
r288c825 ra934691 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day "2 7"> <!-- Always 2 digits -->3 <!ENTITY day "28"> <!-- Always 2 digits --> 4 4 <!ENTITY month "09"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2020"> … … 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate "September 2 7th, &year;">9 <!ENTITY releasedate "September 28th, &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> -
introduction/welcome/changelog.xml
r288c825 ra934691 43 43 --> 44 44 <listitem> 45 <para>September 28th, 2020</para> 46 <itemizedlist> 47 <listitem> 48 <para>[bdubbs] - Update to openssh-8.4p1. Fixes 49 <ulink url="&blfs-ticket-root;14075">#14075</ulink>.</para> 50 </listitem> 51 <listitem> 52 <para>[bdubbs] - Update to cairomm-1.14.0. Fixes 53 <ulink url="&blfs-ticket-root;14076">#14076</ulink>.</para> 54 </listitem> 55 </itemizedlist> 56 </listitem> 57 58 <listitem> 45 59 <para>September 27th, 2020</para> 46 60 <itemizedlist> -
packages.ent
r288c825 ra934691 32 32 <!--<!ENTITY nss-version "3.&nss-minor-version;.&nss-micro-version;">--> 33 33 <!ENTITY nss-version "3.&nss-minor-version;"> 34 <!ENTITY openssh-version "8. 3p1">34 <!ENTITY openssh-version "8.4p1"> 35 35 <!-- <!ENTITY openssl-version "1.1.0g"> --> 36 36 <!ENTITY openssl10-version "1.0.2q"> … … 715 715 <!ENTITY at-spi2-atk-version "2.38.0"> 716 716 <!ENTITY cairo-version "1.17.2+f93fc72c03e"> 717 <!ENTITY cairomm-version "1.1 2.2">717 <!ENTITY cairomm-version "1.14.0"> 718 718 <!ENTITY cogl-version "1.22.8"> 719 719 <!ENTITY clutter-version "1.26.4"> -
postlfs/security/openssh.xml
r288c825 ra934691 10 10 " "> <!-- at the moment, unable to connect via ftp: ken 11 11 "ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-&openssh-version;.tar.gz"> --> 12 <!ENTITY openssh-md5sum " 68d7527bf2672153ca47402f6489a1af">13 <!ENTITY openssh-size "1. 6MB">14 <!ENTITY openssh-buildsize "4 3MB (add 17 MB for tests)">12 <!ENTITY openssh-md5sum "8f897870404c088e4aa7d1c1c58b526b"> 13 <!ENTITY openssh-size "1.7 MB"> 14 <!ENTITY openssh-buildsize "48 MB (add 17 MB for tests)"> 15 15 <!ENTITY openssh-time "0.2 SBU (Using parallelism=4; 16 16 running the tests takes 20+ minutes, -
postlfs/security/ssh-askpass.xml
r288c825 ra934691 9 9 <!ENTITY ssh-askpass-download-ftp 10 10 "ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-&ssh-askpass-version;.tar.gz"> 11 <!ENTITY ssh-askpass-md5sum " 3076e6413e8dbe56d33848c1054ac091">12 <!ENTITY ssh-askpass-size "1. 6MB">13 <!ENTITY ssh-askpass-buildsize "9. 0MB">11 <!ENTITY ssh-askpass-md5sum "8f897870404c088e4aa7d1c1c58b526b"> 12 <!ENTITY ssh-askpass-size "1.7 MB"> 13 <!ENTITY ssh-askpass-buildsize "9.4 MB"> 14 14 <!ENTITY ssh-askpass-time "less than 0.1 SBU"> 15 15 ]> -
x/lib/cairomm.xml
r288c825 ra934691 7 7 <!ENTITY cairomm-download-http "https://www.cairographics.org/releases/cairomm-&cairomm-version;.tar.gz"> 8 8 <!ENTITY cairomm-download-ftp " "> 9 <!ENTITY cairomm-md5sum " 9d2282ea34cf9aaa89208bb4bb911909">10 <!ENTITY cairomm-size " 1.3 MB">11 <!ENTITY cairomm-buildsize " 11 MB">12 <!ENTITY cairomm-time " 0.1 SBU">9 <!ENTITY cairomm-md5sum "75a08d50eb08b97667e4ea2be6efa1ad"> 10 <!ENTITY cairomm-size "592 KB"> 11 <!ENTITY cairomm-buildsize "27 MB (with tests)"> 12 <!ENTITY cairomm-time "less than 0.1 SBU (with tests)"> 13 13 ]> 14 14 … … 94 94 95 95 <para> 96 First, fix the documentation directory name:97 </para>98 99 <screen><userinput>sed -e '/^libdocdir =/ s/$(book_name)/cairomm-&cairomm-version;/' \100 -i docs/Makefile.in</userinput></screen>101 102 <para>103 96 Install <application>Cairomm</application> by running the following 104 97 commands: 105 98 </para> 106 99 107 <screen><userinput>./configure --prefix=/usr && 108 make</userinput></screen> 100 <screen><userinput>mkdir bld && 101 cd bld && 102 103 meson --prefix=/usr \ 104 -Dbuild-tests=true \ 105 .. && 106 ninja</userinput></screen> 109 107 110 108 <para> 111 T his package does not come with a test suite.109 To run the test suite, run: <command>ninja test</command>. 112 110 </para> 113 111 … … 116 114 </para> 117 115 118 <screen role="root"><userinput>make install</userinput></screen> 116 <screen role="root"><userinput>ninja install</userinput></screen> 117 118 </sect2> 119 120 <sect2 role="commands"> 121 <title>Command Explanations</title> 122 123 <para> 124 <parameter>-Dboost-shared=true</parameter>: This switch has the package 125 use the system version of boost. 126 </para> 127 128 <para> 129 <parameter>-Dbuild-documentation=true</parameter>: This switch builds the 130 html documentation if doxygen is installed. 131 </para> 119 132 120 133 </sect2> … … 136 149 </seg> 137 150 <seg> 138 /usr/{ include,lib}/cairomm-1.0 and139 /usr/share/{devhelp/books /cairomm-1.0,doc/cairomm-&cairomm-version;}151 /usr/{lib,include}/cairomm-1.0 and 152 /usr/share/{devhelp/books,doc}/cairomm-1.0} 140 153 </seg> 141 154 </seglistitem>
Note:
See TracChangeset
for help on using the changeset viewer.