Bug#771576: tasksel: tasks=mate still also installs gnome

2015-01-04 Thread Samuel Thibault
Hello,

I believe this is a really important issue: all preseeded
non-gnome-desktop-enabled-installations will be hit by this.

Samuel


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150104152223.gu25...@type.youpi.perso.aquilenet.fr



Bug#771576: tasksel: tasks=mate still also installs gnome

2015-01-04 Thread Cyril Brulebois
Samuel Thibault sthiba...@debian.org (2015-01-04):
 Hello,
 
 I believe this is a really important issue: all preseeded
 non-gnome-desktop-enabled-installations will be hit by this.

I'm not sure why you're not pushing the patch you've tested.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#771576: tasksel: tasks=mate still also installs gnome

2015-01-04 Thread Samuel Thibault
Cyril Brulebois, le Sun 04 Jan 2015 18:12:23 +0100, a écrit :
 Samuel Thibault sthiba...@debian.org (2015-01-04):
  I believe this is a really important issue: all preseeded
  non-gnome-desktop-enabled-installations will be hit by this.
 
 I'm not sure why you're not pushing the patch you've tested.

Simply because tasksel is not in d-i, I don't have commit rights there.

Samuel


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150104171645.gy25...@type.youpi.perso.aquilenet.fr



Bug#771576: tasksel: tasks=mate still also installs gnome

2015-01-04 Thread Cyril Brulebois
Samuel Thibault sthiba...@debian.org (2015-01-04):
 Cyril Brulebois, le Sun 04 Jan 2015 18:12:23 +0100, a écrit :
  Samuel Thibault sthiba...@debian.org (2015-01-04):
   I believe this is a really important issue: all preseeded
   non-gnome-desktop-enabled-installations will be hit by this.
  
  I'm not sure why you're not pushing the patch you've tested.
 
 Simply because tasksel is not in d-i, I don't have commit rights there.

Then mention that and get that fixed?

Christian, can you please add Samuel to tasksel's alioth group, and
maybe add me as an extra admin if that makes sense to you? Thanks!

Mraw,
KiBi.


signature.asc
Description: Digital signature


unblock: bind9/1:9.9.5.dfsg-8

2015-01-04 Thread Michael Gilbert
Please unblock bind9.  It fixes an issue where a hang in named could
bring down the entire network #760555.

The changes only affect the bind9 binary package, so nothing in the
udebs has chaned.

unblock bind9/1:9.9.5.dfsg-8
unblock-udeb bind9/1:9.9.5.dfsg-8


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CANTw=MNxYu1Wsj=B=D0zWEsU8aZ1dvWEuab6vn3pELgbn-nZ=a...@mail.gmail.com



Bug#732255: Bug#773867: missing sources.list

2015-01-04 Thread Cyril Brulebois
Cyril Brulebois k...@debian.org (2014-12-30):
 jhcha54008 jhcha54...@free.fr (2014-12-30):
  Hi,
  
  May this be related to bug #732255 ?
 
 (Adding back everyone to the loop.)
 
 Back to your suggestion in 
 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=732255#10:
 | --- a/usr/sbin/debootstrap  2014-02-26 20:31:23.0 +0100
 | +++ b/usr/sbin/debootstrap  2014-02-26 20:32:31.0 +0100
 | @@ -656,6 +656,7 @@
 | setup_apt_sources ${MIRRORS%% *}
 | mv_invalid_to ${MIRRORS%% *}
 | else
 | +   COMPONENTS=${COMPONENTS:-$USE_COMPONENTS}
 | setup_apt_sources $DEF_MIRROR
 | mv_invalid_to $DEF_MIRROR
 | fi
 
 setup_apt_sources is defined in the functions script, and iterates over
 COMPONENTS to update sources.list accordingly; so this would likely
 help. Anyway, COMPONENTS is only ever defined/used in functions, so I'm
 wondering whether it's wise to expose/manipulate it in the main
 debootstrap script. Additionally, if the sources.list file is the only
 thing not working without touching COMPONENTS, I'd rather suggest
 something like the attached, untested patch.
 
 If you'd like to see some progress on this bug report, please test (with
 regular and foreign architectures) and report back.

So far, only jhcha54008 replied (thanks).

Holger, Vagrant, any chance you could give it a shot so that I know
where to draw the line?

