| Commit message (Collapse) | Author | Age |
|
|
|
|
|
| |
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
| |
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
| |
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
| |
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
| |
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
| |
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
| |
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
| |
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
| |
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
| |
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
| |
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
| |
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
| |
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This package needs wheel - it tries to download it during the build
otherwise and if the build is not granted internet access, it fails:
```
ERROR: Could not find a version that satisfies the requirement
wheel>=0.25.0 (from versions: none)
ERROR: No matching distribution found for wheel>=0.25.0
subprocess.CalledProcessError: Command '['/usr/bin/python3', '-m',
'pip', '--disable-pip-version-check', 'wheel', '--no-deps', '-w',
'/tmp/SBo/build_python3-pypandoc/tmptgs7v33g', '--quiet',
'wheel>=0.25.0']' returned non-zero exit status 1.
```
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
If fixed this in 748383dcd0 by adding python-m2r as a dependency.
This is correct since upstream's `setup_requires` declares m2r as a
dependency:
https://github.com/glyph/automat/blob/v20.2.0/setup.py#L27
If m2r is not installed, the build will try to download it. If this
fails, the build fails. This means the package cannot be built
without internet at the moment.
```
distutils.errors.DistutilsError: Command '['/usr/bin/python3', '-m',
'pip', '--disable-pip-version-check', 'wheel', '--no-deps', '-w',
'/tmp/SBo/slackrepo.3Z4xrt/build_python3-automat/tmp0o3ejajj',
'--quiet', 'm2r']' returned non-zero exit status 1.
```
In 96170348cc, a change was made to make m2r optional, but this does
not work since it is still declared in setup.py. It should be
optional, since it is only used for formatting the contents of
README.md for use as long_description in setup and that is wrapped
in a try / except and will use the raw, unformatted text of
README.md if it is not found.
So for this change, I have patched out the declaration of m2r in
setup.py and you can now build the package without downloading
things as root during the build.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is declared upstream here:
https://github.com/fredrik-johansson/mpmath/blob/1.2.1/setup.cfg#L30
If setuptools-scm is not installed, the build will try to downloaad
it as root when it runs. This means you cannot build this package
without internet access.
```
distutils.errors.DistutilsError: Command '['/usr/bin/python2', '-m',
'pip', '--disable-pip-version-check', 'wheel', '--no-deps', '-w',
'/tmp/SBo/build_python-mpmath/tmpymNMLJ', '--quiet',
'setuptools_scm>=1.7.0']' returned non-zero exit status 1
```
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
If fixed this in 9c7bc63003 by adding python-m2r as a dependency.
This is correct since upstream's `setup_requires` declares m2r as a
dependency:
https://github.com/glyph/automat/blob/v20.2.0/setup.py#L27
If m2r is not installed, the build will try to download it. If this
fails, the build fails. This means the package cannot be built
without internet at the moment.
```
distutils.errors.DistutilsError: Command '['/usr/bin/python2', '-m',
'pip', '--disable-pip-version-check', 'wheel', '--no-deps', '-w',
'/tmp/SBo/build_python2-automat/tmpN8eQGt', '--quiet', 'm2r']'
returned non-zero exit status 1
```
In 5f580e046a, a change was made to make m2r optional, but this does
not work since it is still declared in setup.py. It should be
optional, since it is only used for formatting the contents of
README.md for use as long_description in setup and that is wrapped
in a try / except and will use the raw, unformatted text of
README.md if it is not found.
So for this change, I have patched out the declaration of m2r in
setup.py and you can now build the package without downloading
things as root during the build.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
| |
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|