unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#27936] [PATCH] gnu: libunwind: Update to 1.2.1.
@ 2017-08-03 18:07 Leo Famulari
  2017-09-04 13:17 ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Leo Famulari @ 2017-08-03 18:07 UTC (permalink / raw)
  To: 27936

* gnu/packages/libunwind.scm (libunwind): Upate to 1.2.1.
[source]: Remove 'libunwind-CVE-2015-3239.patch'.
* gnu/packages/patches/libunwind-CVE-2015-3239.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
---
 gnu/local.mk                                       |  1 -
 gnu/packages/libunwind.scm                         | 10 +++++-----
 gnu/packages/patches/libunwind-CVE-2015-3239.patch | 17 -----------------
 3 files changed, 5 insertions(+), 23 deletions(-)
 delete mode 100644 gnu/packages/patches/libunwind-CVE-2015-3239.patch

diff --git a/gnu/local.mk b/gnu/local.mk
index f4fef78f3..207470ac7 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -800,7 +800,6 @@ dist_patch_DATA =						\
   %D%/packages/patches/libtirpc-CVE-2017-8779.patch		\
   %D%/packages/patches/libtorrent-rasterbar-boost-compat.patch	\
   %D%/packages/patches/libtool-skip-tests2.patch		\
-  %D%/packages/patches/libunwind-CVE-2015-3239.patch		\
   %D%/packages/patches/libusb-0.1-disable-tests.patch		\
   %D%/packages/patches/libvpx-CVE-2016-2818.patch		\
   %D%/packages/patches/libxcb-python-3.5-compat.patch		\
