ALT Linux Team development discussions
 help / color / mirror / Atom feed
* [devel] I: solfege-3.10.3-alt1 broken
  @ 2008-03-19  8:33 ` Dmitry V. Levin
  2008-03-19 10:06   ` Alexey Tourbin
  0 siblings, 1 reply; 5+ messages in thread
From: Dmitry V. Levin @ 2008-03-19  8:33 UTC (permalink / raw)
  To: ALT Devel discussion list

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

On Wed, Mar 19, 2008 at 05:10:45AM +0300, QA Team Robot wrote:
> 	2 NEW bad_elf_symbols added to the list
> solfege	/usr/lib/solfege/_solfege_c_midi.so	U	awe_drum_channels
> solfege	/usr/lib/solfege/_solfege_c_midi.so	U	awe_set_channel_mode

Похоже что свежезалитый solfege-3.10.3-alt1 сломан.

В логе сборки пакета присутствуют строки
verify-elf: WARNING: ./usr/lib/solfege/_solfege_c_midi.so: undefined symbol: awe_drum_channels
verify-elf: WARNING: ./usr/lib/solfege/_solfege_c_midi.so: undefined symbol: awe_set_channel_mode
но мантейнер, видимо, не обратил на это внимания.


-- 
ldv

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

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

* Re: [devel] I: solfege-3.10.3-alt1 broken
  2008-03-19  8:33 ` [devel] I: solfege-3.10.3-alt1 broken Dmitry V. Levin
@ 2008-03-19 10:06   ` Alexey Tourbin
  2008-03-19 10:20     ` Dmitry V. Levin
  0 siblings, 1 reply; 5+ messages in thread
From: Alexey Tourbin @ 2008-03-19 10:06 UTC (permalink / raw)
  To: ALT Devel discussion list

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

On Wed, Mar 19, 2008 at 11:33:32AM +0300, Dmitry V. Levin wrote:
> On Wed, Mar 19, 2008 at 05:10:45AM +0300, QA Team Robot wrote:
> > 	2 NEW bad_elf_symbols added to the list
> > solfege	/usr/lib/solfege/_solfege_c_midi.so	U	awe_drum_channels
> > solfege	/usr/lib/solfege/_solfege_c_midi.so	U	awe_set_channel_mode
> 
> Похоже что свежезалитый solfege-3.10.3-alt1 сломан.
> 
> В логе сборки пакета присутствуют строки
> verify-elf: WARNING: ./usr/lib/solfege/_solfege_c_midi.so: undefined symbol: awe_drum_channels
> verify-elf: WARNING: ./usr/lib/solfege/_solfege_c_midi.so: undefined symbol: awe_set_channel_mode
> но мантейнер, видимо, не обратил на это внимания.

Я вчера посмотрел, в чём там дело.
Эти две функции реализованы в #ifdef'ах, а вызываются без ifdef'ов.

solfege-3.10.3/soundcard/macro_to_function.c:
    83  #ifdef HAVE_LINUX_AWE_VOICE_H
    84  void awe_set_channel_mode(int devnum, int mode)
    85  {
    86    AWE_SET_CHANNEL_MODE(devnum, mode);
    87  }
    88  
    89  void awe_drum_channels(int awe_dev, int ch)
    90  {
    91    AWE_DRUM_CHANNELS(awe_dev, ch);
    92  }
    93  #endif

Это напоминает кое-что...
Сегодня я понял, что это может быть связано с новым glibc-kernheaders:

/ALT/beehive/old-logs/i586/2008/0118/success/solfege-3.8.2-alt1:
   303  checking linux/awe_voice.h usability... yes
   304  checking linux/awe_voice.h presence... yes
   305  checking for linux/awe_voice.h... yes

свежий лог пересборки:
   314  checking linux/awe_voice.h usability... no
   315  checking linux/awe_voice.h presence... no
   316  checking for linux/awe_voice.h... no


То это не только maintainer не обратил внимания, а ещё и надо
разбираться, где собака зарыта.

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

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

* Re: [devel] I: solfege-3.10.3-alt1 broken
  2008-03-19 10:06   ` Alexey Tourbin