Mraw,
KiBi.

 From 183eaa304570330f1f76f6f5ffbbb3371582aec7 Mon Sep 17 00:00:00 2001
 From: Cyril Brulebois k...@debian.org
 Date: Tue, 30 Dec 2014 14:40:50 +0100
 Subject: [PATCH] Fix the empty sources.list bug with foreign architectures
  (Closes: #732255, #773867).
 
 Update setup_apt_sources to look at USE_COMPONENTS if COMPONENTS is
 empty, so that some iteration over defined components happens.
 ---
  debian/changelog | 3 +++
  functions| 4 +++-
  2 files changed, 6 insertions(+), 1 deletion(-)
 
 diff --git a/debian/changelog b/debian/changelog
 index 925c8c6..75dd347 100644
 --- a/debian/changelog
 +++ b/debian/changelog
 @@ -3,6 +3,9 @@ debootstrap (1.0.67) UNRELEASED; urgency=medium
* Apply patch by Jérémy Bobbio to support reproducible builds: specify
  a modification time on the tar side, and add the -n option to gzip
  (Closes: #774069). Thanks, Jérémy!
 +  * Update setup_apt_sources to look at USE_COMPONENTS if COMPONENTS is
 +empty, fixing the empty sources.list bug with foreign architectures
 +(Closes: #732255, #773867).
  
   -- Cyril Brulebois k...@debian.org  Mon, 29 Dec 2014 15:01:57 +0100
  
 diff --git a/functions b/functions
 index 674d649..bf999f1 100644
 --- a/functions
 +++ b/functions
 @@ -949,9 +949,11 @@ mv_invalid_to () {
  
  setup_apt_sources () {
   mkdir -p $TARGET/etc/apt
 + # Cope with the foreign case where COMPONENTS would be empty:
 + sources_components=${COMPONENTS:-$USE_COMPONENTS}
   for m in $@; do
   local cs=
 - for c in $COMPONENTS; do
 + for c in $sources_components; do
   local path=dists/$SUITE/$c/binary-$ARCH/Packages
   local pkgdest=$TARGET/$($DLDEST pkg $SUITE $c 
 $ARCH $m $path)
   if [ -e $pkgdest ]; then cs=$cs $c; fi
 -- 
 2.1.4
 



Mraw,
KiBi.


signature.asc
Description: Digital signature


unblock: bind9/1:9.9.5.dfsg-8

2015-01-04 Thread Michael Gilbert
Package: release.debian.org
User: release.debian@packages.debian.org
Usertags: unblock
Severity: normal

Please unblock bind9.  It fixes an issue where a hang in named could
bring down the entire network #760555.

This only touches files in the bind9 binary package, so nothing in the
udebs has changed.

unblock bind9/1:9.9.5.dfsg-8
unblock-udeb bind9/1:9.9.5.dfsg-8


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CANTw=MMwuKXytrKOc8O0YF-S=oz9f3w6kryqonyl1if17xb...@mail.gmail.com



Re: unblock: bind9/1:9.9.5.dfsg-8

2015-01-04 Thread Cyril Brulebois
Michael Gilbert mgilb...@debian.org (2015-01-04):
 Please unblock bind9.  It fixes an issue where a hang in named could
 bring down the entire network #760555.
 
 The changes only affect the bind9 binary package, so nothing in the
 udebs has chaned.
 
 unblock bind9/1:9.9.5.dfsg-8
 unblock-udeb bind9/1:9.9.5.dfsg-8

Was that supposed to be an unblock request? Looks plenty of broken…

Mraw,
KiBi.


signature.asc
Description: Digital signature


Re: unblock: bind9/1:9.9.5.dfsg-8

2015-01-04 Thread Cyril Brulebois
Control: tag -1 d-i confirmed

Michael Gilbert mgilb...@debian.org (2015-01-04):
 Package: release.debian.org
 User: release.debian@packages.debian.org
 Usertags: unblock
 Severity: normal

(Next time, please use X-Debbugs-Cc so that the recipients get the bug
number and have a chance to get an easy way to reply to the relevant bug
report.)

 Please unblock bind9.  It fixes an issue where a hang in named could
 bring down the entire network #760555.
 
 This only touches files in the bind9 binary package, so nothing in the
 udebs has changed.
 
 unblock bind9/1:9.9.5.dfsg-8
 unblock-udeb bind9/1:9.9.5.dfsg-8

No objections.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Questions unresolved reading Debian Installation Guide

2015-01-04 Thread JOÃO ROBERTO Lamberti
Questions unresolved reading Debian Installation Guide

I installed Windows 7 on my computer, I made the partitioned installation
option;
1. Advanced options
1.2 Alternative desktop enviroments
1.3 Desktop enviroment menu
Back ...
1.4 Choosing the GUI:
   Option: Expert Graphical install
   Options: 

In this mode installation not found any installation explanation in Debian
Installation Guide.
And do the following question what options I choose to have a full
installation in the repository.

And if possible better explanation and more detailed this installation mode.

To be installed is the debian-7.7.0-i386-netinst.iso
Computer Memory Ram: 2GB DDR3
 HD: 500GB
Computer 32bit

Name: João Roberto Lamberti
Email: joaolambe...@gmail.com

-- 
LAROJO


Processed: Re: Bug#770078: ifupdown: interfaces(5) falsely claims that interfaces.d is included by default on new installs

2015-01-04 Thread Debian Bug Tracking System
Processing control commands:

 tag -1 moreinfo
Bug #770078 [netcfg] ifupdown: interfaces(5) falsely claims that interfaces.d 
is included by default on new installs
Added tag(s) moreinfo.

-- 
770078: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=770078
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b770078.142040055613567.transcr...@bugs.debian.org



Bug#770078: ifupdown: interfaces(5) falsely claims that interfaces.d is included by default on new installs

2015-01-04 Thread Cyril Brulebois
Control: tag -1 moreinfo

Andrew Shadura and...@shadura.me (2014-11-27):
 Hello,
 
 On 27 November 2014 at 16:48, Cyril Brulebois k...@debian.org wrote:
  I have the attached patch pending locally; not pushing right now to
  avoid an accidental upload while I haven't got around to requesting a
  few unblock/unblock-udeb (one of which is about netcfg).
 
 Thanks.

Back to this request I lost track of:
 - I haven't seen any files shipped in the target directory in any
   package; am I missing anything?
 - If no packages ship such a file I'll probably push the change to
   master and upload; otherwise I'm afraid it's late to risk any
   regressions.

Mraw,
KiBi.


signature.asc
Description: Digital signature


d-i manual: outdated file in czech translation?

2015-01-04 Thread Holger Wansing
Hello Miroslav,

recently there was some trivial changing in the english 
choose-mirror.xml file (change in an out-commented part).

In the intend to unfuzzy all translations I just noticed that 
the Czech file ../cs/using-d-i/modules/choose-mirror.xml
is apparently out of date in your d-i manual translation:
The english original does not contain any content, but Czech
translation does.
Could you look into this?
Many thanks


Happy New Year
Holger

-- 

Created with Sylpheed 3.2.0 under
D E B I A N   L I N U X   7 . 0   W H E E Z Y !

Registered Linux User #311290 - https://linuxcounter.net/



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150104212410.389dd6b127f80d8bebb24...@wansing-online.de



Re: Bug#774585: unblock: bind9/1:9.9.5.dfsg-8

2015-01-04 Thread Ivo De Decker
Hi,

On Sun, Jan 04, 2015 at 08:37:15PM +0100, Cyril Brulebois wrote:
  unblock bind9/1:9.9.5.dfsg-8
  unblock-udeb bind9/1:9.9.5.dfsg-8
 
 No objections.

Added unblock and unblock-udeb.

Cheers,

Ivo


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20150104204355.ga20...@ugent.be



Bug#770078: ifupdown: interfaces(5) falsely claims that interfaces.d is included by default on new installs

2015-01-04 Thread Andrew Shadura
Hello,

On Sun, 4 Jan 2015 20:42:32 +0100
Cyril Brulebois k...@debian.org wrote:

 Back to this request I lost track of:
  - I haven't seen any files shipped in the target directory in any
package; am I missing anything?
  - If no packages ship such a file I'll probably push the change to
master and upload; otherwise I'm afraid it's late to risk any
regressions.

If you mean /etc/network/interfaces.d/, then no, nothing currently
ships files there. It's supposed to be used only by users for time
being.


-- 
Cheers,
  Andrew


pgpXsETTPYIZJ.pgp
Description: OpenPGP digital signature


Processed: Re: Bug#770078: ifupdown: interfaces(5) falsely claims that interfaces.d is included by default on new installs

2015-01-04 Thread Debian Bug Tracking System
Processing control commands:

 tag -1 -moreinfo
Bug #770078 [netcfg] ifupdown: interfaces(5) falsely claims that interfaces.d 
is included by default on new installs
Removed tag(s) moreinfo.

-- 
770078: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=770078
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b770078.142040805030273.transcr...@bugs.debian.org



Bug#770078: ifupdown: interfaces(5) falsely claims that interfaces.d is included by default on new installs

2015-01-04 Thread Cyril Brulebois
Control: tag -1 -moreinfo

Andrew Shadura and...@shadura.me (2015-01-04):
 On Sun, 4 Jan 2015 20:42:32 +0100
 Cyril Brulebois k...@debian.org wrote:
 
  Back to this request I lost track of:
   - I haven't seen any files shipped in the target directory in any
 package; am I missing anything?
   - If no packages ship such a file I'll probably push the change to
 master and upload; otherwise I'm afraid it's late to risk any
 regressions.
 
 If you mean /etc/network/interfaces.d/, then no, nothing currently
 ships files there. It's supposed to be used only by users for time
 being.

OK, let's do that then.


Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#764437: console-setup hangs during install in jessie/wheezy on eeepc 1005ha

2015-01-04 Thread mls
Just run into a similar problem when upgrading from wheezy to jessie on a 
fitPC1. apt-get disp-upgrade worked until the postinst step for console-setup 
and hang. With htop I see 

 2999 root  20   └─ sshd: root@pts/9
22937 root 20 └─ apt-get install console-setup  
   
22947 root 20   └─ /usr/bin/dpkg --status-fd 20 --configure console-
setup:all
22948 root└─ /usr/bin/perl -w /usr/share/debconf/frontend 
/var/lib/dpkg/info/console-setup.postinst configure
23007 root 20└─ console-setup.p

I killed the process in order to finish the installation.  Then I removed the 
console-setup package and tried to reinstall it several times again. It always 
hanged. Any idea?

I tested  ckbcomp us/ckbcomp de and it looked good. 
Output of sh -x /bin/setupcon  /tmp/setupcon.debug attached.
+ do_font=yes
+ do_kbd=yes
+ do_check=yes
+ do_verbose=
+ do_save=
+ savekbdfile=
+ setupdir=
+ SETUP=
+ tempfiles=
+ trap rm -f $tempfiles /dev/null 21 0
+ trap exit 2 1 2 3 13 15
+ [  ]
+ installdir=/bin
+ installdir=
+ [ -n  -a -d /bin ]
+ installdir=/usr
+ [  ]
+ USER_CONFIG=/root/.console-setup
+ USER_CONFIG2=/root/.keyboard
+ MAIN_CONFIG=/etc/default/keyboard
+ [ -f /etc/default/keyboard ]
+ MAIN_CONFIG2=/etc/default/console-setup
+ [ -f /etc/default/console-setup ]
+ [ -f /root/.console-setup -o -f /root/.keyboard ]
+ [ -f /etc/default/keyboard -o -f /etc/default/console-setup ]
+ CONFIG=/etc/default/keyboard
+ CONFIG2=/etc/default/console-setup
+ [ -f /etc/default/console-setup ]
+ . /etc/default/console-setup
+ ACTIVE_CONSOLES=/dev/tty[1-6]
+ CHARMAP=UTF-8
+ CODESET=Lat15
+ FONTFACE=Fixed
+ FONTSIZE=8x16
+ VIDEOMODE=
+ [ -f /etc/default/keyboard ]
+ . /etc/default/keyboard
+ XKBMODEL=pc105
+ XKBLAYOUT=de
+ XKBVARIANT=nodeadkeys
+ XKBOPTIONS=
+ BACKSPACE=guess
+ [  = yes ]
+ kernel=unknown
+ which uname
+ local IFS
+ IFS=:
+ [ -f /usr/local/sbin/uname -a -x /usr/local/sbin/uname ]
+ [ -f /usr/local/bin/uname -a -x /usr/local/bin/uname ]
+ [ -f /usr/sbin/uname -a -x /usr/sbin/uname ]
+ [ -f /usr/bin/uname -a -x /usr/bin/uname ]
+ [ -f /sbin/uname -a -x /sbin/uname ]
+ [ -f /bin/uname -a -x /bin/uname ]
+ echo /bin/uname
+ return 0
+ uname
+ kernel=linux
+ [ -n  ]
+ [ -e /dev/tty1 ]
+ echo /dev/tty1
+ [ -e /dev/tty2 ]
+ echo /dev/tty2
+ [ -e /dev/tty3 ]
+ echo /dev/tty3
+ [ -e /dev/tty4 ]
+ echo /dev/tty4
+ [ -e /dev/tty5 ]
+ echo /dev/tty5
+ [ -e /dev/tty6 ]
+ echo /dev/tty6
+ ACTIVE_CONSOLES=/dev/tty1
/dev/tty2
/dev/tty3
/dev/tty4
/dev/tty5
/dev/tty6
+ [ -z /dev/tty1
/dev/tty2
/dev/tty3
/dev/tty4
/dev/tty5
/dev/tty6 ]
+ [ -z /dev/tty1
/dev/tty2
/dev/tty3
/dev/tty4
/dev/tty5
/dev/tty6 ]
+ report Configuring /dev/tty1 /dev/tty2 /dev/tty3 /dev/tty4 /dev/tty5 /dev/tty6
+ local nl
+ nl=

+ [  ]
+ [ UTF-8 = guess -o -z UTF-8 ]
+ CHARMAP=UTF-8
+ report The charmap is UTF-8
+ local nl
+ nl=

+ [  ]
+ [ UTF-8 = UTF-8 ]
+ unicode=yes
+ [ yes ]
+ which consolechars
+ local IFS
+ IFS=:
+ [ -f /usr/local/sbin/consolechars -a -x /usr/local/sbin/consolechars ]
+ [ -f /usr/local/bin/consolechars -a -x /usr/local/bin/consolechars ]
+ [ -f /usr/sbin/consolechars -a -x /usr/sbin/consolechars ]
+ [ -f /usr/bin/consolechars -a -x /usr/bin/consolechars ]
+ [ -f /sbin/consolechars -a -x /sbin/consolechars ]
+ [ -f /bin/consolechars -a -x /bin/consolechars ]
+ return 1
+ which setfont
+ local IFS
+ IFS=:
+ [ -f /usr/local/sbin/setfont -a -x /usr/local/sbin/setfont ]
+ [ -f /usr/local/bin/setfont -a -x /usr/local/bin/setfont ]
+ [ -f /usr/sbin/setfont -a -x /usr/sbin/setfont ]
+ [ -f /usr/bin/setfont -a -x /usr/bin/setfont ]
+ [ -f /sbin/setfont -a -x /sbin/setfont ]
+ [ -f /bin/setfont -a -x /bin/setfont ]
+ echo /bin/setfont
+ return 0
+ do_font=linuxkbd
+ which pidof
+ local IFS
+ IFS=:
+ [ -f /usr/local/sbin/pidof -a -x /usr/local/sbin/pidof ]
+ [ -f /usr/local/bin/pidof -a -x /usr/local/bin/pidof ]
+ [ -f /usr/sbin/pidof -a -x /usr/sbin/pidof ]
+ [ -f /usr/bin/pidof -a -x /usr/bin/pidof ]
+ [ -f /sbin/pidof -a -x /sbin/pidof ]
+ [ -f /bin/pidof -a -x /bin/pidof ]
+ echo /bin/pidof
+ return 0
+ pidof splashy
+ pidof usplash
+ [ Lat15 != guess ]
+ [ -z Lat15 ]
+ [ UTF-8 != UTF-8 -a linux = freebsd ]
+ [ -z 8x16 -o 8x16 = guess ]
+ FONTSIZE=16
+ mapdir=share/consoletrans
+ stdmap=UTF-8.acm.gz
+ fontdir=share/consolefonts
+ stdfont=Lat15-Fixed16.psf.gz
+ stdfontfallback=Lat15-*[A-WXYZa-wyz]16.psf.gz
+ CONSOLE_MAP=
+ [ -z  ]
+ [ -n  -o UTF-8 = UTF-8 ]
+ FONTFILES=
+ [  ]
+ echo
+ FONTFILES=
+ [ -n Fixed -a -z  ]
+ findfile share/consolefonts Lat15-Fixed16.psf.gz
+ local x
+ x=/etc/console-setup/Lat15-Fixed16.psf.gz
/usr/share/consolefonts/Lat15-Fixed16.psf.gz
/usr/share/consolefonts/Lat15-Fixed16.psf.gz
+ echo /etc/console-setup/Lat15-Fixed16.psf.gz 
/usr/share/consolefonts/Lat15-Fixed16.psf.gz 
/usr/share/consolefonts/Lat15-Fixed16.psf.gz
+ x=/etc/console-setup/Lat15-Fixed16.psf.gz 

Bug#770078: marked as done (ifupdown: interfaces(5) falsely claims that interfaces.d is included by default on new installs)

2015-01-04 Thread Debian Bug Tracking System
Your message dated Sun, 04 Jan 2015 22:03:33 +
with message-id e1y7tgn-0001ci...@franck.debian.org
and subject line Bug#770078: fixed in netcfg 1.127
has caused the Debian Bug report #770078,
regarding ifupdown: interfaces(5) falsely claims that interfaces.d is included 
by default on new installs
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
770078: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=770078
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: ifupdown
Version: 0.7.49
Severity: normal

The interfaces(5) man page claims:
  By  default,  on a freshly installed Debian system, the interfaces file
  includes a line to source /etc/network/interfaces.d directory.
but on two new jessie installs there is no 'source-directory interfaces.d' 
stanza.

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages ifupdown depends on:
ii  adduser  3.113+nmu3
ii  initscripts  2.88dsf-58
ii  iproute2 3.16.0-2
ii  libc62.19-13
ii  lsb-base 4.1+Debian13+nmu1

Versions of packages ifupdown recommends:
pn  isc-dhcp-client | dhcp-client  none

Versions of packages ifupdown suggests:
ii  net-tools  1.60-26+b1
pn  pppnone
pn  rdnssd none

-- no debconf information
---End Message---
---BeginMessage---
Source: netcfg
Source-Version: 1.127

We believe that the bug you reported is fixed in the latest version of
netcfg, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 770...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Cyril Brulebois k...@debian.org (supplier of updated netcfg package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 04 Jan 2015 22:48:47 +0100
Source: netcfg
Binary: netcfg netcfg-static
Architecture: source
Version: 1.127
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Cyril Brulebois k...@debian.org
Description:
 netcfg - Configure the network (udeb)
 netcfg-static - Configure a static network (udeb)
Closes: 770078
Changes:
 netcfg (1.127) unstable; urgency=medium
 .
   * Add support for /etc/network/interfaces.d/ by adding a source
 directive (Closes: #770078). It can be replaced with a
 source-directory one during the next release cycle.
Checksums-Sha1:
 2d5921834cc87fd259931bb72c5d232af14e3a33 1873 netcfg_1.127.dsc
 ba30c3015cbe013b92d4256aab471c964a4f2651 392152 netcfg_1.127.tar.xz
Checksums-Sha256:
 159ede4668a03805bead36821e83ae339f8557850715eb9b2a080991e7cf847f 1873 
netcfg_1.127.dsc
 8042af1f7acf03732677fbdd82cf2a2823b7ba56cbaf2c061b7577ab0fcc 392152 
netcfg_1.127.tar.xz
Files:
 0120d7bd51990139e6c177485535fa81 1873 debian-installer optional 
netcfg_1.127.dsc
 792566135f4418aa6e9690c21e1af89e 392152 debian-installer optional 
netcfg_1.127.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUqbW4AAoJEP+RSvDCs1Ug9qUP/1fOryaRj3q0UncRpVFQMr7L
nOggIsT6D9I8qu5EXPt/LGjLMyuPWMBfDa1fF3dJyQtkMCgo1kwS/OMZ4U2YA1bM
VF/vwUu/WApOp78quVd1OO2BcDeMR9DOoDnOWBekiQfoksh6DrX95OvcVHcf+wo8
p+y8X9vXfqP0RqVKIbh+Be5T+3EdewhhfaDS22TEekC5VYnhER48O+w0SzVxOOUA
YZDJevNfRAJ6VEOliUbb0/VPjOvis2YcZVDvA2+up1cGVYH4sumabW1C55tNYQxn
fcm49L4hzKEbCRDlmgesq8m4Rmx3xWEET7P+fMisot8clWbA7v5qPjB4g4a52uo6
IeLV0qg2QYhecum2ApmH9NMGUN77hghTkUj5Ozzod8Gc0xCvwcA+jwiJnWuRBF3y
M8dlo64/7CtwdSf32IyOT9uVBhApT3hAOTrPqItopW95i9EjpfvnFZSpgyu19AJf
RA/8KnDWrRe380sGOhz52ZIXu2lf5UKI4oNdOPgOSTeWCJL1uQ9lrHBlK6ESdl3c
QVXjpBOF5LkqEYvjNui/bWcMxpimB+hDyrBd095YiSBq0TMfdVpKwz6HMcQrDDe0
Tmqa0tZSd/oUBrRBsn+kkDcEWBT7fJns7dHBcSIJIYhtX/3QLdEAaIk1LFR+9jux
a6BvctXUzv4xUn/QQtX1
=ikFd
-END PGP SIGNATUREEnd Message---


Processing of netcfg_1.127_source.changes

2015-01-04 Thread Debian FTP Masters
netcfg_1.127_source.changes uploaded successfully to localhost
along with the files:
  netcfg_1.127.dsc
  netcfg_1.127.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1y7t6r-7r...@franck.debian.org



netcfg_1.127_source.changes ACCEPTED into unstable

2015-01-04 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 04 Jan 2015 22:48:47 +0100
Source: netcfg
Binary: netcfg netcfg-static
Architecture: source
Version: 1.127
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Cyril Brulebois k...@debian.org
Description:
 netcfg - Configure the network (udeb)
 netcfg-static - Configure a static network (udeb)
Closes: 770078
Changes:
 netcfg (1.127) unstable; urgency=medium
 .
   * Add support for /etc/network/interfaces.d/ by adding a source
 directive (Closes: #770078). It can be replaced with a
 source-directory one during the next release cycle.
Checksums-Sha1:
 2d5921834cc87fd259931bb72c5d232af14e3a33 1873 netcfg_1.127.dsc
 ba30c3015cbe013b92d4256aab471c964a4f2651 392152 netcfg_1.127.tar.xz
Checksums-Sha256:
 159ede4668a03805bead36821e83ae339f8557850715eb9b2a080991e7cf847f 1873 
netcfg_1.127.dsc
 8042af1f7acf03732677fbdd82cf2a2823b7ba56cbaf2c061b7577ab0fcc 392152 
netcfg_1.127.tar.xz
Files:
 0120d7bd51990139e6c177485535fa81 1873 debian-installer optional 
netcfg_1.127.dsc
 792566135f4418aa6e9690c21e1af89e 392152 debian-installer optional 
netcfg_1.127.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUqbW4AAoJEP+RSvDCs1Ug9qUP/1fOryaRj3q0UncRpVFQMr7L
nOggIsT6D9I8qu5EXPt/LGjLMyuPWMBfDa1fF3dJyQtkMCgo1kwS/OMZ4U2YA1bM
VF/vwUu/WApOp78quVd1OO2BcDeMR9DOoDnOWBekiQfoksh6DrX95OvcVHcf+wo8
p+y8X9vXfqP0RqVKIbh+Be5T+3EdewhhfaDS22TEekC5VYnhER48O+w0SzVxOOUA
YZDJevNfRAJ6VEOliUbb0/VPjOvis2YcZVDvA2+up1cGVYH4sumabW1C55tNYQxn
fcm49L4hzKEbCRDlmgesq8m4Rmx3xWEET7P+fMisot8clWbA7v5qPjB4g4a52uo6
IeLV0qg2QYhecum2ApmH9NMGUN77hghTkUj5Ozzod8Gc0xCvwcA+jwiJnWuRBF3y
M8dlo64/7CtwdSf32IyOT9uVBhApT3hAOTrPqItopW95i9EjpfvnFZSpgyu19AJf
RA/8KnDWrRe380sGOhz52ZIXu2lf5UKI4oNdOPgOSTeWCJL1uQ9lrHBlK6ESdl3c
QVXjpBOF5LkqEYvjNui/bWcMxpimB+hDyrBd095YiSBq0TMfdVpKwz6HMcQrDDe0
Tmqa0tZSd/oUBrRBsn+kkDcEWBT7fJns7dHBcSIJIYhtX/3QLdEAaIk1LFR+9jux
a6BvctXUzv4xUn/QQtX1
=ikFd
-END PGP SIGNATURE-


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1y7tgn-0001c1...@franck.debian.org



Re: win32-loader icon update?

2015-01-04 Thread jnqnfe
Hi, sorry for the delayed response, I'm very busy with other work, and
just quickly responding while waiting for a test to complete.

Thank you for pointing me at the Jessie theme page, I had not previously
seen it, and I do like it. I agree that an icon based on this might be nice.

I am somewhat confused by your assertion that icons are usually square,
because in fact they frequently come in many odd shapes. Just to pick a
few from within gnome, there's brasero, archive manager, and evolution
app icons, none of which are exactly square. In fact although there are
several squarish, it's difficult to find an actual square icon in
amongst my list of apps. More over, I did not pick a round icon out of
inspiration of rounded alternative icon packs, but instead more
because optical disks are round, and it is traditional for icons to do
with optical disks to use a circle, e.g. the brasero icon, and also out
of inspiration from Ubuntu's round icon (attached). The circle also
possible helps add a small visual cue for not so brilliant at
computing type users, experimenting with Debian, or whatever. Please
don't misunderstand me as being offered here, I'm simply explaining my
choice.

My skills in this area are fairly new and amateurish (I'm a programmer,
not a graphics artist), but I might be able to pull off creating an icon
based on the Jessie theme, using the existing svg components provided
with it. I will see if I can do so soon. (I am aware that a Jessie
release is right around the corner).

I can certainly provide it in the required sizes, thanks to svg, that is
if I can successfully create it.

The sizes I selected btw in the icons supplied so far I selected because
they are the most useful for current versions of Windows. I did also
look at the sizes used by Ubuntu, and there was one odd size that I
didn't understand the point of so ignored. I did realise afterwards that
there is no icon suitable for Linux, leaving gnome rendering a horrible
fuzzy square. Also, I wasn't sure whether it was worth adding additional
sizes to cover hi-dpi on Windows. I'll consider your list though, and of
course once the svg icon has been created, any desired sizes can be
easily created from that.

On 17/12/2014 07:26, Didier 'OdyX' Raboud wrote:
 Le mercredi, 10 décembre 2014, 05.56:22 jnqnfe a écrit :
 In relation to bug #772691 (autorun.inf not displaying a custom Debian
 icon from setup.exe aka win32-loader.exe when a Debian install
 disc/iso is loaded in a Windows environment, unlike Ubuntu) which I
 just reported, I created a small collection of possible replacement
 icons for win32-loader.exe (simple, clean, smart and in a range of
 colours!). I thought I would offer them up here in case you're
 interested.
 Thanks for these, and the quite large choice palette. I'm not a great 
 fan of the rounded alternatives though; icons are usually square and 
 what we want to be seen is the Debian swirl, not a circle, IMHO.

 Iff we change the win32-loader .ico icon (that might then also be 
 displayed as a CD icon on Windows hosts), we should aim at using the 
 picked Lines desktop theme:

   https://wiki.debian.org/DebianArt/Themes/Lines

 The current icon has 5 embedded icon sizes (16,24,32,48,256), but is not 
 generated at build-time; ideally, we'd have a 512 pixels-sized svg, 
 generate the correctly-sized png's using rsvg-convert and create the 
 final swirl.ico (name can be changed of course) out of these.

 Are you interested in creating a Lines-themed square svg ? I could 
 manage the build-time creation.

 Cheers,
 OdyX



Bug#771576: tasksel: tasks=mate still also installs gnome

2015-01-04 Thread Christian PERRIER
Quoting Samuel Thibault (sthiba...@debian.org):
 Cyril Brulebois, le Sun 04 Jan 2015 18:12:23 +0100, a écrit :
  Samuel Thibault sthiba...@debian.org (2015-01-04):
   I believe this is a really important issue: all preseeded
   non-gnome-desktop-enabled-installations will be hit by this.
  
  I'm not sure why you're not pushing the patch you've tested.
 
 Simply because tasksel is not in d-i, I don't have commit rights there.

That's probably easy to solve..:-)

I'm trying to add you to tasksel right now, through an airport Wifi
*from the airplane*, which is kindaslooow.

In case I didn't succeed now, I'll add you tomorrow morning.





signature.asc
Description: Digital signature


Bug#771576: tasksel: tasks=mate still also installs gnome

2015-01-04 Thread Christian PERRIER
Quoting Cyril Brulebois (k...@debian.org):
 Samuel Thibault sthiba...@debian.org (2015-01-04):
  Cyril Brulebois, le Sun 04 Jan 2015 18:12:23 +0100, a écrit :
   Samuel Thibault sthiba...@debian.org (2015-01-04):
I believe this is a really important issue: all preseeded
non-gnome-desktop-enabled-installations will be hit by this.
   
   I'm not sure why you're not pushing the patch you've tested.
  
  Simply because tasksel is not in d-i, I don't have commit rights there.
 
 Then mention that and get that fixed?
 
 Christian, can you please add Samuel to tasksel's alioth group, and
 maybe add me as an extra admin if that makes sense to you? Thanks!

That's what I was about to do (mails are coming one by one right now..:-))



signature.asc
Description: Digital signature


Bug#771576: tasksel: tasks=mate still also installs gnome

2015-01-04 Thread Christian PERRIER
Quoting Christian PERRIER (bubu...@debian.org):

 That's what I was about to do (mails are coming one by one right now..:-))

Cyril and Samuel added.


-- 




signature.asc
Description: Digital signature


Bug#771576: tasksel: tasks=mate still also installs gnome

2015-01-04 Thread Cyril Brulebois
Christian PERRIER bubu...@debian.org (2015-01-04):
 Quoting Christian PERRIER (bubu...@debian.org):
 
  That's what I was about to do (mails are coming one by one right now..:-))
 
 Cyril and Samuel added.

Thanks so much Christian, have a safe landing. ;)

Mraw,
KiBi.


signature.asc
Description: Digital signature