1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-17 08:01:36 +00:00

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.
This commit is contained in:
Mikhail Teterin 2015-06-01 19:49:19 +00:00
parent c35886de33
commit fe43def52a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=388270
3 changed files with 14 additions and 18 deletions

View File

@ -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/critcl
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}"

View File

@ -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

View File

@ -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