Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #49721 > unrolled thread
| Started by | Steven D'Aprano <steve+comp.lang.python@pearwood.info> |
|---|---|
| First post | 2013-07-03 12:22 +0000 |
| Last post | 2013-07-04 00:07 +1000 |
| Articles | 6 — 4 participants |
Back to article view | Back to comp.lang.python
Why is CPython 2.5 a dependency for Jython 2.5? Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-07-03 12:22 +0000
Re: Why is CPython 2.5 a dependency for Jython 2.5? rusi <rustompmody@gmail.com> - 2013-07-03 05:38 -0700
Re: Why is CPython 2.5 a dependency for Jython 2.5? Skip Montanaro <skip@pobox.com> - 2013-07-03 07:43 -0500
Re: Why is CPython 2.5 a dependency for Jython 2.5? Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-07-03 12:48 +0000
Re: Why is CPython 2.5 a dependency for Jython 2.5? rusi <rustompmody@gmail.com> - 2013-07-03 05:55 -0700
Re: Why is CPython 2.5 a dependency for Jython 2.5? Chris Angelico <rosuav@gmail.com> - 2013-07-04 00:07 +1000
| From | Steven D'Aprano <steve+comp.lang.python@pearwood.info> |
|---|---|
| Date | 2013-07-03 12:22 +0000 |
| Subject | Why is CPython 2.5 a dependency for Jython 2.5? |
| Message-ID | <51d41774$0$29999$c3e8da3$5496439d@news.astraweb.com> |
I'm running a box with Debian squeeze, and I just ran: sudo aptitude install jython which ended up installing Python 2.5: [...] Linking and byte-compiling packages for runtime python2.5... Setting up python2.5 (2.5.5-11) ... Does anyone know why CPython 2.5 is a dependency for Jython 2.5.1+ on Debian squeeze? -- Steven
[toc] | [next] | [standalone]
| From | rusi <rustompmody@gmail.com> |
|---|---|
| Date | 2013-07-03 05:38 -0700 |
| Message-ID | <ca379157-c111-4c12-9687-3bc17fd190db@googlegroups.com> |
| In reply to | #49721 |
On Wednesday, July 3, 2013 5:52:12 PM UTC+5:30, Steven D'Aprano wrote: > Does anyone know why CPython 2.5 is a dependency for Jython 2.5.1+ on > Debian squeeze? Not exactly answering your question... The debian dependencies can be fairly 'conservative' which means all kinds of stuff is pulled in 'just-in-case' eg Ive seen aptitude build-dep pull in a ridiculous amount of doc-stuff like latex (whose size is of the order of GBs) probably because some document format may require it.
[toc] | [prev] | [next] | [standalone]
| From | Skip Montanaro <skip@pobox.com> |
|---|---|
| Date | 2013-07-03 07:43 -0500 |
| Message-ID | <mailman.4162.1372855434.3114.python-list@python.org> |
| In reply to | #49721 |
> Does anyone know why CPython 2.5 is a dependency for Jython 2.5.1+ on > Debian squeeze? Might Jython use some Python modules/packages unmodified? Does sys.path in Jython refer to the CPython tree? Skip
[toc] | [prev] | [next] | [standalone]
| From | Steven D'Aprano <steve+comp.lang.python@pearwood.info> |
|---|---|
| Date | 2013-07-03 12:48 +0000 |
| Message-ID | <51d41da2$0$29999$c3e8da3$5496439d@news.astraweb.com> |
| In reply to | #49724 |
On Wed, 03 Jul 2013 07:43:46 -0500, Skip Montanaro wrote: >> Does anyone know why CPython 2.5 is a dependency for Jython 2.5.1+ on >> Debian squeeze? > > Might Jython use some Python modules/packages unmodified? Does sys.path > in Jython refer to the CPython tree? Apparently not: >>> sys.path ['', '/usr/lib/site-python', '/usr/share/jython/Lib', '__classpath__', '__pyclasspath__/', '/usr/share/jython/Lib/site-packages'] -- Steven
[toc] | [prev] | [next] | [standalone]
| From | rusi <rustompmody@gmail.com> |
|---|---|
| Date | 2013-07-03 05:55 -0700 |
| Message-ID | <04908475-5353-4322-97c7-7e819a6c28b6@googlegroups.com> |
| In reply to | #49721 |
On Wednesday, July 3, 2013 5:52:12 PM UTC+5:30, Steven D'Aprano wrote:
> I'm running a box with Debian squeeze, and I just ran:
> sudo aptitude install jython
> which ended up installing Python 2.5:
BTW trying to install jython out here gave me this list
(which does not seem to have this dependency):
$ sudo aptitude install jython
The following NEW packages will be installed:
antlr3{a} ca-certificates-java{a} default-jdk{a} default-jre{a}
default-jre-headless{a} icedtea-6-jre-cacao{a} icedtea-6-jre-jamvm{a}
icedtea-netx{a} icedtea-netx-common{a} jython libantlr-java{a}
libasm4-java{a} libatk-wrapper-java{a} libatk-wrapper-java-jni{a}
libconstantine-java{a} libguava-java{a} libjaffl-java{a} libjffi-java{a}
libjffi-jni{a} libjnr-netdb-java{a} libjnr-posix-java{a}
libjnr-x86asm-java{a} libjsr305-java{a} liblivetribe-jsr223-java{a}
libreadline-java{a} libstringtemplate-java{a} openjdk-6-jdk{a}
openjdk-6-jre{a} openjdk-6-jre-headless{a} openjdk-6-jre-lib{a}
tzdata-java{a}
$ cat /etc/debian_version
jessie/sid
[And python2.5 is not installed]
[toc] | [prev] | [next] | [standalone]
| From | Chris Angelico <rosuav@gmail.com> |
|---|---|
| Date | 2013-07-04 00:07 +1000 |
| Message-ID | <mailman.4168.1372860444.3114.python-list@python.org> |
| In reply to | #49727 |
On Wed, Jul 3, 2013 at 10:55 PM, rusi <rustompmody@gmail.com> wrote:
> On Wednesday, July 3, 2013 5:52:12 PM UTC+5:30, Steven D'Aprano wrote:
>> I'm running a box with Debian squeeze, and I just ran:
>> sudo aptitude install jython
>> which ended up installing Python 2.5:
>
> BTW trying to install jython out here gave me this list
> (which does not seem to have this dependency):
>
> $ sudo aptitude install jython
> The following NEW packages will be installed:
> antlr3{a} ca-certificates-java{a} default-jdk{a} default-jre{a}
> default-jre-headless{a} icedtea-6-jre-cacao{a} icedtea-6-jre-jamvm{a}
> icedtea-netx{a} icedtea-netx-common{a} jython libantlr-java{a}
> libasm4-java{a} libatk-wrapper-java{a} libatk-wrapper-java-jni{a}
> libconstantine-java{a} libguava-java{a} libjaffl-java{a} libjffi-java{a}
> libjffi-jni{a} libjnr-netdb-java{a} libjnr-posix-java{a}
> libjnr-x86asm-java{a} libjsr305-java{a} liblivetribe-jsr223-java{a}
> libreadline-java{a} libstringtemplate-java{a} openjdk-6-jdk{a}
> openjdk-6-jre{a} openjdk-6-jre-headless{a} openjdk-6-jre-lib{a}
> tzdata-java{a}
>
> $ cat /etc/debian_version
> jessie/sid
>
> [And python2.5 is not installed]
Python 2.5 may not be installed (it's no longer available on Wheezy,
so it wouldn't surprise me if Jessie also doesn't have it), but quite
possibly there's another Python available. On my Wheezy system, I
already have Python 2.7 installed, and apt-getting jython doesn't ask
to install any more Pythons; but 'apt-cache show jython' doesn't
suggest anything that'd be pulling in Python, and I don't have a handy
way to poke around and find what would be pulling that in.
ChrisA
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web