Sat Aug 11 18:51:16 2012 UTC ()
Update to 3.6.2

Changelog:
Major changes in release 3.6.2

* Report correctly the Christmas day in Canada.


(ryoon)
diff -r1.23 -r1.24 pkgsrc/time/gcal/Makefile
diff -r1.7 -r1.8 pkgsrc/time/gcal/distinfo
diff -r1.1 -r1.2 pkgsrc/time/gcal/patches/patch-lib_fflush.c
diff -r1.1 -r1.2 pkgsrc/time/gcal/patches/patch-lib_fseeko.c

cvs diff -r1.23 -r1.24 pkgsrc/time/gcal/Makefile (expand / switch to unified diff)

--- pkgsrc/time/gcal/Makefile 2012/01/08 03:49:53 1.23
+++ pkgsrc/time/gcal/Makefile 2012/08/11 18:51:16 1.24
@@ -1,20 +1,20 @@ @@ -1,20 +1,20 @@
1# $NetBSD: Makefile,v 1.23 2012/01/08 03:49:53 sbd Exp $ 1# $NetBSD: Makefile,v 1.24 2012/08/11 18:51:16 ryoon Exp $
2# 2#
3 3
4DISTNAME= gcal-3.6.1 4DISTNAME= gcal-3.6.2
5PKGREVISION= 1 
6CATEGORIES= time 5CATEGORIES= time
7MASTER_SITES= ${MASTER_SITE_GNU:=gcal/} 6MASTER_SITES= ${MASTER_SITE_GNU:=gcal/}
 7EXTRACT_SUFX= .tar.bz2
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://www.gnu.org/software/gcal/ 10HOMEPAGE= http://www.gnu.org/software/gcal/
11COMMENT= GNU version of the standard calendar utility 11COMMENT= GNU version of the standard calendar utility
12LICENSE= gnu-gpl-v3 12LICENSE= gnu-gpl-v3
13 13
14PKG_DESTDIR_SUPPORT= user-destdir 14PKG_DESTDIR_SUPPORT= user-destdir
15 15
16GNU_CONFIGURE= yes 16GNU_CONFIGURE= yes
17USE_PKGLOCALEDIR= yes 17USE_PKGLOCALEDIR= yes
18INFO_FILES= yes 18INFO_FILES= yes
19 19
20USE_TOOLS+= msgfmt xgettext msgmerge awk 20USE_TOOLS+= msgfmt xgettext msgmerge awk

cvs diff -r1.7 -r1.8 pkgsrc/time/gcal/distinfo (expand / switch to unified diff)

--- pkgsrc/time/gcal/distinfo 2012/03/14 23:20:10 1.7
+++ pkgsrc/time/gcal/distinfo 2012/08/11 18:51:16 1.8
@@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
1$NetBSD: distinfo,v 1.7 2012/03/14 23:20:10 joerg Exp $ 1$NetBSD: distinfo,v 1.8 2012/08/11 18:51:16 ryoon Exp $
2 2
3SHA1 (gcal-3.6.1.tar.gz) = ad5b9507ce2aa794f4827ed0fcedc7676a293ae1 3SHA1 (gcal-3.6.2.tar.bz2) = 565b282c402777d00162bbd3b40ce97e11ae4a2b
4RMD160 (gcal-3.6.1.tar.gz) = 43e31e819340a6e8efdac0f751f4479e7f193119 4RMD160 (gcal-3.6.2.tar.bz2) = 44fb30c05ef43017be0afe7c587cb579a3cb5954
5Size (gcal-3.6.1.tar.gz) = 2912631 bytes 5Size (gcal-3.6.2.tar.bz2) = 2222541 bytes
6SHA1 (patch-lib_fflush.c) = 9e6fdf88229c24bea7a130a852f4d5064b4a9862 6SHA1 (patch-lib_fflush.c) = 164c516dbf1c37a8250e1434fcc6952cd912c018
7SHA1 (patch-lib_fseeko.c) = 3880d4229ec601be5e83c26377ad753c45b90f07 7SHA1 (patch-lib_fseeko.c) = e43873083855739c6d216884411623245bc6323e

