Bug#819844: message should mention that it is possible to restart without asking

2016-04-03 Thread 積丹尼 Dan Jacobson
> "AJ" == Aurelien Jarno  writes:

>> Every upgrade the upgrade stops and the operator must walk over and
>> press return to get it started again.
>> 
>> The message shown about restarting services exim4 cron atd should also
>> mention how/that one can also restart without asking.

AJ> There is already debconf question to avoid getting asked at each
AJ> upgrade. If you answer yes, the services are restarted without asking.
AJ> I don't really understand what you want more.

At the bottom of
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=819845#10
Colin Watson mentions the problem with it.



[glibc] branch sid updated (c41f36f -> 493939a)

2016-04-03 Thread Samuel Thibault
This is an automated email from the git hooks/post-receive script.

sthibault pushed a change to branch sid
in repository glibc.

  from  c41f36f   New changelog entry
   new  493939a   hurd-i386/submitted-auxv.diff: New patch, fixes cvs crash

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog |  3 ++-
 debian/patches/hurd-i386/submitted-auxv.diff | 14 ++
 debian/patches/kfreebsd/submitted-auxv.diff  |  2 +-
 debian/patches/series|  1 +
 4 files changed, 18 insertions(+), 2 deletions(-)
 create mode 100644 debian/patches/hurd-i386/submitted-auxv.diff

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



Re: [glibc] 01/01: hurd-i386/submitted-auxv.diff: New patch, fixes cvs crash

2016-04-03 Thread Samuel Thibault
Aurelien Jarno, on Sun 03 Apr 2016 22:01:13 +0200, wrote:
> On 2016-04-02 11:04, Samuel Thibault wrote:
> > This is an automated email from the git hooks/post-receive script.
> > 
> > sthibault pushed a commit to branch glibc-2.22
> > in repository glibc.
> 
> I think you committed that on the wrong branch, you probably wanted the
> sid branch instead.

D'oh... For some reason I had to redo my checkout and was confused not
to have a master branch indeed.  I've cherry-picked into sid.

Samuel



[glibc] 01/01: hurd-i386/submitted-auxv.diff: New patch, fixes cvs crash

2016-04-03 Thread Samuel Thibault
This is an automated email from the git hooks/post-receive script.

sthibault pushed a commit to branch sid
in repository glibc.

commit 493939a68db07b44b5db8d3d5d08a2c859df99fb
Author: Samuel Thibault 
Date:   Sat Apr 2 11:03:59 2016 +

hurd-i386/submitted-auxv.diff: New patch, fixes cvs crash
---
 debian/changelog |  3 ++-
 debian/patches/hurd-i386/submitted-auxv.diff | 14 ++
 debian/patches/kfreebsd/submitted-auxv.diff  |  2 +-
 debian/patches/series|  1 +
 4 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 8b0a9e0..3d6971b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 glibc (2.22-6) UNRELEASED; urgency=medium
 
-  * 
+  [ Samuel Thibault ]
+  * hurd-i386/submitted-auxv.diff: New patch, fixes cvs crash.
 
  -- Aurelien Jarno   Tue, 29 Mar 2016 00:50:55 +0200
 
diff --git a/debian/patches/hurd-i386/submitted-auxv.diff 
b/debian/patches/hurd-i386/submitted-auxv.diff
new file mode 100644
index 000..6c3ef98
--- /dev/null
+++ b/debian/patches/hurd-i386/submitted-auxv.diff
@@ -0,0 +1,14 @@
+https://sourceware.org/ml/libc-alpha/2016-04/msg00025.html
+
+Index: glibc-2.22/misc/getauxval.c
+===
+--- glibc-2.22.orig/misc/getauxval.c
 glibc-2.22/misc/getauxval.c
+@@ -35,6 +35,7 @@ __getauxval (unsigned long int type)
+   else if (type == AT_HWCAP2)
+ return GLRO(dl_hwcap2);
+ 
++ if (GLRO(dl_auxv))
+   for (p = GLRO(dl_auxv); p->a_type != AT_NULL; p++)
+ if (p->a_type == type)
+   return p->a_un.a_val;
diff --git a/debian/patches/kfreebsd/submitted-auxv.diff 
b/debian/patches/kfreebsd/submitted-auxv.diff
index 360c276..c3c7533 100644
--- a/debian/patches/kfreebsd/submitted-auxv.diff
+++ b/debian/patches/kfreebsd/submitted-auxv.diff
@@ -17,9 +17,9 @@ https://sourceware.org/bugzilla/show_bug.cgi?id=15794
  return GLRO(dl_hwcap2);
 +#endif
  
+  if (GLRO(dl_auxv))
for (p = GLRO(dl_auxv); p->a_type != AT_NULL; p++)
  if (p->a_type == type)
-
 diff --git a/bits/auxv.h b/bits/auxv.h
 new file mode 100644
 index 000..76701c3
diff --git a/debian/patches/series b/debian/patches/series
index 7ff0f06..ab07864 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -151,6 +151,7 @@ hurd-i386/cvs-raise-longjump.diff
 hurd-i386/submitted-hurd-abilist.diff
 hurd-i386/cvs-errnos.d.diff
 hurd-i386/cvs-mach-syscalls.mk.diff
+hurd-i386/submitted-auxv.diff
 
 i386/local-biarch.diff
 i386/local-cmov.diff

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



Re: [glibc] 01/01: hurd-i386/submitted-auxv.diff: New patch, fixes cvs crash

2016-04-03 Thread Aurelien Jarno
On 2016-04-02 11:04, Samuel Thibault wrote:
> This is an automated email from the git hooks/post-receive script.
> 
> sthibault pushed a commit to branch glibc-2.22
> in repository glibc.

I think you committed that on the wrong branch, you probably wanted the
sid branch instead.

Aurelien

-- 
Aurelien Jarno  GPG: 4096R/1DDD8C9B
aurel...@aurel32.net http://www.aurel32.net



Bug#819844: message should mention that it is possible to restart without asking

2016-04-03 Thread Aurelien Jarno
On 2016-04-03 07:48, 積丹尼 Dan Jacobson wrote:
> Package: libc6
> Version: 2.23-0experimental1
> Severity: wishlist
> 
> Every upgrade the upgrade stops and the operator must walk over and
> press return to get it started again.
> 
> The message shown about restarting services exim4 cron atd should also
> mention how/that one can also restart without asking.

There is already debconf question to avoid getting asked at each
upgrade. If you answer yes, the services are restarted without asking.
I don't really understand what you want more.

Aurelien

-- 
Aurelien Jarno  GPG: 4096R/1DDD8C9B
aurel...@aurel32.net http://www.aurel32.net



Bug#819845: [Debconf-devel] Bug#819845: mention how to reconfigure the items shown by debconf-show

2016-04-03 Thread Colin Watson
On Sun, Apr 03, 2016 at 11:23:02AM +0800, 積丹尼 Dan Jacobson wrote:
> > "CW" == Colin Watson  writes:
> 
> CW> No, I don't see any need to change the debconf documentation here.
> CW> dpkg-reconfigure(8) says that it will ask configuration questions, not
> CW> that it will ask every single thing mentioned in the output of
> CW> debconf-show(1).
> 
> So you need to say that not every thing shown in debconf-show is a
> configuration option!

It's mainly a debugging aid, and as it stands it only talks about
"items", which are quite generic.  It seems good enough to me.

I'm not going to reply further, so please stop e-mailing me about this.

-- 
Colin Watson   [cjwat...@debian.org]