1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-06 06:30:19 +00:00

Update to 0.130.

This commit is contained in:
Jeremy Messenger 2007-05-25 04:34:25 +00:00
parent 4b78c3a461
commit 6c45ae6947
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=191711
4 changed files with 15 additions and 17 deletions

View File

@ -7,8 +7,7 @@
#
PORTNAME= pan
PORTVERSION= 0.128
PORTREVISION= 2
PORTVERSION= 0.130
CATEGORIES= news gnome
MASTER_SITES= http://pan.rebelbase.com/download/releases/${PORTVERSION}/source/
DIST_SUBDIR= gnome2

View File

@ -1,3 +1,3 @@
MD5 (gnome2/pan-0.128.tar.bz2) = 6141ce068512a67deb6e78100612993e
SHA256 (gnome2/pan-0.128.tar.bz2) = ce6c5d47e6722260a30c8305841b0a696f85f00c3e532344e292d9655068cc71
SIZE (gnome2/pan-0.128.tar.bz2) = 1457960
MD5 (gnome2/pan-0.130.tar.bz2) = 8fa29aeb8bc47d90d039de70d8a6bb35
SHA256 (gnome2/pan-0.130.tar.bz2) = 5c07d6afafe311a582aa109ecda871e78858cacfdc5c3e0393f31e67a7f11338
SIZE (gnome2/pan-0.130.tar.bz2) = 1462911

View File

@ -1,12 +0,0 @@
--- pan/data/article.cc.orig Mon Apr 23 16:21:51 2007
+++ pan/data/article.cc Mon Apr 23 16:23:29 2007
@@ -153,7 +153,8 @@
kc = &key.back();
mc = &mid.back();
- ke = key.str + 1 + std::max (int(b), (int)minlen - UCHAR_MAX);
+ ke = std::max (key.str + b + 1,
+ key.str + key.len - UCHAR_MAX);
while (kc>ke)
if (*kc-- != *mc--) { ++kc; break; }
const size_t e (&key.back() - kc);

View File

@ -0,0 +1,11 @@
--- pan/data/parts.cc 2007/05/19 16:09:08 286
+++ pan/data/parts.cc 2007/05/19 20:55:05 290
@@ -80,7 +80,7 @@
register const char *k, *m;
const StringView& key (key_mid.to_view());
- const int bmax = std::min ((int)std::min (key.len, mid.len), UCHAR_MAX);
+ const int bmax = std::min ((int)std::min (key.len, mid.len), (int)UCHAR_MAX);
k = &key.front();
m = &mid.front();
for (; b!=bmax; ++b)