[blfs-book] r23543 - in trunk/BOOK: introduction/welcome server/other

2020-08-16 Thread renodr--- via blfs-book
Author: renodr
Date: Sun Aug 16 21:57:39 2020
New Revision: 23543

Log:
Remove an unnecessary command in OpenLDAP that leads to a broken symlink. 
Notice in the configure script that we disable slapd, but then we try to make a 
symlink to it.

Modified:
   trunk/BOOK/introduction/welcome/changelog.xml
   trunk/BOOK/server/other/openldap.xml

Modified: trunk/BOOK/introduction/welcome/changelog.xml
==
--- trunk/BOOK/introduction/welcome/changelog.xml   Sun Aug 16 21:26:53 
2020(r23542)
+++ trunk/BOOK/introduction/welcome/changelog.xml   Sun Aug 16 21:57:39 
2020(r23543)
@@ -45,6 +45,10 @@
   August 16th, 2020
   
 
+  [renodr] - Remove an instruction from OpenLDAP that pointed to
+  a non-existent symlink.
+
+
   [renodr] - Adapt libarchive test suite to changes in 
glibc-2.32.
   Fixes #13933.
 

Modified: trunk/BOOK/server/other/openldap.xml
==
--- trunk/BOOK/server/other/openldap.xmlSun Aug 16 21:26:53 2020
(r23542)
+++ trunk/BOOK/server/other/openldap.xmlSun Aug 16 21:57:39 2020
(r23543)
@@ -132,9 +132,7 @@
   Then, as the root user:
 
 
-make install
-
-ln -sf ../lib/slapd /usr/sbin/slapd
+make install
 
 
 
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

[blfs-book] r23544 - trunk/BOOK/general/genlib

2020-08-16 Thread xry111--- via blfs-book
Author: xry111
Date: Sun Aug 16 22:05:27 2020
New Revision: 23544

Log:
draft mozjs-78

Added:
   trunk/BOOK/general/genlib/js78.xml
  - copied, changed from r23535, trunk/BOOK/general/genlib/js68.xml

Copied and modified: trunk/BOOK/general/genlib/js78.xml (from r23535, 
trunk/BOOK/general/genlib/js68.xml)
==
--- trunk/BOOK/general/genlib/js68.xml  Sun Aug 16 10:15:18 2020
(r23535, copy source)
+++ trunk/BOOK/general/genlib/js78.xml  Sun Aug 16 22:05:27 2020(r23544)
@@ -4,89 +4,105 @@
   
   %general-entities;
 
-  
-  
-  
-  
-  
-  
+  
+  
+  
+  
+  
+  
+  
+  
+  
 ]>
 
-
-  
+
+  
 
   
 $LastChangedBy$
 $Date$
   
 
-  JS-
+  JS-
 
-  
-js68
+  
+js78
   
 
+  
+
   
 Introduction to JS
 
 
   JS is Mozilla's JavaScript engine
-  written in C. JS68 is taken from Firefox.
+  written in C. JS78 is taken from Firefox.
 
 
 Package Information
 
   
 
-  Download (HTTP): 
+  Download (HTTP): 
 
   
   
 
-  Download (FTP): 
+  Download (FTP): 
 
   
   
 
-  Download MD5 sum: 
+  Download MD5 sum: 
 
   
   
 
-  Download size: 
+  Download size: 
 
   
   
 
-  Estimated disk space required: 
+  Estimated disk space required: 
 
   
   
 
-  Estimated build time: 
+  Estimated build time: 
 
   
 
 
-JS68 Dependencies
+Additional Downloads
+
+  
+
+  Required patch:
+  
+
+  
+
+
+JS78 Dependencies
 
 Required
 
   ,
   ,
-  , and
+  ,
+  , and
   
 
 
-Optional
+
+
 
 
-  User Notes: 
+  User Notes: 
 
   
 
@@ -95,9 +111,9 @@
 
 
   
-If you are upgrading JS68 from a previously installed old version,
+If you are upgrading JS78 from a previously installed old version,
 save all work and exit your GNOME Session if you have one running.
-Replacing the JS68 binary will cause the GNOME Shell to crash and
+Replacing the JS78 binary will cause the GNOME Shell to crash and
 return you to your display manager or TTY. After installing the new
 version, if GNOME Shell still doesn't work, reinstall
 .
@@ -107,8 +123,8 @@
 
   
 Unlike most other packages in BLFS, the instructions below require you
-to untar firefox-esr.tar.xz and
-change into the firefox- folder.
+to untar firefox-esr.tar.xz and
+change into the firefox- folder.
   
 
   
@@ -134,6 +150,13 @@
 
 
 
+
+
+  Apply a patch required by :
+
+
+patch -Np1 -i 
../js78-code_coverage-1.patch
+
 
   Install JS by running the following
   commands:
@@ -148,24 +171,25 @@
  
 
 
-sed '21,+4d' -i js/moz.configure 
-
-mkdir obj 
+mkdir obj 
 cdobj 
 
-CC=gcc CXX=g++ LLVM_OBJDUMP=/bin/false   \
+CC=gcc CXX=g++ \
 ../js/src/configure --prefix=/usr\
 --with-intl-api  \
 --with-system-zlib   \
 --with-system-icu\
 --disable-jemalloc   \
 --disable-debug-symbols  \
---enable-readline\
---enable-unaligned-private-values 
+--enable-readline
 make
 
 
-  This package does not come with a working test suite.
+  
+  To run JIT test suite, issue:
+  make -C js/src check-jit-test
+  JITTEST_EXTRA_ARGS="--timeout 300".
+  The other parts of test suite are not functional on BLFS.
 
 
 
@@ -173,39 +197,24 @@
 
 
 make install 
-rm -v /usr/lib/libjs_static.ajs
+rm -v /usr/lib/libjs_static.ajs 
+sed '/@NSPR_CFLAGS@/d' /usr/bin/js78-config
 
   
 
+  
+
   
 Command Explanations
 
 
-  sed '21,+4d' js/moz.configure: Firefox building
-  system searches for rustc and
-  cargo.
-  Since we are building the standalone JS engine instead of the entire
-  browser, they are not actually used.
-  Remove the reference to them so we can
-  build JS68 without  installed.
-
-
-
   CC=gcc CXX=g++: Upstream now prefers
   clang, override it like other Mozilla
   packages in BLFS book.
 
 
 
-  LLVM_OBJDUMP=/bin/false: The firefox build system
-  searches for llvm-objdump.
-  Since we are building the standalone JS engine instead of the entire
-  browser, they are not actually used.
-  Override it so we can build JS68 without
-   installed.
-
-
-
   --with-*: These parameters allow the build system
   to use system versions of the above libraries. These are required for
 

[blfs-book] BLFS Package Currency Check - 2020-08-17 04:45:01 GMT

2020-08-16 Thread bdubbs--- via blfs-book
BLFS PackageBLFS Version  Latest  Ticket
chapter 04: libcap  2.42 2.43 #13931
chapter 06: vim 8.2.1209 8.2.1471 #12241
chapter 09: boost   1_73_0   1_74_0   #13928
chapter 09: libsigc++   2.10.3   3.0.3#12483
chapter 11: ImageMagick67.0.10-276.9.11-28
chapter 13: jdk 14.0.1+7 manual   
chapter 13: rustc   1.42.0   1.45.2   #9168
chapter 17: links   2.20.2   2.21 #13844
chapter 20: db  5.3.28   manual   
chapter 25: cairo   1.17.2+f93fc72c031.16.0   #12916
chapter 25: qtwebengine 5.15.0   manual   
chapter 26: oxygen-icons5   5.70.0   5.73.0   #13646
chapter 29: extra-cmake-modules 5.70.0   5.73.0   #13646
chapter 32: kf5 5.70 5.73 #13646
chapter 32: kf5-apps20.04.1  20.08.0  #13654
chapter 32: plasma5 5.18.5   5.19.4   #13644
chapter 37: thunar  1.8.15   4.15.1   #13690
chapter 43: abiword-docs3.0.2manual   
chapter 43: inkscape1.0  0
chapter 43: libreoffice 6.4.5.2  7.0.0.3  #13930
chapter 45: kwave   20.04.1  20.08.0  #13654
chapter 50: biber   2.14 2.15 #13934
chapter 50: docbook-xsl-nons1.79.2   manual   

