![]() |
2014-11-13
, 13:38
|
Posts: 1,203 |
Thanked: 3,027 times |
Joined on Dec 2010
|
#72
|
The Following User Says Thank You to Android_808 For This Useful Post: | ||
![]() |
2014-11-13
, 14:47
|
Posts: 1,548 |
Thanked: 7,510 times |
Joined on Apr 2010
@ Czech Republic
|
#73
|
I'm gonna guess that Modrana has that file because of development for other devices. Simple packaging fix there.
![]() |
2014-11-13
, 15:16
|
Posts: 3,328 |
Thanked: 4,476 times |
Joined on May 2011
@ Poland
|
#74
|
$ mount rootfs on / type rootfs (rw) ubi0:rootfs on / type ubifs (rw,bulk_read,no_chk_data_crc) proc on /proc type proc (rw) sysfs on /sys type sysfs (rw) tmpfs on /tmp type tmpfs (rw,noatime,size=1024k) tmpfs on /var/run type tmpfs (rw,nosuid,noatime,size=256k,mode=755) none on /dev type tmpfs (rw,noatime,size=10240k,mode=755) devpts on /dev/pts type devpts (rw,gid=5,mode=620) tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev,noatime,size=65536k) /dev/mmcblk0p2 on /home type ext3 (noatime,nodiratime,errors=continue,commit=1,data=writeback) /home/opt on /opt type none (bind,rbind) nodev on /sys/kernel/debug type debugfs (0) /opt/pymaemo/usr/lib/python2.5 on /usr/lib/python2.5 type bind (bind,rbind) /opt/pymaemo/usr/share/pyshared on /usr/share/pyshared type bind (bind,rbind) /opt/pymaemo/usr/lib/pyshared on /usr/lib/pyshared type bind (bind,rbind) /opt/pymaemo/usr/share/python-support on /usr/share/python-support type bind (bind,rbind) /opt/pymaemo/usr/lib/python-support on /usr/lib/python-support type bind (bind,rbind) /dev/mmcblk0p1 on /home/user/MyDocs type vfat (rw,noauto,nodev,exec,nosuid,noatime,nodiratime,utf8,uid=29999,shortname=mixed,dmask=000,fmask=0000,rodir) /dev/mmcblk1p1 on /media/mmc1 type vfat (rw,noauto,nodev,exec,nosuid,noatime,nodiratime,utf8,uid=29999,shortname=mixed,dmask=000,fmask=0000,rodir) $ dpkg -S '/usr/lib/python2.7*' modrana: /usr/lib/python2.7 modrana: /usr/lib/python2.7/site-packages/modrana-0.49.4-py2.7.egg-info modrana: /usr/lib/python2.7/site-packages $ find /usr/lib/python2.7 | xargs dpkg -S | grep -v 'not found$' //lots of lines here like these ones. dpkg: /usr/lib/python2.7/dist-packages/gst-0.10/gst/extend/jukebox.py not found. dpkg: /usr/lib/python2.7/dist-packages/gst-0.10/gst/extend/sources.py not found. dpkg: /usr/lib/python2.7/dist-packages/gst-0.10/gst/extend/jukebox.pyc not found. dpkg: /usr/lib/python2.7/dist-packages/gst-0.10/gst/extend/discoverer.py not found. dpkg: /usr/lib/python2.7/dist-packages/gst-0.10/gst/extend/utils.pyc not found. dpkg: /usr/lib/python2.7/dist-packages/gst-0.10/gst/extend/utils.py not found. dpkg: /usr/lib/python2.7/dist-packages/configobj.py not found. dpkg: /usr/lib/python2.7/dist-packages/pygst.py not found. dpkg: /usr/lib/python2.7/dist-packages/PIL.pth not found. dpkg: /usr/lib/python2.7/python2.7 not found.
The Following User Says Thank You to marmistrz For This Useful Post: | ||
![]() |
2014-11-13
, 22:35
|
Posts: 1,203 |
Thanked: 3,027 times |
Joined on Dec 2010
|
#75
|
![]() |
2014-11-14
, 07:44
|
Posts: 3,328 |
Thanked: 4,476 times |
Joined on May 2011
@ Poland
|
#76
|
I wonder if during installation it is seeing 2.5 modules and incorrectly generating bytecode.
![]() |
2014-11-14
, 17:23
|
Posts: 18 |
Thanked: 20 times |
Joined on Jul 2008
|
#77
|
pycentral list | fgrep python2.7
![]() |
2014-11-14
, 18:17
|
Posts: 3,328 |
Thanked: 4,476 times |
Joined on May 2011
@ Poland
|
#78
|
pycentral detects python installed version from /usr/bin/python*.
During postinst of python-osso, for example, pycentral installs it for every detected python-version. But, if /usr/bin/python2.7 exists, python2.7-minimal should be installed and /usr/lib/python2.7 should be a symlink, so we can let pycentral do his job. Do you agree ?
Installing python2.7-minimal If exists /usr/lib/python2.7 then move /usr/lib/python2.7 make it a symlink fi Continue install
@marmistrz, something strange has happened in your system, like reinstalled those packages when you had a non-optified version of python2.7.
Check if these files are managed py pycentral
Code:pycentral list | fgrep python2.7
![]() |
2014-11-14
, 20:10
|
|
Posts: 1,348 |
Thanked: 1,863 times |
Joined on Jan 2009
@ fr/35/rennes
|
#79
|
The Following User Says Thank You to www.rzr.online.fr For This Useful Post: | ||
![]() |
2014-11-14
, 20:11
|
Posts: 3,328 |
Thanked: 4,476 times |
Joined on May 2011
@ Poland
|
#80
|
The Following 2 Users Say Thank You to marmistrz For This Useful Post: | ||
Modrana installs /usr/lib/python2.7/site-packages/modrana-0.49.4-py2.7.egg-info, manually in debian/rules ( i don't know why ).
So, if there are packages in repositories creating /usr/lib/python2.7, we could:
1 - (ask to) modify these packages, they shouldn't use /usr/lib/python2.7 if they don't depend on python2.7-minimal
2 - during python2.7-minimal postinst, if exists copy everything from /usr/lib/python2.7 to /opt/python2.7/lib, then symlink
some
3 - do not symlink python27 in /usr/lib, but add /usr/lib/python2.7/site-packages and /usr/lib/python2.7/dist-packages to python search path way
Last edited by wazrus; 2014-11-13 at 12:44.