From nobody@FreeBSD.org  Mon Aug 27 01:30:42 2012
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id F22CE1065673
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 27 Aug 2012 01:30:41 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22])
	by mx1.freebsd.org (Postfix) with ESMTP id C44338FC14
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 27 Aug 2012 01:30:41 +0000 (UTC)
Received: from red.freebsd.org (localhost [127.0.0.1])
	by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q7R1Uf8J075560
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 27 Aug 2012 01:30:41 GMT
	(envelope-from nobody@red.freebsd.org)
Received: (from nobody@localhost)
	by red.freebsd.org (8.14.4/8.14.4/Submit) id q7R1Uf8O075558;
	Mon, 27 Aug 2012 01:30:41 GMT
	(envelope-from nobody)
Message-Id: <201208270130.q7R1Uf8O075558@red.freebsd.org>
Date: Mon, 27 Aug 2012 01:30:41 GMT
From: Takashi Kato <townwear@gmail.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [MAINTAINER] japanese/jd: update to 2.8.5
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         171100
>Category:       ports
>Synopsis:       [MAINTAINER] japanese/jd: update to 2.8.5
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    scheidell
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Mon Aug 27 01:40:02 UTC 2012
>Closed-Date:    Tue Aug 28 17:07:05 UTC 2012
>Last-Modified:  Tue Aug 28 17:07:05 UTC 2012
>Originator:     Takashi Kato
>Release:        FreeBSD 8.2-RELEASE-p4
>Organization:
>Environment:
FreeBSD pwd.dip.jp 8.2-RELEASE-p4 FreeBSD 8.2-RELEASE-p4 #8: Thu Jul 19 22:21:42 JST 2012     root@pwd.dip.jp:/usr/obj/usr/src/sys/PWD  i386

>Description:
update to 2.8.5 from 2.8.2
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

diff -ruN jd.orig/Makefile jd/Makefile
--- jd.orig/Makefile	2012-06-01 14:21:06.000000000 +0900
+++ jd/Makefile	2012-08-27 10:16:55.000000000 +0900
@@ -6,12 +6,11 @@
 #
 
 PORTNAME=		jd
-PORTVERSION=		2.8.2
-PORTREVISION=	1
+PORTVERSION=		2.8.5
 CATEGORIES=		japanese www
 MASTER_SITES=		SFJP
-MASTER_SITE_SUBDIR=	jd4linux/52863
-DISTNAME=	${PORTNAME}-${PORTVERSION}-110808
+MASTER_SITE_SUBDIR=	jd4linux/56721
+DISTNAME=	${PORTNAME}-${PORTVERSION}-120826
 EXTRACT_SUFX=	.tgz
 
 MAINTAINER=	townwear@gmail.com
