r2793 - in glibc-package/trunk/debian: . patches patches/mips

2008-01-24 Thread aurel32
Author: aurel32
Date: 2008-01-24 14:37:50 + (Thu, 24 Jan 2008)
New Revision: 2793

Added:
   glibc-package/trunk/debian/patches/mips/submitted-mipsn32.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
Log:
  * patches/mips/submitted-mipsn32.diff: new patch to fix truncate64() 
on MIPS n32.



Modified: glibc-package/trunk/debian/changelog
===
--- glibc-package/trunk/debian/changelog2008-01-22 22:14:04 UTC (rev 
2792)
+++ glibc-package/trunk/debian/changelog2008-01-24 14:37:50 UTC (rev 
2793)
@@ -12,10 +12,12 @@
   * patches/any/local-ldso-disable-hwcap.diff: enable tls/ directory even
 when hardware capabilities are disabled. This workarounds a bug in
 nvidia-glx.  Closes: #453480.
-  * patches/mips/local-r10k.diff: new patch from Florian Lohoff to 
+  * patches/mips/local-r10k.diff: new patch from Florian Lohoff to
 workaround LL/SC bug on R10k.  Closes: #462112.
+  * patches/mips/submitted-mipsn32.diff: new patch to fix truncate64() 
+on MIPS n32.
 
- -- Aurelien Jarno [EMAIL PROTECTED]  Tue, 22 Jan 2008 23:11:59 +0100
+ -- Aurelien Jarno [EMAIL PROTECTED]  Thu, 24 Jan 2008 15:37:11 +0100
 
 glibc (2.7-6) unstable; urgency=low
 

Added: glibc-package/trunk/debian/patches/mips/submitted-mipsn32.diff
===
--- glibc-package/trunk/debian/patches/mips/submitted-mipsn32.diff  
(rev 0)
+++ glibc-package/trunk/debian/patches/mips/submitted-mipsn32.diff  
2008-01-24 14:37:50 UTC (rev 2793)
@@ -0,0 +1,26 @@
+2008-01-24  Aurelien Jarno  [EMAIL PROTECTED]
+
+   * sysdeps/unix/sysv/linux/mips/mips64/n32/truncate64.c: Drop truncate
+   declaration.
+   (truncate64): Fix arguments and call to truncate.
+
+Index: sysdeps/unix/sysv/linux/mips/mips64/n32/truncate64.c
+===
+RCS file: 
/cvs/glibc/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/truncate64.c,v
+retrieving revision 1.1
+diff -u -d -p -r1.1 truncate64.c
+--- ports/sysdeps/unix/sysv/linux/mips/mips64/n32/truncate64.c 5 Apr 2003 
19:57:35 -   1.1
 ports/sysdeps/unix/sysv/linux/mips/mips64/n32/truncate64.c 24 Jan 2008 