@ 2008-03-19 10:20     ` Dmitry V. Levin
  2008-03-19 10:31       ` Alexey Tourbin
  0 siblings, 1 reply; 5+ messages in thread
From: Dmitry V. Levin @ 2008-03-19 10:20 UTC (permalink / raw)
  To: ALT Devel discussion list

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

On Wed, Mar 19, 2008 at 01:06:09PM +0300, Alexey Tourbin wrote:
> On Wed, Mar 19, 2008 at 11:33:32AM +0300, Dmitry V. Levin wrote:
> > On Wed, Mar 19, 2008 at 05:10:45AM +0300, QA Team Robot wrote:
> > > 	2 NEW bad_elf_symbols added to the list
> > > solfege	/usr/lib/solfege/_solfege_c_midi.so	U	awe_drum_channels
> > > solfege	/usr/lib/solfege/_solfege_c_midi.so	U	awe_set_channel_mode
> > 
> > Похоже что свежезалитый solfege-3.10.3-alt1 сломан.
> > 
> > В логе сборки пакета присутствуют строки
> > verify-elf: WARNING: ./usr/lib/solfege/_solfege_c_midi.so: undefined symbol: awe_drum_channels
> > verify-elf: WARNING: ./usr/lib/solfege/_solfege_c_midi.so: undefined symbol: awe_set_channel_mode
> > но мантейнер, видимо, не обратил на это внимания.
> 
> Я вчера посмотрел, в чём там дело.
> Эти две функции реализованы в #ifdef'ах, а вызываются без ifdef'ов.

Не стоит так делать.

[...]
> Сегодня я понял, что это может быть связано с новым glibc-kernheaders:
> 
> /ALT/beehive/old-logs/i586/2008/0118/success/solfege-3.8.2-alt1:
>    303  checking linux/awe_voice.h usability... yes
>    304  checking linux/awe_voice.h presence... yes
>    305  checking for linux/awe_voice.h... yes
> 
> свежий лог пересборки:
>    314  checking linux/awe_voice.h usability... no
>    315  checking linux/awe_voice.h presence... no
>    316  checking for linux/awe_voice.h... no

В новом glibc-kernheaders нет файла linux/awe_voice.h
В дереве kernel-image-std-def его тоже нет с некоторых пор:

commit c467a388ae9f236c039d4d0f4c4be07c7deebe97
Author: Robert P. J. Day <rpjday@mindspring.com>
Date:   Tue May 8 00:27:26 2007 -0700

    Delete unused header file linux/awe_voice.h
    
    Delete the unused header file include/linux/awe_voice.h, as well as
    its corresponding Kbuild entry.
    
    Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
    Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
    Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

> То это не только maintainer не обратил внимания, а ещё и надо
> разбираться, где собака зарыта.

В пакете туча warning'ов от verify-elf'а.  Если бы их там не было, то
можно было бы выставить режим strict и пакет бы не собрался.


-- 
ldv

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

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

