Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 766330 - dev-util/scons-4.1.0 gentoo patch causes "NameError: name 'os' is not defined" in consumers
Summary: dev-util/scons-4.1.0 gentoo patch causes "NameError: name 'os' is not defined...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Michał Górny
URL:
Whiteboard:
Keywords:
: 766387 (view as bug list)
Depends on:
Blocks:
 
Reported: 2021-01-20 22:17 UTC by Gary E. Miller
Modified: 2021-01-21 18:44 UTC (History)
3 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
gpsd build.log + emerge --info.txt (gpsd-build.log-emerge-info.txt,10.12 KB, text/plain)
2021-01-21 05:15 UTC, Ionen Wolkens
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Gary E. Miller 2021-01-20 22:17:36 UTC
This file:

/usr/lib/python3.9/site-packages/SCons/Platform/posix.py

Is missing the line: import os

Version 4.0.1 had that line.



Reproducible: Always

Steps to Reproduce:
1. try to build gpsd
2.
3.
Actual Results:  
# scons
scons: Reading SConscript files ...
NameError: name 'os' is not defined:
  File "/u1/local/src/GPS/gpsd/gpsd/SConstruct", line 44:
    EnsureSConsVersion(2, 3, 0)
  File "/usr/lib/python3.9/site-packages/SCons/Script/SConscript.py", line 652:
    env = self.factory()
  File "/usr/lib/python3.9/site-packages/SCons/Script/SConscript.py", line 632:
    default_env = SCons.Defaults.DefaultEnvironment()
  File "/usr/lib/python3.9/site-packages/SCons/Defaults.py", line 84:
    _default_env = SCons.Environment.Environment(*args, **kw)
  File "/usr/lib/python3.9/site-packages/SCons/Environment.py", line 974:
    platform(self)
  File "/usr/lib/python3.9/site-packages/SCons/Platform/__init__.py", line 124:
    return self.generate(*args, **kw)
  File "/usr/lib/python3.9/site-packages/SCons/Platform/posix.py", line 86:
    if os.environ.get('GENTOO_SCONS_ENV_PASSTHROUGH', False):


Expected Results:  
Pass.  Building gpsd works fine with scons 4.0.1, in fact all scons back to 2.3.0.

If you look in the file "/usr/lib/python3.9/site-packages/SCons/Platform/posix.py" at line 86, you see that os. is clearly required, but no longer included.

Prolly an upstream bug.
Comment 1 Gary E. Miller 2021-01-20 22:47:27 UTC
here is what upstream says:

````
mwichmannToday at 2:39 PM
gentoo packaging is the problem, presumably. scons git  posix.py doesn't import os because it doesn't use it, and doesn't know about GENTOO_SCONS_ENV_PASSTHROUGH at all.

we have cleaned includes in some files, often through tools pointing out unused imports

I see I'm responsible for that removal...   so I guess whatever gentoo patch adapts posix.py needs to add the import too.

it was commit 22c489260
```
Comment 2 Gary E. Miller 2021-01-20 22:55:20 UTC
This Gentoo patch is the problem:

dev-util/scons/files/scons-4.1.0-env-passthrough.patch

```
+    # Force pass-through of environment variables in Gentoo builds
+    if os.environ.get('GENTOO_SCONS_ENV_PASSTHROUGH', False):
+        new_env = os.environ.copy()
```

Since posix.py no longer has "import os" that patch refers to os.environ which is not in scope.

The easiest way to fix the patch will be to add back "import os" at the top.
Comment 3 Ionen Wolkens gentoo-dev 2021-01-21 05:15:12 UTC
Created attachment 683944 [details]
gpsd build.log + emerge --info.txt
Comment 4 Michał Górny archtester Gentoo Infrastructure gentoo-dev Security 2021-01-21 09:18:35 UTC
Please consider how much I hate SCons while I work on the fix.
Comment 5 Larry the Git Cow gentoo-dev 2021-01-21 10:20:39 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d43592155db5c85047c85b92a46638bf0684ae3e

commit d43592155db5c85047c85b92a46638bf0684ae3e
Author:     Michał Górny <mgorny@gentoo.org>
AuthorDate: 2021-01-21 10:06:58 +0000
Commit:     Michał Górny <mgorny@gentoo.org>
CommitDate: 2021-01-21 10:20:36 +0000

    dev-util/scons: Fix missing os import in Gentoo patch
    
    Closes: https://bugs.gentoo.org/766330
    Signed-off-by: Michał Górny <mgorny@gentoo.org>

 dev-util/scons/files/scons-4.1.0-env-passthrough.patch    | 15 ++++++++-------
 .../scons/{scons-4.1.0.ebuild => scons-4.1.0-r1.ebuild}   |  0
 2 files changed, 8 insertions(+), 7 deletions(-)
Comment 6 Michał Górny archtester Gentoo Infrastructure gentoo-dev Security 2021-01-21 14:35:25 UTC
*** Bug 766387 has been marked as a duplicate of this bug. ***
Comment 7 Gary E. Miller 2021-01-21 18:44:45 UTC
(In reply to Michał Górny from comment #4)
> Please consider how much I hate SCons while I work on the fix.

I hate it too.  But I hate all other build systems more.