ALT Linux Team development discussions
 help / color / mirror / Atom feed
* [devel] help: rebuild with python
@ 2004-05-24 14:23 Grigory Batalov
  2004-05-24 15:30 ` Dmitry V. Levin
  0 siblings, 1 reply; 6+ messages in thread
From: Grigory Batalov @ 2004-05-24 14:23 UTC (permalink / raw)
  To: devel

Здравствуйте!

Помогите с питоньими ошибками: сборка cooledit останавливается
на следующем:

...
i586-alt-linux-gcc -pipe -Wall -O2 -march=i586 -mcpu=i686 -I/usr/X11R6/include -o .libs/cooledit cooledit.o find.o editoptions.o mancmd.o options.o debug.o cooleditmenus.o shell.o mail.o complete.o manpage.o percentsubs.o _coolpython.o postscript.o print.o rxvt.o  -L/usr/X11R6/lib ../rxvt/librxvt.a ../widget/.libs/libCw.so -lX11 -L/usr/././lib/python2.3/config -lpython2.3 -ldl -lpthread -lm -lutil
/usr/././lib/python2.3/config/libpython2.3.a(posixmodule.o)(.text+0x403e): In function `posix_tmpnam':
: warning: the use of `tmpnam_r' is dangerous, better use `mkstemp'
/usr/././lib/python2.3/config/libpython2.3.a(posixmodule.o)(.text+0x3f69): In function `posix_tempnam':
: warning: the use of `tempnam' is dangerous, better use `mkstemp'
/usr/././lib/python2.3/config/libpython2.3.a(floatobject.o)(.text+0x165): In function `PyFloat_FromString':
: undefined reference to `__ctype_b'
/usr/././lib/python2.3/config/libpython2.3.a(floatobject.o)(.text+0x204): In function `PyFloat_FromString':
: undefined reference to `__ctype_b'
...

Также имеются undefined reference to `__ctype_tolower',
`__ctype_toupper'.

Кто виноват и Что делать?


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [devel] help: rebuild with python
  2004-05-24 14:23 [devel] help: rebuild with python Grigory Batalov
@ 2004-05-24 15:30 ` Dmitry V. Levin
  2004-05-24 19:23   ` Grigory Batalov
  0 siblings, 1 reply; 6+ messages in thread
From: Dmitry V. Levin @ 2004-05-24 15:30 UTC (permalink / raw)
  To: ALT Devel discussion list

