summaryrefslogtreecommitdiff
path: root/python/python2-automat
Commit message (Collapse)AuthorAge
* python/python2-automat: Fix offline build.Andrew Clemons2022-11-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* python/python2-automat: sets m2r as optional dependencyArn02022-09-17
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python2-automat: Add missing python-m2r dependency.Andrew Clemons2022-04-16
| | | | | | | | Otherwise, the build tries to download this when run. Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python2-automat: updated REQUIRES (wheel needed for build)Arn02022-04-09
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python2-automat: removed unused python-m2r requirementArn02022-04-02
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python2-automat: Fix MD5SUM.Andrew Clemons2022-03-20
| | | | | | Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python/python2-automat: renamed from Automat, updated for version 20.2.0Arn02022-03-18
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>