Changeset 788f897


Ignore:
Timestamp:
02/21/2020 04:32:53 PM (4 years ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib-10.1
Children:
bc12dcb
Parents:
54a6bc9
Message:

MultiLib: Merge changes from trunk

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@11757 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • chapter03/packages.xml

    r54a6bc9 r788f897  
    455455          cost for a subsequent patch level upgrade within a minor release.
    456456          </para>
    457 
    458457        </note>
    459458      </listitem>
     
    753752        <para>Download: <ulink url="&vim-url;"/></para>
    754753        <para>MD5 sum: <literal>&vim-md5;</literal></para>
     754        <note>
     755          <para>
     756            The version of vim changes daily. The get the latest version, go to
     757            <ulink url="https://github.com/vim/vim/releases">
     758            https://github.com/vim/vim/releases</ulink>.
     759          </para>
     760        </note>
    755761      </listitem>
    756762    </varlistentry>
  • chapter05/gcc-pass1.xml

    r54a6bc9 r788f897  
    184184
    185185      <varlistentry>
     186        <term><parameter>--with-glibc-version=2.11</parameter></term>
     187        <listitem>
     188          <para>This option ensures the package will be compatible with the host's
     189          version of glibc.  It is set to the minimum glibc requirement
     190          specified in the <xref linkend="ch-partitioning-hostreqs"/>.</para>
     191        </listitem>
     192      </varlistentry>
     193
     194      <varlistentry>
    186195        <term><parameter>--with-newlib</parameter></term>
    187196        <listitem>
  • chapter06/glibc.xml

    r54a6bc9 r788f897  
    6262<screen><userinput remap="pre">patch -Np1 -i ../&glibc-glob-patch;</userinput></screen>
    6363-->
     64<!-- No longer needed
    6465    <para>Fix a problem introduced with the linux-5.2 kernel:</para>
    6566
    6667<screen><userinput remap="pre">sed -i '/asm.socket.h/a# include &lt;linux/sockios.h&gt;' \
    6768   sysdeps/unix/sysv/linux/bits/socket.h</userinput></screen>
    68 
     69-->
    6970    <para>Create a symlink for LSB
    7071    compliance. Additionally, for x86_64, create a compatibility symlink
  • lfs-latest.php

    r54a6bc9 r788f897  
    121121if ( $package == "mpfr"       ) $dirpath = "http://mpfr.loria.fr/mpfr-current";
    122122if ( $package == "ninja"      ) $dirpath = "https://github.com/ninja-build/ninja/releases";
    123 if ( $package == "procps-ng"  ) $dirpath = "http://sourceforge.net/projects/procps-ng/files";
    124 if ( $package == "psmisc"     ) $dirpath = "http://sourceforge.net/projects/$package/files";
     123//if ( $package == "procps-ng"  ) $dirpath = "http://sourceforge.net/projects/procps-ng/files";
     124if ( $package == "procps-ng"  ) $dirpath = "https://gitlab.com/procps-ng/procps/-/tags";
     125//if ( $package == "psmisc"     ) $dirpath = "http://sourceforge.net/projects/$package/files";
     126if ( $package == "psmisc"     ) $dirpath = "https://gitlab.com/psmisc/psmisc/-/tags";
    125127if ( $package == "shadow"     ) $dirpath = "https://github.com/shadow-maint/shadow/releases";
    126128if ( $package == "systemd"    ) $dirpath = "https://github.com/systemd/systemd/releases";
     
    276278  }
    277279
     280  if ( $package == "procps-ng" )
     281     return find_max( $lines, "/release/", "/^.* ([\d\.]+).*$/" );
     282
     283  if ( $package == "psmisc" )
     284     return find_max( $lines, "/^v/", "/^v([\d\.]+).*$/" );
     285
    278286  if ( $package == "grub" )
    279287     return find_max( $lines, "/grub/", "/^.*grub-(\d\..*).tar.xz.*$/" );
  • packages.ent

    r54a6bc9 r788f897  
    719719<!ENTITY vim-docdir "vim/vim82">
    720720<!ENTITY vim-size "14,406 KB">
    721 <!ENTITY vim-url "https://github.com/vim/vim/archive/v&vim-version;/vim-&vim-version;.tar.gz">
     721<!--<!ENTITY vim-url "https://github.com/vim/vim/archive/v&vim-version;/vim-&vim-version;.tar.gz">-->
     722<!ENTITY vim-url "&anduin-sources;/vim-&vim-version;.tar.gz">
    722723<!ENTITY vim-md5 "f5337b1170df90e644a636539a0313a3">
    723724<!ENTITY vim-home "https://www.vim.org">
Note: See TracChangeset for help on using the changeset viewer.