pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/editors/abiword abiword: build with libic...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8bc9b06ca97d
branches:  trunk
changeset: 306721:8bc9b06ca97d
user:      markd <markd%pkgsrc.org@localhost>
date:      Wed Apr 25 05:53:53 2018 +0000
description:
abiword: build with libical-3

diffstat:

 editors/abiword/Makefile                                           |   4 +-
 editors/abiword/distinfo                                           |   4 +-
 editors/abiword/patches/patch-src_text_ptbl_xp_pd__DocumentRDF.cpp |  17 ++++++++-
 3 files changed, 19 insertions(+), 6 deletions(-)

diffs (63 lines):

diff -r c2accfe2a287 -r 8bc9b06ca97d editors/abiword/Makefile
--- a/editors/abiword/Makefile  Wed Apr 25 05:51:20 2018 +0000
+++ b/editors/abiword/Makefile  Wed Apr 25 05:53:53 2018 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.172 2018/04/16 14:33:49 wiz Exp $
+# $NetBSD: Makefile,v 1.173 2018/04/25 05:53:53 markd Exp $
 
 .include       "Makefile.common"
 DISTNAME=      abiword-${ABIVERSION}
-PKGREVISION=   14
+PKGREVISION=   15
 CATEGORIES=    editors
 MASTER_SITES=  http://www.abiword.com/downloads/abiword/${PKGVERSION_NOREV}/source/
 
diff -r c2accfe2a287 -r 8bc9b06ca97d editors/abiword/distinfo
--- a/editors/abiword/distinfo  Wed Apr 25 05:51:20 2018 +0000
+++ b/editors/abiword/distinfo  Wed Apr 25 05:53:53 2018 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.72 2017/02/20 09:35:16 wiz Exp $
+$NetBSD: distinfo,v 1.73 2018/04/25 05:53:53 markd Exp $
 
 SHA1 (abiword-3.0.1.tar.gz) = 7badf9663564a144e16764a456cadda18df70991
 RMD160 (abiword-3.0.1.tar.gz) = 05d92a7304e4e419776970d7b35065ceb59f7681
@@ -28,5 +28,5 @@
 SHA1 (patch-src_af_util_xp_ut__mbtowc.cpp) = 01f6793651533e7e39f665e5c15e6c12e1c7b96d
 SHA1 (patch-src_af_util_xp_ut__misc.cpp) = f552ecbb87490355d8e74218dd59fd3961f1af5d
 SHA1 (patch-src_text_fmt_xp_fv__FrameEdit.h) = 684310bf9aece4ce72d004dfae9a4b4b6ca69570
-SHA1 (patch-src_text_ptbl_xp_pd__DocumentRDF.cpp) = d07eaf64446efc83c24e02e5969e0921451269a8
+SHA1 (patch-src_text_ptbl_xp_pd__DocumentRDF.cpp) = 0c111e9e88c27ad0321c1a3d337abd1f158398d0
 SHA1 (patch-src_text_ptbl_xp_pd__DocumentRDF.h) = 59837727c060bc8f8f14478c3a0245b877c2d29a
diff -r c2accfe2a287 -r 8bc9b06ca97d editors/abiword/patches/patch-src_text_ptbl_xp_pd__DocumentRDF.cpp
--- a/editors/abiword/patches/patch-src_text_ptbl_xp_pd__DocumentRDF.cpp        Wed Apr 25 05:51:20 2018 +0000
+++ b/editors/abiword/patches/patch-src_text_ptbl_xp_pd__DocumentRDF.cpp        Wed Apr 25 05:53:53 2018 +0000
@@ -1,10 +1,12 @@
-$NetBSD: patch-src_text_ptbl_xp_pd__DocumentRDF.cpp,v 1.1 2015/09/13 21:32:13 nros Exp $
+$NetBSD: patch-src_text_ptbl_xp_pd__DocumentRDF.cpp,v 1.2 2018/04/25 05:53:53 markd Exp $
 
 * fixes build on FreeBSD 10 with clang. From FreeBSD ports mailing list.
   Applied upstream.
   https://lists.freebsd.org/pipermail/freebsd-ports/2015-March/098621.html
 
---- src/text/ptbl/xp/pd_DocumentRDF.cpp.orig   2015-04-04 22:33:15.000000000 +0000
+* fix using modern libical
+
+--- src/text/ptbl/xp/pd_DocumentRDF.cpp.orig   2014-02-27 05:11:32.000000000 +0000
 +++ src/text/ptbl/xp/pd_DocumentRDF.cpp
 @@ -570,6 +570,11 @@ bool PD_URI::operator==(const std::strin
      return m_value == b;
@@ -30,3 +32,14 @@
  bool operator<( std::pair< PD_URI, PD_URI > a, PD_URI b)
  {
      return a.first.toString() < b.toString();
+@@ -2269,8 +2269,8 @@ PD_RDFEvent::exportToFile( const std::st
+         icalcomponent_set_uid( c,         m_uid.c_str() );
+         icalcomponent_set_location( c,    m_location.c_str() );
+         icalcomponent_set_description( c, m_desc.c_str() );
+-        icalcomponent_set_dtstart( c,     icaltime_from_timet( m_dtstart, 0 ) );
+-        icalcomponent_set_dtend( c,       icaltime_from_timet( m_dtend, 0 ) );
++        icalcomponent_set_dtstart( c,     icaltime_from_timet_with_zone( m_dtstart, 0, 0 ) );
++        icalcomponent_set_dtend( c,       icaltime_from_timet_with_zone( m_dtend, 0, 0 ) );
+ 
+         char* data = icalcomponent_as_ical_string( c );
+         std::ofstream oss( filename.c_str() );



Home | Main Index | Thread Index | Old Index