diff -ruN jd.orig/distinfo jd/distinfo
--- jd.orig/distinfo	2011-08-28 05:25:47.000000000 +0900
+++ jd/distinfo	2012-08-27 10:17:30.000000000 +0900
@@ -1,2 +1,2 @@
-SHA256 (jd-2.8.2-110808.tgz) = b7187d5993da8f851f951a3d865a1715ffec9e6de7866633a5cf9d0ce7236c8e
-SIZE (jd-2.8.2-110808.tgz) = 782129
+SHA256 (jd-2.8.5-120826.tgz) = 494a190ae64c222cd7080cb121f23043bd231829572cd685258185a9b5dfff32
+SIZE (jd-2.8.5-120826.tgz) = 784657
diff -ruN jd.orig/files/patch-cache.cpp jd/files/patch-cache.cpp
--- jd.orig/files/patch-cache.cpp	2011-08-28 05:25:47.000000000 +0900
+++ jd/files/patch-cache.cpp	1970-01-01 09:00:00.000000000 +0900
@@ -1,23 +0,0 @@
---- src/cache.cpp.orig	2011-07-27 21:29:16.000000000 +0900
-+++ src/cache.cpp	2011-08-23 22:52:30.000000000 +0900
-@@ -816,14 +816,14 @@
-     if( stat( to_locale_cstr( path ), &buf_stat ) != 0 ) return false;
-     if( S_ISREG( buf_stat.st_mode ) ){
- 
--        struct timespec ts[2];         
-+        struct timeval tv[2];
- 
--        ts[0].tv_sec  = buf_stat.st_atime;
--        ts[0].tv_nsec = buf_stat.st_atim.tv_nsec;
--        ts[1].tv_sec  = mtime;
--        ts[1].tv_nsec = 0;
-+        tv[0].tv_sec  = buf_stat.st_atime;
-+        tv[0].tv_usec = buf_stat.st_atimespec.tv_nsec / 1000;
-+        tv[1].tv_sec  = mtime;
-+        tv[1].tv_usec = 0;
- 
--        if( ! utimensat( AT_FDCWD, to_locale_cstr( path ), ts, AT_SYMLINK_NOFOLLOW ) ) return true;
-+        if( ! lutimes(to_locale_cstr( path ), tv ) ) return true;
-     }
- 
-     return false;
\ No newline at end of file


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->scheidell 
Responsible-Changed-By: scheidell 
Responsible-Changed-When: Tue Aug 28 03:54:03 UTC 2012 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=171100 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/171100: commit references a PR
Date: Tue, 28 Aug 2012 11:54:11 +0000 (UTC)

 Author: scheidell
 Date: Tue Aug 28 11:54:03 2012
 New Revision: 303274
 URL: http://svn.freebsd.org/changeset/ports/303274
 
 Log:
   - Update to 2.8.5
   
   PR:		ports/171100
   Submitted by:	Takashi Kato <townwear@gmail.com> (maintainer)
 
 Deleted:
   head/japanese/jd/files/
 Modified:
   head/japanese/jd/Makefile
   head/japanese/jd/distinfo
 
 Modified: head/japanese/jd/Makefile
 ==============================================================================
 --- head/japanese/jd/Makefile	Tue Aug 28 11:16:26 2012	(r303273)
 +++ head/japanese/jd/Makefile	Tue Aug 28 11:54:03 2012	(r303274)
 @@ -6,12 +6,11 @@
  #
  
  PORTNAME=		jd
 -PORTVERSION=		2.8.2
 -PORTREVISION=	1
 +PORTVERSION=		2.8.5
  CATEGORIES=		japanese www
  MASTER_SITES=		SFJP
 -MASTER_SITE_SUBDIR=	jd4linux/52863
 -DISTNAME=	${PORTNAME}-${PORTVERSION}-110808
 +MASTER_SITE_SUBDIR=	jd4linux/56721
 +DISTNAME=	${PORTNAME}-${PORTVERSION}-120826
  EXTRACT_SUFX=	.tgz
  
  MAINTAINER=	townwear@gmail.com
 
 Modified: head/japanese/jd/distinfo
 ==============================================================================
 --- head/japanese/jd/distinfo	Tue Aug 28 11:16:26 2012	(r303273)
 +++ head/japanese/jd/distinfo	Tue Aug 28 11:54:03 2012	(r303274)
 @@ -1,2 +1,2 @@
 -SHA256 (jd-2.8.2-110808.tgz) = b7187d5993da8f851f951a3d865a1715ffec9e6de7866633a5cf9d0ce7236c8e
 -SIZE (jd-2.8.2-110808.tgz) = 782129
 +SHA256 (jd-2.8.5-120826.tgz) = 494a190ae64c222cd7080cb121f23043bd231829572cd685258185a9b5dfff32
 +SIZE (jd-2.8.5-120826.tgz) = 784657
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: open->closed 
State-Changed-By: scheidell 
State-Changed-When: Tue Aug 28 17:07:04 UTC 2012 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=171100 
>Unformatted:
