[Frugalware-git] ryuotesting: glibc-2.15-1-x86_64

Marius Cirsta mcirsta at frugalware.org
Fri Apr 13 20:02:30 CEST 2012


Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=ryuotesting.git;a=commitdiff;h=891ffdaacd107f5fceaff811e0f1250d31fcdcd0

commit 891ffdaacd107f5fceaff811e0f1250d31fcdcd0
Author: Marius Cirsta <mcirsta at frugalware.org>
Date:   Fri Apr 13 21:03:10 2012 +0000

glibc-2.15-1-x86_64

*version bump

diff --git a/source/base/glibc/FrugalBuild b/source/base/glibc/FrugalBuild
index df5cfaf..2e03778 100644
--- a/source/base/glibc/FrugalBuild
+++ b/source/base/glibc/FrugalBuild
@@ -1,5 +1,5 @@
# Compiling time: 8.20 SBU
-# Maintainer: crazy <crazy at frugalware.org>
+# Maintainer: Marius Cirsta <mcirsta at frugalware.org>
# Contributor: Miklos Vajna <vmiklos at frugalware.org>

case "$CARCH" in
@@ -10,8 +10,8 @@ esac
USE_GLIBC_PORTS=${USE_GLIBC_PORTS:-$USE_GLIBC_PORTS_DEFAULT}

pkgname=glibc
-pkgver=2.14.1
-pkgrel=4
+pkgver=2.15
+pkgrel=1
pkgdesc="GNU C Library"
url="http://www.gnu.org/software/libc/libc.html"
depends=()
@@ -23,16 +23,12 @@ groups=('base' 'chroot-core')
archs=('i686' 'x86_64' 'arm')
Fup2gnubz2
source=(http://ftp.gnu.org/pub/gnu/glibc/glibc-$pkgver.tar.gz \
-	fix-missing-etc-hosts.patch \
-	revert-8f4a5048eea6536ee85c0f2670adbb97d71e427d.patch \
nis.diff \
glibc2.14-revert-sunrpc-removal.patch \
glibc-2.14-revert-4768ae77.patch \
glibc-2.14.1-gcc_fix-1.patch \
glibc-2.14.1-fixes-1.patch)
-sha1sums=('d1e787f1f55eba4544e4847668cc1edb782622f7' \
-          'be4a7bea8af743331e2c6704faa24b6cb4e155d5' \
-          'c8d14d0f2e239ba0def978010163e919a45700f7' \
+sha1sums=('33861d75dfc6e9d176f33c356929da792055146c' \
'9c4544aee1063f65da39273349f0780d5723747d' \
'9e07221a0f200898a680ed8682569606e4d3abbe' \
'cc22b01dc3d1a8d92b36a319e36ace98c5c55d80' \
diff --git a/source/base/glibc/fix-missing-etc-hosts.patch b/source/base/glibc/fix-missing-etc-hosts.patch
deleted file mode 100644
index e3ab9e3..0000000
--- a/source/base/glibc/fix-missing-etc-hosts.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-This makes wget work again in case /etc/hosts is missing.
-
-diff -Naur glibc-2.11/nss/nss_files/files-hosts.c glibc-2.11/nss/nss_files/files-hosts.c
---- glibc-2.11/nss/nss_files/files-hosts.c	2009-10-30 18:17:08.000000000 +0100
-+++ glibc-2.11/nss/nss_files/files-hosts.c	2009-12-18 22:37:06.642163627 +0100
-@@ -426,7 +426,7 @@
-   else
-     {
-       *errnop = errno;
--      *herrnop = NO_DATA;
-+      *herrnop = HOST_NOT_FOUND;
-     }
-
-   __libc_lock_unlock (lock);
diff --git a/source/base/glibc/revert-8f4a5048eea6536ee85c0f2670adbb97d71e427d.patch b/source/base/glibc/revert-8f4a5048eea6536ee85c0f2670adbb97d71e427d.patch
deleted file mode 100644
index 6a1a292..0000000
--- a/source/base/glibc/revert-8f4a5048eea6536ee85c0f2670adbb97d71e427d.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-diff -Naur glibc-2.12.1/sysdeps/unix/sysv/linux/getpagesize.c glibc-2.12.1-p/sysdeps/unix/sysv/linux/getpagesize.c
---- glibc-2.12.1/sysdeps/unix/sysv/linux/getpagesize.c	2010-07-27 13:34:39.000000000 +0200
-+++ glibc-2.12.1-p/sysdeps/unix/sysv/linux/getpagesize.c	2010-09-13 15:41:12.876000206 +0200
-@@ -1,4 +1,4 @@
--/* Copyright (C) 1991,1992,1995-1997,2000,2002,2004,2010
-+/* Copyright (C) 1991,1992,1995-1997,2000,2002,2004
-    Free Software Foundation, Inc.
-    This file is part of the GNU C Library.
-
-@@ -17,37 +17,30 @@
-    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-    02111-1307 USA.  */
-
--#include <assert.h>
- #include <unistd.h>
- #include <sys/param.h>
-
- #include <ldsodefs.h>
--#include <kernel-features.h>
-
- /* Return the system page size.  */
- int
- __getpagesize ()
- {
--#ifdef __ASSUME_AT_PAGESIZE
--  assert (GLRO(dl_pagesize) != 0);
--  return GLRO(dl_pagesize);
--#else
-   if (GLRO(dl_pagesize) != 0)
-     return GLRO(dl_pagesize);
-
--# ifdef	EXEC_PAGESIZE
-+#ifdef	EXEC_PAGESIZE
-   return EXEC_PAGESIZE;
--# else	/* No EXEC_PAGESIZE.  */
--#  ifdef NBPG
--#   ifndef CLSIZE
--#    define CLSIZE	1
--#   endif	/* No CLSIZE.  */
-+#else	/* No EXEC_PAGESIZE.  */
-+#ifdef	NBPG
-+#ifndef	CLSIZE
-+#define	CLSIZE	1
-+#endif	/* No CLSIZE.  */
-   return NBPG * CLSIZE;
--#  else	/* No NBPG.  */
-+#else	/* No NBPG.  */
-   return NBPC;
--#  endif	/* NBPG.  */
--# endif	/* EXEC_PAGESIZE.  */
--#endif
-+#endif	/* NBPG.  */
-+#endif	/* EXEC_PAGESIZE.  */
- }
- libc_hidden_def (__getpagesize)
- weak_alias (__getpagesize, getpagesize)


More information about the Frugalware-git mailing list