Bug#824442: and conflict needs to be resolved

2017-03-04 Thread Niels Thykier
On Tue, 14 Feb 2017 20:36:43 +0100 Aurelien Jarno 
wrote:
> [...]
> 
> Now that the change have been done on the kernel side, the bug is not
> really visible anymore, so nobody really cared about this bug.
> 
> I'll see if I can come with a patch in the next days.
> 
> Aurelien
> 
> -- 
> Aurelien Jarno  GPG: 4096R/1DDD8C9B
> aurel...@aurel32.net http://www.aurel32.net
> 
> 

Thanks for the reply.  I am looking forward to the patch. :)

Forgot to mention, please CC me on replies :)

Thanks,
~Niels



Bug#856785: [INTL:da] Danish translation of the debconf templates tzdata

2017-03-04 Thread Joe Dalton
Package: tzdata
Severity: wishlist
Tags: l10n patch

Please include the attached Danish tzdata

joe@pc:~/over/debian/tzdata$ msgfmt --statistics -c -v -o /dev/null da.po
da.po: 475 oversatte tekster.

bye
Joe

da.po.tar.gz
Description: application/gzip


[glibc] branch sid updated (e4103ef -> 937641b)

2017-03-04 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  e4103ef   New changelog entry
   new  937641b   hurd-i386/cvs-truncate64.diff: New patch to support 64bit 
truncate

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/cvs-truncate64.diff | 97 
 debian/patches/series|  1 +
 3 files changed, 100 insertions(+), 1 deletion(-)
 create mode 100644 debian/patches/hurd-i386/cvs-truncate64.diff

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



[glibc] 01/01: hurd-i386/cvs-truncate64.diff: New patch to support 64bit truncate

2017-03-04 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 937641b7ab4087f8183a69e505afba771e86f496
Author: Samuel Thibault 
Date:   Sat Mar 4 14:31:33 2017 +0100

hurd-i386/cvs-truncate64.diff: New patch to support 64bit truncate
---
 debian/changelog |  3 +-
 debian/patches/hurd-i386/cvs-truncate64.diff | 97 
 debian/patches/series|  1 +
 3 files changed, 100 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 77cb166..2dbd3b6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 glibc (2.24-10) UNRELEASED; urgency=medium
 
-  * 
+  [ Samuel Thibault ]
+  * hurd-i386/cvs-truncate64.diff: New patch to support 64bit truncate.
 
  -- Aurelien Jarno   Mon, 16 Jan 2017 18:46:54 +0100
 
diff --git a/debian/patches/hurd-i386/cvs-truncate64.diff 
b/debian/patches/hurd-i386/cvs-truncate64.diff
new file mode 100644
index 000..2c0ad17
--- /dev/null
+++ b/debian/patches/hurd-i386/cvs-truncate64.diff
@@ -0,0 +1,97 @@
+commit 21d58b2a43cab26838ba57bcea52d5cef132f925
+Author: Justus Winter 
+Date:   Fri Mar 3 21:27:27 2017 +0100
+
+hurd: Provide truncate64 and ftruncate64.
+
+* sysdeps/mach/hurd/ftruncate64.c: New file.
+* sysdeps/mach/hurd/truncate64.c: Likewise.
+
+diff --git a/sysdeps/mach/hurd/ftruncate64.c b/sysdeps/mach/hurd/ftruncate64.c
+new file mode 100644
+index 00..53c4f64afc
+--- /dev/null
 b/sysdeps/mach/hurd/ftruncate64.c
+@@ -0,0 +1,34 @@
++/* Copyright (C) 1991-2017 Free Software Foundation, Inc.
++   This file is part of the GNU C Library.
++
++   The GNU C Library is free software; you can redistribute it and/or
++   modify it under the terms of the GNU Lesser General Public
++   License as published by the Free Software Foundation; either
++   version 2.1 of the License, or (at your option) any later version.
++
++   The GNU C Library is distributed in the hope that it will be useful,
++   but WITHOUT ANY WARRANTY; without even the implied warranty of
++   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
++   Lesser General Public License for more details.
++
++   You should have received a copy of the GNU Lesser General Public
++   License along with the GNU C Library; if not, see
++   .  */
++
++#include 
++#include 
++#include 
++#include 
++#include 
++
++/* Truncate the file referenced by FD to LENGTH bytes.  */
++int
++__ftruncate64 (int fd, off64_t length)
++{
++  error_t err;
++  if (err = HURD_DPORT_USE (fd, __file_set_size (port, length)))
++return __hurd_dfail (fd, err);
++  return 0;
++}
++
++weak_alias (__ftruncate64, ftruncate64)
+diff --git a/sysdeps/mach/hurd/truncate64.c b/sysdeps/mach/hurd/truncate64.c
+new file mode 100644
+index 00..a2e2ed2190
+--- /dev/null
 b/sysdeps/mach/hurd/truncate64.c