-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

[blfs-book] r23542 - in trunk/BOOK: general/genlib general/genutils general/graphlib general/prog general/sysutils gnome/platform networking/mailnews networking/netlibs postlfs/filesystems postlfs/sec

2020-08-16 Thread bdubbs--- via blfs-book
Author: bdubbs
Date: Sun Aug 16 21:26:53 2020
New Revision: 23542

Log:
Tag most of General Libraries and their dependencies

Modified:
   trunk/BOOK/general/genlib/apr-util.xml
   trunk/BOOK/general/genlib/apr.xml
   trunk/BOOK/general/genlib/aspell.xml
   trunk/BOOK/general/genlib/boost.xml
   trunk/BOOK/general/genlib/clucene.xml
   trunk/BOOK/general/genlib/dbus-glib.xml
   trunk/BOOK/general/genlib/double-conversion.xml
   trunk/BOOK/general/genlib/enchant.xml
   trunk/BOOK/general/genlib/exempi.xml
   trunk/BOOK/general/genlib/fftw.xml
   trunk/BOOK/general/genlib/glib2.xml
   trunk/BOOK/general/genlib/glibmm.xml
   trunk/BOOK/general/genlib/gmime.xml
   trunk/BOOK/general/genlib/gobject-introspection.xml
   trunk/BOOK/general/genlib/gsl.xml
   trunk/BOOK/general/genlib/icu.xml
   trunk/BOOK/general/genlib/jansson.xml
   trunk/BOOK/general/genlib/js68.xml
   trunk/BOOK/general/genlib/json-c.xml
   trunk/BOOK/general/genlib/json-glib.xml
   trunk/BOOK/general/genlib/keyutils.xml
   trunk/BOOK/general/genlib/libaio.xml
   trunk/BOOK/general/genlib/libassuan.xml
   trunk/BOOK/general/genlib/libatasmart.xml
   trunk/BOOK/general/genlib/libblockdev.xml
   trunk/BOOK/general/genlib/libbytesize.xml
   trunk/BOOK/general/genlib/libdaemon.xml
   trunk/BOOK/general/genlib/libgcrypt.xml
   trunk/BOOK/general/genlib/libgpg-error.xml
   trunk/BOOK/general/genlib/libgrss.xml
   trunk/BOOK/general/genlib/libgsf.xml
   trunk/BOOK/general/genlib/libgudev.xml
   trunk/BOOK/general/genlib/libgusb.xml
   trunk/BOOK/general/genlib/libical.xml
   trunk/BOOK/general/genlib/libksba.xml
   trunk/BOOK/general/genlib/liblinear.xml
   trunk/BOOK/general/genlib/libmbim.xml
   trunk/BOOK/general/genlib/libnfsidmap.xml
   trunk/BOOK/general/genlib/libpaper.xml
   trunk/BOOK/general/genlib/libqmi.xml
   trunk/BOOK/general/genlib/libseccomp.xml
   trunk/BOOK/general/genlib/libsigc++.xml
   trunk/BOOK/general/genlib/libsigsegv.xml
   trunk/BOOK/general/genlib/libssh2.xml
   trunk/BOOK/general/genlib/libstatgrab.xml
   trunk/BOOK/general/genlib/libuninameslist.xml
   trunk/BOOK/general/genlib/libusb.xml
   trunk/BOOK/general/genlib/libwacom.xml
   trunk/BOOK/general/genlib/libxslt.xml
   trunk/BOOK/general/genlib/libyaml.xml
   trunk/BOOK/general/genlib/mtdev.xml
   trunk/BOOK/general/genlib/nodejs.xml
   trunk/BOOK/general/genlib/npth.xml
   trunk/BOOK/general/genlib/pth.xml
   trunk/BOOK/general/genlib/talloc.xml
   trunk/BOOK/general/genlib/telepathy-glib.xml
   trunk/BOOK/general/genlib/uchardet.xml
   trunk/BOOK/general/genlib/umockdev.xml
   trunk/BOOK/general/genlib/wayland-protocols.xml
   trunk/BOOK/general/genlib/wayland.xml
   trunk/BOOK/general/genlib/wv.xml
   trunk/BOOK/general/genlib/xapian.xml
   trunk/BOOK/general/genutils/asciidoc.xml
   trunk/BOOK/general/genutils/graphviz.xml
   trunk/BOOK/general/genutils/gtk-doc.xml
   trunk/BOOK/general/genutils/shared-mime-info.xml
   trunk/BOOK/general/genutils/sharutils.xml
   trunk/BOOK/general/graphlib/libjpeg-turbo.xml
   trunk/BOOK/general/graphlib/libpng.xml
   trunk/BOOK/general/prog/autoconf213.xml
   trunk/BOOK/general/prog/nasm.xml
   trunk/BOOK/general/prog/pygments.xml
   trunk/BOOK/general/prog/six.xml
   trunk/BOOK/general/prog/swig.xml
   trunk/BOOK/general/prog/vala.xml
   trunk/BOOK/general/prog/yasm.xml
   trunk/BOOK/general/sysutils/dbus.xml
   trunk/BOOK/general/sysutils/fcron.xml
   trunk/BOOK/general/sysutils/logrotate.xml
   trunk/BOOK/gnome/platform/gsettings-desktop-schemas.xml
   trunk/BOOK/networking/mailnews/mailx.xml
   trunk/BOOK/networking/netlibs/glib-networking.xml
   trunk/BOOK/networking/netlibs/libnsl.xml
   trunk/BOOK/networking/netlibs/libsoup.xml
   trunk/BOOK/networking/netlibs/nghttp2.xml
   trunk/BOOK/postlfs/filesystems/gptfdisk.xml
   trunk/BOOK/postlfs/filesystems/lvm2.xml
   trunk/BOOK/postlfs/filesystems/parted.xml
   trunk/BOOK/postlfs/security/cracklib.xml
   trunk/BOOK/postlfs/security/cryptsetup.xml
   trunk/BOOK/postlfs/security/cyrus-sasl.xml
   trunk/BOOK/postlfs/security/gpgme.xml
   trunk/BOOK/postlfs/security/libpwquality.xml
   trunk/BOOK/postlfs/security/linux-pam.xml
   trunk/BOOK/postlfs/security/mitkrb.xml
   trunk/BOOK/postlfs/security/shadow.xml
   trunk/BOOK/postlfs/security/volume_key.xml
   trunk/BOOK/pst/sgml/docbook-3.1-dtd.xml
   trunk/BOOK/pst/sgml/docbook-4.5-dtd.xml
   trunk/BOOK/pst/sgml/docbook-dsssl.xml
   trunk/BOOK/pst/sgml/docbook-utils.xml
   trunk/BOOK/pst/sgml/openjade.xml
   trunk/BOOK/pst/sgml/opensp.xml
   trunk/BOOK/pst/sgml/sgml-common.xml
   trunk/BOOK/pst/xml/docbook-xsl.xml
   trunk/BOOK/pst/xml/itstool.xml
   trunk/BOOK/pst/xml/xmlto.xml
   trunk/BOOK/server/databases/db.xml
   trunk/BOOK/server/mail/postfix.xml

Modified: trunk/BOOK/general/genlib/apr-util.xml
==
--- trunk/BOOK/general/genlib/apr-util.xml  Sun Aug 16 21:12:39 2020
(r23541)
+++ trunk/BOOK/general/genlib/apr-util.xml  Sun Aug 16 

[blfs-book] r23541 - in trunk/BOOK: general/genlib general/prog general/prog/perl-deps general/prog/perl-modules general/sysutils networking/netlibs networking/netprogs networking/netutils postlfs/sec

2020-08-16 Thread renodr--- via blfs-book
Author: renodr
Date: Sun Aug 16 21:12:39 2020
New Revision: 23541

Log:
Tags, test suite updates for llvm/valgrind, and a typo fix

