[issue5243] Missing dependency in distutils build

2021-02-03 Thread Steve Dower
Steve Dower added the comment: Distutils is now deprecated (see PEP 632) and all tagged issues are being closed. From now until removal, only release blocking issues will be considered for distutils. If this issue does not relate to distutils, please remove the component and reopen it. If y

[issue5243] Missing dependency in distutils build

2019-05-06 Thread anthony shaw
Change by anthony shaw : -- nosy: +dstufft, ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue5243] Missing dependency in distutils build

2019-05-06 Thread anthony shaw
anthony shaw added the comment: This issue has been open for some time, looking at the install_lib in master, there have been no changes to call 'build_clib' so the issue documented here would still apply. -- nosy: +anthonypjshaw ___ Python tracke

[issue5243] Missing dependency in distutils build

2014-03-12 Thread Éric Araujo
Changes by Éric Araujo : -- components: -Distutils2 versions: +Python 3.4 -3rd party, Python 3.2 ___ Python tracker ___ ___ Python-bug

[issue5243] Missing dependency in distutils build

2011-06-12 Thread Éric Araujo
Éric Araujo added the comment: > for projects already having a workaround, what will happen? I think I have the answer to my question: if build_clib is called twice, the registry in Distribution will know that it has run and won’t run it again. I’ll test manually and if I confirm, I will comm

[issue5243] Missing dependency in distutils build

2011-06-10 Thread Éric Araujo
Éric Araujo added the comment: >> Now something I don't understand is how reportlab distribution is doing >> to copy the compiled extensions when "install" is called. > I think clib stuff is installed in the right python directory and the > ext install step then just finds them. Yep, the install

[issue5243] Missing dependency in distutils build

2011-02-13 Thread Éric Araujo
Éric Araujo added the comment: If we haven’t closed it, it’s because it has not been. -- ___ Python tracker ___ ___ Python-bugs-list m

[issue5243] Missing dependency in distutils build

2011-02-13 Thread Alexis Metaireau
Alexis Metaireau added the comment: Has the patch been applied on distutils(1/2) ? -- nosy: +alexis ___ Python tracker ___ ___ Python-

[issue5243] Missing dependency in distutils build

2010-09-29 Thread Éric Araujo
Changes by Éric Araujo : -- versions: +3rd party ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue5243] Missing dependency in distutils build

2010-09-07 Thread Éric Araujo
Éric Araujo added the comment: Adding back distutils1. This is a bug, not a feature. -- ___ Python tracker ___ ___ Python-bugs-list ma

[issue5243] Missing dependency in distutils build

2010-09-07 Thread Éric Araujo
Changes by Éric Araujo : -- components: +Distutils nosy: +eric.araujo versions: -Python 2.5, Python 2.6, Python 3.0, Python 3.3 ___ Python tracker ___ ___

[issue5243] Missing dependency in distutils build

2010-04-20 Thread Éric Araujo
Changes by Éric Araujo : -- components: +Distutils2 -Distutils versions: +Python 2.5, Python 3.1, Python 3.3 ___ Python tracker ___ ___

[issue5243] Missing dependency in distutils build

2009-10-28 Thread Patrick Gerken
Patrick Gerken added the comment: Hi Tarek, I think clib stuff is installed in the right python directory and the ext install step then just finds them. To reproduce the issue, run the "old" easy_install in a virtualenv. easy_install ReportLab It will then fail because of the missing library

[issue5243] Missing dependency in distutils build

2009-10-15 Thread Tarek Ziadé
Tarek Ziadé added the comment: It looks like there's a missing part in the patch: get_outputs(), and get_inputs() should also return files created in build() Now something I don't understand is how reportlab distribution is doing to copy the compiled extensions when "install" is called. Could

[issue5243] Missing dependency in distutils build

2009-02-23 Thread Patrick Gerken
Patrick Gerken added the comment: Thank you, tarek The sys.path should have been obvious. Added file: http://bugs.python.org/file13159/test_install_lib.py ___ Python tracker ___ ___

[issue5243] Missing dependency in distutils build

2009-02-15 Thread Tarek Ziadé
Tarek Ziadé added the comment: The patch looks good. Minor tweaks : - sys.path should be set to its initial state after the test (setUp/tearDown might be helpfull here) - ensure_finalized() should be called right before run() so it acts like the real call _

[issue5243] Missing dependency in distutils build

2009-02-15 Thread Patrick Gerken
Patrick Gerken added the comment: The attached test works breaks without the patch and passes with the patch. I am not sure whether the test itself is written following best practice. I would be more than happy for a review, with hints what should be done better. Added file: http://bugs.python

[issue5243] Missing dependency in distutils build

2009-02-13 Thread Tarek Ziadé
Tarek Ziadé added the comment: be careful to write your test in distutils (setuptools is not part of Python) ___ Python tracker ___ ___ Python-

[issue5243] Missing dependency in distutils build

2009-02-13 Thread Patrick Gerken
New submission from Patrick Gerken : When running the command install_lib, the command build_clib is not run. If a package contains clibs they can be dependencies for extension libs, at least that is stated in the module docstring of build_clib. In real life you can see it when trying to run the