From: "Alexey M. Tourbin" <at@altlinux.org> To: devel@lists.altlinux.org Subject: [devel] [git update] packages/python: heads/master Date: Thu, 15 Mar 2007 08:56:41 +0300 Message-ID: <20070315055641.GT6039@solemn.turbinal> (raw) [-- Attachment #1: Type: text/plain, Size: 5551 bytes --] Впрочем, хорошо, что специалист по питону есть. Жаль лишь, что... как там в Библии... может быть, он задумался, или занят чем-либо, или в дороге, а может быть, и спит, так он проснется! Питон распилен плохо. Во-первых, пакет python-base нельзя установить "просто так", поскольку он вытягивает python-strict (или python-relaxed). Имеет место быть круговая порука python-base <=> python-strict. Во-вторых, python-base слишком тощий. Он не обеспечивает "самого основного", так что его сущность не вполне совершенна. По поводу самого основного см. ниже commit message. python-strict в свою очередь слишком жирный. Я уже переместил /usr/bin/python из python-strict в python-base, стараясь при этом не разламывать many-world интерпретации Андрея Орлова. В-третьих, в python-base находится /usr/bin/pydoc, а pydoc по зависимостям вытягивает модуль pydoc.py, который в свою очередь вытягивает некоторые интроспективные/компиляторные модули, т.к. ему нужно смотреть в docstring. Сейчас зависимости в /usr/bin/pydoc просто не ищутся, но если эту лавочку прикрыть, а мы ее прикроем, тогда, по сути, придется решать, сделать ли более толстым python-base, или же запаковать pydoc куда-нибудь отдельно. Кроме того, некоторые интроспективные/компиляторные модули нужны для rpm-build-python, и они тоже должны (желательно) находится в python-base. В общем, соображения на этот счет мне интересны. План такой. 1) Я перетасую python, с учетом всех предложений, если таковые поступят. Потом кто-нибудь должен проверить и отправим на сборку. 2) Потом нужно доделать/пересобрать rpm-build-python с зависимостью на новый python-base. Это даст заведомой рабочий rpm-build-python + python-base в базовой сборочной среде. 3) Дальше я вернусь к rpm-build. Update of /people/at/packages/python.git Changes statistics since `2.4.4-alt2-14-g1f6bae6' follows: modules-list/base-list | 4 ++++ modules-list/modules/base-list | 11 ----------- modules-list/modules/modules-bsddb-list | 1 - modules-list/modules/modules-cgi-list | 2 -- modules-list/modules/modules-cmd-list | 1 - modules-list/modules/modules-codecs-list | 4 ---- modules-list/modules/modules-compiler-list | 13 ------------- modules-list/modules/modules-compress-list | 4 ---- modules-list/modules/modules-control-list | 6 ------ modules-list/modules/modules-crypt-list | 3 --- modules-list/modules/modules-curses-list | 1 - modules-list/modules/modules-data-list | 4 ---- modules-list/modules/modules-dbm-list | 5 ----- modules-list/modules/modules-dev-list | 3 --- modules-list/modules/modules-devel-list | 12 ------------ modules-list/modules/modules-email-list | 9 --------- modules-list/modules/modules-execute-list | 3 --- modules-list/modules/modules-file-list | 8 -------- modules-list/modules/modules-hotshot-list | 1 - modules-list/modules/modules-html-list | 6 ------ modules-list/modules/modules-http-list | 11 ----------- modules-list/modules/modules-img-list | 1 - modules-list/modules/modules-import-list | 3 --- modules-list/modules/modules-io-list | 1 - modules-list/modules/modules-mac-list | 2 -- modules-list/modules/modules-marshal-list | 2 -- modules-list/modules/modules-modules-list | 3 --- modules-list/modules/modules-mswin-list | 2 -- modules-list/modules/modules-net-list | 13 ------------- modules-list/modules/modules-random-list | 2 -- modules-list/modules/modules-sound-list | 8 -------- modules-list/modules/modules-sre-list | 4 ---- modules-list/modules/modules-string-list | 1 - modules-list/modules/modules-user-list | 3 --- modules-list/modules/modules-xmlrpc-list | 4 ---- 35 files changed, 4 insertions(+), 157 deletions(-) Changelog since `2.4.4-alt2-14-g1f6bae6' follows: commit b6244b3fdda2c1ef0107648242c3b7c69453622f Author: Alexey Tourbin <at@altlinux.ru> Date: Thu Mar 15 08:16:40 2007 +0300 modules-list/base-list: also added time.so Now python-base provides all most wanted python modules. $ apt-cache dump |tr ' ' '\n' |fgrep python2.4 |sort |uniq -c |sort -n |tail 62 python2.4(math) 65 python2.4(traceback) 67 python2.4(cStringIO) 67 python2.4(copy) 77 libpython2.4.so.1.0 137 python2.4(types) 144 python2.4(time) 161 python2.4(string) 166 python2.4(re) 233 python2.4(os) $ commit 53c505b10465b21d74e5dcca2fe92d25a2c024a3 Author: Alexey Tourbin <at@altlinux.ru> Date: Thu Mar 15 07:21:50 2007 +0300 modules-list/base-list: added string and re (+ sre* for re) commit 14ccd1867e6a082a4a99482570f023183d8558a2 Author: Alexey Tourbin <at@altlinux.ru> Date: Thu Mar 15 07:06:43 2007 +0300 removed modules-list/modules/, as it seems to be duplicated and unused Full diff since `2.4.4-alt2-14-g1f6bae6' follows: diff --git a/modules-list/base-list b/modules-list/base-list index 7b64bb1..9d189c8 100644 --- a/modules-list/base-list +++ b/modules-list/base-list @@ -2,11 +2,15 @@ UserDict.py codecs.py copy_reg.py lib-dynload/readline.so +lib-dynload/time.so linecache.py os.py posixpath.py +re.py +sre*.py site.py stat.py +string.py types.py warnings.py __future__.py [-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
next reply other threads:[~2007-03-15 5:56 UTC|newest] Thread overview: 89+ messages / expand[flat|nested] mbox.gz Atom feed top 2007-03-15 5:56 Alexey M. Tourbin [this message] 2007-03-15 9:12 ` Alexey I. Froloff 2007-03-15 9:14 ` Aleksey Avdeev 2007-03-15 9:36 ` Ivan Fedorov 2007-03-15 9:33 ` Aleksey Avdeev 2007-03-15 9:50 ` Ivan Fedorov 2007-03-15 9:57 ` Aleksey Avdeev 2007-03-15 10:15 ` Ivan Fedorov 2007-03-18 22:10 ` [devel] [JT] python policy и отношение к коллегам Michael Shigorin 2007-03-18 22:25 ` Dmitry V. Levin 2007-03-19 18:04 ` Ivan Fedorov 2007-03-19 18:03 ` Ivan Fedorov 2007-03-19 18:29 ` Alexey I. Froloff 2007-03-19 18:34 ` Ivan Fedorov 2007-03-19 18:52 ` Alexey I. Froloff 2007-03-19 19:08 ` Ivan Fedorov 2007-03-19 19:16 ` Alexey I. Froloff 2007-03-19 20:03 ` Ivan Fedorov 2007-03-19 20:30 ` Alexey I. Froloff 2007-03-19 21:26 ` Денис Смирнов 2007-03-19 22:20 ` Alexey I. Froloff 2007-03-19 22:23 ` Konstantin Pavlov 2007-03-19 22:40 ` Dmitry V. Levin 2007-03-19 23:23 ` Alexey I. Froloff 2007-03-20 9:08 ` Денис Смирнов 2007-03-20 9:16 ` Ivan Fedorov 2007-03-20 9:37 ` Денис Смирнов 2007-03-19 21:14 ` Денис Смирнов 2007-03-15 9:41 ` [devel] [git update] packages/python: heads/master Mikhail Gusarov 2007-03-15 9:43 ` Ivan Fedorov 2007-03-15 9:45 ` Mikhail Gusarov 2007-03-15 20:03 ` Konstantin A. Lepikhov 2007-03-15 9:38 ` Mikhail Gusarov 2007-03-18 15:37 ` [devel] python-modules-encodings Alexey Tourbin 2007-03-18 15:41 ` Mikhail Gusarov 2007-03-18 15:47 ` Alexey Tourbin 2007-03-18 15:52 ` Mikhail Gusarov 2007-03-18 15:59 ` Alexey Tourbin 2007-03-18 16:10 ` Mikhail Gusarov 2007-03-18 16:21 ` Alexey Tourbin 2007-03-18 16:29 ` Mikhail Gusarov 2007-03-18 17:00 ` Alexey I. Froloff 2007-03-18 18:28 ` Alexey Tourbin 2007-03-18 20:10 ` Mikhail Gusarov 2007-03-19 22:23 ` [devel] buildreq Dmitry V. Levin 2007-03-18 21:38 ` [devel] python-modules-encodings Alexey I. Froloff 2007-03-19 17:53 ` Ivan Fedorov 2007-03-19 18:24 ` Alexey Tourbin 2007-03-19 18:42 ` Ivan Fedorov 2007-03-19 18:51 ` Alexey Tourbin 2007-03-19 19:12 ` Ivan Fedorov 2007-03-19 19:36 ` Alexey Tourbin 2007-03-19 19:58 ` Ivan Fedorov 2007-03-18 17:02 ` Michael Shigorin 2007-03-19 17:54 ` Ivan Fedorov 2007-03-19 21:25 ` [devel] buildreq += autoignore Michael Shigorin 2007-03-19 21:36 ` Alexey Tourbin 2007-03-19 21:56 ` Alexey I. Froloff 2007-03-19 22:03 ` Alexey Tourbin 2007-03-19 22:13 ` Michael Shigorin 2007-03-19 22:21 ` Alexey Tourbin 2007-03-19 22:28 ` Dmitry V. Levin 2007-03-19 22:34 ` Michael Shigorin 2007-03-20 17:11 ` Igor Zubkov 2007-03-20 17:13 ` Alexey Tourbin 2007-03-20 17:16 ` Igor Zubkov 2007-03-19 22:43 ` Motsyo Gennadi aka Drool 2007-03-19 22:48 ` Dmitry V. Levin 2007-03-19 23:00 ` Motsyo Gennadi aka Drool 2007-03-19 23:08 ` Alexey Tourbin 2007-03-29 22:26 ` [devel] [FR] buildreq: non-pruned deps as a spec comment Michael Shigorin 2007-03-29 22:51 ` [devel] " Alexey Tourbin 2007-03-30 7:52 ` Michael Shigorin 2007-03-18 16:54 ` [devel] python-modules-encodings Michael Shigorin 2007-03-18 20:11 ` Mikhail Gusarov 2007-03-18 15:52 ` Alexey I. Froloff 2007-03-18 18:12 ` Alexey Tourbin 2007-03-19 16:35 ` Alexey Morsov 2007-03-19 16:39 ` Alexey Tourbin 2007-03-19 17:05 ` Alexey Morsov 2007-03-15 9:43 ` [devel] [git update] packages/python: heads/master Ivan Fedorov 2007-03-15 10:55 ` Alexey Tourbin 2007-03-15 11:37 ` Ivan Fedorov 2007-03-15 12:11 ` Alexey Tourbin 2007-03-15 12:47 ` Ivan Fedorov 2007-03-15 12:57 ` Alexey I. Froloff 2007-03-15 13:19 ` Alexey Tourbin 2007-03-15 13:32 ` Ivan Fedorov 2007-03-15 13:19 ` Dmitry V. Levin
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20070315055641.GT6039@solemn.turbinal \ --to=at@altlinux.org \ --cc=devel@lists.altlinux.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
ALT Linux Team development discussions This inbox may be cloned and mirrored by anyone: git clone --mirror http://lore.altlinux.org/devel/0 devel/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 devel devel/ http://lore.altlinux.org/devel \ devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru public-inbox-index devel Example config snippet for mirrors. Newsgroup available over NNTP: nntp://lore.altlinux.org/org.altlinux.lists.devel AGPL code for this site: git clone https://public-inbox.org/public-inbox.git