Skip to content

Commit

Permalink
Update PilotManager to 1.107.2nb1
Browse files Browse the repository at this point in the history
Changes are:
- Apply a patch posted on the homepage to avoid problems when
  backing up PalmOS3.5 devices
- Make PKGNAME dewey conform
  • Loading branch information
magick committed Mar 23, 2002
1 parent 9cbe953 commit e8a7c0b
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 5 deletions.
4 changes: 3 additions & 1 deletion comms/pilotmgr/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# $NetBSD: Makefile,v 1.17 2001/11/28 05:20:42 jlam Exp $
# $NetBSD: Makefile,v 1.18 2002/03/23 15:28:58 magick Exp $

DISTNAME= pilotmgr-1.107p2
PKGNAME= pilotmgr-1.107.2
PKGREVISION= 1
CATEGORIES= comms
MASTER_SITES= ${MASTER_SITE_LOCAL}
EXTRACT_SUFX= .tar.bz2
Expand Down
4 changes: 2 additions & 2 deletions comms/pilotmgr/distinfo
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
$NetBSD: distinfo,v 1.3 2001/10/02 06:43:39 jlam Exp $
$NetBSD: distinfo,v 1.4 2002/03/23 15:28:59 magick Exp $

SHA1 (pilotmgr-1.107p2.tar.bz2) = 3eda213891fbddc1239c49b7f704bd1447dd9112
Size (pilotmgr-1.107p2.tar.bz2) = 161129 bytes
SHA1 (patch-aa) = 8d9b56ca41809a8687dab48a685da4e1e80b0ab9
SHA1 (patch-aa) = a61287599e52580e9e56acfadc60e98f16555b5c
SHA1 (patch-ab) = 2c6bca3b173574830866d4fc5a2909345dff4109
SHA1 (patch-ac) = d8482ee4c6e20b264cb5262d1674a2f292d61384
SHA1 (patch-ad) = 809277732a213516c184b8d8ba8e810c8973f82e
29 changes: 27 additions & 2 deletions comms/pilotmgr/patches/patch-aa
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$NetBSD: patch-aa,v 1.3 2000/01/18 20:41:13 tron Exp $
$NetBSD: patch-aa,v 1.4 2002/03/23 15:29:00 magick Exp $

--- PilotMgr.pm.orig Wed Mar 24 23:59:59 1999
+++ PilotMgr.pm Tue Jan 18 21:30:53 2000
+++ PilotMgr.pm
@@ -604,14 +604,18 @@
my ($image);

Expand Down Expand Up @@ -47,3 +47,28 @@ $NetBSD: patch-aa,v 1.3 2000/01/18 20:41:13 tron Exp $
}

sub loadDBList
@@ -2656,14 +2660,17 @@
$count_max = 0;
}

- do
- {
- status("Refreshing Database List", int(100 * $count++ / $count_max))
- if ($count_max);
- push(@$result, $dlp->getDBInfo($i,1,0));
- $i = $result->[-1]->{"index"}+1;
+ my $rec;
+ eval { do
+ {
+ status("Refreshing Database List", int(100 * $count++ / $count_max))
+ if ($count_max);
+ $rec = $dlp->getDBInfo($i,1,0);
+ push(@$result, $rec) if (exists $rec->{"name"} and $rec->{"name"});
+ $i = $rec->{"index"}+1;
}
- while ($result->[-1]->{"more"});
+ while ($rec->{"more"}); };
+

fullStatus("Pilot Manager", "Refreshing Database List", 100);

0 comments on commit e8a7c0b

Please sign in to comment.