| /buildroot/support/dependencies/ |
| A D | check-host-tar.sh | 18 version=`$tar --version | head -n 1 | sed 's/^.*\s\([0-9]\+\.\S\+\).*$/\1/'` 19 major=`echo "$version" | cut -d. -f1` 20 minor=`echo "$version" | cut -d. -f2` 21 bugfix=`echo "$version" | cut -d. -f3` 22 version_bsd=`$tar --version | grep 'bsdtar'`
|
| A D | check-host-make.sh | 20 version=`$make --version 2>&1 | sed -e 's/^.* \([0-9\.]\)/\1/g' -e 's/[-\ 23 major=`echo "$version" | cut -d. -f1` 24 minor=`echo "$version" | cut -d. -f2`
|
| A D | check-host-asciidoc.sh | 13 version=`$asciidoc --version | cut -d\ -f2` 14 major=`echo "$version" | cut -d. -f1` 15 minor=`echo "$version" | cut -d. -f2` 16 bugfix=`echo "$version" | cut -d. -f3`
|
| A D | check-host-gzip.sh | 13 version="$("${gzip}" --version 2>&1)" 14 case "${version}" in
|
| A D | check-host-python3.sh | 21 version=`$python3 -V 2>&1 | awk '{ split($2, v, "."); print v[1] v[2] }'` 23 if [ $version -lt $version_min ]; then
|
| A D | check-host-cmake.sh | 26 version="$(${cmake} --version \ 30 [ -n "${version}" ] || continue
|
| /buildroot/package/w_scan/ |
| A D | 0001-musl.patch | 16 diff -uNr w_scan-20141122.org/version.h w_scan-20141122/version.h 17 --- w_scan-20141122.org/version.h 2014-11-22 11:59:56.000000000 +0100 18 +++ w_scan-20141122/version.h 2016-01-24 14:06:33.000000000 +0100 23 -uint version=20170107; 24 +unsigned int version=20170107;
|
| /buildroot/package/wilc-firmware/ |
| A D | Config.in | 13 Ideally, the firmware version should match driver version. 15 of driver version. 28 Ideally, the firmware version should match driver version. 30 of driver version.
|
| /buildroot/package/autoconf/ |
| A D | 0001-dont-add-dirty-to-version.patch | 1 autoconf: don't append -dirty to version 3 Don't append -dirty to autoconf version number if the buildroot git tree 10 The affect is that autoconf gets built as being version 2.65-dirty, which 17 diff -Nura autoconf-2.69.orig/build-aux/git-version-gen autoconf-2.69/build-aux/git-version-gen 18 --- autoconf-2.69.orig/build-aux/git-version-gen 2013-06-27 11:31:02.340200154 -0300 19 +++ autoconf-2.69/build-aux/git-version-gen 2013-06-27 11:31:13.734577033 -0300
|
| /buildroot/support/scripts/ |
| A D | cve.py | 22 import distutils.version 138 version = cpe_version(cpe['criteria']) 147 if version != '*' and version != '-': 150 v_start = version 193 def affects(self, name, version, cve_ignore_list, cpeid=None): argument 201 pkg_version = distutils.version.LooseVersion(version) 203 print("Cannot parse package '%s' version '%s'" % (name, version)) 208 cpeid = "cpe:2.3:*:*:%s:%s:*:*:*:*:*:*:*" % (name, version) 213 pkg_version = distutils.version.LooseVersion(cpe_version(cpeid)) 225 cve_affected_version = distutils.version.LooseVersion(cpe['v_start']) [all …]
|
| /buildroot/package/intltool/ |
| A D | 0001-perl-5.26-compatibility.patch | 26 $version =~ s/\(+$//g; 30 - $varhash{"PACKAGE_VERSION"} = $version if (not $name =~ /\${?AC_PACKAGE_VERSION}?/); 31 - $varhash{"VERSION"} = $version if (not $name =~ /\${?VERSION}?/); 34 + $varhash{"PACKAGE_VERSION"} = $version if (not $name =~ /\$\{?AC_PACKAGE_VERSION}?/); 35 + $varhash{"VERSION"} = $version if (not $name =~ /\$\{?VERSION}?/); 40 $version =~ s/\(+$//g; 45 - $varhash{"PACKAGE_VERSION"} = $version if (not $name =~ /\${?AC_PACKAGE_VERSION}?/); 46 - $varhash{"VERSION"} = $version if (not $name =~ /\${?VERSION}?/); 50 + $varhash{"PACKAGE_VERSION"} = $version if (not $name =~ /\$\{?AC_PACKAGE_VERSION}?/); 51 + $varhash{"VERSION"} = $version if (not $name =~ /\$\{?VERSION}?/);
|
| /buildroot/package/vala/ |
| A D | 0001-dont-add-dirty-to-valac-version.patch | 1 valac: don't append -dirty to version 3 Don't append -dirty to the valac version number if the Buildroot Git 10 The effect is that valac gets built as being version x.y.z-dirty, which 16 diff -Nur a/build-aux/git-version-gen b/build-aux/git-version-gen 17 --- a/build-aux/git-version-gen 2010-08-15 12:49:03.000000000 +0100 18 +++ b/build-aux/git-version-gen 2012-05-14 10:17:19.977204570 +0100
|
| /buildroot/package/mraa/ |
| A D | 0001-include-Declare-gVERSION-global-as-extern.patch | 13 include/version.h | 4 ++-- 16 diff --git a/include/version.h b/include/version.h 18 --- a/include/version.h 19 +++ b/include/version.h
|
| /buildroot/package/python-pyzmq/ |
| A D | 0001-detect.py-fix-the-ZMQ-version-check-to-the-ZMQ-versi.patch | 4 Subject: [PATCH] detect.py: fix the ZMQ version check to the ZMQ version of 8 retrieve a version string for the installed ZMQ library, but if the cross 13 the library version inside buildroot but with the library from the 14 host, possibly returning a wrong version number. 16 Instead of trying to run the compiled test program to get the version 17 dynamically, return the version of the buildroot environment. 19 Written by Michael Rommel, modified for version 16.0.2 by Lionel 22 Modified for version 18.0.2 by Asaf Kahlon 24 Modified for version 24.0.1 by James Hilliard 52 - msg = f"Error running version detection script:\n{so}\n{se}" [all …]
|
| /buildroot/package/pkgconf/ |
| A D | 0002-Revert-main-assume-modversion-insted-of-version-if-o.patch | 4 Subject: [PATCH] Revert "main: assume --modversion insted of --version if 9 simple as 'pkg-config --static --version' is used, leading to a 11 --version". 28 - fprintf(stderr, "%s: --version specified with other options or module names, assuming --modvers… 35 - version(); 38 + version();
|
| /buildroot/package/zic/ |
| A D | 0001-remove-dependency-check-on-version-file.patch | 4 Subject: [PATCH] remove dependency check on version file 8 to $(VERSION_DEPS) since it is not necessary to check for version updates 23 # a 'version' file, in which case reuse the existing 'version' contents 25 -version: $(VERSION_DEPS) 26 +version:
|
| /buildroot/package/sdl/ |
| A D | 0001-use-correct-directfb-config.patch | 1 [PATCH] configure.in: use correct directfb-config in version check 4 script, so also use it for the version check instead of whatever 20 - set -- `directfb-config --version | sed 's/\./ /g'` 21 + set -- `$DIRECTFBCONFIG --version | sed 's/\./ /g'`
|
| /buildroot/package/spidev_test/ |
| A D | Config.in | 11 The version used is based on your toolchain headers version, 13 version 4.10 is used and otherwise version 5.8.
|
| /buildroot/package/libodb-mysql/ |
| A D | 0002-mariadb-FTBFS-fix.patch | 17 odb/mysql/version.hxx | 2 +- 36 diff --git a/odb/mysql/version.hxx b/odb/mysql/version.hxx 38 --- a/odb/mysql/version.hxx 39 +++ b/odb/mysql/version.hxx 48 #include <odb/version.hxx>
|
| /buildroot/package/sentry-cli/ |
| A D | 0001-Disable-SSL-support-for-the-curl-module.patch | 23 @@ -1521,15 +1521,6 @@ version = "0.1.5" 29 -version = "111.25.0+1.1.1t" 38 version = "0.9.80" 51 @@ -25,7 +25,7 @@ clap = { version = "4.1.6", default-features = false, features = [ 55 -curl = { version = "0.4.44", features = ["static-curl", "static-ssl"] } 56 +curl = { version = "0.4.44" }
|
| /buildroot/package/libsepol/ |
| A D | Config.in | 14 int "Policy version" 23 The maximum SELinux policy version your kernel supports. 26 kernel version SElinux policy max version
|
| /buildroot/package/python-pysensors/ |
| A D | Config.in | 6 via ctypes. Supports API version 4, i.e. libsensors version
|
| /buildroot/package/python-pathtools/ |
| A D | 0001-replace-imp.patch | 34 -version = imp.load_source('version', 35 - os.path.join(PKG_DIR, 'version.py')) 48 +version = load_source('version', 49 + os.path.join(PKG_DIR, 'version.py'))
|
| /buildroot/package/exim/ |
| A D | 0003-Skip-version-check-and-symlink-installation.patch | 1 The exim install script installs a binary named exim-<version>, plus a symlink 4 executable (on the host) and then filters its output to grab the version number. 36 - version=exim-`$exim 2>/dev/null | \ 37 - awk '/Exim version/ { OFS=""; print $3,"-",substr($4,2,length($4)-1) }'`${EXE} 38 + version=exim 40 if [ "${version}" = "exim-${EXE}" ]; then
|
| /buildroot/package/mkpimage/ |
| A D | mkpimage.c | 26 uint8_t version; member 175 static int add_socfpga_header(void *buf, size_t size, unsigned start_addr, unsigned version) in add_socfpga_header() argument 190 if (version == 0) { in add_socfpga_header() 212 header->version = version; in add_socfpga_header() 215 if (version == 0) { in add_socfpga_header() 241 if (version == 0) { in add_socfpga_header() 271 unsigned int version = 0; in main() local 276 version = atoi(optarg); in main() 277 if (version > 1) { in main() 299 if (version == 0) { in main() [all …]
|