From owner-svn-ports-head@FreeBSD.ORG Thu Oct 31 23:49:05 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 61D76416; Thu, 31 Oct 2013 23:49:05 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4F3352CAE; Thu, 31 Oct 2013 23:49:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9VNn5q7016392; Thu, 31 Oct 2013 23:49:05 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9VNn5si016391; Thu, 31 Oct 2013 23:49:05 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201310312349.r9VNn5si016391@svn.freebsd.org> From: John Marino Date: Thu, 31 Oct 2013 23:49:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332321 - head/archivers/lzip X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 23:49:05 -0000 Author: marino Date: Thu Oct 31 23:49:04 2013 New Revision: 332321 URL: http://svnweb.freebsd.org/changeset/ports/332321 Log: archivers/lzip: Unbreak fetch with LOCAL The lzip developers do something very annoying. When they issue a new release, they remove the previous release's tarball in .gz format. They keep the tarball in .lz format, but move it to the "old" subdirectory. The result is that gzipped tarballs for lzip get very scarce, and requiring lz to unzip lz is not an option. I don't normally store distfiles for other maintainers, but it appears that many folks have been asking for this port to be fixed, so I made an exception and put a copy of lzip tarball in LOCAL/marino. PR: ports/182982 Approved by: maintainer timeout Modified: head/archivers/lzip/Makefile Modified: head/archivers/lzip/Makefile ============================================================================== --- head/archivers/lzip/Makefile Thu Oct 31 23:48:37 2013 (r332320) +++ head/archivers/lzip/Makefile Thu Oct 31 23:49:04 2013 (r332321) @@ -4,7 +4,7 @@ PORTNAME= lzip PORTVERSION= 1.14 CATEGORIES= archivers -MASTER_SITES= SAVANNAH/lzip +MASTER_SITES= SAVANNAH/lzip LOCAL/marino MAINTAINER= sylvio@FreeBSD.org COMMENT= Lossless data compressor based on the LZMA algorithm @@ -13,7 +13,7 @@ LICENSE= GPLv3 PLIST_FILES= bin/lzip -NO_STAGE= yes +NO_STAGE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= CXX="${CXX}" \ CXXFLAGS="${CXXFLAGS}" \