From owner-freebsd-ports@FreeBSD.ORG Fri Aug 12 17:50:54 2011 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AFBDC1065674; Fri, 12 Aug 2011 17:50:54 +0000 (UTC) (envelope-from conrads@serene.no-ip.org) Received: from eastrmfepo101.cox.net (eastrmfepo101.cox.net [68.230.241.213]) by mx1.freebsd.org (Postfix) with ESMTP id E2FB38FC1A; Fri, 12 Aug 2011 17:50:53 +0000 (UTC) Received: from eastrmimpo01.cox.net ([68.1.16.119]) by eastrmfepo101.cox.net (InterMail vM.8.01.04.00 201-2260-137-20101110) with ESMTP id <20110812173755.OXBR3909.eastrmfepo101.cox.net@eastrmimpo01.cox.net>; Fri, 12 Aug 2011 13:37:55 -0400 Received: from serene.no-ip.org ([98.164.83.25]) by eastrmimpo01.cox.net with bizsmtp id KVdu1h00u0YnB6A02Vdvcv; Fri, 12 Aug 2011 13:37:55 -0400 X-CT-Class: Clean X-CT-Score: 0.00 X-CT-RefID: str=0001.0A020207.4E4564F3.0093,ss=1,re=0.000,fgs=0 X-CT-Spam: 0 X-Authority-Analysis: v=1.1 cv=aUFDW8FZeteuO/fxyvToEy2C7OWB/cKxsZjvUqUod7E= c=1 sm=1 a=N8GiwQ-ZLb8A:10 a=G8Uczd0VNMoA:10 a=Wajolswj7cQA:10 a=2vO5UZG1h46htWAnE/rx2g==:17 a=t0Zm2Zi0AAAA:8 a=FP58Ms26AAAA:8 a=6I5d2MoRAAAA:8 a=Jq1M5WONAAAA:8 a=GqblJLxdAAAA:8 a=-JUfkGBYGlTVtPO491YA:9 a=VAxMM-IrCBDo6dec9mQA:7 a=SV7veod9ZcQA:10 a=2vO5UZG1h46htWAnE/rx2g==:117 X-CM-Score: 0.00 Authentication-Results: cox.net; none Received: from serene.no-ip.org (localhost [127.0.0.1]) by serene.no-ip.org (8.14.5/8.14.5) with ESMTP id p7CHIl1T081028; Fri, 12 Aug 2011 12:18:47 -0500 (CDT) (envelope-from conrads@serene.no-ip.org) Received: (from root@localhost) by serene.no-ip.org (8.14.5/8.14.5/Submit) id p7CHIg8i081027; Fri, 12 Aug 2011 12:18:42 -0500 (CDT) (envelope-from conrads) Date: Fri, 12 Aug 2011 12:18:42 -0500 (CDT) Message-Id: <201108121718.p7CHIg8i081027@serene.no-ip.org> To: FreeBSD-gnats-submit@freebsd.org From: "Conrad J. Sabatier" X-send-pr-version: 3.113 X-GNATS-Notify: Cc: ports@freebsd.org Subject: Update net-p2p/lopster, unflag as DEPRECATED X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Conrad J. Sabatier" List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Aug 2011 17:50:54 -0000 >Submitter-Id: current-users >Originator: Conrad J. Sabatier >Organization: >Confidential: no >Synopsis: Update net-p2p/lopster, unflag as DEPRECATED >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 9.0-BETA1 amd64 >Environment: System: FreeBSD serene.no-ip.org 9.0-BETA1 FreeBSD 9.0-BETA1 #3: Wed Aug 10 06:43:50 CDT 2011 conrads@serene.no-ip.org:/usr/obj/usr/src/sys/CUSTOM amd64 >Description: net-p2p/lopster improperly flagged (IMHO) as DEPRECATED. The Opennap network is still very much alive and well, thank you. :-) >How-To-Repeat: Try to install. Marked as DEPRECATED. Default address to fetch server list from is out of date as well. >Fix: The following patch fixes the problem. --- lopster-patch begins here --- diff -urN /usr/ports/net-p2p/lopster/Makefile ./Makefile --- /usr/ports/net-p2p/lopster/Makefile 2011-08-01 17:09:02.000000000 -0500 +++ ./Makefile 2011-08-12 12:12:02.000000000 -0500 @@ -7,12 +7,11 @@ PORTNAME= lopster PORTVERSION= 1.2.2 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= net-p2p MASTER_SITES= SF \ http://lopster.sourceforge.net/download/ -DEPRECATED= Napser service is not working anymore EXPIRATION_DATE= 2011-09-01 MAINTAINER= ports@FreeBSD.org diff -urN /usr/ports/net-p2p/lopster/work/lopster-1.2.2/src/lopster.h ./work/lopster-1.2.2/src/lopster.h --- /usr/ports/net-p2p/lopster/work/lopster-1.2.2/src/lopster.h 2004-08-29 10:33:39.000000000 -0500 +++ ./work/lopster-1.2.2/src/lopster.h 2011-08-12 12:08:31.000000000 -0500 @@ -807,8 +807,8 @@ long bytes[2]; }; -#define NAPLIST_HOST "www.naplist.com" -#define NAPLIST_DOC "servers.txt" +#define NAPLIST_HOST "www.gotnap.com" +#define NAPLIST_DOC "server.list" struct _naplist_t { int use_proxy; char *proxy_host; --- lopster-patch ends here ---