diff --git a/gnu/packages/libunwind.scm b/gnu/packages/libunwind.scm
index cda83b2bc..ce75322e1 100644
--- a/gnu/packages/libunwind.scm
+++ b/gnu/packages/libunwind.scm
@@ -27,19 +27,19 @@
 (define-public libunwind
   (package
     (name "libunwind")
-    (version "1.1")
+    (version "1.2.1")
     (source (origin
              (method url-fetch)
              (uri (string-append "mirror://savannah/libunwind/libunwind-"
                                  version ".tar.gz"))
              (sha256
               (base32
-               "16nhx2pahh9d62mvszc88q226q5lwjankij276fxwrm8wb50zzlx"))
-             (patches (search-patches "libunwind-CVE-2015-3239.patch"))))
+               "1jsslwkilwrsj959dc8b479qildawz67r8m4lzxm7glcwa8cngiz"))))
     (build-system gnu-build-system)
     (arguments
-     ;; FIXME: As of glibc 2.17, we get 3 out of 34 test failures.
-     ;; Report them upstream.
+     ;; FIXME: As of glibc 2.25, we get 1 out of 34 test failures (2 are
+     ;; expected to fail).
+     ;; Report it upstream.
      '(#:tests? #f))
     (home-page "http://www.nongnu.org/libunwind")
     (synopsis "Determining the call chain of a program")
diff --git a/gnu/packages/patches/libunwind-CVE-2015-3239.patch b/gnu/packages/patches/libunwind-CVE-2015-3239.patch
deleted file mode 100644
index 3f11ac733..000000000
--- a/gnu/packages/patches/libunwind-CVE-2015-3239.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Copied from Fedora.
-
-https://bugzilla.redhat.com/show_bug.cgi?id=1232265
-http://pkgs.fedoraproject.org/cgit/libunwind.git/tree/libunwind-1.1-fix-CVE-2015-3239.patch
-
-diff -up libunwind-1.1/include/dwarf_i.h.CVE20153239 libunwind-1.1/include/dwarf_i.h
---- libunwind-1.1/include/dwarf_i.h.CVE20153239	2015-07-10 13:38:36.404996748 -0400
-+++ libunwind-1.1/include/dwarf_i.h	2015-07-10 13:39:25.050707613 -0400
-@@ -20,7 +20,7 @@
- extern const uint8_t dwarf_to_unw_regnum_map[DWARF_REGNUM_MAP_LENGTH];
- /* REG is evaluated multiple times; it better be side-effects free!  */
- # define dwarf_to_unw_regnum(reg)					  \
--  (((reg) <= DWARF_REGNUM_MAP_LENGTH) ? dwarf_to_unw_regnum_map[reg] : 0)
-+  (((reg) < DWARF_REGNUM_MAP_LENGTH) ? dwarf_to_unw_regnum_map[reg] : 0)
- #endif
- 
- #ifdef UNW_LOCAL_ONLY
-- 
2.13.3

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#27936] [PATCH] gnu: libunwind: Update to 1.2.1.
  2017-08-03 18:07 [bug#27936] [PATCH] gnu: libunwind: Update to 1.2.1 Leo Famulari
@ 2017-09-04 13:17 ` Ludovic Courtès
  2017-09-26  8:36   ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2017-09-04 13:17 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 27936

Leo Famulari <leo@famulari.name> skribis:

> * gnu/packages/libunwind.scm (libunwind): Upate to 1.2.1.
> [source]: Remove 'libunwind-CVE-2015-3239.patch'.
> * gnu/packages/patches/libunwind-CVE-2015-3239.patch: Delete file.
> * gnu/local.mk (dist_patch_DATA): Remove it.

Go for it, thanks!

Ludo’.

PS: Sorry it took so long.  I think you can go ahead in such obvious
    cases, as per ‘HACKING’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#27936] [PATCH] gnu: libunwind: Update to 1.2.1.
  2017-09-04 13:17 ` Ludovic Courtès
@ 2017-09-26  8:36   ` Ludovic Courtès
  2017-09-26 15:43     ` bug#27936: " Leo Famulari
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2017-09-26  8:36 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 27936

Ping!  :-)

ludo@gnu.org (Ludovic Courtès) skribis:

> Leo Famulari <leo@famulari.name> skribis:
>
>> * gnu/packages/libunwind.scm (libunwind): Upate to 1.2.1.
>> [source]: Remove 'libunwind-CVE-2015-3239.patch'.
>> * gnu/packages/patches/libunwind-CVE-2015-3239.patch: Delete file.
>> * gnu/local.mk (dist_patch_DATA): Remove it.
>
> Go for it, thanks!
>
> Ludo’.
>
> PS: Sorry it took so long.  I think you can go ahead in such obvious
>     cases, as per ‘HACKING’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#27936: [PATCH] gnu: libunwind: Update to 1.2.1.
  2017-09-26  8:36   ` Ludovic Courtès
@ 2017-09-26 15:43     ` Leo Famulari
  0 siblings, 0 replies; 4+ messages in thread
From: Leo Famulari @ 2017-09-26 15:43 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 27936-done

[-- Attachment #1: Type: text/plain, Size: 649 bytes --]

On Tue, Sep 26, 2017 at 10:36:26AM +0200, Ludovic Courtès wrote:
> Ping!  :-)
> 
> ludo@gnu.org (Ludovic Courtès) skribis:
> 
> > Leo Famulari <leo@famulari.name> skribis:
> >
> >> * gnu/packages/libunwind.scm (libunwind): Upate to 1.2.1.
> >> [source]: Remove 'libunwind-CVE-2015-3239.patch'.
> >> * gnu/packages/patches/libunwind-CVE-2015-3239.patch: Delete file.
> >> * gnu/local.mk (dist_patch_DATA): Remove it.
> >
> > Go for it, thanks!
> >
> > Ludo’.
> >
> > PS: Sorry it took so long.  I think you can go ahead in such obvious
> >     cases, as per ‘HACKING’.

Oops, I forgot! Thanks for the reminder!

Pushed!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-09-26 15:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-03 18:07 [bug#27936] [PATCH] gnu: libunwind: Update to 1.2.1 Leo Famulari
2017-09-04 13:17 ` Ludovic Courtès
2017-09-26  8:36   ` Ludovic Courtès
2017-09-26 15:43     ` bug#27936: " Leo Famulari

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).