Re: [Mageia-dev] how to update mageia rpmlint configuration on submission host ?

2013-01-01 Thread Thomas Backlund

Thomas Backlund skrev 1.1.2013 13:23:

Nicolas Lécureuil skrev 1.1.2013 05:41:




hi,

but it seems debuginfo packages are not going on the debug media but
on the
main media ( see in core/release )



Gah, so we still have the uploader scripts doing name matching on
-debug to set where to upload...

I'll try to take a look.



New perl-Youri-Package installed on valstar, so it should work now.

existing -debuginfo packages moved from core/release to
debug/core/release

--
Thomas



Re: [Mageia-dev] [changelog] cauldron core/release iurt-0.6.16-1.mga3

2013-01-01 Thread Pascal Terjan
On Tue, Jan 1, 2013 at 1:08 PM, Thierry Vignaud
thierry.vign...@gmail.com wrote:
 On 1 January 2013 02:17, Pascal Terjan pter...@gmail.com wrote:
 pterjan pterjan 0.6.16-1.mga3:
 + Revision: 336797
 - 0.6.16
   * fix chroot cleaning in parallel mode
   * fix for some packages missing from status file


 btw, 0.6.15 broke the BS on valstar with this error:

 Not a HASH reference at /usr/bin/emi line 195.

 So I rolled back to 0.6.13 that was in use before.

 Is this package safe to install ?

 Probably not, I haven't touched emi (I think boklm and tv did in previoys
 version). I'll have a look

 You can try latest SVN

The code doesn't look correct for the old format of the config file:

The code was:

-   if (ref $config-{mandatory_arch} eq 'ARRAY') {
-   $mandatory_arch = $config-{mandatory_arch};
-   } elsif (ref $config-{mandatory_arch}-{$target} eq 'ARRAY') {
-   $mandatory_arch = $config-{mandatory_arch}-{$target};
-   } elsif (ref $config-{mandatory_arch}-{default} eq 'ARRAY') {
-   $mandatory_arch = $config-{mandatory_arch}-{default};

But your previous simplification only handle the second and third
case, not when mandatory_arch is an ARRAY directly.
The code should work but will consider there is no mandatory arch.

Current configuration (which is the default) is
$config-{mandatory_arch} = [ 'i586', 'x86_64' ]


Re: [Mageia-dev] [changelog] cauldron core/release iurt-0.6.16-1.mga3

2013-01-01 Thread nicolas vigier
On Tue, 01 Jan 2013, Pascal Terjan wrote:

 On Tue, Jan 1, 2013 at 1:08 PM, Thierry Vignaud
 thierry.vign...@gmail.com wrote:
  On 1 January 2013 02:17, Pascal Terjan pter...@gmail.com wrote:
  pterjan pterjan 0.6.16-1.mga3:
  + Revision: 336797
  - 0.6.16
* fix chroot cleaning in parallel mode
* fix for some packages missing from status file
 
 
  btw, 0.6.15 broke the BS on valstar with this error:
 
  Not a HASH reference at /usr/bin/emi line 195.
 
  So I rolled back to 0.6.13 that was in use before.
 
  Is this package safe to install ?
 
  Probably not, I haven't touched emi (I think boklm and tv did in previoys
  version). I'll have a look
 
  You can try latest SVN
 
 The code doesn't look correct for the old format of the config file:
 
 The code was:
 
 -   if (ref $config-{mandatory_arch} eq 'ARRAY') {
 -   $mandatory_arch = $config-{mandatory_arch};
 -   } elsif (ref $config-{mandatory_arch}-{$target} eq 'ARRAY') {
 -   $mandatory_arch = $config-{mandatory_arch}-{$target};
 -   } elsif (ref $config-{mandatory_arch}-{default} eq 'ARRAY') {
 -   $mandatory_arch = $config-{mandatory_arch}-{default};
 
 But your previous simplification only handle the second and third
 case, not when mandatory_arch is an ARRAY directly.
 The code should work but will consider there is no mandatory arch.

Latest code in svn is :

my $mandatory_arch = find { ref($_) eq 'ARRAY' } $config-{mandatory_arch},
(ref($config-{mandatory_arch}) eq 'HASH' ?  
($config-{mandatory_arch}{$target}, $config-{mandatory_arch}{default}) : ()), 
[];

So it seems to handle the case with an array in $config-{mandatory_arch}.



[Mageia-dev] ANN: glibc-2.17 landing on cauldron...

2013-01-01 Thread Thomas Backlund

Hi,

this is a headsup that I'm about to push glibc-2.17 to core/release...

It has worked well in initial test theese last days, so It's time
for all to start using it :)