* Re: [devel] I: solfege-3.10.3-alt1 broken
  2008-03-19 10:20     ` Dmitry V. Levin
@ 2008-03-19 10:31       ` Alexey Tourbin
  2008-03-19 10:36         ` Dmitry V. Levin
  0 siblings, 1 reply; 5+ messages in thread
From: Alexey Tourbin @ 2008-03-19 10:31 UTC (permalink / raw)
  To: ALT Devel discussion list

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

On Wed, Mar 19, 2008 at 01:20:14PM +0300, Dmitry V. Levin wrote:
> В новом glibc-kernheaders нет файла linux/awe_voice.h
> В дереве kernel-image-std-def его тоже нет с некоторых пор:

Есть несколько пакетов, которые его используют:

allegro-4.2.2-alt1:checking linux/awe_voice.h usability... yes
allegro-4.2.2-alt1:checking linux/awe_voice.h presence... yes
allegro-4.2.2-alt1:checking for linux/awe_voice.h... yes

kdelibs-3.5.9-alt3:checking linux/awe_voice.h usability... yes
kdelibs-3.5.9-alt3:checking linux/awe_voice.h presence... yes
kdelibs-3.5.9-alt3:checking for linux/awe_voice.h... yes

kdemultimedia-3.5.9-alt1:checking linux/awe_voice.h usability... yes
kdemultimedia-3.5.9-alt1:checking linux/awe_voice.h presence... yes
kdemultimedia-3.5.9-alt1:checking for linux/awe_voice.h... yes

tse3-0.3.1-alt1:checking linux/awe_voice.h usability... yes
tse3-0.3.1-alt1:checking linux/awe_voice.h presence... yes
tse3-0.3.1-alt1:checking for linux/awe_voice.h... yes

xmp-2.0.5-alt2pre3:checking for linux/awe_voice.h... yes

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

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

* Re: [devel] I: solfege-3.10.3-alt1 broken
  2008-03-19 10:31       ` Alexey Tourbin
@ 2008-03-19 10:36         ` Dmitry V. Levin
  0 siblings, 0 replies; 5+ messages in thread
From: Dmitry V. Levin @ 2008-03-19 10:36 UTC (permalink / raw)
  To: ALT Devel discussion list

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

On Wed, Mar 19, 2008 at 01:31:42PM +0300, Alexey Tourbin wrote:
> On Wed, Mar 19, 2008 at 01:20:14PM +0300, Dmitry V. Levin wrote:
> > В новом glibc-kernheaders нет файла linux/awe_voice.h
> > В дереве kernel-image-std-def его тоже нет с некоторых пор:
> 
> Есть несколько пакетов, которые его используют:
> 
> allegro-4.2.2-alt1:checking linux/awe_voice.h usability... yes
> allegro-4.2.2-alt1:checking linux/awe_voice.h presence... yes
> allegro-4.2.2-alt1:checking for linux/awe_voice.h... yes
> 
> kdelibs-3.5.9-alt3:checking linux/awe_voice.h usability... yes
> kdelibs-3.5.9-alt3:checking linux/awe_voice.h presence... yes
> kdelibs-3.5.9-alt3:checking for linux/awe_voice.h... yes
> 
> kdemultimedia-3.5.9-alt1:checking linux/awe_voice.h usability... yes
> kdemultimedia-3.5.9-alt1:checking linux/awe_voice.h presence... yes
> kdemultimedia-3.5.9-alt1:checking for linux/awe_voice.h... yes
> 
> tse3-0.3.1-alt1:checking linux/awe_voice.h usability... yes
> tse3-0.3.1-alt1:checking linux/awe_voice.h presence... yes
> tse3-0.3.1-alt1:checking for linux/awe_voice.h... yes
> 
> xmp-2.0.5-alt2pre3:checking for linux/awe_voice.h... yes

У нас есть ядерщики, пусть рассказывают, что теперь делать с этим
убывшим linux/awe_voice.h, который

$ git log --pretty=oneline -- include/linux/awe_voice.h
c467a388ae9f236c039d4d0f4c4be07c7deebe97 Delete unused header file linux/awe_voice.h
f30c2269544bffc7bf1b0d7c0abe5be1be83b8cb fix file specification in comments
60d300c02fe2e0be9bb02904361e41e0307264b2 [PATCH] include/linux/soundcard.h: endianness fix
1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 Linux-2.6.12-rc2


-- 
ldv

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

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

end of thread, other threads:[~2008-03-19 10:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-03-19  8:33 ` [devel] I: solfege-3.10.3-alt1 broken Dmitry V. Levin
2008-03-19 10:06   ` Alexey Tourbin
2008-03-19 10:20     ` Dmitry V. Levin
2008-03-19 10:31       ` Alexey Tourbin
2008-03-19 10:36         ` 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