Modified:
   trunk/BOOK/general/genlib/nspr.xml
   trunk/BOOK/general/genlib/pcre.xml
   trunk/BOOK/general/genlib/pcre2.xml
   trunk/BOOK/general/prog/llvm.xml
   trunk/BOOK/general/prog/perl-deps/perl-capture-tiny.xml
   trunk/BOOK/general/prog/perl-deps/perl-encode-locale.xml
   trunk/BOOK/general/prog/perl-deps/perl-http-date.xml
   trunk/BOOK/general/prog/perl-deps/perl-http-message.xml
   trunk/BOOK/general/prog/perl-deps/perl-io-html.xml
   trunk/BOOK/general/prog/perl-deps/perl-lwp-mediatypes.xml
   trunk/BOOK/general/prog/perl-deps/perl-net-ssleay.xml
   trunk/BOOK/general/prog/perl-deps/perl-test-fatal.xml
   trunk/BOOK/general/prog/perl-deps/perl-test-needs.xml
   trunk/BOOK/general/prog/perl-deps/perl-timedate.xml
   trunk/BOOK/general/prog/perl-deps/perl-try-tiny.xml
   trunk/BOOK/general/prog/perl-modules/perl-http-daemon.xml
   trunk/BOOK/general/prog/perl-modules/perl-io-socket-ssl.xml
   trunk/BOOK/general/prog/perl-modules/perl-uri.xml
   trunk/BOOK/general/prog/valgrind.xml
   trunk/BOOK/general/sysutils/unzip.xml
   trunk/BOOK/networking/netlibs/libevent.xml
   trunk/BOOK/networking/netprogs/net-tools.xml
   trunk/BOOK/networking/netutils/bind-utils.xml
   trunk/BOOK/postlfs/security/gnutls.xml
   trunk/BOOK/postlfs/security/nettle.xml
   trunk/BOOK/postlfs/security/nss.xml
   trunk/BOOK/server/databases/sqlite.xml

Modified: trunk/BOOK/general/genlib/nspr.xml
==
--- trunk/BOOK/general/genlib/nspr.xml  Sun Aug 16 15:56:43 2020(r23540)
+++ trunk/BOOK/general/genlib/nspr.xml  Sun Aug 16 21:12:39 2020(r23541)
@@ -34,7 +34,7 @@
   platform-neutral API for system level and libc like functions.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/genlib/pcre.xml
==
--- trunk/BOOK/general/genlib/pcre.xml  Sun Aug 16 15:56:43 2020(r23540)
+++ trunk/BOOK/general/genlib/pcre.xml  Sun Aug 16 21:12:39 2020(r23541)
@@ -37,7 +37,7 @@
   Perl 5.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/genlib/pcre2.xml
==
--- trunk/BOOK/general/genlib/pcre2.xml Sun Aug 16 15:56:43 2020(r23540)
+++ trunk/BOOK/general/genlib/pcre2.xml Sun Aug 16 21:12:39 2020(r23541)
@@ -36,7 +36,7 @@
   matching using the same syntax and semantics as 
Perl.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/prog/llvm.xml
==
--- trunk/BOOK/general/prog/llvm.xmlSun Aug 16 15:56:43 2020(r23540)
+++ trunk/BOOK/general/prog/llvm.xmlSun Aug 16 21:12:39 2020(r23541)
@@ -58,7 +58,7 @@
   firefox.
 
 
-_checked;
+_checked;
 
 Package Information
 
@@ -240,7 +240,7 @@
   class="directory">/sys/devices/system/cpu/cpuN/online
   by the root user and makes them
   temporarily unusable by all jobs on the machine.)
-  Note that the Sanitizer based tests (5 of more than 41000 tests run) 
+  Note that the Sanitizer based tests (6 of more than 41000 tests run) 
   are known to fail.
 
 

Modified: trunk/BOOK/general/prog/perl-deps/perl-capture-tiny.xml
==
--- trunk/BOOK/general/prog/perl-deps/perl-capture-tiny.xml Sun Aug 16 
15:56:43 2020(r23540)
+++ trunk/BOOK/general/prog/perl-deps/perl-capture-tiny.xml Sun Aug 16 
21:12:39 2020(r23541)
@@ -26,7 +26,7 @@
 (eXternal Subroutine, i.e. written in C or C++) or external programs.
   
 
-  _checked;
+  _checked;
 
   Package Information
   

Modified: trunk/BOOK/general/prog/perl-deps/perl-encode-locale.xml
==
--- trunk/BOOK/general/prog/perl-deps/perl-encode-locale.xmlSun Aug 16 
15:56:43 2020(r23540)
+++ trunk/BOOK/general/prog/perl-deps/perl-encode-locale.xmlSun Aug 16 
21:12:39 2020(r23541)
@@ -25,7 +25,7 @@
 Encode::Locale determines the locale encoding.
   
 
-  _checked;
+  _checked;
 
   Package Information
   

Modified: trunk/BOOK/general/prog/perl-deps/perl-http-date.xml
==
--- trunk/BOOK/general/prog/perl-deps/perl-http-date.xmlSun Aug 16 
15:56:43 2020(r23540)
+++ trunk/BOOK/general/prog/perl-deps/perl-http-date.xmlSun Aug 16 
21:12:39 2020(r23541)
@@ -26,7 +26,7 @@
 HTTP protocol and also with some other date 

[blfs-book] [BLFS Trac] #13934: biber-2.15

2020-08-16 Thread BLFS Trac via blfs-book
#13934: biber-2.15
-+---
 Reporter:  bdubbs   |  Owner:  blfs-book
 Type:  enhancement  | Status:  new
 Priority:  normal   |  Milestone:  10.0
Component:  BOOK |Version:  SVN
 Severity:  normal   |   Keywords:
-+---
 New minor version.

--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Re: [blfs-book] [BLFS Trac] #13844: Review links and versions / dependencies (if new version) for perl module dependencies.

2020-08-16 Thread BLFS Trac via blfs-book
#13844: Review links and versions / dependencies (if new version) for perl 
module
dependencies.
-+---
 Reporter:  ken@…|   Owner:  ken@…
 Type:  enhancement  |  Status:  assigned
 Priority:  normal   |   Milestone:  10.0
Component:  BOOK | Version:  SVN
 Severity:  normal   |  Resolution:
 Keywords:   |
-+---

Comment (by ken@…):

 On review, XML::SAX::Expat is not normally used by the deprecated
 SML::Simple module. Archived in r24530.

--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

[blfs-book] r23540 - in trunk/BOOK: archive general/prog general/prog/perl-deps general/prog/perl-modules

2020-08-16 Thread ken--- via blfs-book
Author: ken
Date: Sun Aug 16 15:56:43 2020
New Revision: 23540

Log:
Archive XML-SAX-Expat (perl module dependency), it provides nothing useful.

Added:
   trunk/BOOK/archive/perl-xml-sax-expat.xml
  - copied unchanged from r23539, 
trunk/BOOK/general/prog/perl-deps/perl-xml-sax-expat.xml
Deleted:
   trunk/BOOK/general/prog/perl-deps/perl-xml-sax-expat.xml
Modified:
   trunk/BOOK/general/prog/perl-deps.xml
   trunk/BOOK/general/prog/perl-modules/perl-xml-simple.xml

Copied: trunk/BOOK/archive/perl-xml-sax-expat.xml (from r23539, 
trunk/BOOK/general/prog/perl-deps/perl-xml-sax-expat.xml)
==
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ trunk/BOOK/archive/perl-xml-sax-expat.xml   Sun Aug 16 15:56:43 2020
(r23540, copy of r23539, 
trunk/BOOK/general/prog/perl-deps/perl-xml-sax-expat.xml)
@@ -0,0 +1,64 @@
+
+http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd; [
+  
+  %general-entities;
+
+  
+  
+
+]>
+
+  
+  
+
+XML::SAX::Expat-
+
+
+  XML::SAX::Expat
+
+
+
+  Introduction to XML::SAX::Expat
+
+  
+XML::SAX::Expat is an implementation of a SAX2 driver sitting on top of
+Expat (XML::Parser).
+  
+
+  _checked;
+
+  Package Information
+  
+
+  
+Download (HTTP): 
+  
+
+
+  
+Download MD5 sum: 
+  
+
+  
+
+  XML::SAX::Expat Dependencies
+
+  Required
+  
+
+
+  
+
+
+
+
+  Installation of XML::SAX::Expat
+
+  http://www.w3.org/2001/XInclude;
+  href="../../../xincludes/perl-standard-install.xml"/>
+
+
+
+  

Modified: trunk/BOOK/general/prog/perl-deps.xml
==
--- trunk/BOOK/general/prog/perl-deps.xml   Sun Aug 16 13:56:58 2020
(r23539)
+++ trunk/BOOK/general/prog/perl-deps.xml   Sun Aug 16 15:56:43 2020
(r23540)
@@ -550,11 +550,6 @@
   
 
   
