pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/print/dvipsk dvipsk: update to 5.998
details: https://anonhg.NetBSD.org/pkgsrc/rev/f5f15f48b689
branches: trunk
changeset: 307787:f5f15f48b689
user: markd <markd%pkgsrc.org@localhost>
date: Sun May 13 12:31:37 2018 +0000
description:
dvipsk: update to 5.998
texlive 2018 version
diffstat:
print/dvipsk/Makefile | 9 +++----
print/dvipsk/distinfo | 11 ++++-----
print/dvipsk/patches/patch-texk_dvipsk_color.c | 29 --------------------------
3 files changed, 9 insertions(+), 40 deletions(-)
diffs (67 lines):
diff -r b19907c2325c -r f5f15f48b689 print/dvipsk/Makefile
--- a/print/dvipsk/Makefile Sun May 13 12:29:00 2018 +0000
+++ b/print/dvipsk/Makefile Sun May 13 12:31:37 2018 +0000
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.18 2017/10/31 08:12:11 dbj Exp $
+# $NetBSD: Makefile,v 1.19 2018/05/13 12:31:37 markd Exp $
-DISTNAME= texlive-20170524-source
-PKGNAME= dvipsk-5.997
-PKGREVISION= 1
+DISTNAME= texlive-20180414-source
+PKGNAME= dvipsk-5.998
CATEGORIES= print
-MASTER_SITES= ftp://tug.org/historic/systems/texlive/2017/
+MASTER_SITES= ftp://tug.org/historic/systems/texlive/2018/
EXTRACT_SUFX= .tar.xz
MAINTAINER= minskim%NetBSD.org@localhost
diff -r b19907c2325c -r f5f15f48b689 print/dvipsk/distinfo
--- a/print/dvipsk/distinfo Sun May 13 12:29:00 2018 +0000
+++ b/print/dvipsk/distinfo Sun May 13 12:31:37 2018 +0000
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.15 2017/10/31 08:12:11 dbj Exp $
+$NetBSD: distinfo,v 1.16 2018/05/13 12:31:37 markd Exp $
-SHA1 (texlive-20170524-source.tar.xz) = 1c1383ddb1b871c6b8ce49a4ae3c1a33d454a7b6
-RMD160 (texlive-20170524-source.tar.xz) = a8430c19fe1727cf308fe03e5838105260c0d71e
-SHA512 (texlive-20170524-source.tar.xz) = 18c18940992ab94ce22e22ccd4ad798253ea14ac2ab296a10ea5e9a8da9f33989f2e2641b42b564d1d5fb53bd371da3e68726b676d706b469016ad146cd19daa
-Size (texlive-20170524-source.tar.xz) = 63483372 bytes
-SHA1 (patch-texk_dvipsk_color.c) = a10b27bb9ae7c97d832c648cd429f5d083282b6b
+SHA1 (texlive-20180414-source.tar.xz) = 81bdd9999b6ab860d1d3c388cf27062aba960255
+RMD160 (texlive-20180414-source.tar.xz) = 0ff63bbd7f8a0fb6417089f5d1ae1e4124a1dd95
+SHA512 (texlive-20180414-source.tar.xz) = ecac9b8203d2747be7ba7f82d68096d859fb35713276106d7049035dd3a8cfca07f8a8648982f0317b3812f8480db7326714de32f95998e3e6f73571de2aa140
+Size (texlive-20180414-source.tar.xz) = 49770944 bytes
diff -r b19907c2325c -r f5f15f48b689 print/dvipsk/patches/patch-texk_dvipsk_color.c
--- a/print/dvipsk/patches/patch-texk_dvipsk_color.c Sun May 13 12:29:00 2018 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-$NetBSD: patch-texk_dvipsk_color.c,v 1.1 2017/10/31 08:12:11 dbj Exp $
-
-The strcpy stack checker in recent versions of clang get confused
-and abort when it appears to copy past the end of the structure,
-so be explicit about the variable structure field.
-
-Reported upstream:
-http://tug.org/pipermail/tex-k/2017-August/002797.html
-
---- texk/dvipsk/color.c.orig 2016-11-25 18:08:46.000000000 +0000
-+++ texk/dvipsk/color.c
-@@ -37,7 +37,7 @@ static struct colorpage {
- struct colorpage *next;
- integer boploc; /* we use the bop loc as a page indicator */
- char *bg;
-- char colordat[2];
-+ char colordat[];
- } *colorhash[COLORHASH];
- static char *cstack, *csp, *cend, *bg;
- /*
-@@ -216,7 +216,7 @@ bopcolor(int outtops)
- }
- } else {
- p = (struct colorpage *)mymalloc((integer)
-- (strlen(cstack) + sizeof(struct colorpage) + MAXCOLORLEN));
-+ (strlen(cstack) + sizeof(struct colorpage) + MAXCOLORLEN + 2));
- p->next = colorhash[h];
- p->boploc = pageloc;
- strcpy(p->colordat, cstack);
Home |
Main Index |
Thread Index |
Old Index