| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 |
- <?php
- /* Update Zint version number in various files */
- /*
- libzint - the open source barcode library
- Copyright (C) 2020-2024 Robin Stuart <rstuart114@gmail.com>
- */
- /* SPDX-License-Identifier: BSD-3-Clause */
- /* Run from project directory
- *
- * php tools/update_version.php ZINT_VERSION_MAJOR ZINT_VERSION_MINOR ZINT_VERSION_RELEASE [ZINT_VERSION_BUILD]
- *
- * e.g. before release
- * php tools/update_version.php 3 4 5
- * cd docs; make
- * after release
- * php tools/update_version.php 3 4 5 9
- * cd docs; make
- */
- $basename = basename(__FILE__);
- $dirname = dirname(__FILE__);
- $data_dirname = $dirname . '/../';
- if ($argc < 4) {
- exit("$basename: ZINT_VERSION_MAJOR ZINT_VERSION_MINOR ZINT_VERSION_RELEASE [ZINT_VERSION_BUILD]" . PHP_EOL);
- }
- $major = $argv[1];
- $minor = $argv[2];
- $release = $argv[3];
- $build = $argc > 4 ? $argv[4] : "0";
- if (!ctype_digit($major) || !ctype_digit($minor) || !ctype_digit($release) || !ctype_digit($build)) {
- exit("$basename: ZINT_VERSION_MAJOR ZINT_VERSION_MINOR ZINT_VERSION_RELEASE [ZINT_VERSION_BUILD] must be numeric" . PHP_EOL);
- }
- $major = (int) $major;
- $minor = (int) $minor;
- $release = (int) $release;
- $build = (int) $build;
- if ($major === 0) {
- exit("$basename: ZINT_VERSION_MAJOR zero" . PHP_EOL);
- }
- if ($build && $build !== 9) {
- exit("$basename: ZINT_VERSION_BUILD not 9" . PHP_EOL);
- }
- $v_base_str = $v_str = "$major.$minor.$release";
- if ($build) {
- $v_str .= ".$build";
- }
- $v_str_dev = $build ? $v_str . ' (dev)' : $v_str;
- $rc_str1 = "$major,$minor,$release,$build";
- $rc_str2 = "$major.$minor.$release.$build";
- $year = date("Y");
- /* `$to_do` is no. of lines that should get replaced/changed, not no. of replacements */
- function version_replace($to_do, $file, $match_pattern, $replace_pattern, $replace_str) {
- global $basename;
- if (($get = file_get_contents($file)) === false) {
- exit("$basename: ERROR: Could not read file \"$file\"" . PHP_EOL);
- }
- $lines = explode("\n", $get);
- $done = 0;
- foreach ($lines as $li => $line) {
- if (preg_match($match_pattern, $line)) {
- $cnt = 0;
- $lines[$li] = preg_replace($replace_pattern, $replace_str, $line, -1, $cnt);
- if ($cnt === 0 || $lines[$li] === NULL) {
- exit("$basename: ERROR: Could not replace \"$match_pattern\" in file \"$file\"" . PHP_EOL);
- }
- $done++;
- }
- if ($done === $to_do) {
- break;
- }
- }
- if ($done !== $to_do) {
- exit("$basename: ERROR: Only did $done replacements of $to_do in file \"$file\"" . PHP_EOL);
- }
- if (!file_put_contents($file, implode("\n", $lines))) {
- exit("$basename: ERROR: Could not write file \"$file\"" . PHP_EOL);
- }
- }
- function rc_replace($file, $rc_str1, $rc_str2, $year = '') {
- global $basename;
- if (($get = file_get_contents($file)) === false) {
- exit("$basename: ERROR: Could not read file \"$file\"" . PHP_EOL);
- }
- $match_pattern1 = '/#define[ \t]+VER_FILEVERSION[ \t]+/';
- $match_pattern2 = '/#define[ \t]+VER_FILEVERSION_STR[ \t]+/';
- $lines = explode("\n", $get);
- $done = 0;
- foreach ($lines as $li => $line) {
- if (preg_match($match_pattern1, $line)) {
- $cnt = 0;
- $lines[$li] = preg_replace('/[0-9,]+/', $rc_str1, $line, 1, $cnt);
- if ($cnt === 0 || $lines[$li] === NULL) {
- exit("$basename: ERROR: Could not replace \"$match_pattern1\" in file \"$file\"" . PHP_EOL);
- }
- $done++;
- } else if (preg_match($match_pattern2, $line)) {
- $cnt = 0;
- $lines[$li] = preg_replace('/[0-9.]+/', $rc_str2, $line, 1, $cnt);
- if ($cnt === 0 || $lines[$li] === NULL) {
- exit("$basename: ERROR: Could not replace \"$match_pattern2\" in file \"$file\"" . PHP_EOL);
- }
- $done++;
- }
- if ($done === 2) {
- break;
- }
- }
- if ($done !== 2) {
- exit("$basename: ERROR: Only did $done replacements of 2 in file \"$file\"" . PHP_EOL);
- }
- if ($year !== '') {
- $match_pattern = '/VALUE[ \t]+"LegalCopyright",[ \t]+"Copyright /';
- $done = 0;
- foreach ($lines as $li => $line) {
- if (preg_match($match_pattern, $line)) {
- $cnt = 0;
- $lines[$li] = preg_replace('/[0-9]+/', $year, $line, 1, $cnt);
- if ($cnt === 0 || $lines[$li] === NULL) {
- exit("$basename: ERROR: Could not replace \"$match_pattern\" in file \"$file\"" . PHP_EOL);
- }
- $done++;
- break;
- }
- }
- if ($done !== 1) {
- exit("$basename: ERROR: Failed to replace Copyright year in file \"$file\"" . PHP_EOL);
- }
- }
- if (!file_put_contents($file, implode("\n", $lines))) {
- exit("$basename: ERROR: Could not write file \"$file\"" . PHP_EOL);
- }
- }
- function year_replace($file, $year) {
- global $basename;
- if (($get = file_get_contents($file)) === false) {
- exit("$basename: ERROR: Could not read file \"$file\"" . PHP_EOL);
- }
- $match_pattern = '/Copyright /';
- $lines = explode("\n", $get);
- $done = 0;
- foreach ($lines as $li => $line) {
- if (preg_match($match_pattern, $line)) {
- $cnt = 0;
- $lines[$li] = preg_replace('/[0-9]+/', $year, $line, 1, $cnt);
- if ($cnt === 0 || $lines[$li] === NULL) {
- exit("$basename: ERROR: Could not replace \"$match_pattern\" in file \"$file\"" . PHP_EOL);
- }
- $done++;
- break;
- }
- }
- if ($done !== 1) {
- exit("$basename: ERROR: Failed to replace Copyright year in file \"$file\"" . PHP_EOL);
- }
- if (!file_put_contents($file, implode("\n", $lines))) {
- exit("$basename: ERROR: Could not write file \"$file\"" . PHP_EOL);
- }
- }
- // CMakeLists.txt
- $file = $data_dirname . 'CMakeLists.txt';
- if (($get = file_get_contents($file)) === false) {
- exit("$basename: ERROR: Could not read file \"$file\"" . PHP_EOL);
- }
- $lines = explode("\n", $get);
- $done = 0;
- foreach ($lines as $li => $line) {
- if (preg_match('/\(ZINT_VERSION_(MAJOR|MINOR|RELEASE|BUILD)/', $line, $matches)) {
- $cnt = 0;
- $mmr = $matches[1] === "MAJOR" ? $major : ($matches[1] === "MINOR" ? $minor : ($matches[1] === "RELEASE" ? $release : $build));
- $lines[$li] = preg_replace('/[0-9]+\)/', $mmr . ')', $line, 1, $cnt);
- if ($cnt === 0 || $lines[$li] === NULL) {
- exit("$basename: ERROR: Could not replace ZINT_VERSION_{$matches[1]} in file \"$file\"" . PHP_EOL);
- }
- $done++;
- }
- if ($done === 4) {
- break;
- }
- }
- if ($done !== 4) {
- exit("$basename: ERROR: Only did $done replacements of 4 in file \"$file\"" . PHP_EOL);
- }
- if (!file_put_contents($file, implode("\n", $lines))) {
- exit("$basename: ERROR: Could not write file \"$file\"" . PHP_EOL);
- }
- // README
- year_replace($data_dirname . 'README', $year);
- // README.linux
- version_replace(4, $data_dirname . 'README.linux', '/zint-[0-9]/', '/[0-9][0-9.]+/', $v_base_str);
- // zint.spec
- version_replace(1, $data_dirname . 'zint.spec', '/^Version:/', '/[0-9.]+/', $v_base_str);
- // zint.nsi
- version_replace(1, $data_dirname . 'zint.nsi', '/^!define +PRODUCT_VERSION/', '/"[0-9.]+"/', '"' . $v_str . '"');
- // backend/libzint.rc
- rc_replace($data_dirname . 'backend/libzint.rc', $rc_str1, $rc_str2, $year);
- // backend/zint.h
- version_replace(1, $data_dirname . 'backend/zint.h', '/^ \* Version: /', '/[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?( \(dev\))?/', $v_str_dev);
- // backend/zintconfig.h
- $file = $data_dirname . 'backend/zintconfig.h';
- if (($get = file_get_contents($file)) === false) {
- exit("$basename: ERROR: Could not read file \"$file\"" . PHP_EOL);
- }
- $lines = explode("\n", $get);
- $done = 0;
- foreach ($lines as $li => $line) {
- if (preg_match('/define[ \t]+ZINT_VERSION_(MAJOR|MINOR|RELEASE)[ \t]+/', $line, $matches)) {
- $cnt = 0;
- $mmr = $matches[1] === "MAJOR" ? $major : ($matches[1] === "MINOR" ? $minor : $release);
- $lines[$li] = preg_replace('/[0-9]+/', $mmr, $line, 1, $cnt);
- if ($cnt === 0 || $lines[$li] === NULL) {
- exit("$basename: ERROR: Could not replace ZINT_VERSION_{$matches[1]} in file \"$file\"" . PHP_EOL);
- }
- $done++;
- } elseif (preg_match('/define[ \t]+ZINT_VERSION_BUILD[ \t]+/', $line)) {
- $cnt = 0;
- $lines[$li] = preg_replace('/(BUILD[ \t]+)[0-9]+/', '${1}' . $build, $line, 1, $cnt);
- if ($cnt === 0 || $lines[$li] === NULL) {
- exit("$basename: ERROR: Could not replace ZINT_VERSION_BUILD in file \"$file\"" . PHP_EOL);
- }
- $done++;
- }
- if ($done === 4) {
- break;
- }
- }
- if ($done !== 4) {
- exit("$basename: ERROR: Only did $done replacements of 4 in file \"$file\"" . PHP_EOL);
- }
- if (!file_put_contents($file, implode("\n", $lines))) {
- exit("$basename: ERROR: Could not write file \"$file\"" . PHP_EOL);
- }
- // backend/Makefile.mingw
- version_replace(1, $data_dirname . 'backend/Makefile.mingw', '/^ZINT_VERSION:=-DZINT_VERSION=/', '/[0-9.]+/', $v_str);
- // backend_tcl/configure.ac
- version_replace(1, $data_dirname . 'backend_tcl/configure.ac', '/^AC_INIT\(\[zint\],[ \t]*\[/', '/[0-9.]+/', $v_base_str);
- // backend_tcl/zint_tcl.dsp
- version_replace(2, $data_dirname . 'backend_tcl/zint_tcl.dsp', '/ZINT_VERSION="\\\\"/', '/ZINT_VERSION="\\\\"[0-9.]+\\\\""/', 'ZINT_VERSION="\\"' . $v_str . '\\""');
- // backend_tcl/lib/zint/pkgIndex.tcl
- version_replace(1, $data_dirname . 'backend_tcl/lib/zint/pkgIndex.tcl', '/zint /', '/zint [0-9.]+/', 'zint ' . $v_base_str . '');
- // backend_tcl/licence.txt
- year_replace($data_dirname . 'backend_tcl/licence.txt', $year);
- // frontend/zint.rc
- rc_replace($data_dirname . 'frontend/zint.rc', $rc_str1, $rc_str2, $year);
- // frontend/Makefile.mingw
- version_replace(1, $data_dirname . 'frontend/Makefile.mingw', '/^ZINT_VERSION:=-DZINT_VERSION=/', '/[0-9.]+/', $v_str);
- // backend_qt/backend_vc8.pro
- version_replace(1, $data_dirname . 'backend_qt/backend_vc8.pro', '/^VERSION[ \t]*=/', '/[0-9.]+/', $v_str);
- -
- // backend_qt/backend_qt.pro
- version_replace(1, $data_dirname . 'backend_qt/backend_qt.pro', '/ZINT_VERSION="/', '/[0-9.]+/', $v_str);
- version_replace(1, $data_dirname . 'backend_qt/backend_qt.pro', '/^VERSION[ \t]*=/', '/[0-9.]+/', $v_str);
- // docs/manual.pmd
- version_replace(1, $data_dirname . 'docs/manual.pmd', '/^% Version /', '/[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?( \(dev\))?/', $v_str);
- version_replace(1, $data_dirname . 'docs/manual.pmd', '/^The current stable version of Zint/', '/[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?/', $v_base_str);
- // docs/zint.1.pmd
- version_replace(1, $data_dirname . 'docs/zint.1.pmd', '/^% ZINT\(1\) Version /', '/[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?( \(dev\))?/', $v_str);
- // frontend_qt/res/qtZint.rc
- rc_replace($data_dirname . 'frontend_qt/res/qtZint.rc', $rc_str1, $rc_str2, $year);
- // win32/libzint.vcxproj
- version_replace(2, $data_dirname . 'win32/libzint.vcxproj', '/ZINT_VERSION="/', '/ZINT_VERSION="[0-9.]+"/', 'ZINT_VERSION="' . $v_str . '"');
- // win32/zint.vcxproj
- version_replace(2, $data_dirname . 'win32/zint.vcxproj', '/ZINT_VERSION="/', '/ZINT_VERSION="[0-9.]+"/', 'ZINT_VERSION="' . $v_str . '"');
- // win32/zint_cmdline_vc6/zint.rc
- rc_replace($data_dirname . 'win32/zint_cmdline_vc6/zint.rc', $rc_str1, $rc_str2, $year);
- // win32/zint_cmdline_vc6/zint_cmdline_vc6.dsp
- version_replace(2, $data_dirname . 'win32/zint_cmdline_vc6/zint_cmdline_vc6.dsp', '/ZINT_VERSION="/', '/ZINT_VERSION="\\\\"[0-9.]+\\\\""/', 'ZINT_VERSION="\\"' . $v_str . '\\""');
- // win32/vs2008/libzint.vcproj
- version_replace(2, $data_dirname . 'win32/vs2008/libzint.vcproj', '/ZINT_VERSION="/', '/"[0-9.]+/', '"' . $v_str);
- // win32/vs2008/zint.vcproj
- version_replace(2, $data_dirname . 'win32/vs2008/zint.vcproj', '/ZINT_VERSION="/', '/"[0-9.]+/', '"' . $v_str);
- // win32/vs2015/libzint.vcxproj
- version_replace(6, $data_dirname . 'win32/vs2015/libzint.vcxproj', '/ZINT_VERSION="/', '/ZINT_VERSION="[0-9.]+"/', 'ZINT_VERSION="' . $v_str . '"');
- // win32/vs2015/zint.vcxproj
- version_replace(6, $data_dirname . 'win32/vs2015/zint.vcxproj', '/ZINT_VERSION="/', '/ZINT_VERSION="[0-9.]+"/', 'ZINT_VERSION="' . $v_str . '"');
- // win32/vs2017/libzint.vcxproj
- version_replace(2, $data_dirname . 'win32/vs2017/libzint.vcxproj', '/ZINT_VERSION="/', '/ZINT_VERSION="[0-9.]+"/', 'ZINT_VERSION="' . $v_str . '"');
- // win32/vs2017/zint.vcxproj
- version_replace(2, $data_dirname . 'win32/vs2017/zint.vcxproj', '/ZINT_VERSION="/', '/ZINT_VERSION="[0-9.]+"/', 'ZINT_VERSION="' . $v_str . '"');
- // win32/vs2019/libzint.vcxproj
- version_replace(2, $data_dirname . 'win32/vs2019/libzint.vcxproj', '/ZINT_VERSION="/', '/ZINT_VERSION="[0-9.]+"/', 'ZINT_VERSION="' . $v_str . '"');
- // win32/vs2019/zint.vcxproj
- version_replace(2, $data_dirname . 'win32/vs2019/zint.vcxproj', '/ZINT_VERSION="/', '/ZINT_VERSION="[0-9.]+"/', 'ZINT_VERSION="' . $v_str . '"');
- // Leaving auto-generated files:
- // backend_tcl/configure (PACKAGE_VERSION and PACKAGE_STRING) - generated by autoconf from configure.ac
- // frontend_qt/Inno_Setup_qtzint.iss (MyAppVersion)
- print PHP_EOL;
- print '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!' . PHP_EOL;
- print '!!! REMEMBER: update release date in manual and man page !!!' . PHP_EOL;
- print '!!! REMEMBER: cd docs; make !!!' . PHP_EOL;
- print '!!! REMEMBER: run "autoconf" and "./configure" in "backend_tcl/" !!!' . PHP_EOL;
- print '!!! REMEMBER: update version and date in "ChangeLog" !!!' . PHP_EOL;
- print '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!' . PHP_EOL;
- print PHP_EOL;
- /* vim: set ts=4 sw=4 et : */
|