This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2004年08月18日 00:36 by daishiharada, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| issue1011113-py34.patch | seanmccully, 2014年08月10日 21:40 | Python 3.4 Patch | review | |
| issue1011113-default.patch | seanmccully, 2014年08月10日 21:41 | default branch patch | review | |
| issue1011113-py27.patch | seanmccully, 2014年08月10日 21:41 | Python 2.7 | review | |
| Messages (11) | |||
|---|---|---|---|
| msg60550 - (view) | Author: daishi (daishiharada) | Date: 2004年08月18日 00:36 | |
This is somewhat related to Bug#818201, in that it involves that fact that the --build-base option only appears to be operational under the build command. Hence it is not possible to do: python setup.py install -b <somedir> The --help for install does not say that one can, so the situation is not as inconsistent as in the previous bug report. Nevertheless, it is problematic that once one does: python setup.py build -b <somedir> as far as I can tell there is _no way_ to just install the result. One needs to always do: python setup.py build -b <somedir> install This seems somewhat unwieldy; perhaps -b should be more universally available to all distutil commands? |
|||
| msg114464 - (view) | Author: Éric Araujo (eric.araujo) * (Python committer) | Date: 2010年08月20日 23:08 | |
Thanks for the report. distutils does not get new features anymore. This gives us time to focus on distutils2, the next generation. Thanks to the configure command (#8254), the functionality you require will be easily supported in distutils2. I’ll get back to this feature when configure is 100% finished and merged into the main repo. |
|||
| msg146440 - (view) | Author: Éric Araujo (eric.araujo) * (Python committer) | Date: 2011年10月26日 16:06 | |
Actually I think this bug can be fixed in distutils. |
|||
| msg147496 - (view) | Author: Éric Araujo (eric.araujo) * (Python committer) | Date: 2011年11月12日 15:05 | |
I’ve found a distutils commit that shows that this option was removed on purpose, because people might except that using "install -b foo" would affect the build command, but it does not. I don’t think it’s a problem. For people who run build and install in separate steps, it should be possible to say "build -b spam" and then "install -b spam". |
|||
| msg224729 - (view) | Author: Ezio Melotti (ezio.melotti) * (Python committer) | Date: 2014年08月04日 14:55 | |
Éric, can this be closed then? |
|||
| msg224748 - (view) | Author: Éric Araujo (eric.araujo) * (Python committer) | Date: 2014年08月04日 18:20 | |
In my previous message I meant that I agreed with the original request, i.e. add --build-base to install. I will probably never have the time to write a patch. |
|||
| msg225163 - (view) | Author: Sean McCully (seanmccully) * | Date: 2014年08月10日 21:40 | |
Please advise any changes that need to be made, this is technically my second patch submission to cpython. I also had trouble running the unittests when backporting to 2.7. Look at distutils, there wasn't a clear method for linking commands to share common options. This led to the solution provided which searches command options provided (via command line or configuration) for any shared options between command being ran and commands specified. Patch for Python 3.4 attached. |
|||
| msg225164 - (view) | Author: Sean McCully (seanmccully) * | Date: 2014年08月10日 21:41 | |
Attachng Python 3.5/default branch patch. |
|||
| msg225165 - (view) | Author: Sean McCully (seanmccully) * | Date: 2014年08月10日 21:41 | |
Attaching Python 2.7 patch. |
|||
| msg348620 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2019年07月29日 11:34 | |
This issue is 15 years old and has 3 patches: it's far from being "newcomer friendly", I remove the "Easy" label. |
|||
| msg386278 - (view) | Author: Steve Dower (steve.dower) * (Python committer) | Date: 2021年02月03日 18:10 | |
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 you believe it still requires a fix, most likely the issue should be re-reported at https://github.com/pypa/setuptools |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:06 | admin | set | github: 40775 |
| 2021年02月03日 18:10:32 | steve.dower | set | status: open -> closed nosy: + steve.dower messages: + msg386278 resolution: out of date stage: needs patch -> resolved |
| 2019年07月29日 11:34:18 | vstinner | set | keywords:
- easy nosy: + vstinner messages: + msg348620 |
| 2014年08月10日 21:41:42 | seanmccully | set | files:
+ issue1011113-py27.patch messages: + msg225165 |
| 2014年08月10日 21:41:18 | seanmccully | set | files:
+ issue1011113-default.patch messages: + msg225164 |
| 2014年08月10日 21:40:31 | seanmccully | set | files:
+ issue1011113-py34.patch nosy: + seanmccully messages: + msg225163 keywords: + patch |
| 2014年08月04日 18:20:00 | eric.araujo | set | status: pending -> open dependencies: - write a configure command messages: + msg224748 |
| 2014年08月04日 14:55:17 | ezio.melotti | set | status: open -> pending nosy: + ezio.melotti messages: + msg224729 |
| 2014年07月05日 22:10:35 | BreamoreBoy | set | nosy:
+ dstufft components: - Distutils2 versions: + Python 3.4, Python 3.5, - 3rd party, Python 3.2, Python 3.3 |
| 2011年11月12日 15:05:59 | eric.araujo | set | messages: + msg147496 |
| 2011年10月26日 16:06:09 | eric.araujo | set | components:
+ Distutils versions: + Python 2.7, Python 3.2, Python 3.3 keywords: + easy messages: + msg146440 type: enhancement -> behavior resolution: remind -> (no value) stage: needs patch |
| 2011年02月13日 16:06:10 | alexis | set | nosy:
+ alexis |
| 2010年09月30日 00:34:51 | eric.araujo | set | versions: + 3rd party, - Python 2.6, Python 2.5, Python 3.1, Python 2.7, Python 3.2 |
| 2010年08月21日 03:10:37 | terry.reedy | set | nosy:
- terry.reedy |
| 2010年08月20日 23:08:51 | eric.araujo | set | assignee: tarek -> eric.araujo dependencies: + write a configure command type: enhancement components: + Distutils2, - Distutils title: distutils install with -b / --build-base -> Make "install" find the build_base directory nosy: terry.reedy, daishiharada, tarek, eric.araujo versions: + Python 2.6, Python 2.5, Python 3.1, Python 2.7, Python 3.2 messages: + msg114464 resolution: remind |
| 2010年08月20日 22:52:10 | eric.araujo | set | messages: - msg114463 |
| 2010年08月20日 22:52:05 | eric.araujo | set | messages: - msg113025 |
| 2010年08月20日 22:52:00 | eric.araujo | set | messages: - msg113011 |
| 2010年08月20日 22:51:40 | eric.araujo | set | messages: + msg114463 |
| 2010年08月05日 19:18:45 | eric.araujo | set | nosy:
+ eric.araujo messages: + msg113025 |
| 2010年08月05日 19:02:21 | terry.reedy | set | nosy:
+ terry.reedy messages: + msg113011 components: + Distutils, - None |
| 2009年02月11日 02:55:42 | ajaksu2 | set | assignee: tarek nosy: + tarek |
| 2004年08月18日 00:36:12 | daishiharada | create | |