From owner-svn-ports-all@FreeBSD.ORG Mon Jun 1 19:49:21 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DBAC8161; Mon, 1 Jun 2015 19:49:20 +0000 (UTC) (envelope-from mi@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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD90A15F9; Mon, 1 Jun 2015 19:49:20 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t51JnK5p078214; Mon, 1 Jun 2015 19:49:20 GMT (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t51JnKgc078211; Mon, 1 Jun 2015 19:49:20 GMT (envelope-from mi@FreeBSD.org) Message-Id: <201506011949.t51JnKgc078211@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mi set sender to mi@FreeBSD.org using -f From: Mikhail Teterin Date: Mon, 1 Jun 2015 19:49:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388270 - in head/devel/tcllib: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Jun 2015 19:49:21 -0000 Author: mi Date: Mon Jun 1 19:49:19 2015 New Revision: 388270 URL: https://svnweb.freebsd.org/changeset/ports/388270 Log: Upstream is having difficulties connecting their Fossil-repository to GitHub and the version currently offered by GH for download is missing a lot of files, which were included before. Go back to the distfile used 4 days ago -- hosted privately for the time being. The filename is deliberately preserved so people and mirrors, which already have the correct version, would not have to re-download. Modified: head/devel/tcllib/Makefile head/devel/tcllib/distinfo head/devel/tcllib/files/patch-jpeg Modified: head/devel/tcllib/Makefile ============================================================================== --- head/devel/tcllib/Makefile Mon Jun 1 19:38:14 2015 (r388269) +++ head/devel/tcllib/Makefile Mon Jun 1 19:49:19 2015 (r388270) @@ -2,10 +2,11 @@ # $FreeBSD$ PORTNAME= tcllib -DISTVERSIONPREFIX= ${PORTNAME}_ DISTVERSION= 1_17 PORTREVISION= 1 CATEGORIES= devel tcl +MASTER_SITES= http://aldan.algebra.com/~mi/port-stuff/ +DISTFILES= tcltk-tcllib-${PORTVERSION}-tcllib_${DISTVERSION}_GH0.tar.gz MAINTAINER= tcltk@FreeBSD.org COMMENT= Collection of utility modules for Tcl @@ -19,9 +20,7 @@ BUILD_DEPENDS= critcl:${PORTSDIR}/devel/ OPTIONS_DEFINE= DOCS MANPAGES -USE_GITHUB= yes -GH_ACCOUNT= tcltk - +WRKSRC= ${WRKDIR}/tcllib-tcllib_${DISTVERSION} USES+= tcl GNU_CONFIGURE= yes CONFIGURE_ENV+= ac_cv_path_tclsh="${TCLSH}" Modified: head/devel/tcllib/distinfo ============================================================================== --- head/devel/tcllib/distinfo Mon Jun 1 19:38:14 2015 (r388269) +++ head/devel/tcllib/distinfo Mon Jun 1 19:49:19 2015 (r388270) @@ -1,2 +1,2 @@ -SHA256 (tcltk-tcllib-tcllib_1_17_GH0.tar.gz) = 1ff06cb50002bf98174e8d4d1127710251a0e2aa4bb615f66a1dad263a901971 -SIZE (tcltk-tcllib-tcllib_1_17_GH0.tar.gz) = 7686336 +SHA256 (tcltk-tcllib-1.17-tcllib_1_17_GH0.tar.gz) = cbfbad79314e752f63b78227a2a33e91fba1ebcabe3b69fa8d1ee6b235125043 +SIZE (tcltk-tcllib-1.17-tcllib_1_17_GH0.tar.gz) = 8284201 Modified: head/devel/tcllib/files/patch-jpeg ============================================================================== --- head/devel/tcllib/files/patch-jpeg Mon Jun 1 19:38:14 2015 (r388269) +++ head/devel/tcllib/files/patch-jpeg Mon Jun 1 19:49:19 2015 (r388270) @@ -1,12 +1,9 @@ ---- modules/jpeg/jpeg.tcl 2014-02-11 14:04:18.000000000 -0500 -+++ modules/jpeg/jpeg.tcl 2014-12-09 00:28:21.000000000 -0500 -@@ -364,5 +364,8 @@ - set fh [openJFIF $file] - set r [catch {getExifFromChannel $fh $type} err] -- close $fh -+ if {$err != ""} { -+ # If err is empty, the file is closed already -+ close $fh -+ } - return -code $r $err - } +--- modules/jpeg/jpeg.tcl 2015-04-30 04:21:20 UTC ++++ modules/jpeg/jpeg.tcl +@@ -402,5 +402,5 @@ proc ::jpeg::getExifFromChannel {chan {t + # offset of next exif block (for thumbnail) + _scan $byteOrder [read $chan 4] i next +- if {$next <= 0} { close $chan ; return } ++ if {$next <= 0} { return } + # but its relative to start + seek $chan [expr {$start + $next}] start