aboutsummaryrefslogtreecommitdiff
path: root/python/python2-automat
AgeCommit message (Collapse)Author
2022-11-05python/python2-automat: Fix offline build.Andrew Clemons
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>
2022-09-17python/python2-automat: sets m2r as optional dependencyArn0
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2022-04-16python/python2-automat: Add missing python-m2r dependency.Andrew Clemons
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>
2022-04-09python/python2-automat: updated REQUIRES (wheel needed for build)Arn0
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2022-04-02python/python2-automat: removed unused python-m2r requirementArn0
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2022-03-20python/python2-automat: Fix MD5SUM.Andrew Clemons
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2022-03-18python/python2-automat: renamed from Automat, updated for version 20.2.0Arn0
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>