-  
-
-  
-
-  
 
   
 
@@ -849,7 +844,4 @@
   http://www.w3.org/2001/XInclude;
 href="perl-deps/perl-xml-sax-base.xml"/>
 
-  http://www.w3.org/2001/XInclude;
-href="perl-deps/perl-xml-sax-expat.xml"/>
-
 

Modified: trunk/BOOK/general/prog/perl-modules/perl-xml-simple.xml
==
--- trunk/BOOK/general/prog/perl-modules/perl-xml-simple.xmlSun Aug 16 
13:56:58 2020(r23539)
+++ trunk/BOOK/general/prog/perl-modules/perl-xml-simple.xmlSun Aug 16 
15:56:43 2020(r23540)
@@ -54,8 +54,6 @@
 which was installed in LFS will be used),
 
- (for a further additional parser 
which
-can be used by setting a variable in Perl 
code)
   
 
 
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

[blfs-book] r23539 - in trunk/BOOK: general/genlib general/prog general/sysutils networking/netlibs networking/netprogs

2020-08-16 Thread renodr--- via blfs-book
Author: renodr
Date: Sun Aug 16 13:56:58 2020
New Revision: 23539

Log:
Tags

Modified:
   trunk/BOOK/general/genlib/brotli.xml
   trunk/BOOK/general/genlib/libidn.xml
   trunk/BOOK/general/genlib/libidn2.xml
   trunk/BOOK/general/genlib/libuv.xml
   trunk/BOOK/general/genlib/popt.xml
   trunk/BOOK/general/prog/cmake.xml
   trunk/BOOK/general/prog/gdb.xml
   trunk/BOOK/general/sysutils/zip.xml
   trunk/BOOK/networking/netlibs/c-ares.xml
   trunk/BOOK/networking/netlibs/curl.xml
   trunk/BOOK/networking/netlibs/libpsl.xml
   trunk/BOOK/networking/netprogs/rsync.xml

Modified: trunk/BOOK/general/genlib/brotli.xml
==
--- trunk/BOOK/general/genlib/brotli.xmlSun Aug 16 13:08:51 2020
(r23538)
+++ trunk/BOOK/general/genlib/brotli.xmlSun Aug 16 13:56:58 2020
(r23539)
@@ -38,7 +38,7 @@
   on webpages.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/genlib/libidn.xml
==
--- trunk/BOOK/general/genlib/libidn.xmlSun Aug 16 13:08:51 2020
(r23538)
+++ trunk/BOOK/general/genlib/libidn.xmlSun Aug 16 13:56:58 2020
(r23539)
@@ -45,7 +45,7 @@
   (ACE) form.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/genlib/libidn2.xml
==
--- trunk/BOOK/general/genlib/libidn2.xml   Sun Aug 16 13:08:51 2020
(r23538)
+++ trunk/BOOK/general/genlib/libidn2.xml   Sun Aug 16 13:56:58 2020
(r23539)
@@ -37,7 +37,7 @@
   internationalized domain names.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/genlib/libuv.xml
==
--- trunk/BOOK/general/genlib/libuv.xml Sun Aug 16 13:08:51 2020(r23538)
+++ trunk/BOOK/general/genlib/libuv.xml Sun Aug 16 13:56:58 2020(r23539)
@@ -34,7 +34,7 @@
   multi-platform support library with a focus on asynchronous I/O.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/genlib/popt.xml
==
--- trunk/BOOK/general/genlib/popt.xml  Sun Aug 16 13:08:51 2020(r23538)
+++ trunk/BOOK/general/genlib/popt.xml  Sun Aug 16 13:56:58 2020(r23539)
@@ -35,7 +35,7 @@
   some programs to parse command-line options.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/prog/cmake.xml
==
--- trunk/BOOK/general/prog/cmake.xml   Sun Aug 16 13:08:51 2020(r23538)
+++ trunk/BOOK/general/prog/cmake.xml   Sun Aug 16 13:56:58 2020(r23539)
@@ -38,7 +38,7 @@
   since version 4.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/prog/gdb.xml
==
--- trunk/BOOK/general/prog/gdb.xml Sun Aug 16 13:08:51 2020(r23538)
+++ trunk/BOOK/general/prog/gdb.xml Sun Aug 16 13:56:58 2020(r23539)
@@ -40,7 +40,7 @@
   stripped.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/sysutils/zip.xml
==
--- trunk/BOOK/general/sysutils/zip.xml Sun Aug 16 13:08:51 2020(r23538)
+++ trunk/BOOK/general/sysutils/zip.xml Sun Aug 16 13:56:58 2020(r23539)
@@ -36,7 +36,7 @@
   archives.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/networking/netlibs/c-ares.xml
==
--- trunk/BOOK/networking/netlibs/c-ares.xmlSun Aug 16 13:08:51 2020
(r23538)
+++ trunk/BOOK/networking/netlibs/c-ares.xmlSun Aug 16 13:56:58 2020
(r23539)
@@ -34,7 +34,7 @@
   requests.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/networking/netlibs/curl.xml
==
--- trunk/BOOK/networking/netlibs/curl.xml  Sun Aug 16 13:08:51 2020
(r23538)
+++ trunk/BOOK/networking/netlibs/curl.xml  Sun Aug 16 13:56:58 2020
(r23539)
@@ -38,7 +38,7 @@
   functions like streaming media.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/networking/netlibs/libpsl.xml
==
--- trunk/BOOK/networking/netlibs/libpsl.xmlSun Aug 16 13:08:51 2020
(r23538)
+++ 

[blfs-book] r23538 - trunk/BOOK/general/prog

2020-08-16 Thread renodr--- via blfs-book
Author: renodr
Date: Sun Aug 16 13:08:51 2020
New Revision: 23538

Log:
Add nghttp2 to the list of system libraries used in CMake

Modified:
   trunk/BOOK/general/prog/cmake.xml

Modified: trunk/BOOK/general/prog/cmake.xml
==
--- trunk/BOOK/general/prog/cmake.xml   Sun Aug 16 11:31:07 2020(r23537)
+++ trunk/BOOK/general/prog/cmake.xml   Sun Aug 16 13:08:51 2020(r23538)
@@ -180,6 +180,7 @@
   --system-libs: This switch forces the build system
   to link against Zlib,
   Bzip2, cURL,
+  nghttp2,
   Expat and 
libarchive
   installed on the system.
 
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Re: [blfs-book] [BLFS Trac] #13933: Fix libarchive test suite (lchmod problem)

2020-08-16 Thread BLFS Trac via blfs-book
#13933: Fix libarchive test suite (lchmod problem)
+-
 Reporter:  renodr  |   Owner:  renodr
 Type:  defect  |  Status:  closed
 Priority:  normal  |   Milestone:  10.0
Component:  BOOK| Version:  SVN
 Severity:  normal  |  Resolution:  fixed
 Keywords:  |
+-
Changes (by renodr):

 * type:  enhancement => defect
 * milestone:  10.1 => 10.0


Comment:

 Let's put this in the right milestone, and mark it as a defect.

--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Re: [blfs-book] [BLFS Trac] #13933: Fix libarchive test suite (lchmod problem)

2020-08-16 Thread BLFS Trac via blfs-book
#13933: Fix libarchive test suite (lchmod problem)
-+-
 Reporter:  renodr   |   Owner:  renodr
 Type:  enhancement  |  Status:  closed
 Priority:  normal   |   Milestone:  10.1
Component:  BOOK | Version:  SVN
 Severity:  normal   |  Resolution:  fixed
 Keywords:   |
-+-
Changes (by renodr):

 * status:  assigned => closed
 * resolution:   => fixed


Comment:

 Fixed at r23537

--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

[blfs-book] r23537 - in trunk/BOOK: general/genlib general/prog general/sysutils introduction/welcome

2020-08-16 Thread renodr--- via blfs-book
Author: renodr
Date: Sun Aug 16 11:31:07 2020
New Revision: 23537

Log:
Some tags, and a fix for the libarchive test suite problem

