summaryrefslogtreecommitdiff
path: root/x11-libs/libXaw
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-05-15 13:19:56 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-05-15 13:19:56 +0100
commitd302a5d7fc9caafba5c8a404f2891bb6ccdec311 (patch)
tree2a3ee43f080d1d0086964de8c29ccf1021fdfda7 /x11-libs/libXaw
parentea31ad0ed5501d0bf92267c35beaf06ac016bad2 (diff)
gentoo resync : 15.05.2018
Diffstat (limited to 'x11-libs/libXaw')
-rw-r--r--x11-libs/libXaw/Manifest1
-rw-r--r--x11-libs/libXaw/files/libXaw-1.0.12-format-security.patch26
2 files changed, 0 insertions, 27 deletions
diff --git a/x11-libs/libXaw/Manifest b/x11-libs/libXaw/Manifest
index c86d9f1a9417..45f8ee60a39b 100644
--- a/x11-libs/libXaw/Manifest
+++ b/x11-libs/libXaw/Manifest
@@ -1,4 +1,3 @@
-AUX libXaw-1.0.12-format-security.patch 818 BLAKE2B 14df89fff04aa784c4d0ef37832bdee98699ed33084b4df189bc1482aaac1e8847abed088b2a50dd131cb241bc82d382565b81ab13ba0ff1d1899589aaec598a SHA512 d08763618a02eeb2ec2abe339566d7a2d2465615306831e4ee02ee2b1699446e598d5aa8dd36356936a87c643900b36845e8419bfa1a1570431c4b5a608f955a
DIST libXaw-1.0.13.tar.bz2 674140 BLAKE2B e141a135d1a45edfb71687951542a31d838bf560997a631b3590db0581f94768a8cc77ebd86c7cff60668e9843b1258a9eb60383a4d25b704ce9dc91fc6d0bdf SHA512 d768a39f7111802493fa1df1b80d858e4139ceeb883d45ff13ce3b7a0e775a7d2834b7ad157c8330117f04c32f38979795332dd7a119adb2344fcb1aa9cf1e2f
EBUILD libXaw-1.0.13.ebuild 981 BLAKE2B 210f0b1fb8c12b2937bc74f86112ed9337c31b04ccfa4c2c71fe69e1ee55e1791627683f3e2f9fb2097a49ae3ba4215a77a277489cedc91ca9bdb6d92ddce0bc SHA512 8bcb3fd9eb65d62bd851952c32422c2250c0bda73005977a85e5bed5222202a9c0a390bd98f0c8c0fab8e6bc0a62061dac013cf0278bf5c444fa015c4cebd670
MISC metadata.xml 308 BLAKE2B c8b1bdf11408b82ade3364323648bf367d76ddec0711a46f3662f4fe34aec46918c7acc617a782312725ab0169e82c25d480194a2ff22bc3429f5f3c1d4e434d SHA512 331203494a47823877466669591ec0de413400dc18f51e96c18a06b7bece2fe56a73055cd7f1e4ffcf6cc9cc9bdd488a7a5ce2830def9ce5a6ae187c52dad364
diff --git a/x11-libs/libXaw/files/libXaw-1.0.12-format-security.patch b/x11-libs/libXaw/files/libXaw-1.0.12-format-security.patch
deleted file mode 100644
index dfc2e23672f9..000000000000
--- a/x11-libs/libXaw/files/libXaw-1.0.12-format-security.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From ec7d7c303385a6bdb0833a5aaae96be697cca7ab Mon Sep 17 00:00:00 2001
-From: Adam Jackson <ajax@redhat.com>
-Date: Thu, 21 Nov 2013 11:43:55 -0500
-Subject: Fix build with gcc -Werror=format-security
-
-DisplayList.c:290:4: error: format not a string literal and no format
-arguments [-Werror=format-security]
-
-Signed-off-by: Adam Jackson <ajax@redhat.com>
-
-diff --git a/src/DisplayList.c b/src/DisplayList.c
-index 3e99df4..0581bf7 100644
---- a/src/DisplayList.c
-+++ b/src/DisplayList.c
-@@ -287,7 +287,7 @@ _XawDisplayList *XawCreateDisplayList(String string, Screen *screen,
- }
- if (fp)
- {
-- snprintf(cname, fp - fname + 1, fname);
-+ snprintf(cname, fp - fname + 1, "%s", fname);
- memmove(fname, fp + 1, strlen(fp));
- lc = cname[0] ? XawGetDisplayListClass(cname) : xlibc;
- if (!lc)
---
-cgit v0.10.2
-