mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-18 04:57:38 +00:00
512 lines
16 KiB
PHP
512 lines
16 KiB
PHP
#! /usr/bin/php
|
|
<?php
|
|
$dirs = array();
|
|
$vers = array();
|
|
|
|
date_default_timezone_set( "GMT" );
|
|
$date = date( "Y-m-d H:i:s" );
|
|
|
|
// Special cases
|
|
$exceptions = array();
|
|
//$exceptions[ 'gmp' ] = "UPDIR=/.*(gmp-\d[\d\.-]*\d).*/:DOWNDIR=";
|
|
|
|
$regex = array();
|
|
$regex[ 'intltool' ] = "/^.*Latest version is (\d[\d\.]+\d).*$/";
|
|
$regex[ 'less' ] = "/^.*current released version is less-(\d+).*$/";
|
|
$regex[ 'mpfr' ] = "/^mpfr-([\d\.]+)\.tar.*$/";
|
|
$regex[ 'tzdata' ] = "/^.*tzdata([\d]+[a-z]).*$/";
|
|
$regex[ 'xz' ] = "/^.*xz-([\d\.]*\d).*$/";
|
|
$regex[ 'zlib' ] = "/^.*zlib ([\d\.]*\d).*$/";
|
|
|
|
function find_max( $lines, $regex_match, $regex_replace )
|
|
{
|
|
$a = array();
|
|
if ( ! is_array( $lines ) ) return -1;
|
|
|
|
foreach ( $lines as $line )
|
|
{
|
|
if ( ! preg_match( $regex_match, $line ) ) continue;
|
|
|
|
// Isolate the version and put in an array
|
|
$slice = preg_replace( $regex_replace, "$1", $line );
|
|
if ( strcmp( $slice, $line ) == 0 ) continue;
|
|
|
|
array_push( $a, $slice );
|
|
}
|
|
|
|
// SORT_NATURAL requires php-5.4.0 or later
|
|
rsort( $a, SORT_NATURAL ); // Max version is at the top
|
|
return ( isset( $a[0] ) ) ? $a[0] : -2;
|
|
}
|
|
|
|
function find_even_max( $lines, $regex_match, $regex_replace )
|
|
{
|
|
$a = array();
|
|
foreach ( $lines as $line )
|
|
{
|
|
if ( ! preg_match( $regex_match, $line ) ) continue;
|
|
|
|
// Isolate the version and put in an array
|
|
$slice = preg_replace( $regex_replace, "$1", $line );
|
|
|
|
if ( "x$slice" == "x$line" ) continue;
|
|
|
|
// Skip odd numbered minor versions and minors > 80
|
|
list( $major, $minor, $rest ) = explode( ".", $slice . ".0" );
|
|
if ( $minor % 2 == 1 ) continue;
|
|
if ( $minor > 80 ) continue;
|
|
array_push( $a, $slice );
|
|
}
|
|
|
|
rsort( $a, SORT_NATURAL ); // Max version is at the top
|
|
return ( isset( $a[0] ) ) ? $a[0] : -2;
|
|
}
|
|
|
|
function http_get_file( $url )
|
|
{
|
|
if ( preg_match( "/mpfr/", $url ) )
|
|
{
|
|
# There seems to be a problem with the mpfs certificate
|
|
exec( "curl --location --silent --insecure --max-time 30 $url", $dir );
|
|
$s = implode( "\n", $dir );
|
|
$dir = strip_tags( $s );
|
|
return explode( "\n", $dir );
|
|
}
|
|
|
|
if ( preg_match( "/sourceforge/", $url ) ||
|
|
preg_match( "/python/", $url ) ||
|
|
preg_match( "/psmisc/", $url ) )
|
|
{
|
|
exec( "lynx -dump $url 2>/dev/null", $lines );
|
|
return $lines;
|
|
}
|
|
|
|
exec( "curl --location --silent --max-time 30 $url", $dir );
|
|
|
|
$dir = implode( "\n", $dir );
|
|
if ( !preg_match( "/api.github.com/", $url) )
|
|
$dir = strip_tags( $dir );
|
|
return explode( "\n", $dir );
|
|
}
|
|
|
|
function max_parent( $dirpath, $prefix )
|
|
{
|
|
// First, remove a directory
|
|
$dirpath = rtrim ( $dirpath, "/" ); // Trim any trailing slash
|
|
$position = strrpos( $dirpath, "/" );
|
|
$dirpath = substr ( $dirpath, 0, $position );
|
|
|
|
$lines = http_get_file( $dirpath );
|
|
|
|
$regex_match = "#{$prefix}[\d\.]+/#";
|
|
$regex_replace = "#^.*({$prefix}[\d\.]+)/.*$#";
|
|
$max = find_max( $lines, $regex_match, $regex_replace );
|
|
|
|
return "$dirpath/$max";
|
|
}
|
|
|
|
function github( $path )
|
|
{
|
|
return "https://api.github.com/repos/$path/releases/latest";
|
|
}
|
|
|
|
function get_packages( $package, $dirpath )
|
|
{
|
|
global $exceptions;
|
|
global $regex;
|
|
|
|
//if ( $package != "wheel" ) return 0; // debug
|
|
|
|
if ( $package == "bc" ) $dirpath = github("gavinhoward/bc");
|
|
if ( $package == "check" ) $dirpath = github("libcheck/check");
|
|
if ( $package == "e2fsprogs" ) $dirpath = "https://sourceforge.net/projects/e2fsprogs/files/e2fsprogs";
|
|
if ( $package == "expat" ) $dirpath = "https://sourceforge.net/projects/expat/files";
|
|
if ( $package == "elfutils" ) $dirpath = "https://sourceware.org/ftp/elfutils";
|
|
if ( $package == "expect" ) $dirpath = "https://sourceforge.net/projects/expect/files";
|
|
if ( $package == "file" ) $dirpath = "https://github.com/file/file/tags";
|
|
if ( $package == "flex" ) $dirpath = github("westes/flex");
|
|
if ( $package == "flit_core" ) $dirpath = "https://pypi.org/rss/project/flit-core/releases.xml";
|
|
if ( $package == "gcc" ) $dirpath = max_parent( $dirpath, "gcc-" );
|
|
if ( $package == "iana-etc" ) $dirpath = github("Mic92/iana-etc");
|
|
if ( $package == "intltool" ) $dirpath = "https://launchpad.net/intltool/trunk";
|
|
if ( $package == "jinja" ) $dirpath = "https://pypi.org/rss/project/jinja2/releases.xml";
|
|
if ( $package == "libffi" ) $dirpath = github("libffi/libffi");
|
|
if ( $package == "libxcrypt" ) $dirpath = github("besser82/libxcrypt");
|
|
if ( $package == "lz4" ) $dirpath = github("lz4/lz4");
|
|
if ( $package == "markupsafe" ) $dirpath = "https://pypi.org/rss/project/markupsafe/releases.xml";
|
|
if ( $package == "meson" ) $dirpath = github("mesonbuild/meson");
|
|
if ( $package == "mpc" ) $dirpath = "https://ftp.gnu.org/gnu/mpc";
|
|
if ( $package == "mpfr" ) $dirpath = "https://mpfr.loria.fr/mpfr-current";
|
|
if ( $package == "ncurses" ) $dirpath = "https://invisible-mirror.net/archives/ncurses";
|
|
if ( $package == "ninja" ) $dirpath = github("ninja-build/ninja");
|
|
if ( $package == "openssl" ) $dirpath = github("openssl/openssl");
|
|
if ( $package == "procps-ng" ) $dirpath = "https://gitlab.com/procps-ng/procps/-/tags";
|
|
if ( $package == "psmisc" ) $dirpath = "https://gitlab.com/psmisc/psmisc/-/tags";
|
|
if ( $package == "Python" ) $dirpath = "https://www.python.org/downloads/source/";
|
|
if ( $package == "setuptools" ) $dirpath = "https://pypi.org/rss/project/setuptools/releases.xml";
|
|
if ( $package == "shadow" ) $dirpath = github("shadow-maint/shadow");
|
|
if ( $package == "sysvinit" ) $dirpath = github("slicer69/sysvinit");
|
|
if ( $package == "sysklogd" ) $dirpath = github("troglobit/sysklogd");
|
|
if ( $package == "systemd" ) $dirpath = github("systemd/systemd");
|
|
if ( $package == "tcl" ) $dirpath = "https://www.tcl.tk/software/tcltk/download.html";
|
|
if ( $package == "util-linux" ) $dirpath = max_parent( $dirpath, "v." );
|
|
if ( $package == "vim" ) $dirpath = "https://github.com/vim/vim/tags";
|
|
if ( $package == "wheel" ) $dirpath = "https://pypi.org/rss/project/wheel/releases.xml";
|
|
if ( $package == "xz" ) $dirpath = github("tukaani-project/xz");
|
|
if ( $package == "zlib" ) $dirpath = "https://www.zlib.net";
|
|
if ( $package == "zstd" ) $dirpath = github("facebook/zstd");
|
|
|
|
// Check for ftp
|
|
if ( preg_match( "/^ftp/", $dirpath ) )
|
|
{
|
|
echo "ftp should not occur\n";
|
|
}
|
|
else // http(s)
|
|
{
|
|
// Customize http directories as needed
|
|
if ( $package == "tzdata" )
|
|
{
|
|
// Remove two directories
|
|
$dirpath = rtrim ( $dirpath, "/" ); // Trim any trailing slash
|
|
$position = strrpos( $dirpath, "/" );
|
|
$dirpath = substr ( $dirpath, 0, $position );
|
|
$position = strrpos( $dirpath, "/" );
|
|
$dirpath = substr ( $dirpath, 0, $position );
|
|
}
|
|
|
|
$lines = http_get_file( $dirpath );
|
|
if ( ! is_array( $lines ) ) return -6;
|
|
} // End fetch
|
|
|
|
if ( isset( $regex[ $package ] ) )
|
|
{
|
|
// Custom search for latest package name
|
|
foreach ( $lines as $l )
|
|
{
|
|
$ver = preg_replace( $regex[ $package ], "$1", $l );
|
|
if ( $ver == $l ) continue;
|
|
return $ver; // Return first match of regex
|
|
}
|
|
|
|
return -7; // This is an error
|
|
}
|
|
|
|
if ( $package == "perl" ) // Custom for perl
|
|
{
|
|
$tmp = array();
|
|
|
|
foreach ( $lines as $l )
|
|
{
|
|
if ( preg_match( "/sperl/", $l ) ) continue; // Don't want this
|
|
$ver = preg_replace( "/^.*perl-([\d\.]+\d)\.tar.*$/", "$1", $l );
|
|
if ( $ver == $l ) continue;
|
|
list( $s1, $s2, $rest ) = explode( ".", $ver );
|
|
if ( $s2 % 2 == 1 ) continue; // Remove odd minor versions
|
|
array_push( $tmp, $l );
|
|
}
|
|
|
|
$lines = $tmp;
|
|
}
|
|
|
|
if ( $package == "attr" ||
|
|
$package == "acl" )
|
|
{
|
|
return find_max( $lines, "/$package/", "/^.*$package-([\d\.-]*\d).tar.*$/" );
|
|
}
|
|
|
|
if ( $package == "e2fsprogs" )
|
|
return find_max( $lines, "/v\d/", "/^.*v(\d[\d\.]+\d).*$/" );
|
|
|
|
if ( $package == "expect" )
|
|
return find_max( $lines, "/expect/", "/^.*expect(\d[\d\.]+\d).tar.*$/" );
|
|
|
|
if ( $package == "elfutils" )
|
|
return find_max( $lines, "/^\d/", "/^(\d[\d\.]+\d)\/.*$/" );
|
|
|
|
if ( $package == "XML-Parser" )
|
|
{
|
|
$max = find_max( $lines, "/$package/", "/^.*$package-([\d\._]*\d).tar.*$/" );
|
|
# 2.44_01 is a developer release
|
|
if ( $max == "2.44_01" ) { return "2.44"; }
|
|
return $max;
|
|
}
|
|
|
|
if ( $package == "tcl" )
|
|
return find_max( $lines, "/tcl\d/", "/^.*tcl(\d\.[\d\.]*\d)-src.*$/" );
|
|
|
|
if ( $package == "gmp" )
|
|
return find_max( $lines, "/$package/", "/^.*$package-([\d\._]*\d[a-z]?).tar.*$/" );
|
|
|
|
if ( $package == "dbus" )
|
|
return find_even_max( $lines, "/$package/", "/^.*$package-([\d\.]+).tar.*$/" );
|
|
|
|
if ( $package == "file" )
|
|
{
|
|
$max = find_max( $lines, "/FILE5/", "/^.*FILE(5_\d+)*$/" );
|
|
return str_replace( "_", ".", $max );
|
|
}
|
|
|
|
# Python modules
|
|
if ( $package == "flit_core" )
|
|
return find_max( $lines, "/flit-core\/\d/", "/^.*flit-core\/([\d\.]+).*$/" );
|
|
|
|
if ( $package == "setuptools" )
|
|
return find_max( $lines, "/setuptools\/\d/", "/^.*setuptools\/([\d\.]+).*$/" );
|
|
|
|
if ( $package == "markupsafe" )
|
|
return find_max( $lines, "/markupsafe\/\d/", "/^.*markupsafe\/([\d\.]+).*$/" );
|
|
|
|
if ( $package == "jinja" )
|
|
return find_max( $lines, "/jinja2\/\d/", "/^.*jinja2\/([\d\.]+).*$/" );
|
|
|
|
if ( $package == "wheel" )
|
|
return find_max( $lines, "/wheel\/\d/", "/^.*wheel\/([\d\.]+).*$/" );
|
|
# End Python modules
|
|
|
|
if ( $package == "procps-ng" )
|
|
return find_max( $lines, "/v\d/", "/^.*v([\d\.]+)$/" );
|
|
|
|
if ( $package == "psmisc" )
|
|
return find_max( $lines, "/v\d/", "/^.*v([\d\.]+)$/" );
|
|
|
|
if ( $package == "grub" )
|
|
return find_max( $lines, "/grub/", "/^.*grub-([\d\.]+).tar.xz.*$/" );
|
|
|
|
if ( $package == "lz4" )
|
|
return find_max( $lines, "/tag_name/", '/^.*v([\d\.]+).*$/' );
|
|
|
|
if ( $package == "openssl" )
|
|
return find_max( $lines, "/name.:/", "/^.*OpenSSL ([\d\.]+\d).*$/" );
|
|
|
|
if ( $package == "Python" )
|
|
return find_max( $lines, "/Python 3/", "/^.*Python (3[\d\.]*\d) .*$/" );
|
|
|
|
if ( $package == "vim" )
|
|
return find_max( $lines, "/v\d\./", "/^.*v([\d\.]+).*$/" );
|
|
|
|
if ( preg_match( "/api.github.com/", $dirpath) )
|
|
return ltrim(json_decode(join("", $lines))->tag_name, "v");
|
|
|
|
// Most packages are in the form $package-n.n.n
|
|
// Occasionally there are dashes (e.g. 201-1)
|
|
return find_max( $lines, "/$package/", "/^.*$package-([\d\.-]*\d)\.tar.*$/" );
|
|
}
|
|
|
|
function get_current()
|
|
{
|
|
global $dirs;
|
|
global $vers;
|
|
|
|
// Fetech from git and get wget-list
|
|
$current = array();
|
|
$lfsgit = "https://git.linuxfromscratch.org/lfs.git";
|
|
|
|
$tmpdir = exec( "mktemp -d /tmp/lfscheck.XXXXXX" );
|
|
$cdir = getcwd();
|
|
chdir( $tmpdir );
|
|
|
|
# git-version.sh needs the history since the rx.y tag.
|
|
exec ( "git clone $lfsgit LFS --depth 1 --branch r11.2" );
|
|
exec ( "git -C LFS pull origin trunk" );
|
|
|
|
# Make version.ent
|
|
chdir( "$tmpdir/LFS" );
|
|
exec ( "./git-version.sh systemd" );
|
|
|
|
chdir( $cdir );
|
|
|
|
$PAGE = "$tmpdir/LFS/chapter03/chapter03.xml";
|
|
$STYLESHEET = "$tmpdir/LFS/stylesheets/wget-list.xsl";
|
|
|
|
exec( "xsltproc --xinclude --nonet $STYLESHEET $PAGE", $current );
|
|
exec( "rm -rf $tmpdir" );
|
|
|
|
foreach ( $current as $line )
|
|
{
|
|
$file = basename( $line ) . "\n";
|
|
if ( preg_match( "/patch$/", $file ) ) { continue; } // Skip patches
|
|
|
|
$file = preg_replace( "/bz2/", '', $file ); // The 2 confuses the regex
|
|
|
|
$file = rtrim( $file );
|
|
$pkg_pattern = "/(\D*).*/";
|
|
$pattern = "/\D*(\d.*\d)\D*/";
|
|
|
|
if ( preg_match( "/e2fsprogs/", $file ) )
|
|
{
|
|
$pattern = "/e2\D*(\d.*\d)\D*/";
|
|
$pkg_pattern = "/(e2\D*).*/";
|
|
}
|
|
|
|
else if ( preg_match( "/tzdata/", $file ) )
|
|
{
|
|
$pattern = "/\D*(\d.*[a-z])\.tar\D*/";
|
|
}
|
|
|
|
else if ( preg_match( "/openssl/", $file ) )
|
|
{
|
|
$pattern = "/\D*(\d.*\d.*).tar.*$/";
|
|
}
|
|
|
|
else if ( preg_match( "/gmp/", $file ) )
|
|
{
|
|
$pattern = "/\D*(\d.*[a-z]*)\.tar\D*/";
|
|
}
|
|
|
|
else if ( preg_match( "/lz4/", $file ) )
|
|
{
|
|
$pkg_pattern= "/(\D*4).*/";
|
|
}
|
|
|
|
else if ( preg_match( "/systemd-man-pages/", $file ) ) continue;
|
|
else if ( preg_match( "/python/" , $file ) ) continue;
|
|
|
|
$version = preg_replace( $pattern, "$1", $file ); // Isolate version
|
|
$version = preg_replace( "/^\d-/", "", $version ); // Remove leading #-
|
|
|
|
// Touch up package names
|
|
$pkg_name = preg_replace( $pkg_pattern, "$1", $file );
|
|
$pkg_name = trim( $pkg_name, "-" );
|
|
|
|
if ( preg_match( "/bzip|iproute/", $pkg_name ) ) { $pkg_name .= "2"; }
|
|
if ( preg_match( "/^m$/" , $pkg_name ) ) { $pkg_name .= "4"; }
|
|
if ( preg_match( "/shadow/" , $pkg_name ) ) { $pkg_name = "shadow"; }
|
|
|
|
$dirs[ $pkg_name ] = dirname( $line );
|
|
$vers[ $pkg_name ] = $version;
|
|
}
|
|
}
|
|
|
|
function mail_to_lfs()
|
|
{
|
|
global $date;
|
|
global $vers;
|
|
global $dirs;
|
|
|
|
$to = "lfs-book@lists.linuxfromscratch.org";
|
|
$from = "bdubbs@linuxfromscratch.org";
|
|
$subject = "LFS Package Currency Check - $date GMT";
|
|
$headers = "From: bdubbs@linuxfromscratch.org";
|
|
|
|
$message = "Package LFS Upstream Flag\n\n";
|
|
|
|
foreach ( $dirs as $pkg => $dir )
|
|
{
|
|
//if ( $pkg != "gmp" ) continue; //debug
|
|
$v = get_packages( $pkg, $dir );
|
|
|
|
$flag = ( $vers[ $pkg ] != $v ) ? "*" : "";
|
|
|
|
// Pad for output
|
|
$pad = " ";
|
|
$p = substr( $pkg . $pad, 0, 15 );
|
|
$l = substr( $vers[ $pkg ] . $pad, 0, 10 );
|
|
$c = substr( $v . $pad, 0, 10 );
|
|
|
|
$message .= "$p $l $c $flag\n";
|
|
}
|
|
|
|
exec ( "echo '$message' | mailx -r $from -s '$subject' $to" );
|
|
}
|
|
|
|
function html()
|
|
{
|
|
|
|
global $date;
|
|
global $vers;
|
|
global $dirs;
|
|
|
|
echo "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
|
|
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
|
|
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>
|
|
<head>
|
|
<title>LFS Package Currency Check - $date</title>
|
|
<style type='text/css'>
|
|
h1, h2 {
|
|
text-align : center;
|
|
}
|
|
|
|
table {
|
|
border-width : 1px;
|
|
border-spacing : 0px;
|
|
border-style : outset;
|
|
border-color : gray;
|
|
border-collapse : separate;
|
|
background-color: white;
|
|
margin : 0px auto;
|
|
}
|
|
|
|
table th {
|
|
border-width : 1px;
|
|
padding : 2px;
|
|
border-style : inset;
|
|
border-color : gray;
|
|
background-color: white;
|
|
}
|
|
|
|
table td {
|
|
border-width : 1px;
|
|
padding : 2px;
|
|
border-style : inset;
|
|
border-color : gray;
|
|
background-color: white;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
<h1>LFS Package Currency Check</h1>
|
|
<h2>As of $date GMT</h1>
|
|
|
|
<table>
|
|
<tr><th>LFS Package</th> <th>LFS Version</th> <th>Latest</th> <th>Flag</th></tr>\n";
|
|
|
|
// Get the latest version of each package
|
|
foreach ( $dirs as $pkg => $dir )
|
|
{
|
|
$v = get_packages( $pkg, $dir );
|
|
$flag = ( $vers[ $pkg ] != $v ) ? "*" : "";
|
|
echo "<tr><td>$pkg</td> <td>{$vers[ $pkg ]}</td> <td>$v</td> <td>$flag</td></tr>\n";
|
|
}
|
|
|
|
echo "</table>
|
|
</body>
|
|
</html>\n";
|
|
|
|
}
|
|
|
|
function write_to_stdout()
|
|
{
|
|
|
|
global $date;
|
|
global $vers;
|
|
global $dirs;
|
|
|
|
echo "
|
|
LFS Package Currency Check
|
|
As of $date GMT
|
|
|
|
LFS Package LFS Version Latest Flag\n";
|
|
|
|
// Get the latest version of each package
|
|
foreach ( $dirs as $pkg => $dir )
|
|
{
|
|
$p_name = sprintf( "%-15s", $pkg ); // package name formatted
|
|
|
|
$b_version = $vers[ $pkg ]; // book version
|
|
$b_string = sprintf( "%-11s", $b_version ); // book version formatted
|
|
|
|
$latest = get_packages( $pkg, $dir ); // latest version
|
|
$l_string = sprintf( "%-6s", $latest ); // latest version formatted
|
|
|
|
$flag = ( $b_version != $latest ) ? "*" : "";
|
|
echo "$p_name $b_string $l_string $flag\n";
|
|
}
|
|
}
|
|
|
|
get_current(); // Get what is in the book
|
|
mail_to_lfs();
|
|
//html(); // Write html output
|
|
//write_to_stdout(); // For debugging
|
|
?>
|