Modified:
   trunk/BOOK/general/genlib/libarchive.xml
   trunk/BOOK/general/genlib/libunistring.xml
   trunk/BOOK/general/genlib/libxml2.xml
   trunk/BOOK/general/genlib/lzo.xml
   trunk/BOOK/general/prog/gc.xml
   trunk/BOOK/general/prog/guile.xml
   trunk/BOOK/general/prog/python2.xml
   trunk/BOOK/general/sysutils/which.xml
   trunk/BOOK/introduction/welcome/changelog.xml

Modified: trunk/BOOK/general/genlib/libarchive.xml
==
--- trunk/BOOK/general/genlib/libarchive.xmlSun Aug 16 10:57:22 2020
(r23536)
+++ trunk/BOOK/general/genlib/libarchive.xmlSun Aug 16 11:31:07 2020
(r23537)
@@ -34,7 +34,7 @@
   interface for reading/writing various compression formats.
 
 
-_checked;
+_checked;
 
 Package Information
 
@@ -70,6 +70,16 @@
   
 
 
+Additional Downloads
+
+  
+
+  Required patch:
+  
+
+  
+
+
 libarchive Dependencies
 
 Optional
@@ -89,6 +99,12 @@
 Installation of libarchive
 
 
+  First, adapt the test suite to changes in glibc-2.32:
+
+
+patch -Np1 -i 
../libarchive--testsuite_fix-1.patch
+
+
   Install libarchive by running the following
   commands:
 
@@ -98,8 +114,6 @@
 
 
   To test the results, issue: LC_ALL=C make check.
-  
-  One test named test_write_disk_secure is known to fail.
 
 
 

Modified: trunk/BOOK/general/genlib/libunistring.xml
==
--- trunk/BOOK/general/genlib/libunistring.xml  Sun Aug 16 10:57:22 2020
(r23536)
+++ trunk/BOOK/general/genlib/libunistring.xml  Sun Aug 16 11:31:07 2020
(r23537)
@@ -35,7 +35,7 @@
   strings according to the Unicode standard.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/genlib/libxml2.xml
==
--- trunk/BOOK/general/genlib/libxml2.xml   Sun Aug 16 10:57:22 2020
(r23536)
+++ trunk/BOOK/general/genlib/libxml2.xml   Sun Aug 16 11:31:07 2020
(r23537)
@@ -36,7 +36,7 @@
   and utilities used for parsing XML files.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/genlib/lzo.xml
==
--- trunk/BOOK/general/genlib/lzo.xml   Sun Aug 16 10:57:22 2020(r23536)
+++ trunk/BOOK/general/genlib/lzo.xml   Sun Aug 16 11:31:07 2020(r23537)
@@ -35,7 +35,7 @@
   real-time. This means it favors speed over compression ratio.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/prog/gc.xml
==
--- trunk/BOOK/general/prog/gc.xml  Sun Aug 16 10:57:22 2020(r23536)
+++ trunk/BOOK/general/prog/gc.xml  Sun Aug 16 11:31:07 2020(r23537)
@@ -43,7 +43,7 @@
   leak detector for C or C++ programs, though that is not its primary goal.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/prog/guile.xml
==
--- trunk/BOOK/general/prog/guile.xml   Sun Aug 16 10:57:22 2020(r23536)
+++ trunk/BOOK/general/prog/guile.xml   Sun Aug 16 11:31:07 2020(r23537)
@@ -35,7 +35,7 @@
   contains a stand alone Scheme interpreter.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/prog/python2.xml
==
--- trunk/BOOK/general/prog/python2.xml Sun Aug 16 10:57:22 2020(r23536)
+++ trunk/BOOK/general/prog/python2.xml Sun Aug 16 11:31:07 2020(r23537)
@@ -54,7 +54,7 @@
 
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/sysutils/which.xml
==
--- trunk/BOOK/general/sysutils/which.xml   Sun Aug 16 10:57:22 2020
(r23536)
+++ trunk/BOOK/general/sysutils/which.xml   Sun Aug 16 11:31:07 2020
(r23537)
@@ -46,7 +46,7 @@
   which package.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/introduction/welcome/changelog.xml
==
--- trunk/BOOK/introduction/welcome/changelog.xml   Sun Aug 16 10:57:22 
2020(r23536)
+++ trunk/BOOK/introduction/welcome/changelog.xml   Sun Aug 16 11:31:07 
2020(r23537)
@@ -45,6 +45,10 @@
   August 16th, 2020
   

[blfs-book] [BLFS Trac] #13933: Fix libarchive test suite (lchmod problem)

2020-08-16 Thread BLFS Trac via blfs-book
#13933: Fix libarchive test suite (lchmod problem)
-+---
 Reporter:  renodr   |  Owner:  blfs-book
 Type:  enhancement  | Status:  new
 Priority:  normal   |  Milestone:  10.1
Component:  BOOK |Version:  SVN
 Severity:  normal   |   Keywords:
-+---
 Generate a patch that fixes the following problem:

 {{{
 FAIL: libarchive_test
 PASS: bsdtar_test
 PASS: bsdcpio_test
 PASS: bsdcat_test
 
 Testsuite summary for libarchive 3.4.3
 
 # TOTAL: 4
 # PASS:  3
 # SKIP:  0
 # XFAIL: 0
 # FAIL:  1
 # XPASS: 0
 # ERROR: 0
 
 See ./test-suite.log
 Please report to libarchive-disc...@googlegroups.com
 
 }}}

 Upstream fix can be found at
 [https://github.com/libarchive/libarchive/issues/1379] and
 
[https://github.com/libarchive/libarchive/issues/1379]/[https://github.com/libarchive/libarchive/commit/48c375370bb5da0509148bb2ee0075b818e2094e]

--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

[blfs-book] r23536 - in trunk/BOOK/general: genlib prog

2020-08-16 Thread bdubbs--- via blfs-book
Author: bdubbs
Date: Sun Aug 16 10:57:22 2020
New Revision: 23536

Log:
clarify xreflabel for python2 libxml2 module

Modified:
   trunk/BOOK/general/genlib/libxslt.xml
   trunk/BOOK/general/prog/libxml2py2.xml

Modified: trunk/BOOK/general/genlib/libxslt.xml
==
--- trunk/BOOK/general/genlib/libxslt.xml   Sun Aug 16 10:15:18 2020
(r23535)
+++ trunk/BOOK/general/genlib/libxslt.xml   Sun Aug 16 10:57:22 2020
(r23536)
@@ -106,13 +106,13 @@
 
 Optional
 
-  ,
+   and 
   
   The  
   dependency is only appropriate if the Python2
   module for this package is needed. The
   libxslt Python2 module is not needed for
-  any package in BLFS but various packages may install
+  any package in BLFS but various non-BLFS packages may install
   Python2 modules which reference it.
   
 

Modified: trunk/BOOK/general/prog/libxml2py2.xml
==
--- trunk/BOOK/general/prog/libxml2py2.xml  Sun Aug 16 10:15:18 2020
(r23535)
+++ trunk/BOOK/general/prog/libxml2py2.xml  Sun Aug 16 10:57:22 2020
(r23536)
@@ -14,7 +14,7 @@
 ]>
 
   
-  
+  
 
 libxml2- (for its Python2 module)
 
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Re: [blfs-book] [BLFS Trac] #13933: Fix libarchive test suite (lchmod problem)

2020-08-16 Thread BLFS Trac via blfs-book
#13933: Fix libarchive test suite (lchmod problem)
-+---
 Reporter:  renodr   |   Owner:  renodr
 Type:  enhancement  |  Status:  assigned
 Priority:  normal   |   Milestone:  10.1
Component:  BOOK | Version:  SVN
 Severity:  normal   |  Resolution:
 Keywords:   |
-+---
Changes (by renodr):

 * owner:  blfs-book => renodr
 * status:  new => assigned


--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Re: [blfs-book] [BLFS Trac] #7859: ImageMagick (Update to a newer version before BLFS release) (was: ImageMagick (hold for too frequent releases))

2020-08-16 Thread BLFS Trac via blfs-book
#7859: ImageMagick (Update to a newer version before BLFS release)
-+
 Reporter:  bdubbs@… |   Owner:  blfs-book
 Type:  enhancement  |  Status:  new
 Priority:  normal   |   Milestone:  hold
Component:  BOOK | Version:  SVN
 Severity:  normal   |  Resolution:
 Keywords:   |
-+

--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Re: [blfs-book] [BLFS Trac] #7859: ImageMagick (hold for too frequent releases) (was: ImageMagick6-6.9.7-4 ImageMagick7-7.0.4-4 (hold for too frequent releases))

2020-08-16 Thread BLFS Trac via blfs-book
#7859: ImageMagick (hold for too frequent releases)
-+
 Reporter:  bdubbs@… |   Owner:  blfs-book
 Type:  enhancement  |  Status:  new
 Priority:  normal   |   Milestone:  hold
Component:  BOOK | Version:  SVN
 Severity:  normal   |  Resolution:
 Keywords:   |
-+
Changes (by ken@…):

 * owner:  ken@… => blfs-book
 * status:  assigned => new


Old description:

> New point versions.  Hold for a while due to too many upstream releases.

New description:

 New point versions.  Hold for a while due to too many upstream releases.

 This was originally for both IM6 and IM7.

--

Comment:

 I've now archived IM6 in r23535.

--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

[blfs-book] r23535 - in trunk/BOOK: archive general/genutils introduction/welcome multimedia/videoutils postlfs/editors

2020-08-16 Thread ken--- via blfs-book
Author: ken
Date: Sun Aug 16 10:15:18 2020
New Revision: 23535

Log:
Archive ImageMagick-6.

In emacs add optional switch to emable ImageMagick-7.
In transcode optional deps point to legacy imagemagick site.

Added:
   trunk/BOOK/archive/imagemagick6.xml
  - copied unchanged from r23534, 
trunk/BOOK/general/genutils/imagemagick6.xml
Deleted:
   trunk/BOOK/general/genutils/imagemagick6.xml
Modified:
   trunk/BOOK/general/genutils/genutils.xml
   trunk/BOOK/introduction/welcome/changelog.xml
   trunk/BOOK/multimedia/videoutils/transcode.xml
   trunk/BOOK/postlfs/editors/emacs.xml

Copied: trunk/BOOK/archive/imagemagick6.xml (from r23534, 
trunk/BOOK/general/genutils/imagemagick6.xml)
==
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ trunk/BOOK/archive/imagemagick6.xml Sun Aug 16 10:15:18 2020
(r23535, copy of r23534, trunk/BOOK/general/genutils/imagemagick6.xml)
@@ -0,0 +1,442 @@
+
+http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd; [
+  
+  %general-entities;
+
+  
+
+  https://www.imagemagick.org/download/releases/ImageMagick--.tar.xz;>
+  ftp://ftp.imagemagick.org/pub/ImageMagick/releases/ImageMagick--.tar.xz;>
+  
+  
+  
+  
+]>
+
+
+
+
+  
+
+  
+$LastChangedBy$
+$Date$
+  
+
+  
ImageMagick--
+
+  
+ImageMagick-6 
libraries
+  
+
+  
+Introduction to ImageMagick-6 libraries
+
+
+  ImageMagick underwent many changes in its
+  libraries between versions 6 and 7. Most packages in BLFS which use
+  ImageMagick can use version 7, but for the
+  others this page will install only the libraries, headers and general
+  documentation (not programs, manpages, perl modules), and it will
+  rename the unversioned pkgconfig files so that they do not overwrite the
+  same-named files from version 7.
+
+
+_checked;
+
+Package Information
+
+  
+
+  Download (HTTP): 
+
+  
+  
+
+  Download (FTP): 
+
+  
+  
+
+  Download MD5 sum: 
+
+  
+  
+
+  Download size: 
+
+  
+  
+
+  Estimated disk space required: 
+
+  
+  
+
+  Estimated build time: 
+
+  
+
+
+Additional Downloads
+
+  
+
+  Required patch:
+  
+
+  
+
+
+
+  
+The ImageMagick source releases are updated
+frequently and the version shown above may no longer be available from
+the download locations. You can download a more recent version and use
+the existing BLFS instructions to install it. Chances are that it will
+work just fine, but this has not been tested by the BLFS team. If the
+package version shown above is not available from the locations shown
+above, or from the legacy/
+directory at ftp.ImageMagick.org/pub/ImageMagick you
+can download it from the BLFS package server at Oregon State 
University: 
+ftp://ftp.osuosl.org/pub/blfs/conglomeration/ImageMagick/"/>.
+  
+
+
+ImageMagick-6 Dependencies
+
+Recommended
+
+  
+
+
+
+  The optional dependencies listed below should be installed if you need
+  support for the specific format or the conversion tool the dependency
+  provides. Many of the dependencies' capabilities and uses are described 
in
+  the MAGICK DELEGATES section of the
+  README.txt file located in the source tree.
+  Additional information about the dependencies can be found in the
+  Install-unix.txt file located in the source tree as
+  well as issuing the ./configure --help command. A
+  summary of this information, as well as some additional notes can be
+  viewed on-line at http://www.imagemagick.org/script/advanced-unix-installation.php"/>.
+
+
+Optional System Utilities
+
+  ,
+  ,
+  ,
+  ,
+   (LZMA),
+  ,
+  ,
+  ,
+  ,
+  http://dmalloc.com/;>Dmalloc,
+  http://linux.softpedia.com/get/Programming/Debuggers/Electric-Fence-3305.shtml/;>Electric
 Fence,
+  http://www.openpgp.org/about/;>PGP or
+  
+  (you'll have to do some hacking to use GnuPG),
+  ftp://ftp.imagemagick.org/pub/ImageMagick/delegates;>Profiles,
+  and
+  http://ufraw.sourceforge.net/;>ufraw (for raw formats
+  listed in
+  http://imagemagick.org/script/formats.php;>
+  http://www.imagemagick.org/www/formats.html)
+
+
+Optional Graphics Libraries
+
+  ,
+   or
+  ,
+  ,
+  ,
+  ,
+  ,
+   (RAW_R),
+  ,
+  ,
+  ,
+  ,
+  ,
+  http://djvu.sourceforge.net/;>DjVuLibre,
+  ftp://ftp.imagemagick.org/pub/ImageMagick/delegates/;>
+  FlashPIX (libfpx),
+  https://github.com/FLIF-hub/FLIF/releases;>FLIF,
+  

Re: [blfs-book] [BLFS Trac] #13932: emacs-27.1 does not build with ImageMagick-6.9.11-27

2020-08-16 Thread BLFS Trac via blfs-book
#13932: emacs-27.1 does not build with ImageMagick-6.9.11-27
+-
 Reporter:  ken@…   |   Owner:  ken@…
 Type:  defect  |  Status:  closed
 Priority:  normal  |   Milestone:  10.0
Component:  BOOK| Version:  SVN
 Severity:  normal  |  Resolution:  fixed
 Keywords:  |
+-
Changes (by ken@…):

 * status:  assigned => closed
 * resolution:   => fixed


Comment:

 Hmm, IM6 was optional for transcode - but full transcode has not built for
 years. Replacing by an external link to legacy imagemagick.

 r23535.

--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Re: [blfs-book] [BLFS Trac] #13932: emacs-27.1 does not build with ImageMagick-6.9.11-27

2020-08-16 Thread BLFS Trac via blfs-book
#13932: emacs-27.1 does not build with ImageMagick-6.9.11-27
+---
 Reporter:  ken@…   |   Owner:  ken@…
 Type:  defect  |  Status:  assigned
 Priority:  normal  |   Milestone:  10.0
Component:  BOOK| Version:  SVN
 Severity:  normal  |  Resolution:
 Keywords:  |
+---
Changes (by ken@…):

 * owner:  blfs-book => ken@…
 * status:  new => assigned


Comment:

 Replying to [comment:2 bdubbs]:
 > Lets just drop IM from emacs and the book.  Good riddance.

 Now that I've slept, I am reminded that the changes of the header
 directories (wand -> MagickWand etc) were like what I had seen when IM7
 came out and inkscape hit problems. Except these are the reverse.

 I've just got as far as configuring emacs-27.1 with (only) '--with-
 imagemagick' added:
 {{{
 checking for MagickWand >= 7... yes
 checking for MagickRelinquishMemory... yes
 checking for MagickExportImagePixels... yes
 checking for MagickMergeImageLayers... yes
 checking for MagickAutoOrientImage... yes
 }}}

 OK, that builds and does a DESTDIR install, src/emacs -Q works.
 Archiving IM6.

--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

[blfs-book] r23534 - in trunk/BOOK: general/genlib general/genutils networking/connect networking/netlibs networking/netprogs

2020-08-16 Thread renodr--- via blfs-book
Author: renodr
Date: Sun Aug 16 09:32:35 2020
New Revision: 23534

Log:
Pre-reboot tags

Modified:
   trunk/BOOK/general/genlib/libatomic_ops.xml
   trunk/BOOK/general/genutils/screen.xml
   trunk/BOOK/networking/connect/dhcpcd.xml
   trunk/BOOK/networking/netlibs/libnl.xml
   trunk/BOOK/networking/netprogs/wpa_supplicant.xml

Modified: trunk/BOOK/general/genlib/libatomic_ops.xml
==
--- trunk/BOOK/general/genlib/libatomic_ops.xml Sun Aug 16 08:28:54 2020
(r23533)
+++ trunk/BOOK/general/genlib/libatomic_ops.xml Sun Aug 16 09:32:35 2020
(r23534)
@@ -38,7 +38,7 @@
   variety of architectures.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/genutils/screen.xml
==
--- trunk/BOOK/general/genutils/screen.xml  Sun Aug 16 08:28:54 2020
(r23533)
+++ trunk/BOOK/general/genutils/screen.xml  Sun Aug 16 09:32:35 2020
(r23534)
@@ -40,7 +40,7 @@
   later on a different terminal.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/networking/connect/dhcpcd.xml
==
--- trunk/BOOK/networking/connect/dhcpcd.xmlSun Aug 16 08:28:54 2020
(r23533)
+++ trunk/BOOK/networking/connect/dhcpcd.xmlSun Aug 16 09:32:35 2020
(r23534)
@@ -42,7 +42,7 @@
   DHCP client.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/networking/netlibs/libnl.xml
==
--- trunk/BOOK/networking/netlibs/libnl.xml Sun Aug 16 08:28:54 2020
(r23533)
+++ trunk/BOOK/networking/netlibs/libnl.xml Sun Aug 16 09:32:35 2020
(r23534)
@@ -40,7 +40,7 @@
   providing APIs to netlink protocol based Linux kernel interfaces.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/networking/netprogs/wpa_supplicant.xml
==
--- trunk/BOOK/networking/netprogs/wpa_supplicant.xml   Sun Aug 16 08:28:54 
2020(r23533)
+++ trunk/BOOK/networking/netprogs/wpa_supplicant.xml   Sun Aug 16 09:32:35 
2020(r23534)
@@ -40,7 +40,7 @@
   access point.
 
 
-_checked;
+_checked;
 
 Package Information
 
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

[blfs-book] r23533 - in trunk/BOOK: general/genlib general/sysutils networking/netlibs networking/netprogs postlfs/security

2020-08-16 Thread bdubbs--- via blfs-book
Author: bdubbs
Date: Sun Aug 16 08:28:54 2020
New Revision: 23533

Log:
first lfs10 tags

Modified:
   trunk/BOOK/general/genlib/libtasn1.xml
   trunk/BOOK/general/sysutils/gpm.xml
   trunk/BOOK/general/sysutils/lsb-tools.xml
   trunk/BOOK/networking/netlibs/libtirpc.xml
   trunk/BOOK/networking/netlibs/rpcsvc-proto.xml
   trunk/BOOK/networking/netprogs/nfs-utils.xml
   trunk/BOOK/networking/netprogs/rpcbind.xml
   trunk/BOOK/networking/netprogs/wget.xml
   trunk/BOOK/postlfs/security/haveged.xml
   trunk/BOOK/postlfs/security/openssh.xml
   trunk/BOOK/postlfs/security/p11-kit.xml
   trunk/BOOK/postlfs/security/sudo.xml

Modified: trunk/BOOK/general/genlib/libtasn1.xml
==
--- trunk/BOOK/general/genlib/libtasn1.xml  Sat Aug 15 23:32:03 2020
(r23532)
+++ trunk/BOOK/general/genlib/libtasn1.xml  Sun Aug 16 08:28:54 2020
(r23533)
@@ -34,7 +34,7 @@
   that encodes and decodes DER/BER data following an ASN.1 schema.
 
 
- _checked;
+ _checked;
 
 Package Information
 

Modified: trunk/BOOK/general/sysutils/gpm.xml
==
--- trunk/BOOK/general/sysutils/gpm.xml Sat Aug 15 23:32:03 2020(r23532)
+++ trunk/BOOK/general/sysutils/gpm.xml Sun Aug 16 08:28:54 2020(r23533)
@@ -41,7 +41,7 @@
   everything by hand!
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/general/sysutils/lsb-tools.xml
==
--- trunk/BOOK/general/sysutils/lsb-tools.xml   Sat Aug 15 23:32:03 2020
(r23532)
+++ trunk/BOOK/general/sysutils/lsb-tools.xml   Sun Aug 16 08:28:54 2020
(r23533)
@@ -35,7 +35,7 @@
   for Linux Standards Base (LSB) conformance.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/networking/netlibs/libtirpc.xml
==
--- trunk/BOOK/networking/netlibs/libtirpc.xml  Sat Aug 15 23:32:03 2020
(r23532)
+++ trunk/BOOK/networking/netlibs/libtirpc.xml  Sun Aug 16 08:28:54 2020
(r23533)
@@ -36,7 +36,7 @@
   used to be in glibc.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/networking/netlibs/rpcsvc-proto.xml
==
--- trunk/BOOK/networking/netlibs/rpcsvc-proto.xml  Sat Aug 15 23:32:03 
2020(r23532)
+++ trunk/BOOK/networking/netlibs/rpcsvc-proto.xml  Sun Aug 16 08:28:54 
2020(r23533)
@@ -36,7 +36,7 @@
   program.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/networking/netprogs/nfs-utils.xml
==
--- trunk/BOOK/networking/netprogs/nfs-utils.xmlSat Aug 15 23:32:03 
2020(r23532)
+++ trunk/BOOK/networking/netprogs/nfs-utils.xmlSun Aug 16 08:28:54 
2020(r23533)
@@ -37,7 +37,7 @@
   network.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/networking/netprogs/rpcbind.xml
==
--- trunk/BOOK/networking/netprogs/rpcbind.xml  Sat Aug 15 23:32:03 2020
(r23532)
+++ trunk/BOOK/networking/netprogs/rpcbind.xml  Sun Aug 16 08:28:54 2020
(r23533)
@@ -35,7 +35,7 @@
   of Network File System (NFS) shared directories.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/networking/netprogs/wget.xml
==
--- trunk/BOOK/networking/netprogs/wget.xml Sat Aug 15 23:32:03 2020
(r23532)
+++ trunk/BOOK/networking/netprogs/wget.xml Sun Aug 16 08:28:54 2020
(r23533)
@@ -36,7 +36,7 @@
   non-interactive downloading of files from the Web.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/postlfs/security/haveged.xml
==
--- trunk/BOOK/postlfs/security/haveged.xml Sat Aug 15 23:32:03 2020
(r23532)
+++ trunk/BOOK/postlfs/security/haveged.xml Sun Aug 16 08:28:54 2020
(r23533)
@@ -35,7 +35,7 @@
   and feeds the /dev/random device.
 
 
-_checked;
+_checked;
 
 Package Information
 

Modified: trunk/BOOK/postlfs/security/openssh.xml
==
--- trunk/BOOK/postlfs/security/openssh.xml Sat Aug 15 23:32:03 2020
(r23532)
+++ trunk/BOOK/postlfs/security/openssh.xml Sun Aug 16 08:28:54 2020
(r23533)
@@ -43,7 +43,7 @@
   rcp respectively.
 
 
-_checked;
+

Re: [blfs-book] [BLFS Trac] #13931: libcap-2.43

2020-08-16 Thread BLFS Trac via blfs-book
#13931: libcap-2.43
-+
 Reporter:  bdubbs   |   Owner:  blfs-book
 Type:  enhancement  |  Status:  new
 Priority:  normal   |   Milestone:  10.1
Component:  BOOK | Version:  SVN
 Severity:  normal   |  Resolution:
 Keywords:   |
-+
Changes (by bdubbs):

 * milestone:  10.0 => 10.1


--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

[blfs-book] [BLFS Trac] Batch modify: #13928, #13930

2020-08-16 Thread BLFS Trac via blfs-book
Batch modification to #13928, #13930 by pierre.labastie:


Action: accept

--
Tickets URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Re: [blfs-book] [BLFS Trac] #12241: vim-8.2.xxxx (Update at release time)

2020-08-16 Thread BLFS Trac via blfs-book
#12241: vim-8.2. (Update at release time)
-+--
 Reporter:  renodr   |   Owner:  pierre.labastie
 Type:  enhancement  |  Status:  assigned
 Priority:  normal   |   Milestone:  hold
Component:  BOOK | Version:  SVN
 Severity:  normal   |  Resolution:
 Keywords:   |
-+--
Changes (by pierre.labastie):

 * owner:  blfs-book => pierre.labastie
 * status:  new => assigned


Comment:

 will sync to lfs, which is at 8.2.1361 now.

--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

[blfs-book] Files in BLFS svn missing on osuosl

2020-08-16 Thread bdubbs--- via blfs-book
Missing ImageMagick-7.0.10-27.tar.xz
Missing sqlite-autoconf-333.tar.gz
Missing sqlite-doc-333.zip
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Re: [blfs-book] [BLFS Trac] #7859: ImageMagick6-6.9.7-4 ImageMagick7-7.0.4-4 (hold for too frequent releases)

2020-08-16 Thread BLFS Trac via blfs-book
#7859: ImageMagick6-6.9.7-4 ImageMagick7-7.0.4-4 (hold for too frequent 
releases)
-+---
 Reporter:  bdubbs@… |   Owner:  ken@…
 Type:  enhancement  |  Status:  assigned
 Priority:  normal   |   Milestone:  hold
Component:  BOOK | Version:  SVN
 Severity:  normal   |  Resolution:
 Keywords:   |
-+---

Comment (by ken@…):

 Updated to 7.0.10-27 in r23531.

--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

[blfs-book] r23532 - in trunk/BOOK: . introduction/welcome server/databases

2020-08-16 Thread ken--- via blfs-book
Author: ken
Date: Sat Aug 15 23:32:03 2020
New Revision: 23532

Log:
sqlite-3.33.0

Modified:
   trunk/BOOK/introduction/welcome/changelog.xml
   trunk/BOOK/packages.ent
   trunk/BOOK/server/databases/sqlite.xml

Modified: trunk/BOOK/introduction/welcome/changelog.xml
==
--- trunk/BOOK/introduction/welcome/changelog.xml   Sat Aug 15 22:59:51 
2020(r23531)
+++ trunk/BOOK/introduction/welcome/changelog.xml   Sat Aug 15 23:32:03 
2020(r23532)
@@ -45,6 +45,10 @@
   August 16th, 2020
   
 
+  [ken] - Update to sqlite-3.33.0. Fixes
+  #13929.
+
+
   [ken] - Update to ImageMagick-7.0.10-27. Addresses
   #7859.
 

Modified: trunk/BOOK/packages.ent
==
--- trunk/BOOK/packages.ent Sat Aug 15 22:59:51 2020(r23531)
+++ trunk/BOOK/packages.ent Sat Aug 15 23:32:03 2020(r23532)
@@ -662,7 +662,7 @@
 
 
 
-
+
 
 
 

Modified: trunk/BOOK/server/databases/sqlite.xml
==
--- trunk/BOOK/server/databases/sqlite.xml  Sat Aug 15 22:59:51 2020
(r23531)
+++ trunk/BOOK/server/databases/sqlite.xml  Sat Aug 15 23:32:03 2020
(r23532)
@@ -4,20 +4,20 @@
   
   %general-entities;
 
-  
-  
+  
+  
 
 
 
   https://sqlite.org/2020/sqlite-autoconf-.tar.gz;>
   
-  
+  
   
-  
-  
+  
+  
 
   https://sqlite.org/2020/sqlite-doc-.zip;>
-  
+  
   
 ]>
 
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Re: [blfs-book] [BLFS Trac] #13928: boost-1.74.0