01:21:34 -
+@@ -21,10 +21,6 @@
+ #include sysdep.h
+ #include bp-checks.h
+ 
+-extern int truncate (const char *__unbounded path, int dummy,
+-   off64_t length);
+-
+-int truncate64 (const char *__unbounded path, int dummy,
+-  off64_t length) {
+-  return truncate (path, dummy, length);
++int truncate64 (const char *file, off64_t length) {
++  return truncate (file, length);
+ }

Modified: glibc-package/trunk/debian/patches/series
===
--- glibc-package/trunk/debian/patches/series   2008-01-22 22:14:04 UTC (rev 
2792)
+++ glibc-package/trunk/debian/patches/series   2008-01-24 14:37:50 UTC (rev 
2793)
@@ -108,6 +108,7 @@
 mips/local-lazy-eval.diff -p0
 mips/local-r10k.diff -p0
 mips/local-setjmp.diff -p0
+mips/submitted-mipsn32.diff -p0
 
 powerpc/local-sysconf.diff 
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#462444: glibc: Please add symbols files for libc6

2008-01-24 Thread Raphael Hertzog
Package: glibc
Version: 2.7-6
Severity: wishlist
Tags: patch

Please add symbols files to the various libc* packages that provide
libraries. Since libc6 is sanely versioned I suggest to rely on that
to avoid maintaining explicit list of symbols (wee wildcards in
dpkg-gensymbols(1) for explanations).

You'll need the latest dpkg-dev to make use of this however. I'm sure the
attached patch will need further fine-tuning because I'm not 100%
confident that I got it right for all arches.

I have not added kfreebsd-* and armel but you should be able to add it if
you want. The change shouldn't generate any failure on those arches,
they'll simply not have a symbols file.

I hope you can do some tests with it and make an experimental upload with
symbols files...

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.23-1-686 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
diff -u glibc-2.7/debian/control.in/main glibc-2.7/debian/control.in/main
--- glibc-2.7/debian/control.in/main
+++ glibc-2.7/debian/control.in/main
@@ -1,7 +1,7 @@
 Source: @glibc@
 Section: libs
 Priority: required
-Build-Depends: gettext, make (= 3.80-1), dpkg-dev (= 1.13.5), bzip2, lzma, 
file, quilt,
+Build-Depends: gettext, make (= 3.80-1), dpkg-dev (= 1.14.16.5), bzip2, 
lzma, file, quilt,
  autoconf, sed (= 4.0.5-4), gawk, debhelper (= 5.0),
  linux-libc-dev [!hurd-i386 !kfreebsd-i386 !kfreebsd-amd64],
  mig (= 1.3-2) [hurd-i386], hurd-dev (= 20020608-1) [hurd-i386], gnumach-dev 
[hurd-i386],
diff -u glibc-2.7/debian/changelog glibc-2.7/debian/changelog
--- glibc-2.7/debian/changelog
+++ glibc-2.7/debian/changelog
@@ -1,3 +1,12 @@
+glibc (2.7-6.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * Provide symbols files.
+  * Build-Depends on dpkg-dev (= 1.14.16.5) as we use wildcards in symbols
+files (and include several times the same file).
+
+ -- Raphael Hertzog [EMAIL PROTECTED]  Wed, 23 Jan 2008 19:44:38 +0100
+
 glibc (2.7-6) unstable; urgency=low
 
   [ Aurelien Jarno ]
only in patch2:
unchanged:
--- glibc-2.7.orig/debian/libc6.symbols.sparc
+++ glibc-2.7/debian/libc6.symbols.sparc
@@ -0,0 +1,7 @@
+#include symbols.common
+#include symbols.non-hurd
+ld-linux.so.2 libc6 #MINVER#
+#include symbols.wildcards
+libc.so.6 libc6 #MINVER#
+#include symbols.wildcards
+ [EMAIL PROTECTED] 2.3.6
only in patch2:
unchanged:
--- glibc-2.7.orig/debian/libc6.symbols.amd64
+++ glibc-2.7/debian/libc6.symbols.amd64
@@ -0,0 +1,7 @@
+#include symbols.common
+#include symbols.non-hurd
+ld-linux.so.2 libc6 #MINVER#
+#include symbols.wildcards
+libc.so.6 libc6 #MINVER#
+#include symbols.wildcards
+ [EMAIL PROTECTED] 2.3.6
only in patch2:
unchanged:
--- glibc-2.7.orig/debian/libc6-sparc64.symbols
+++ glibc-2.7/debian/libc6-sparc64.symbols
@@ -0,0 +1,46 @@
+#include libc6.symbols.sparc
+# Get the symbols from the default file
+# Override all dependencies to libc6-sparc64
+ld-linux.so.2 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libBrokenLocale.so.1 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libSegFault.so libc6-sparc64 #MINVER#
+libanl.so.1 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libc.so.6 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libcidn.so.1 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libcrypt.so.1 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libdl.so.2 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libm.so.6 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libmemusage.so libc6-sparc64 #MINVER#
+libnsl.so.1 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libnss_compat.so.2 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libnss_dns.so.2 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libnss_files.so.2 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libnss_hesiod.so.2 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libnss_nis.so.2 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libnss_nisplus.so.2 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libpcprofile.so libc6-sparc64 #MINVER#
+libpthread.so.0 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libresolv.so.2 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+librt.so.1 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libthread_db.so.1 libc6-sparc64 #MINVER#
+#include symbols.wildcards
+libutil.so.1 libc6-sparc64 #MINVER#
+#include symbols.wildcards
only in patch2:
unchanged:
--- glibc-2.7.orig/debian/libc6.symbols.i386
+++ glibc-2.7/debian/libc6.symbols.i386
@@ -0,0 +1,7 @@
+#include symbols.common
+#include symbols.non-hurd
+ld-linux.so.2 libc6 #MINVER#
+#include symbols.wildcards
+libc.so.6 libc6 #MINVER#
+#include symbols.wildcards
+ [EMAIL PROTECTED] 2.3.6
only in patch2:
unchanged:
--- glibc-2.7.orig/debian/symbols.wildcards
+++ glibc-2.7/debian/symbols.wildcards
@@ -0,0 

Bug#462444: glibc: Please add symbols files for libc6

2008-01-24 Thread Joey Hess
I'd be happy to help test a version of libc6 that uses symbol files on
armel. It'll take a while to compile it of course. :-)

-- 
see shy jo


signature.asc
Description: Digital signature


glibc 2.7-6 MIGRATED to testing

2008-01-24 Thread Debian testing watch
FYI: The status of the glibc source package
in Debian's testing distribution has changed.

  Previous version: 2.7-5
  Current version:  2.7-6

-- 
This email is automatically generated; [EMAIL PROTECTED] is responsible.
See http://people.debian.org/~henning/trille/ for more information.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



r2794 - tzdata/trunk/debian

2008-01-24 Thread aurel32
Author: aurel32
Date: 2008-01-25 07:04:52 + (Fri, 25 Jan 2008)
New Revision: 2794

Modified:
   tzdata/trunk/debian/changelog
   tzdata/trunk/debian/control
Log:
  * Add a Provides: tzdata-lenny.



Modified: tzdata/trunk/debian/changelog
===
--- tzdata/trunk/debian/changelog   2008-01-24 14:37:50 UTC (rev 2793)
+++ tzdata/trunk/debian/changelog   2008-01-25 07:04:52 UTC (rev 2794)
@@ -1,3 +1,9 @@
+tzdata (2007k-3) UNRELEASED; urgency=low
+
+  * Add a Provides: tzdata-lenny.
+
+ -- Aurelien Jarno [EMAIL PROTECTED]  Fri, 25 Jan 2008 08:04:31 +0100
+
 tzdata (2007k-2) unstable; urgency=low
 
   * debian/po/sv.po: initial translation from Christer Andersson

Modified: tzdata/trunk/debian/control
===
--- tzdata/trunk/debian/control 2008-01-24 14:37:50 UTC (rev 2793)
+++ tzdata/trunk/debian/control 2008-01-25 07:04:52 UTC (rev 2794)
@@ -11,6 +11,7 @@
 Architecture: all
 Depends: debconf | debconf-2.0
 Replaces: libc0.1, libc0.3, libc6, libc6.1
+Provides: tzdata-lenny
 Description: time zone and daylight-saving time data
  This package contains data required for the implementation of
  standard local time for many representative locations around the


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]