From sbrabez@gmail.com  Wed Aug 11 14:25:20 2010
Return-Path: <sbrabez@gmail.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id CAC871065670
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 11 Aug 2010 14:25:20 +0000 (UTC)
	(envelope-from sbrabez@gmail.com)
Received: from mail-ww0-f42.google.com (mail-ww0-f42.google.com [74.125.82.42])
	by mx1.freebsd.org (Postfix) with ESMTP id 60D098FC0C
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 11 Aug 2010 14:25:20 +0000 (UTC)
Received: by wwf26 with SMTP id 26so5086638wwf.1
        for <FreeBSD-gnats-submit@freebsd.org>; Wed, 11 Aug 2010 07:25:19 -0700 (PDT)
Received: by 10.227.141.132 with SMTP id m4mr16855005wbu.65.1281536718939;
        Wed, 11 Aug 2010 07:25:18 -0700 (PDT)
Received: from localhost (paris.office.wallix.com [82.238.42.70])
        by mx.google.com with ESMTPS id a1sm133174wbb.14.2010.08.11.07.25.17
        (version=TLSv1/SSLv3 cipher=RC4-MD5);
        Wed, 11 Aug 2010 07:25:17 -0700 (PDT)
Message-Id: <4c62b2cd.8113e30a.5a44.0956@mx.google.com>
Date: Wed, 11 Aug 2010 07:25:17 -0700 (PDT)
From: Sofian Brabez <sbrabez@gmail.com>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [update] dns/dns2tcp: update to 0.5.2, take maintainership
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         149529
>Category:       ports
>Synopsis:       [update] dns/dns2tcp: update to 0.5.2, take maintainership
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    jadawin
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Aug 11 14:30:07 UTC 2010
>Closed-Date:    Mon Aug 23 18:32:11 UTC 2010
>Last-Modified:  Mon Aug 23 18:40:04 UTC 2010
>Originator:     Sofian Brabez
>Release:        FreeBSD 8.0-RELEASE-p4 i386
>Organization:
>Environment:
System: FreeBSD freebsd.ifr.lan 8.0-RELEASE-p4 FreeBSD 8.0-RELEASE-p4 #1: Wed Jul 21 15:06:57 CEST 2010
>Description:
- Update to 0.5.2
- Take maintainership

Removed file(s):
- files/patch-common-includes_dns.h

Generated with FreeBSD Port Tools 0.99
>How-To-Repeat:
>Fix:

--- dns2tcp-0.5.2.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/dns/dns2tcp/Makefile /tmp/dns2tcp/Makefile
--- /usr/ports/dns/dns2tcp/Makefile	2009-07-11 17:52:00.000000000 +0200
+++ /tmp/dns2tcp/Makefile	2010-08-11 16:20:58.000000000 +0200
@@ -6,11 +6,11 @@
 #
 
 PORTNAME=	dns2tcp
-PORTVERSION=	0.4.3
+PORTVERSION=	0.5.2
 CATEGORIES=	dns
 MASTER_SITES=	http://www.hsc.fr/ressources/outils/${PORTNAME}/download/
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	sbrabez@gmail.com
 COMMENT=	Dns2tcp is a tool for relaying TCP connections over DNS
 
 GNU_CONFIGURE=	yes
diff -ruN --exclude=CVS /usr/ports/dns/dns2tcp/distinfo /tmp/dns2tcp/distinfo
--- /usr/ports/dns/dns2tcp/distinfo	2008-11-23 17:35:48.000000000 +0100
+++ /tmp/dns2tcp/distinfo	2010-08-11 15:46:57.000000000 +0200
@@ -1,3 +1,3 @@
-MD5 (dns2tcp-0.4.3.tar.gz) = d2b322ee27f4ff53dfdad61aa2f42dd8
-SHA256 (dns2tcp-0.4.3.tar.gz) = cd477d7b6789c13a3ab16a1ae64b32e0093f28bdae00a277dedc8a790d50dafa
-SIZE (dns2tcp-0.4.3.tar.gz) = 230596
+MD5 (dns2tcp-0.5.2.tar.gz) = 51c5dc69f5814c2936ce6832217d292d
+SHA256 (dns2tcp-0.5.2.tar.gz) = ea9ef59002b86519a43fca320982ae971e2df54cdc54cdb35562c751704278d9
+SIZE (dns2tcp-0.5.2.tar.gz) = 173585
diff -ruN --exclude=CVS /usr/ports/dns/dns2tcp/files/patch-common-includes_dns.h /tmp/dns2tcp/files/patch-common-includes_dns.h
--- /usr/ports/dns/dns2tcp/files/patch-common-includes_dns.h	2009-03-21 13:53:05.000000000 +0100
+++ /tmp/dns2tcp/files/patch-common-includes_dns.h	1970-01-01 01:00:00.000000000 +0100
@@ -1,35 +0,0 @@
---- common/includes/dns.h.orig	2008-10-29 16:35:26.000000000 +0100
-+++ common/includes/dns.h	2009-03-21 13:34:08.000000000 +0100
-@@ -30,6 +30,10 @@
- #endif
- #include "base64.h"
- 
-+#ifdef __FreeBSD__
-+#include <sys/param.h>
-+#endif
-+
- #define MAX_REQ_LEN			512
- 
- #define MAX_HOST_NAME_ENCODED		200 
-@@ -140,7 +144,9 @@
- void	dns_encode(char *);
- void	*jump_end_query(void *, int, int);
- #ifndef _WIN32
-+#if !defined(__FreeBSD__) || __FreeBSD_version < 800067
- int	strnlen(char *, int len);
- #endif
-+#endif
- 
- #endif
---- server/includes/server.h.orig	2009-03-21 13:27:34.000000000 +0100
-+++ server/includes/server.h	2009-03-21 13:28:21.000000000 +0100
-@@ -48,7 +48,9 @@
- }			t_conf;
- 
- int	do_server(t_conf *);
-+#if !defined(__FreeBSD__) || __FreeBSD_version < 800067
- int	strnlen(char *, int); /* not present ?*/
-+#endif
- int	delete_client(t_conf *conf, struct s_simple_list *client);
- void	delete_zombie(t_conf *conf);
- 
--- dns2tcp-0.5.2.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->jadawin 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Wed Aug 11 14:30:23 UTC 2010 
Responsible-Changed-Why:  
jadawin@ wants his PRs (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=149529 
State-Changed-From-To: open->closed 
State-Changed-By: jadawin 
State-Changed-When: Mon Aug 23 18:32:10 UTC 2010 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/149529: commit references a PR
Date: Mon, 23 Aug 2010 18:31:53 +0000 (UTC)

 jadawin     2010-08-23 18:31:40 UTC
 
   FreeBSD ports repository
 
   Modified files:
     dns/dns2tcp          Makefile distinfo 
   Removed files:
     dns/dns2tcp/files    patch-common-includes_dns.h 
   Log:
   - Update to 0.5.2
   - Submitter is now maintainer
   - Remove useless patch file
   
   PR:             ports/149529
   Submitted by:   Sofian Brabez <sbrabez _AT_ gmail.com>
   
   Revision  Changes    Path
   1.4       +2 -2      ports/dns/dns2tcp/Makefile
   1.2       +3 -3      ports/dns/dns2tcp/distinfo
   1.2       +0 -35     ports/dns/dns2tcp/files/patch-common-includes_dns.h (dead)
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