[-- Attachment #1: Type: text/plain, Size: 1400 bytes --]

On Mon, May 24, 2004 at 06:23:15PM +0400, Grigory Batalov wrote:
> Помогите с питоньими ошибками: сборка cooledit останавливается
> на следующем:
> 
> ...
> i586-alt-linux-gcc -pipe -Wall -O2 -march=i586 -mcpu=i686 -I/usr/X11R6/include -o .libs/cooledit cooledit.o find.o editoptions.o mancmd.o options.o debug.o cooleditmenus.o shell.o mail.o complete.o manpage.o percentsubs.o _coolpython.o postscript.o print.o rxvt.o  -L/usr/X11R6/lib ../rxvt/librxvt.a ../widget/.libs/libCw.so -lX11 -L/usr/././lib/python2.3/config -lpython2.3 -ldl -lpthread -lm -lutil
> /usr/././lib/python2.3/config/libpython2.3.a(posixmodule.o)(.text+0x403e): In function `posix_tmpnam':
> : warning: the use of `tmpnam_r' is dangerous, better use `mkstemp'
> /usr/././lib/python2.3/config/libpython2.3.a(posixmodule.o)(.text+0x3f69): In function `posix_tempnam':
> : warning: the use of `tempnam' is dangerous, better use `mkstemp'
> /usr/././lib/python2.3/config/libpython2.3.a(floatobject.o)(.text+0x165): In function `PyFloat_FromString':
> : undefined reference to `__ctype_b'
> /usr/././lib/python2.3/config/libpython2.3.a(floatobject.o)(.text+0x204): In function `PyFloat_FromString':
> : undefined reference to `__ctype_b'
> ...
> 
> Также имеются undefined reference to `__ctype_tolower',
> `__ctype_toupper'.
> 
> Кто виноват и Что делать?

У вас слишком старая сборочная среда.


-- 
ldv

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [devel] help: rebuild with python
  2004-05-24 15:30 ` Dmitry V. Levin
@ 2004-05-24 19:23   ` Grigory Batalov
  2004-05-24 21:21     ` Andrey Orlov
  2004-05-25  9:21     ` Dmitry V. Levin
  0 siblings, 2 replies; 6+ messages in thread
From: Grigory Batalov @ 2004-05-24 19:23 UTC (permalink / raw)
  To: ALT Devel discussion list

On Mon, 24 May 2004 19:30:54 +0400
"Dmitry V. Levin" <ldv@altlinux.org> wrote:

> > /usr/././lib/python2.3/config/libpython2.3.a(floatobject.o)(.text+0x204): In function `PyFloat_FromString':
> > : undefined reference to `__ctype_b'
> > ...
> > 
> > Также имеются undefined reference to `__ctype_tolower',
> > `__ctype_toupper'.
> > 
> > Кто виноват и Что делать?
> 
> У вас слишком старая сборочная среда.

  Это Сизиф от 27 апреля. Обновление каких-нибудь отдельных
  пакетов поможет? (Каких?)

$ rpm -q rpm rpm-python hasher apt
rpm-4.0.4-alt36
rpm-python-4.0.4_2.3-alt36
hasher-0.9.8-alt1
apt-0.5.15cnc5-alt4

  Я поставил BuildRequires: python-devel = %__python_version,
  которое при сборке преобразовалось в python-devel = 2.3.
  Если это всё, что требуется, могу залить пакет, не проверяя.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [devel] help: rebuild with python
  2004-05-24 19:23   ` Grigory Batalov
@ 2004-05-24 21:21     ` Andrey Orlov
  2004-05-25  9:20       ` Dmitry V. Levin
  2004-05-25  9:21     ` Dmitry V. Levin
  1 sibling, 1 reply; 6+ messages in thread
From: Andrey Orlov @ 2004-05-24 21:21 UTC (permalink / raw)
  To: ALT Devel discussion list

>   Это Сизиф от 27 апреля. Обновление каких-нибудь отдельных
>   пакетов поможет? (Каких?)

Там где-то в процессе ssl обновился и весь gcc, да еще  и несколько рах.
Так что обновлять надо все.

>   Я поставил BuildRequires: python-devel = %__python_version,
>   которое при сборке преобразовалось в python-devel = 2.3.
>   Если это всё, что требуется, могу залить пакет, не проверяя.

Нет конечно. Как минимум надо проверить что автоматически найденные зависимости удовляетворяются.
Как максимум - привести пакет в соотв. с полиси.

-- 
WthBstRgrds -- Андрей Орлов --  
 --- http: www.neural.ru, mail: cray@neural.ru, jid: cray@altlinux.org ---
----------------------------------------


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [devel] help: rebuild with python
  2004-05-24 21:21     ` Andrey Orlov
@ 2004-05-25  9:20       ` Dmitry V. Levin
  0 siblings, 0 replies; 6+ messages in thread
From: Dmitry V. Levin @ 2004-05-25  9:20 UTC (permalink / raw)
  To: ALT Devel discussion list

[-- Attachment #1: Type: text/plain, Size: 288 bytes --]

On Tue, May 25, 2004 at 01:21:14AM +0400, Andrey Orlov wrote:
> >   Это Сизиф от 27 апреля. Обновление каких-нибудь отдельных
> >   пакетов поможет? (Каких?)
> 
> Там где-то в процессе ssl обновился и весь gcc, да еще  и несколько рах.

gcc обновился из-за binutils.


-- 
ldv

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [devel] help: rebuild with python
  2004-05-24 19:23   ` Grigory Batalov
  2004-05-24 21:21     ` Andrey Orlov
@ 2004-05-25  9:21     ` Dmitry V. Levin
  1 sibling, 0 replies; 6+ messages in thread
From: Dmitry V. Levin @ 2004-05-25  9:21 UTC (permalink / raw)
  To: ALT Devel discussion list

[-- Attachment #1: Type: text/plain, Size: 639 bytes --]

On Mon, May 24, 2004 at 11:23:05PM +0400, Grigory Batalov wrote:
> On Mon, 24 May 2004 19:30:54 +0400
> "Dmitry V. Levin" <ldv@altlinux.org> wrote:
> 
> > > /usr/././lib/python2.3/config/libpython2.3.a(floatobject.o)(.text+0x204): In function `PyFloat_FromString':
> > > : undefined reference to `__ctype_b'
> > > ...
> > > 
> > > Также имеются undefined reference to `__ctype_tolower',
> > > `__ctype_toupper'.
> > > 
> > > Кто виноват и Что делать?
> > 
> > У вас слишком старая сборочная среда.
> 
>   Это Сизиф от 27 апреля. Обновление каких-нибудь отдельных
>   пакетов поможет? (Каких?)

rpm+python.


-- 
ldv

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2004-05-25  9:21 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-05-24 14:23 [devel] help: rebuild with python Grigory Batalov
2004-05-24 15:30 ` Dmitry V. Levin
2004-05-24 19:23   ` Grigory Batalov
2004-05-24 21:21     ` Andrey Orlov
2004-05-25  9:20       ` Dmitry V. Levin
2004-05-25  9:21     ` Dmitry V. Levin

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