+@@ -0,0 +1,42 @@
++/* Copyright (C) 1991-2017 Free Software Foundation, Inc.
++   This file is part of the GNU C Library.
++
++   The GNU C Library is free software; you can redistribute it and/or
++   modify it under the terms of the GNU Lesser General Public
++   License as published by the Free Software Foundation; either
++   version 2.1 of the License, or (at your option) any later version.
++
++   The GNU C Library is distributed in the hope that it will be useful,
++   but WITHOUT ANY WARRANTY; without even the implied warranty of
++   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
++   Lesser General Public License for more details.
++
++   You should have received a copy of the GNU Lesser General Public
++   License along with the GNU C Library; if not, see
++   .  */
++
++#include 
++#include 
++#include 
++#include 
++#include 
++
++/* Truncate FILE_NAME to LENGTH bytes.  */
++int
++__truncate64 (const char *file_name, off64_t length)
++{
++  error_t err;
++  file_t file = __file_name_lookup (file_name, O_WRITE, 0);
++
++  if (file == MACH_PORT_NULL)
++return -1;
++
++  err = __file_set_size (file, length);
++  __mach_port_deallocate (__mach_task_self (), file);
++
++  if (err)
++return __hurd_fail (err);
++  return 0;
++}
++
++weak_alias (__truncate64, truncate64)
diff --git a/debian/patches/series b/debian/patches/series
index 2f9d247..aff6f7e 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -141,6 +141,7 @@ hurd-i386/tg-libc_rwlock_recursive.diff
 hurd-i386/cvs-hurd_signal.h_c++.diff
 hurd-i386/tg-magic-pid.diff
 hurd-i386/tg-mlockall.diff
+hurd-i386/cvs-truncate64.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



[tzdata] branch sid updated (182ff60 -> 5f874fb)

2017-03-04 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a change to branch sid
in repository tzdata.

  from  182ff60   New upstream version, affecting the following future 
timestamp:
   new  5f874fb   Remove /etc/localtime on purge.  Closes: #854141.

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 | 1 +
 debian/tzdata.postrm | 9 +
 2 files changed, 10 insertions(+)
 create mode 100644 debian/tzdata.postrm

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



Processed: Bug#854141 marked as pending

2017-03-04 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 854141 pending
Bug #854141 [tzdata] tzdata: purging tzdata leaves dangling /etc/localtime 
symlink
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
854141: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=854141
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



[tzdata] 01/01: Remove /etc/localtime on purge. Closes: #854141.

2017-03-04 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a commit to branch sid
in repository tzdata.

commit 5f874fb0ab2e6250c8bb8ac82d41f9f60d805dbd
Author: Aurelien Jarno 
Date:   Sat Mar 4 12:32:34 2017 +0100

Remove /etc/localtime on purge.  Closes: #854141.
---
 debian/changelog | 1 +
 debian/tzdata.postrm | 9 +
 2 files changed, 10 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 3788924..ecac0be 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ tzdata (2017a-1) UNRELEASED; urgency=medium
 #849234.
   * Update Japanese debconf translation, by victory .
   * Update French debconf translation, by Baptiste Jammet.  Closes: #851589.
+  * Remove /etc/localtime on purge.  Closes: #854141.
 
  -- Aurelien Jarno   Sat, 04 Mar 2017 00:58:05 +0100
 
diff --git a/debian/tzdata.postrm b/debian/tzdata.postrm
new file mode 100644
index 000..3f0deec
--- /dev/null
+++ b/debian/tzdata.postrm
@@ -0,0 +1,9 @@
+#!/bin/sh
+set -e
+
+# Remove /etc/localtime on purge
+if [ "$1" = "purge" ]; then
+rm -f /etc/localtime
+fi
+
+#DEBHELPER#

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