cvs diff -r1.1 -r1.2 pkgsrc/time/gcal/patches/patch-lib_fflush.c (expand / switch to unified diff)

--- pkgsrc/time/gcal/patches/patch-lib_fflush.c 2012/03/14 23:20:10 1.1
+++ pkgsrc/time/gcal/patches/patch-lib_fflush.c 2012/08/11 18:51:16 1.2
@@ -1,13 +1,13 @@ @@ -1,13 +1,13 @@
1$NetBSD: patch-lib_fflush.c,v 1.1 2012/03/14 23:20:10 joerg Exp $ 1$NetBSD: patch-lib_fflush.c,v 1.2 2012/08/11 18:51:16 ryoon Exp $
2 2
3--- lib/fflush.c.orig 2011-03-06 11:54:27.000000000 +0000 3--- lib/fflush.c.orig 2012-04-06 15:05:23.000000000 +0000
4+++ lib/fflush.c 4+++ lib/fflush.c
5@@ -91,7 +91,7 @@ static inline void 5@@ -94,7 +94,7 @@ update_fpos_cache (FILE *fp _GL_UNUSED_P
6 update_fpos_cache (FILE *fp, off_t pos) 6 off_t pos _GL_UNUSED_PARAMETER)
7 { 7 {
8 #if defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, MacOS X, Cygwin */ 8 #if defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, MacOS X, Cygwin */
9-# if defined __CYGWIN__ 9-# if defined __CYGWIN__
10+# if defined(__CYGWIN__) || defined(__NetBSD__) 10+# if defined(__CYGWIN__) || defined(__NetBSD__)
11 /* fp_->_offset is typed as an integer. */ 11 /* fp_->_offset is typed as an integer. */
12 fp_->_offset = pos; 12 fp_->_offset = pos;
13 # else 13 # else

cvs diff -r1.1 -r1.2 pkgsrc/time/gcal/patches/patch-lib_fseeko.c (expand / switch to unified diff)

--- pkgsrc/time/gcal/patches/patch-lib_fseeko.c 2012/03/14 23:20:10 1.1
+++ pkgsrc/time/gcal/patches/patch-lib_fseeko.c 2012/08/11 18:51:16 1.2
@@ -1,13 +1,13 @@ @@ -1,13 +1,13 @@
1$NetBSD: patch-lib_fseeko.c,v 1.1 2012/03/14 23:20:10 joerg Exp $ 1$NetBSD: patch-lib_fseeko.c,v 1.2 2012/08/11 18:51:16 ryoon Exp $
2 2
3--- lib/fseeko.c.orig 2011-07-15 19:08:43.000000000 +0000 3--- lib/fseeko.c.orig 2012-05-13 15:47:48.000000000 +0000
4+++ lib/fseeko.c 4+++ lib/fseeko.c
5@@ -111,7 +111,7 @@ fseeko (FILE *fp, off_t offset, int when 5@@ -121,7 +121,7 @@ fseeko (FILE *fp, off_t offset, int when
6 #if defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, Linux libc5 */ 
7 fp->_flags &= ~_IO_EOF_SEEN; 6 fp->_flags &= ~_IO_EOF_SEEN;
 7 fp->_offset = pos;
8 #elif defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, MacOS X, Cygwin */ 8 #elif defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, MacOS X, Cygwin */
9-# if defined __CYGWIN__ 9-# if defined __CYGWIN__
10+# if defined(__CYGWIN__) || defined(__NetBSD__) 10+# if defined(__CYGWIN__) || defined(__NetBSD__)
11 /* fp_->_offset is typed as an integer. */ 11 /* fp_->_offset is typed as an integer. */
12 fp_->_offset = pos; 12 fp_->_offset = pos;
13 # else 13 # else