2020-08-16 Thread BLFS Trac via blfs-book
#13928: boost-1.74.0
-+
 Reporter:  bdubbs   |   Owner:  blfs-book
 Type:  enhancement  |  Status:  new
 Priority:  normal   |   Milestone:  10.0
Component:  BOOK | Version:  SVN
 Severity:  normal   |  Resolution:
 Keywords:   |
-+

Comment (by pierre.labastie):

 Replying to [comment:3 ken@…]:
 > I got as far a looking at the patch, it does not apply and I have no
 idea how to fix it.
 >
 > One hunk is to allow libreoffice to compile with gcc-10, the other I
 have no idea what it does.

 I'd say the patch is not needed now. Upstream seems to have moved to use
 boost::alloc*, for all allocations, and taken care of the details there.

--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Re: [blfs-book] [BLFS Trac] #13929: sqlite-autoconf-3330000 (3.33.0)

2020-08-16 Thread BLFS Trac via blfs-book
#13929: sqlite-autoconf-333 (3.33.0)
-+---
 Reporter:  bdubbs   |   Owner:  ken@…
 Type:  enhancement  |  Status:  assigned
 Priority:  normal   |   Milestone:  10.0
Component:  BOOK | Version:  SVN
 Severity:  normal   |  Resolution:
 Keywords:   |
