pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/time/ical



Module Name:    pkgsrc
Committed By:   he
Date:           Sun Feb 18 20:03:31 UTC 2018

Modified Files:
        pkgsrc/time/ical: Makefile distinfo
Added Files:
        pkgsrc/time/ical/patches: patch-ical.C

Log Message:
Add a patch to rid us of the warnings related to using an old tcl API.
Bump PKGREVISION.


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 pkgsrc/time/ical/Makefile
cvs rdiff -u -r1.12 -r1.13 pkgsrc/time/ical/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/time/ical/patches/patch-ical.C

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/time/ical/Makefile
diff -u pkgsrc/time/ical/Makefile:1.33 pkgsrc/time/ical/Makefile:1.34
--- pkgsrc/time/ical/Makefile:1.33      Sun Jul 10 10:52:41 2016
+++ pkgsrc/time/ical/Makefile   Sun Feb 18 20:03:30 2018
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.33 2016/07/10 10:52:41 rillig Exp $
+# $NetBSD: Makefile,v 1.34 2018/02/18 20:03:30 he Exp $
 
 DISTNAME=      ical-3.0.2
-PKGREVISION=   4
+PKGREVISION=   5
 CATEGORIES=    time
 MASTER_SITES=  https://launchpad.net/ical-tcl/3.x/${PKGVERSION_NOREV}/+download/
 

Index: pkgsrc/time/ical/distinfo
diff -u pkgsrc/time/ical/distinfo:1.12 pkgsrc/time/ical/distinfo:1.13
--- pkgsrc/time/ical/distinfo:1.12      Mon Nov  2 23:31:37 2015
+++ pkgsrc/time/ical/distinfo   Sun Feb 18 20:03:30 2018
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.12 2015/11/02 23:31:37 agc Exp $
+$NetBSD: distinfo,v 1.13 2018/02/18 20:03:30 he Exp $
 
 SHA1 (ical-3.0.2.tar.gz) = 8a0c2f132979320cb2c24b187cb7238698161e5d
 RMD160 (ical-3.0.2.tar.gz) = e66326edf0cc562e601770959df3a415126ae8c5
 SHA512 (ical-3.0.2.tar.gz) = 6ce7f2d49133c246c6f792203a7a494bcec6d55eb59fac43b6610bc97d0fdbf44cbfa230014241ede581ceb10047d10320fd1a119587d7ba6693ab69b0c7c938
 Size (ical-3.0.2.tar.gz) = 308788 bytes
 SHA1 (patch-calendar_Item.C) = 66fbf2c57829188ca9ae0456ef13c1bc8bba8702
+SHA1 (patch-ical.C) = 83811014ee3f1582dd4b469d5b1aa7df47c1df58
 SHA1 (patch-time_Time.C) = 8e2452a91f81884d6fd99487f81c35108e7d9023

Added files:

Index: pkgsrc/time/ical/patches/patch-ical.C
diff -u /dev/null pkgsrc/time/ical/patches/patch-ical.C:1.1
--- /dev/null   Sun Feb 18 20:03:31 2018
+++ pkgsrc/time/ical/patches/patch-ical.C       Sun Feb 18 20:03:31 2018
@@ -0,0 +1,15 @@
+$NetBSD: patch-ical.C,v 1.1 2018/02/18 20:03:31 he Exp $
+
+Use newer API to get interpreter string result.
+
+--- ical.C.orig        2009-04-18 11:49:55.000000000 +0000
++++ ical.C
+@@ -141,7 +141,7 @@ void trigger(Tcl_Interp* tcl, char const
+     buffer.append('\0');
+ 
+     if (Tcl_Eval(tcl, buffer.as_pointer()) == TCL_ERROR)
+-        fprintf(stderr, "ical: trigger error: %s\n", tcl->result);
++        fprintf(stderr, "ical: trigger error: %s\n", Tcl_GetStringResult(tcl));
+ 
+     buffer.clear();
+ }



Home | Main Index | Thread Index | Old Index