You better wait for both glibc-2.17-1 and locales-2.17-1 to be
available before updating or you will get many packages removed
due to missing locales*

--
Thomas


Re: [Mageia-dev] [changelog] cauldron core/release iurt-0.6.16-1.mga3

2013-01-01 Thread Pascal Terjan
On Tue, Jan 1, 2013 at 2:07 PM, nicolas vigier bo...@mars-attacks.org wrote:
 On Tue, 01 Jan 2013, Pascal Terjan wrote:

 On Tue, Jan 1, 2013 at 1:08 PM, Thierry Vignaud
 thierry.vign...@gmail.com wrote:
  On 1 January 2013 02:17, Pascal Terjan pter...@gmail.com wrote:
  pterjan pterjan 0.6.16-1.mga3:
  + Revision: 336797
  - 0.6.16
* fix chroot cleaning in parallel mode
* fix for some packages missing from status file
 
 
  btw, 0.6.15 broke the BS on valstar with this error:
 
  Not a HASH reference at /usr/bin/emi line 195.
 
  So I rolled back to 0.6.13 that was in use before.
 
  Is this package safe to install ?
 
  Probably not, I haven't touched emi (I think boklm and tv did in previoys
  version). I'll have a look
 
  You can try latest SVN

 The code doesn't look correct for the old format of the config file:

 The code was:

 -   if (ref $config-{mandatory_arch} eq 'ARRAY') {
 -   $mandatory_arch = $config-{mandatory_arch};
 -   } elsif (ref $config-{mandatory_arch}-{$target} eq 'ARRAY') {
 -   $mandatory_arch = $config-{mandatory_arch}-{$target};
 -   } elsif (ref $config-{mandatory_arch}-{default} eq 'ARRAY') {
 -   $mandatory_arch = $config-{mandatory_arch}-{default};

 But your previous simplification only handle the second and third
 case, not when mandatory_arch is an ARRAY directly.
 The code should work but will consider there is no mandatory arch.

 Latest code in svn is :

 my $mandatory_arch = find { ref($_) eq 'ARRAY' } $config-{mandatory_arch},
 (ref($config-{mandatory_arch}) eq 'HASH' ?  
 ($config-{mandatory_arch}{$target}, $config-{mandatory_arch}{default}) : 
 ()), [];

 So it seems to handle the case with an array in $config-{mandatory_arch}.


Ah yes sorry I had misread the , :)


Re: [Mageia-dev] ANN: glibc-2.17 landing on cauldron...

2013-01-01 Thread Thomas Backlund

Thomas Backlund skrev 1.1.2013 16:15:

Hi,

this is a headsup that I'm about to push glibc-2.17 to core/release...

It has worked well in initial test theese last days, so It's time
for all to start using it :)


You better wait for both glibc-2.17-1 and locales-2.17-1 to be
available before updating or you will get many packages removed
due to missing locales*



And glibc-2.17-1 and locales-2.17-1 are now built and should soon
show up on the mirrors and it should be safe to update then...

Have fun...

--
Thomas




Re: [Mageia-dev] DVD install feedback for mga3 beta 1

2013-01-01 Thread Eatdirt

On 12/31/2012 08:38 PM, Eatdirt wrote:

Hi there,
I have just installed mga3 beta1 on a brand new machine for my folks and
everything went fantastically fine in a first try. Congrats.


Hi again,
I am reporting here some post-install bugs:

1a) gnome-shell-extension does not work, it is impossible to add or 
configure any of those. In .xsession-error, there are some logs claiming 
that gnome-shell version cannot be determined


1b) Plugging an usb external drive, or digital camera, triggers 
audacious, or if I remove audacious, triggers konqueror, or if I remove 
konqueror triggers baobab, and at last, if I remove baobab trigger 
opening the file manager nautilus This happens whatever the settings 
I add in the configuration panel for photo device, and there is no 
visible choice for USB drive.


[after this, my personal opinion is that gnome 3 deeply sucks and my 
folks are now lost even with the gnome-classic interface :)]


2) a neeeded scsi module is properly loaded (film scanner)

aic7xxx : Adaptec|AIC-7850 [STORAGE_SCSI] (rev: 03)

but the corresponding device is not created making xsane and other 
software not finding the scanner. After some searches, this is because 
the scsi modules (sg) are never loaded; so adding sg in 
module.preload.d is enough to fix the issue, but some udev rules are 
screwed up maybe.


3) there is no /dev/dvd symlink to the only dvd device (/dev/sr0), 
although /dev/cdrom symlink is properly created. So all dvd applications 
fail, like xine, smplayer, mplayer etc...


