[packages/musl] - updated to 1.1.14 - removed obsolete locale patch

qboosh qboosh at pld-linux.org
Sun Mar 6 15:55:08 CET 2016


commit 10ed8c253a13b031aff7f74c7d58a6f4023a953f
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date:   Sun Mar 6 15:58:48 2016 +0100

    - updated to 1.1.14
    - removed obsolete locale patch

 musl-locale.patch | 25 -------------------------
 musl.spec         |  8 +++-----
 2 files changed, 3 insertions(+), 30 deletions(-)
---
diff --git a/musl.spec b/musl.spec
index 1405420..6605577 100644
--- a/musl.spec
+++ b/musl.spec
@@ -1,13 +1,12 @@
 Summary:	musl libc - new standard library to power a new generation of Linux-based devices
 Summary(pl.UTF-8):	musl libc - nowa biblioteka standardowa dla urządzeń linuksowych nowej generacji
 Name:		musl
-Version:	1.1.10
-Release:	2
+Version:	1.1.14
+Release:	1
 License:	MIT
 Group:		Libraries
 Source0:	http://www.musl-libc.org/releases/%{name}-%{version}.tar.gz
-# Source0-md5:	fc30892ee582c91920505bbd0021049f
-Patch0:		musl-locale.patch
+# Source0-md5:	d529ce4a2f7f79d8c3fd4b8329417b57
 URL:		http://www.musl-libc.org/
 BuildRequires:	gcc >= 5:3.2
 BuildRequires:	zlib-devel
@@ -58,7 +57,6 @@ Pliki programistyczne biblioteki musl libc.
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %configure \
diff --git a/musl-locale.patch b/musl-locale.patch
deleted file mode 100644
index 36dd664..0000000
--- a/musl-locale.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 63f4b9f18f3674124d8bcb119739fec85e6da005 Mon Sep 17 00:00:00 2001
-From: Timo Teräs <timo.teras at iki.fi>
-Date: Fri, 05 Jun 2015 07:39:42 +0000
-Subject: fix uselocale((locale_t)0) not to modify locale
-
-commit 68630b55c0c7219fe9df70dc28ffbf9efc8021d8 made the new locale to
-be assigned unconditonally resulting in crashes later on.
----
-diff --git a/src/locale/uselocale.c b/src/locale/uselocale.c
-index b70a0c1..0fc5ecb 100644
---- a/src/locale/uselocale.c
-+++ b/src/locale/uselocale.c
-@@ -8,9 +8,7 @@ locale_t __uselocale(locale_t new)
- 	locale_t old = self->locale;
- 	locale_t global = &libc.global_locale;
- 
--	if (new == LC_GLOBAL_LOCALE) new = global;
--
--	self->locale = new;
-+	if (new) self->locale = new == LC_GLOBAL_LOCALE ? global : new;
- 
- 	return old == global ? LC_GLOBAL_LOCALE : old;
- }
---
-cgit v0.9.0.3-65-g4555
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/musl.git/commitdiff/10ed8c253a13b031aff7f74c7d58a6f4023a953f



More information about the pld-cvs-commit mailing list