Hello community,

here is the log from the commit of package scons for openSUSE:Leap:15.2 checked 
in at 2020-04-08 12:48:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/scons (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.scons.new.3248 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "scons"

Wed Apr  8 12:48:18 2020 rev:21 rq:791028 version:3.1.2

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/scons/scons.changes    2020-01-15 
16:01:33.087866028 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.scons.new.3248/scons.changes  2020-04-08 
12:48:58.726360852 +0200
@@ -1,0 +2,160 @@
+Fri Jan  3 19:23:47 CET 2020 - Matej Cepl <[email protected]>
+
+- Switch off tests
+- Update to 3.1.2:
+    - Added debug option "action_timestamps" which outputs to
+      stdout the absolute start and end time for each target.
+    - Fix suncxx tool (Oracle Studio compiler) when using Python 3.
+      Previously would throw an exception.
+      Resolved by properly handling tool version string output as
+      unicode.
+    - Resolved a typo in engine.SCons.Tool
+    - Resolved a race condition in multithreaded Windows builds
+      with Python 2 in the case where a child process is spawned
+      while a Python action has a file open. Original author:
+      Ryan Beasley.
+    - Added memoization support for calls to Environment.Value()
+      in order to improve performance of repeated calls.
+    - Update Command() function to accept target_scanner,
+      source_factory, and target_factory arguments.
+      This makes Command act more like a one-off builder.
+    - Added support for "-imacros" to ParseFlags
+    - Fix CheckFunc detection code for Visual 2019. Some functions
+      (e.g. memmove) were incorrectly recognized as not available.
+    - Fix stacktrace when using SCons with Python 3.5+ and
+      SunOS/Solaris related tools.     
+    - Avoid crash with UnicodeDecodeError on Python 3 when
+      a Latex log file in non-UTF-8 encoding (e.g. containing
+      umlauts in Latin-1 encoding when the fontenc package is
+      included with \usepackage[T1]{fontenc}) is read.
+    - Improved threading performance by ensuring NodeInfo is
+      shared across threads. Results in ~13% improvement for
+      parallel builds (-j# > 1) with many shared nodes.
+    - Improve performance of Entry.disambiguate() by making check
+      for most common case first, preventing unnecessary IO.
+    - Improved DAG walk performance by reducing unnecessary work
+      when there are no un-visited children.
+    - Replace instances of string find method with "in" checks
+      where the index from find() was not used.
+    - CmdStringHolder fix from issue #3428
+    - Turn previously deprecated debug options into failures:
+      --debug=tree, --debug=dtree, --debug=stree,
+      --debug=nomemoizer.
+    - Experimental New Feature: Enable caching MSVC configuration
+      If SCONS_CACHE_MSVC_CONFIG shell environment variable is
+      set, SCons will cache the results of past calls to
+      vcvarsall.bat to a file; integrates with existing memoizing
+      of such vars. On vs2019 saves 5+ seconds per SCons
+      invocation, which really helps test suite runs.
+    - Remove deprecated SourceSignatures, TargetSignatures
+    - Remove deprecated Builder keywords: overrides and scanner
+    - Remove deprecated env.Copy
+    - Remove deprecated BuildDir plus SConscript keyword
+      build_dir
+    - A number of documentation improvements.
+- scons-src-3.1.2.tar.gz is just renamed documentation for 3.1.1
+  (upstream hasn’t released new documentation tarball)
+
+-------------------------------------------------------------------
+Fri Sep  6 18:34:18 UTC 2019 - Andreas Stieger <[email protected]>
+
+- scons 3.1.1:
+  * Change the default for AppendENVPath to delete_existing=0, so
+    path order will not be changed, unless explicitly set
+  * Add the textfile tool to the default tool list
+
+-------------------------------------------------------------------
+Tue May 21 10:07:35 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Disable bit more msvc tests as we don't care about the fails
+
+-------------------------------------------------------------------
+Sat May 18 01:12:28 UTC 2019 - Andreas Stieger <[email protected]>
+
+- scons 3.0.5:
+  * Fixes related to --config=force
+  * Change the default for AppendENVPath to delete_existing=0, so
+    path order will not be changed, unless explicitly set
+  * Add the textfile tool to the default tool list
+  * Fix regex patterns that were not specified as raw strings
+  * Do not store build host+user name if reproducible builds are
+    wanted
+
+-------------------------------------------------------------------
+Tue Mar 26 11:24:14 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Sort out the bcond_with/without for the multibuild to work
+  properly
+
+-------------------------------------------------------------------
+Mon Mar 25 09:32:57 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Fix the testsuite pass to keep working
+- Use regular python macros
+- Use fdupes
+
+-------------------------------------------------------------------
+Fri Mar  1 19:44:24 UTC 2019 - Andreas Stieger <[email protected]>
+
+- scons 3.0.4:
+  * Add TEMPFILESUFFIX to allow a customizable filename extension
+  * Update TempFileMunge class to use PRINT_CMD_LINE_FUNC
+  * Enhance cpp scanner regex logic to detect if/elif expressions
+    without whitespaces but parenthesis like "#if(defined FOO)" or
+    "#elif!(BAR)" correctly.
+
+-------------------------------------------------------------------
+Tue Jan 15 15:10:42 UTC 2019 - [email protected]
+
+- scons 3.0.3:
+  * upstream packaging fixes
+  * Update doc examples to work with Python 3.5+
+
+-------------------------------------------------------------------
+Thu Jan  3 13:21:11 UTC 2019 - [email protected]
+
+- Update to version 3.0.2, now works properly with python3 and
+  fixes boo#1083830.
+- Removed incorporated patches: no_deprecated_asserts.patch,
+  removed_splitunc.patch, fix-jN-for-python-37.patch,
+  replace_TestSuite_main.patch, stop_custom_OrderedDict.patch,
+  no_time-clock.patch and fix-rpm-tests-for-newer-rpmbuild.patch.
+- Upstream changes are too many to list see :
+  /usr/share/doc/packages/scons/CHANGES.txt
+
+-------------------------------------------------------------------
+Thu Oct 11 10:30:44 UTC 2018 - Matěj Cepl <[email protected]>
+
+- Switch off more failing tests.
+
+-------------------------------------------------------------------
+Mon Oct  8 12:01:14 UTC 2018 - Matěj Cepl <[email protected]>
+
+- Make package not to be noarch (bsc#1109755)
+
+-------------------------------------------------------------------
+Fri Oct  5 01:35:18 CEST 2018 - [email protected]
+
+- Make package multibuild for separate testing
+- Block failing tests (and block %check section completely on
+  non-Intel archs, as the tests are apparently not designed for
+  that).
+- Fix patches from the upstream to improve compatbiilty:
+    fix-jN-for-python-37.patch
+    fix-rpm-tests-for-newer-rpmbuild.patch
+    no_deprecated_asserts.patch
+    no_time-clock.patch
+    removed_splitunc.patch
+    replace_TestSuite_main.patch
+    stop_custom_OrderedDict.patch
+- Remove replace-imp-with-importlib.patch for now (to stabilize
+  the package first)
+
+-------------------------------------------------------------------
+Wed Jul 25 12:10:25 UTC 2018 - [email protected]
+
+- Add replace-imp-with-importlib.patch (from the upstream PR
+  https://github.com/SCons/scons/pull/3159)
+- Remove compatibility ifs for SLE < 13
+
+-------------------------------------------------------------------

Old:
----
  scons-3.0.1.tar.gz
  scons-user.html-3.0.1.tar.bz2

New:
----
  grep-filter-list.txt
  scons-src-3.1.2.tar.gz
  scons-user.html-3.1.2.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ scons.spec ++++++
--- /var/tmp/diff_new_pack.4IfuDR/_old  2020-04-08 12:48:59.482361246 +0200
+++ /var/tmp/diff_new_pack.4IfuDR/_new  2020-04-08 12:48:59.486361248 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package scons
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,30 +12,58 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
-%define with_python3 (0%{?suse_version} > 1320)
-Name:           scons
-Version:        3.0.1
+%define modname scons
+%global flavor @BUILD_FLAVOR@%{nil}
+%if "%{flavor}" == "test"
+%define psuffix -test
+%bcond_without test
+%else
+%define psuffix %{nil}
+%bcond_with test
+%endif
+Name:           scons%{psuffix}
+Version:        3.1.2
 Release:        0
 Summary:        Replacement for Make
 License:        MIT
 Group:          Development/Tools/Building
-Url:            http://www.scons.org/
-Source0:        
http://prdownloads.sourceforge.net/scons/%{name}-%{version}.tar.gz
+URL:            https://www.scons.org/
+Source0:        
http://prdownloads.sourceforge.net/scons/%{modname}-src-%{version}.tar.gz
 #http://www.scons.org/doc/%%{version}/HTML/scons-user.html
 Source1:        scons-user.html-%{version}.tar.bz2
-# Sets _mandir to _datadir/man instead of _prefix/man
-Patch0:         %{name}-3.0.0-fix-install.patch
+# Adjust to exclude all failing tests
+Source2:        grep-filter-list.txt
+# Local modification
+Patch8:         scons-3.0.0-fix-install.patch
 BuildRequires:  fdupes
-BuildArch:      noarch
-%if %{with_python3}
-BuildRequires:  python3-devel >= 3.5
+BuildRequires:  grep
+BuildRequires:  python3-base >= 3.5
+BuildRequires:  python3-lxml
+BuildRequires:  python3-setuptools
 Requires:       python3-base  >= 3.5
-%else
-BuildRequires:  python-devel >= 2.7
+%if %{with test}
+# texlive texlive-latex3 biber texmaker ghostscript
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  bison
+# For tests
+BuildRequires:  clang
+BuildRequires:  docbook-xsl-pdf2index
+BuildRequires:  docbook5-xsl-stylesheets
+BuildRequires:  gcc-c++
+BuildRequires:  git
+BuildRequires:  libtool
+BuildRequires:  libxml2-devel
+BuildRequires:  libxslt-devel
+BuildRequires:  libxslt-tools
+BuildRequires:  pcre-devel
+BuildRequires:  subversion
+BuildRequires:  swig
+BuildRequires:  xmlgraphics-fop
 %endif
 
 %description
@@ -46,53 +74,66 @@
 full power of Python to control compilation.
 
 %prep
-%setup -q -a1
-%patch0 -p1
+%setup -q -n %{modname}-src-%{version} -a1
+%autopatch -p1
 
-# fix libdir for qt
-patch -p0 <<EOF
---- engine/SCons/Tool/qt.py
-+++ engine/SCons/Tool/qt.py
-@@ -247,1 +247,1 @@
--                   QT_LIBPATH = os.path.join('\$QTDIR', 'lib'),
-+                   QT_LIBPATH = os.path.join('\$QTDIR', '%{_lib}'),
-EOF
-
-%if %{with_python3}
-sed -i 's|%{_bindir}/env python|%{_bindir}/python3|' script/*
-%else
-sed -i 's|%{_bindir}/env python|%{_bindir}/python|' script/*
-%endif
+sed -i -e '/QT_LIBPATH = os.path.join.*QTDIR/s/lib/%{_lib}/' \
+    src/engine/SCons/Tool/qt.py
+sed -i 's|%{_bindir}/env python|%{_bindir}/python3|' src/script/*
+
+cp %{SOURCE2} grep-filter-list.txt
+chmod -x src/CHANGES.txt README.rst src/RELEASE.txt
+
+# the test is marked skipped but fails; and all are windows based so
+# we can safely ignore them
+rm -r test/MSVC/
+rm -r test/MSVS/
+rm -r test/Win32/
+rm test/fixture/no_msvc/no_regs_sconstruct.py
+rm test/fixture/no_msvc/no_msvcs_sconstruct.py
+rm test/LEX/live_mingw.py
+rm test/Decider/MD5-winonly-firstbuild.py
 
 %build
-export CFLAGS="%{optflags}"
-%if %{with_python3}
+python3 bootstrap.py build/scons
+cd build/scons
 %python3_build
-%else
-python setup.py build
-%endif
 
 %install
-%if %{with_python3}
-%python3_install
+%if !%{with test}
+cd build/scons
+ls -lh build/lib
+%python3_install \
+ --standard-lib \
+ --no-install-bat \
+ --no-version-script \
+ --install-scripts=%{_bindir} \
+ --record installed_files.txt
+%fdupes %{buildroot}%{python3_sitelib}
+%endif
+
+%check
+%if %{with test}
+%ifnarch aarch64 armv7l ppc64 ppc64le s390x
+TEMP_FILE=$(mktemp --tmpdir %{modname}-test.XXXXXX)
+trap 'rm -f -- "$TEMP_FILE"' INT TERM HUP EXIT
+find src/ test/ -name \*.py \
+    | grep -F -v -f grep-filter-list.txt >$TEMP_FILE
+python3 runtest.py -f $TEMP_FILE
 %else
-python setup.py \install \
-       --prefix=%{_prefix} \
-       --root=%{buildroot} \
-       --install-lib=%{python_sitelib} \
-       --no-version-script
+echo "Skiping tests on this architecture due to failures"
+%endif
 %endif
-%fdupes %{buildroot}%{_bindir}
 
+%if !%{with test}
 %files
-%doc CHANGES.txt LICENSE.txt README.txt RELEASE.txt scons-user.html
+%license LICENSE
+%doc src/CHANGES.txt README.rst src/RELEASE.txt
+%doc scons-user.html
 %{_bindir}/*
-%if %{with_python3}
-%{_libexecdir}/scons-%{version}
-%else
-%{python_sitelib}/SCons/
-%{python_sitelib}/*.egg-info
-%endif
+%{python3_sitelib}/SCons
+%{python3_sitelib}/%{modname}*.egg-info
 %{_mandir}/man1/*%{ext_man}
+%endif
 
 %changelog

++++++ grep-filter-list.txt ++++++
src/engine/SCons/ActionTests.py
src/engine/SCons/dblite.py
src/engine/SCons/EnvironmentValuesTest.py
src/engine/SCons/Node/FS.py
src/engine/SCons/Options/__init__.py
src/engine/SCons/Platform/aix.py
src/engine/SCons/Platform/cygwin.py
src/engine/SCons/Platform/darwin.py
src/engine/SCons/Platform/hpux.py
src/engine/SCons/Platform/irix.py
src/engine/SCons/Platform/os2.py
src/engine/SCons/Platform/sunos.py
src/engine/SCons/SConfTests.py
src/engine/SCons/Script/__init__.py
src/engine/SCons/Script/SConscript.py
src/engine/SCons/Tool/aixcc.py
src/engine/SCons/Tool/aixf77.py
src/engine/SCons/Tool/aixlink.py
src/engine/SCons/Tool/applelink.py
src/engine/SCons/Tool/cvf.py
src/engine/SCons/Tool/cyglink.py
src/engine/SCons/Tool/docbook/docbook-xsl-1.76.1/extensions/docbook.py
src/engine/SCons/Tool/docbook/docbook-xsl-1.76.1/extensions/xslt.py
src/engine/SCons/Tool/f03.py
src/engine/SCons/Tool/f08.py
src/engine/SCons/Tool/f95.py
src/engine/SCons/Tool/gcc.py
src/engine/SCons/Tool/gfortran.py
src/engine/SCons/Tool/gnulink.py
src/engine/SCons/Tool/gxx.py
src/engine/SCons/Tool/hpcc.py
src/engine/SCons/Tool/hplink.py
src/engine/SCons/Tool/icc.py
src/engine/SCons/Tool/ifl.py
src/engine/SCons/Tool/ifort.py
src/engine/SCons/Tool/midl.py
src/engine/SCons/Tool/MSCommon/arch.py
src/engine/SCons/Tool/MSCommon/netframework.py
src/engine/SCons/Tool/MSCommon/sdk.py
src/engine/SCons/Tool/MSCommon/vc.py
src/engine/SCons/Tool/MSCommon/vs.py
src/engine/SCons/Tool/mslib.py
src/engine/SCons/Tool/mslink.py
src/engine/SCons/Tool/mssdk.py
src/engine/SCons/Tool/msvc.py
src/engine/SCons/Tool/msvs.py
src/engine/SCons/Tool/sgicc.py
src/engine/SCons/Tool/sgilink.py
src/engine/SCons/Tool/suncc.py
src/engine/SCons/Tool/sunf77.py
src/engine/SCons/Tool/sunf90.py
src/engine/SCons/Tool/sunf95.py
src/engine/SCons/Tool/sunlink.py
src/engine/SCons/Tool/textfile.py
src/engine/SCons/Tool/386asm.py
src/engine/SCons/UtilTests.py
src/engine/SCons/Variables/__init__.py
src/script/scons-configure-cache.py
src/script/sconsign.py
src/script/scons-time.py
src/setup.py
src/test_files.py
src/test_interrupts.py
src/test_pychecker.py
src/test_setup.py
src/test_strings.py
test/Actions/pre-post-fixture/work4/build.py
test/AS/fixture/myas_args.py
test/AS/fixture/myas.py
test/AS/ml.py
test/AS/nasm.py
test/CC/CCVERSION-fixture/versioned.py
test/Configure/implicit-cache.py
test/CPPDEFINES/scan.py
test/D/AllAtOnce/sconstest-dmd.py
test/D/AllAtOnce/sconstest-gdc.py
test/D/AllAtOnce/sconstest-ldc.py
test/D/CoreScanner/sconstest-dmd.py
test/D/CoreScanner/sconstest-gdc.py
test/D/CoreScanner/sconstest-ldc.py
test/D/DMD.py
test/D/DMD2_Alt.py
test/D/DMD2.py
test/Deprecated/SourceSignatures/no-csigs.py
test/D/GDC_Alt.py
test/D/GDC.py
test/D/HelloWorld/CompileAndLinkOneStep/sconstest-dmd.py
test/D/HelloWorld/CompileAndLinkOneStep/sconstest-gdc.py
test/D/HelloWorld/CompileAndLinkOneStep/sconstest-ldc.py
test/D/HelloWorld/CompileThenLinkTwoSteps/sconstest-dmd.py
test/D/HelloWorld/CompileThenLinkTwoSteps/sconstest-gdc.py
test/D/HelloWorld/CompileThenLinkTwoSteps/sconstest-ldc.py
test/D/HSTeoh/sconstest-arLibIssue_dmd.py
test/D/HSTeoh/sconstest-arLibIssue_gdc.py
test/D/HSTeoh/sconstest-arLibIssue_ldc.py
test/D/HSTeoh/sconstest-libCompileOptions_dmd.py
test/D/HSTeoh/sconstest-libCompileOptions_gdc.py
test/D/HSTeoh/sconstest-libCompileOptions_ldc.py
test/D/HSTeoh/sconstest-linkingProblem_dmd.py
test/D/HSTeoh/sconstest-linkingProblem_gdc.py
test/D/HSTeoh/sconstest-linkingProblem_ldc.py
test/D/HSTeoh/sconstest-singleStringCannotBeMultipleOptions_dmd.py
test/D/HSTeoh/sconstest-singleStringCannotBeMultipleOptions_gdc.py
test/D/HSTeoh/sconstest-singleStringCannotBeMultipleOptions_ldc.py
test/D/Issues/2939_Ariovistus/sconstest-correctLinkOptions_dmd.py
test/D/Issues/2939_Ariovistus/sconstest-correctLinkOptions_gdc.py
test/D/Issues/2939_Ariovistus/sconstest-correctLinkOptions_ldc.py
test/D/Issues/2940_Ariovistus/sconstest-correctLinkOptions_dmd.py
test/D/Issues/2940_Ariovistus/sconstest-correctLinkOptions_gdc.py
test/D/Issues/2940_Ariovistus/sconstest-correctLinkOptions_ldc.py
test/D/LDC_Alt.py
test/D/LDC.py
test/D/MixedDAndC/sconstest-dmd.py
test/D/MixedDAndC/sconstest-gdc.py
test/D/MixedDAndC/sconstest-ldc.py
test/Docbook/basedir/htmlhelp/htmlhelp_cmd.py
test/Docbook/basedir/htmlhelp/htmlhelp.py
test/Docbook/basedir/htmlchunked/htmlchunked_cmd.py
test/Docbook/basedir/htmlchunked/htmlchunked.py
test/Docbook/basedir/slideshtml/slideshtml_cmd.py
test/Docbook/basedir/slideshtml/slideshtml.py
test/Docbook/basic/epub/epub_cmd.py
test/Docbook/basic/htmlhelp/htmlhelp_cmd.py
test/Docbook/basic/html/html_cmd.py
test/Docbook/basic/htmlchunked/htmlchunked_cmd.py
test/Docbook/basic/slideshtml/slideshtml_cmd.py
test/Docbook/basic/slideshtml/slideshtml.py
test/Docbook/basic/xinclude/xinclude.py
test/Docbook/dependencies/xinclude/xinclude.py
test/Docbook/rootname/htmlhelp/htmlhelp.py
test/Docbook/rootname/htmlchunked/htmlchunked.py
test/Docbook/rootname/slideshtml/slideshtml.py
test/D/Scanner.py
test/D/SharedObjects/sconstest-dmd.py
test/D/SharedObjects/sconstest-gdc.py
test/D/SharedObjects/sconstest-ldc.py
test/DVIPDF/makeindex.py
test/DVIPS/DVIPS.py
test/Errors/preparation.py
test/fixture/mycompile.py
test/fixture/mylink.py
test/fixture/myrewrite.py
test/Fortran/fixture/myfortran_flags.py
test/Fortran/fixture/myfortran.py
test/Fortran/FORTRANPATH.py
test/Fortran/F77PATH.py
test/Fortran/F90PATH.py
test/IDL/midl.py
test/Install/non-ascii-name.py
test/Intel/icpc-link.py
test/Interactive/implicit-VariantDir.py
test/Interactive/variant_dir.py
test/Java/DerivedSourceTest.py
test/Java/JARFLAGS.py
test/Java/JARCHDIR.py
test/Java/JAR.py
test/Java/JAVABOOTCLASSPATH.py
test/Java/JAVACFLAGS.py
test/Java/JAVACLASSPATH.py
test/Java/JAVAH.py
test/Java/JAVASOURCEPATH.py
test/Java/Java-1.4.py
test/Java/Java-1.5.py
test/Java/Java-1.6.py
test/Java/multi-step.py
test/Java/nested-classes.py
test/Java/no-JARCHDIR.py
test/Java/RMIC.py
test/Java/source-files.py
test/Java/swig-dependencies.py
test/LEX/live.py
test/long-lines/signature.py
test/Parallel/failed-build.py
test/virtualenv/unactivated/virtualenv_unactivated_python.py
test/virtualenv/activated/virtualenv_detect_virtualenv.py
test/virtualenv/activated/virtualenv_activated_python.py
test/virtualenv/activated/option/ignore-virtualenv.py
test/virtualenv/activated/option/enable-virtualenv.py
test/MSVC/MSVC_BATCH-spaces-targetdir.py
test/Java/Java-1.8.py
test/Fortran/gfortran.py
test/MinGW/MinGWSharedLibrary.py
test/MinGW/WINDOWS_INSERT_DEF.py
test/MSVC/batch-longlines.py
test/MSVC/embed-manifest.py
test/MSVC/hierarchical.py
test/MSVC/msvc.py
test/MSVC/MSVC_UWP_APP.py
test/MSVC/multiple-pdb.py
test/MSVC/pdb-manifest.py
test/MSVC/pdb-VariantDir-path.py
test/MSVC/pch-basics.py
test/MSVC/PCH-source.py
test/MSVC/pch-spaces-subdir.py
test/MSVC/PCHSTOP-errors.py
test/MSVC/query_vcbat.py
test/MSVC/TARGET_ARCH.py
test/MSVS/common-prefix.py
test/MSVS/CPPPATH-Dirs.py
test/MSVS/runfile.py
test/MSVS/vs-10.0-exec.py
test/MSVS/vs-10.0Exp-exec.py
test/MSVS/vs-10.0-scc-files.py
test/MSVS/vs-10.0-scc-legacy-files.py
test/MSVS/vs-11.0-exec.py
test/MSVS/vs-11.0Exp-exec.py
test/MSVS/vs-11.0-scc-files.py
test/MSVS/vs-11.0-scc-legacy-files.py
test/MSVS/vs-14.0-exec.py
test/MSVS/vs-14.0Exp-exec.py
test/MSVS/vs-14.0-scc-files.py
test/MSVS/vs-14.0-scc-legacy-files.py
test/MSVS/vs-6.0-exec.py
test/MSVS/vs-7.0-exec.py
test/MSVS/vs-7.0-scc-files.py
test/MSVS/vs-7.0-scc-legacy-files.py
test/MSVS/vs-7.1-exec.py
test/MSVS/vs-7.1-scc-files.py
test/MSVS/vs-7.1-scc-legacy-files.py
test/MSVS/vs-8.0-exec.py
test/MSVS/vs-8.0Exp-exec.py
test/MSVS/vs-8.0-scc-files.py
test/MSVS/vs-8.0-scc-legacy-files.py
test/MSVS/vs-9.0-exec.py
test/MSVS/vs-9.0Exp-exec.py
test/MSVS/vs-9.0-scc-files.py
test/MSVS/vs-9.0-scc-legacy-files.py
test/option--tree.py
test/packaging/ipkg.py
test/packaging/msi/explicit-target.py
test/packaging/msi/file-placement.py
test/packaging/msi/package.py
test/packaging/multiple-packages-at-once.py
test/packaging/option--package-type.py
test/packaging/rpm/cleanup.py
test/packaging/rpm/internationalization.py
test/packaging/rpm/multipackage.py
test/packaging/rpm/package.py
test/packaging/rpm/tagging.py
test/packaging/zip.py
test/PharLap.py
test/print_statement.py
test/QT/copied-env.py
test/QT/CPPPATH-appended.py
test/QT/CPPPATH.py
test/QT/generated-ui.py
test/QT/installed.py
test/QT/manual.py
test/QT/moc-from-header.py
test/QT/QTFLAGS.py
test/QT/source-from-ui.py
test/QT/Tool.py
test/QT/up-to-date.py
test/Repository/JavaH.py
test/Repository/Java.py
test/Repository/RMIC.py
test/Rpcgen/live.py
test/SConsignFile/use-dbhash.py
test/SConsignFile/use-dbm.py
test/SConsignFile/use-dumbdbm.py
test/SConsignFile/use-gdbm.py
test/sconsign/script/bad.py
test/sconsign/script/Configure.py
test/sconsign/script/dblite.py
test/sconsign/script/no-SConsignFile.py
test/sconsign/script/SConsignFile.py
test/sconsign/script/Signatures.py
test/scons-time/run/aegis.py
test/scons-time/run/config/python.py
test/scons-time/run/option/python.py
test/SWIG/build-dir.py
test/SWIG/generated_swigfile.py
test/SWIG/implicit-dependencies.py
test/SWIG/live.py
test/SWIG/module-deduced-name.py
test/SWIG/module-parens.py
test/SWIG/module-quoted.py
test/SWIG/module-spaces.py
test/SWIG/noproxy.py
test/SWIG/recursive-includes-cpp.py
test/SWIG/remove-modules.py
test/SWIG/subdir.py
test/SWIG/SWIGOUTDIR.py
test/SWIG/SWIGOUTDIR-python.py
test/SWIG/SWIGPATH.py
test/SWIG/SWIG.py
test/TEX/auxiliaries.py
test/TEX/biber_biblatex.py
test/TEX/biber_biblatex2.py
test/TEX/biblatex_plain.py
test/TEX/biblatex.py
test/TEX/bibliography.py
test/TEX/bibtex-latex-rerun.py
test/TEX/clean.py
test/TEX/configure.py
test/TEX/dryrun.py
test/TEX/eps_graphics.py
test/TEX/eps_graphics2.py
test/TEX/generated_files.py
test/TEX/glossaries.py
test/TEX/glossary.py
test/TEX/input_docClass.py
test/TEX/lstinputlisting.py
test/TEX/makeindex.py
test/TEX/multibib.py
test/TEX/multi-line_include_options.py
test/TEX/multiple_include.py
test/TEX/multiple_include_subdir.py
test/TEX/multi-run.py
test/TEX/newglossary.py
test/TEX/nomencl.py
test/TEX/PDF_single_source.py
test/TEX/recursive_scanner_dependencies_import.py
test/TEX/recursive_scanner_dependencies_input.py
test/TEX/rename_result.py
test/TEX/subdir-as-include.py
test/TEX/subdir-input.py
test/TEX/subdir_variantdir_include.py
test/TEX/subdir_variantdir_include2.py
test/TEX/subdir_variantdir_input.py
test/TEX/synctex.py
test/TEX/TEX.py
test/TEX/usepackage.py
test/TEX/variant_dir_bibunit.py
test/TEX/variant_dir_dup0.py
test/TEX/variant_dir_newglossary.py
test/TEX/variant_dir.py
test/TEX/variant_dir_style_dup0.py
test/timestamp-fallback.py
test/toolpath/relative_import/image/tools/TestTool1/__init__.py
test/toolpath/relative_import/image/tools/TestTool1/TestTool1_2/__init__.py
test/Win32/bad-drive.py
test/Win32/default-drive.py
test/Win32/file-is-type-not-func.py
test/Win32/mingw.py
test/Win32/scons-bat-error.py
test/Win32/win32pathmadness.py
test/YACC/YACC-fixture/myyacc.py
test/YACC/YACCFLAGS-fixture/myyacc.py
++++++ scons-3.0.0-fix-install.patch ++++++
--- /var/tmp/diff_new_pack.4IfuDR/_old  2020-04-08 12:48:59.538361275 +0200
+++ /var/tmp/diff_new_pack.4IfuDR/_new  2020-04-08 12:48:59.538361275 +0200
@@ -2,11 +2,9 @@
  setup.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
-Index: scons-3.0.0/setup.py
-===================================================================
---- scons-3.0.0.orig/setup.py
-+++ scons-3.0.0/setup.py
-@@ -386,7 +386,7 @@ class install_data(_install_data):
+--- a/src/setup.py
++++ b/src/setup.py
+@@ -376,7 +376,7 @@ class install_data(_install_data):
              if is_win32:
                  dir = 'Doc'
              else:
@@ -15,7 +13,7 @@
              self.data_files = [(dir, man_pages)]
              man_dir = os.path.join(self.install_dir, dir)
              msg = "Installed SCons man pages into %s" % man_dir
-@@ -506,7 +506,7 @@ arguments = {
+@@ -496,7 +496,7 @@ arguments = {
                                              'docbook-xsl-1.76.1/xhtml/*',
                                              'docbook-xsl-1.76.1/xhtml-1_1/*',
                                              'utils/*']},

++++++ scons-user.html-3.0.1.tar.bz2 -> scons-user.html-3.1.2.tar.bz2 ++++++
++++ 4167 lines of diff (skipped)


Reply via email to