4) A Kernel trace in the logs, which does not seem to prevent the 
graphic working though:



 [   37.846873] [ cut here ]
[   37.846885] WARNING: at drivers/gpu/drm/i915/intel_dp.c:392 
intel_dp_aux_ch+0xe1/0x390 [i915]()

[   37.846886] Hardware name: System Product Name
[   37.846886] dp_aux_ch not started status 0x8145003f
[   37.846887] Modules linked in: i915(+) drm_kms_helper drm 
i2c_algo_bit joydev hid_generic eeepc_wmi asus_wmi usbhid snd_usb_audio 
snd_usbmidi_lib snd_rawmidi coretemp hid sparse_keymap crc32c_intel 
ghash_clmulni_intel aesni_intel aes_x86_64 uvcvideo videobuf2_vmalloc 
videobuf2_memops videobuf2_core videodev media sg snd_seq_device 
iTCO_wdt iTCO_vendor_support rfkill pci_hotplug ablk_helper evdev cryptd 
cpufreq_ondemand cpufreq_conservative cpufreq_powersave acpi_cpufreq 
mperf snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_intel 
snd_hda_codec snd_hwdep snd_pcm snd_page_alloc snd_timer snd lpc_ich mei 
i2c_i801 i2c_core serio_raw xts lrw gf128mul thermal fan video soundcore 
wmi button processor r8169 mii kvm ipv6 autofs4 ext4 crc16 jbd2 ehci_hcd 
xhci_hcd usbcore sd_mod sr_mod crc_t10dif usb_common
[   37.846910]  ahci libahci ata_piix libata aic7xxx scsi_transport_spi 
scsi_mod [last unloaded: microcode]
[   37.846914] Pid: 1049, comm: modprobe Tainted: GW 
3.7.1-desktop-1.mga3 #1

[   37.846914] Call Trace:
[   37.846917]  [81055eef] warn_slowpath_common+0x7f/0xc0
[   37.846919]  [81055fe6] warn_slowpath_fmt+0x46/0x50
[   37.846927]  [a05ce131] intel_dp_aux_ch+0xe1/0x390 [i915]
[   37.846933]  [a05ce495] 
intel_dp_aux_native_read_retry+0xb5/0x140 [i915]

[   37.846939]  [a05cea34] intel_dp_get_dpcd+0x24/0x80 [i915]
[   37.846944]  [a05ceaad] intel_dp_detect_dpcd+0x1d/0x110 [i915]
[   37.846949]  [a05cefe8] intel_dp_detect+0x58/0x2a0 [i915]
[   37.846952]  [a058e6da] 
drm_helper_probe_single_connector_modes+0x27a/0x330 [drm_kms_helper]
[   37.846953]  [a058bef0] 
drm_fb_helper_probe_connector_modes.isra.2+0x50/0x70 [drm_kms_helper]
[   37.846955]  [a058d533] 
drm_fb_helper_initial_config+0x1a3/0x230 [drm_kms_helper]

[   37.846958]  [810da3cf] ? request_threaded_irq+0xaf/0x1b0
[   37.846960]  [8116521d] ? __kmalloc+0x13d/0x170
[   37.846961]  [a058c33e] ? drm_fb_helper_init+0xfe/0x200 
[drm_kms_helper]
[   37.846963]  [a058c33e] ? drm_fb_helper_init+0xfe/0x200 
[drm_kms_helper]

[   37.846964]  [8116536f] ? kmem_cache_alloc_trace+0x11f/0x130
[   37.846966]  [a058c487] ? 
drm_fb_helper_single_add_all_connectors+0x47/0xf0 [drm_kms_helper]
[   37.846968]  [a058c487] ? 
drm_fb_helper_single_add_all_connectors+0x47/0xf0 [drm_kms_helper]

[   37.846976]  [a05df6ac] intel_fbdev_init+0x8c/0xc0 [i915]
[   37.846983]  [a059bf6b] i915_driver_load+0xd6b/0xee0 [i915]
[   37.846990]  [a053af26] drm_get_pci_dev+0x186/0x2d0 [drm]
[   37.846999]  [a05ecd34] i915_pci_probe+0x78/0x81 [i915]
[   37.847001]  [812816a9] local_pci_probe+0x79/0x100
[   37.847003]  [81281841] pci_device_probe+0x111/0x120
[   37.847005]  [81332c9b] driver_probe_device+0x8b/0x3a0
[   37.847007]  [8133305b] __driver_attach+0xab/0xb0
[   37.847008]  [81332fb0] ? driver_probe_device+0x3a0/0x3a0
[   37.847009]  [81330d15] bus_for_each_dev+0x55/0x90
[   37.847011]