-+---
Changes (by ken@…):

 * owner:  blfs-book => ken@…
 * status:  new => assigned


--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Re: [blfs-book] [BLFS Trac] #13929: sqlite-autoconf-3330000 (3.33.0)

2020-08-16 Thread BLFS Trac via blfs-book
#13929: sqlite-autoconf-333 (3.33.0)
-+-
 Reporter:  bdubbs   |   Owner:  ken@…
 Type:  enhancement  |  Status:  closed
 Priority:  normal   |   Milestone:  10.0
Component:  BOOK | Version:  SVN
 Severity:  normal   |  Resolution:  fixed
 Keywords:   |
-+-
Changes (by ken@…):

 * status:  assigned => closed
 * resolution:   => fixed


Comment:

 r23532

--
Ticket URL: 
BLFS Trac 
Beyond Linux From Scratch
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

[blfs-book] r23531 - in trunk/BOOK: . general/genutils introduction/welcome

2020-08-16 Thread ken--- via blfs-book
Author: ken
Date: Sat Aug 15 22:59:51 2020
New Revision: 23531

Log:
Update to ImageMagick-7.0.10-27.

Also correct my changelog copy+paste entry for dvisvgm-2.10.1.

Modified:
   trunk/BOOK/general.ent
   trunk/BOOK/general/genutils/imagemagick.xml
   trunk/BOOK/introduction/welcome/changelog.xml
   trunk/BOOK/packages.ent

Modified: trunk/BOOK/general.ent
==
--- trunk/BOOK/general.ent  Sat Aug 15 17:49:16 2020(r23530)
+++ trunk/BOOK/general.ent  Sat Aug 15 22:59:51 2020(r23531)
@@ -1,12 +1,12 @@
 
 
-   
+   

 
 
 
 
-
+
  
   
   

Modified: trunk/BOOK/general/genutils/imagemagick.xml
==
--- trunk/BOOK/general/genutils/imagemagick.xml Sat Aug 15 17:49:16 2020
(r23530)
+++ trunk/BOOK/general/genutils/imagemagick.xml Sat Aug 15 22:59:51 2020
(r23531)
@@ -4,14 +4,14 @@
   
   %general-entities;
 
-  
+  
 
   https://www.imagemagick.org/download/releases/ImageMagick--.tar.xz;>
   ftp://ftp.imagemagick.org/pub/ImageMagick/releases/ImageMagick--.tar.xz;>
-  
-  
-  
-  
+  
+  
+  
+  
 ]>
 
 
 
+  August 16th, 2020
+  
+
+  [ken] - Update to ImageMagick-7.0.10-27. Addresses
+  #7859.
+
+  
+
+
+
   August 15th, 2020
   
 
@@ -56,7 +66,7 @@
   August 14th, 2020
   
 
-  [bdubbs] - Update to dvisvgm-2.10. Fixes
+  [ken] - Update to dvisvgm-2.10. Fixes
   #13921.
 
 

Modified: trunk/BOOK/packages.ent
==
--- trunk/BOOK/packages.ent Sat Aug 15 17:49:16 2020(r23530)
+++ trunk/BOOK/packages.ent Sat Aug 15 22:59:51 2020(r23531)
@@ -251,7 +251,7 @@
 
 
 
-
+
 
 
 
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page