pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/comms Update to 0.12.4:
details: https://anonhg.NetBSD.org/pkgsrc/rev/f596409b92b8
branches: trunk
changeset: 562995:f596409b92b8
user: wiz <wiz%pkgsrc.org@localhost>
date: Sun Aug 09 08:36:34 2009 +0000
description:
Update to 0.12.4:
Last-minute fixes before releasing 0.12.4
Fix for Sony SJ-22 device sync (fixes bug #1957 filed at
bugs.pilot-link.org)
Updated documentation to reflect a cleaner layout and output
(closes bug #1913 in the bugtracker at bugs.pilot-link.org
Integrate jpilot's contacts support. See
http://lists.pilot-link.org/pipermail/pilot-link-devel/2009-February/001762.html
Adding CalendarDB support to pilot-link
Adding minor tweak for m4 macro optimizations
Minor fix for a buffer size miscalculation (from Nicholas Piper)
Adding missing newline at the end of the file.
pi-debug.h, pi-threadsafe.h: Cleaning up unnecessary references
to config.h here.
Added pi-md5.h.in
generates pi-md5.h
Now autogenerated from pi-md5.h.in
Add minor fix for reported segfault when closing down bluetooth
connection. This closes bug #1872
UINT32 was broken on 64-bit systems. This should fix it on most
systems.
Increment ChangeLog to test/validate an LDAP permission issue
with LockDir
Implementing a Zire 22 fix from Tom Billiet
Bump for 0.12.4
Added Aaron's fixes (oof! This has been in the queue for awhile.
Sorry Aaron). This closes bug #1448.
diffstat:
comms/p5-pilot-link/Makefile | 7 +++----
comms/pilot-link-libs/Makefile | 3 +--
comms/pilot-link-libs/PLIST | 5 ++++-
comms/pilot-link/Makefile | 3 +--
comms/pilot-link/Makefile.common | 7 +++++--
comms/pilot-link/distinfo | 8 ++++----
6 files changed, 18 insertions(+), 15 deletions(-)
diffs (120 lines):
diff -r 0662202889d0 -r f596409b92b8 comms/p5-pilot-link/Makefile
--- a/comms/p5-pilot-link/Makefile Sun Aug 09 08:29:22 2009 +0000
+++ b/comms/p5-pilot-link/Makefile Sun Aug 09 08:36:34 2009 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.42 2009/06/30 00:07:12 joerg Exp $
+# $NetBSD: Makefile,v 1.43 2009/08/09 08:36:34 wiz Exp $
#
PKG_DESTDIR_SUPPORT= user-destdir
@@ -6,7 +6,6 @@
.include "../../comms/pilot-link/Makefile.common"
PKGNAME= p5-${DISTNAME}
-PKGREVISION= 3
COMMENT= Perl bindings for pilot-link
@@ -24,9 +23,9 @@
REPLACE_PERL+= bindings/Perl/h2xs-pilot-link src/pilot-ietf2datebook.pl
-INSTALL_DIRS= ${WRKSRC}/bindings
+INSTALL_DIRS= bindings
INSTALLATION_DIRS= bin
-BUILD_DIRS+= ${WRKSRC}/src
+BUILD_DIRS+= src
BUILD_DIRS+= ${INSTALL_DIRS}
SUBST_CLASSES+= progs
diff -r 0662202889d0 -r f596409b92b8 comms/pilot-link-libs/Makefile
--- a/comms/pilot-link-libs/Makefile Sun Aug 09 08:29:22 2009 +0000
+++ b/comms/pilot-link-libs/Makefile Sun Aug 09 08:36:34 2009 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.21 2009/05/20 00:58:09 wiz Exp $
+# $NetBSD: Makefile,v 1.22 2009/08/09 08:36:34 wiz Exp $
#
PKG_DESTDIR_SUPPORT= user-destdir
@@ -6,7 +6,6 @@
.include "../../comms/pilot-link/Makefile.common"
PKGNAME= pilot-link-libs-${PILOT_LINK_VERS}
-PKGREVISION= 1
COMMENT= Libraries for talking to the 3Com Pilot PDA
CONFLICTS+= pilot-link<0.9.5
diff -r 0662202889d0 -r f596409b92b8 comms/pilot-link-libs/PLIST
--- a/comms/pilot-link-libs/PLIST Sun Aug 09 08:29:22 2009 +0000
+++ b/comms/pilot-link-libs/PLIST Sun Aug 09 08:36:34 2009 +0000
@@ -1,9 +1,11 @@
-@comment $NetBSD: PLIST,v 1.5 2007/03/21 22:33:01 wiz Exp $
+@comment $NetBSD: PLIST,v 1.6 2009/08/09 08:36:34 wiz Exp $
include/pi-address.h
include/pi-appinfo.h
include/pi-args.h
+include/pi-blob.h
include/pi-bluetooth.h
include/pi-buffer.h
+include/pi-calendar.h
include/pi-cmp.h
include/pi-contact.h
include/pi-datebook.h
@@ -16,6 +18,7 @@
include/pi-header.h
include/pi-hinote.h
include/pi-inet.h
+include/pi-location.h
include/pi-macros.h
include/pi-mail.h
include/pi-md5.h
diff -r 0662202889d0 -r f596409b92b8 comms/pilot-link/Makefile
--- a/comms/pilot-link/Makefile Sun Aug 09 08:29:22 2009 +0000
+++ b/comms/pilot-link/Makefile Sun Aug 09 08:36:34 2009 +0000
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.49 2009/05/20 00:58:09 wiz Exp $
+# $NetBSD: Makefile,v 1.50 2009/08/09 08:36:34 wiz Exp $
PKG_DESTDIR_SUPPORT= user-destdir
.include "../../comms/pilot-link/Makefile.common"
-PKGREVISION= 1
COMMENT= Tools to talk to the 3Com Pilot PDA
BUILDLINK_API_DEPENDS.pilot-link-libs= pilot-link-libs>=${PILOT_LINK_VERS}
diff -r 0662202889d0 -r f596409b92b8 comms/pilot-link/Makefile.common
--- a/comms/pilot-link/Makefile.common Sun Aug 09 08:29:22 2009 +0000
+++ b/comms/pilot-link/Makefile.common Sun Aug 09 08:36:34 2009 +0000
@@ -1,11 +1,14 @@
-# $NetBSD: Makefile.common,v 1.12 2007/11/30 18:14:46 wiz Exp $
+# $NetBSD: Makefile.common,v 1.13 2009/08/09 08:36:34 wiz Exp $
+# used by comms/p5-pilot-link/Makefile
+# used by comms/pilot-link/Makefile
+# used by comms/pilot-link-libs/Makefile
DISTNAME= pilot-link-${PILOT_LINK_VERS}
CATEGORIES= comms
MASTER_SITES= http://downloads.pilot-link.org/
EXTRACT_SUFX= .tar.bz2
-PILOT_LINK_VERS= 0.12.3
+PILOT_LINK_VERS= 0.12.4
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE?= http://www.pilot-link.org/
diff -r 0662202889d0 -r f596409b92b8 comms/pilot-link/distinfo
--- a/comms/pilot-link/distinfo Sun Aug 09 08:29:22 2009 +0000
+++ b/comms/pilot-link/distinfo Sun Aug 09 08:36:34 2009 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.21 2007/11/30 18:14:46 wiz Exp $
+$NetBSD: distinfo,v 1.22 2009/08/09 08:36:34 wiz Exp $
-SHA1 (pilot-link-0.12.3.tar.bz2) = d459ec2626ee19367a5329e604e33b337ef37602
-RMD160 (pilot-link-0.12.3.tar.bz2) = 938f367a38572d456b37e62ab0d309139b50403b
-Size (pilot-link-0.12.3.tar.bz2) = 960812 bytes
+SHA1 (pilot-link-0.12.4.tar.bz2) = cb1fcf11f8f1b26cfa3b83fab0293ea55ae62471
+RMD160 (pilot-link-0.12.4.tar.bz2) = c7f8fb0312d8d071c12cf9e3333981b050f281df
+Size (pilot-link-0.12.4.tar.bz2) = 1576699 bytes
SHA1 (patch-aa) = c124995244710b802686fd766a8717eab4f3ace6
SHA1 (patch-ab) = add1156600a681cc0ae30c5d9095b4f1bb6739c3
Home |
Main Index |
Thread Index |
Old Index