pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/misc/libdivecomputer



Module Name:    pkgsrc
Committed By:   charlotte
Date:           Sat Jul 26 07:42:16 UTC 2025

Modified Files:
        pkgsrc/misc/libdivecomputer: Makefile PLIST buildlink3.mk distinfo

Log Message:
misc/libdivecomputer: Update to 0.9.0

Version 0.9.0 (2025-06-30)
==========================

The v0.9.0 release adds support for several new devices. It also introduces
some important parser api changes to be able to add some new features and
remove a few deprecated ones. Some BLE enabled dive computers also required
some extra additions to the BLE I/O layer. Due to all these api changes, this
release is not backwards compatible.

New features:

 * Add support for new backends:
     - i330r: Aqualung i330R, Apeks DSX
     - symbios: Halcyon Symbios
 * Add support for some new devices:
    - Aqualung: i100
    - Cressi: Leonardo 2.0, Nepto, Archimede
    - Heinrichs Weikamp: OSTC 5
    - Mares: Puck Air 2, Sirius, Quad Ci, Puck 4, Puck Lite
    - Ratio: iDive 2, iX3M 2 GPS
    - Scubapro: G3, Luna 2.0, Luna 2.0 AI
    - Seac: Tablet
    - Shearwater: Tern, Tern TX, Peregrine TX
    - Uwatec: Aladin One
 * Add the sensor index to the ppO2 sample
 * Add a TTS field to the deco sample
 * Add a usage field to the tank and gas mix
 * Export the filter function in the public api
 * Add ioctl's for the bluetooth authentication
 * Add ioctl's for reading and writing BLE characteristics
 * Add helper functions to convert UUID to/from strings
 * Add a new field to report the GPS location

Removed/changed features:

 * Change the units for the sample time to milliseconds
 * Pass the sample struct by reference
 * Remove the backend specific calibration functions
 * Remove the clock parameters from the constructor
 * Remove the dc_parser_set_data function
 * Use separate data structures for USB and USB HID
 * Replace the dc_descriptor_iterator function


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/misc/libdivecomputer/Makefile \
    pkgsrc/misc/libdivecomputer/PLIST pkgsrc/misc/libdivecomputer/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/misc/libdivecomputer/buildlink3.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/misc/libdivecomputer/Makefile
diff -u pkgsrc/misc/libdivecomputer/Makefile:1.1 pkgsrc/misc/libdivecomputer/Makefile:1.2
--- pkgsrc/misc/libdivecomputer/Makefile:1.1    Sat May 27 07:00:07 2023
+++ pkgsrc/misc/libdivecomputer/Makefile        Sat Jul 26 07:42:16 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2023/05/27 07:00:07 charlotte Exp $
+# $NetBSD: Makefile,v 1.2 2025/07/26 07:42:16 charlotte Exp $
 
-DISTNAME=      libdivecomputer-0.8.0
+DISTNAME=      libdivecomputer-0.9.0
 CATEGORIES=    misc
 MASTER_SITES=  https://libdivecomputer.org/releases/
 
Index: pkgsrc/misc/libdivecomputer/PLIST
diff -u pkgsrc/misc/libdivecomputer/PLIST:1.1 pkgsrc/misc/libdivecomputer/PLIST:1.2
--- pkgsrc/misc/libdivecomputer/PLIST:1.1       Sat May 27 07:00:07 2023
+++ pkgsrc/misc/libdivecomputer/PLIST   Sat Jul 26 07:42:16 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2023/05/27 07:00:07 charlotte Exp $
+@comment $NetBSD: PLIST,v 1.2 2025/07/26 07:42:16 charlotte Exp $
 bin/dctool
 include/libdivecomputer/atomics_cobalt.h
 include/libdivecomputer/ble.h
@@ -61,7 +61,7 @@ man/man3/dc_descriptor_get_model.3
 man/man3/dc_descriptor_get_product.3
 man/man3/dc_descriptor_get_transports.3
 man/man3/dc_descriptor_get_vendor.3
-man/man3/dc_descriptor_iterator.3
+man/man3/dc_descriptor_iterator_new.3
 man/man3/dc_device_close.3
 man/man3/dc_device_foreach.3
 man/man3/dc_device_open.3
@@ -81,7 +81,6 @@ man/man3/dc_parser_get_datetime.3
 man/man3/dc_parser_get_field.3
 man/man3/dc_parser_new.3
 man/man3/dc_parser_samples_foreach.3
-man/man3/dc_parser_set_data.3
 man/man3/dc_serial_device_free.3
 man/man3/dc_serial_device_get_name.3
 man/man3/dc_serial_iterator_new.3
@@ -118,7 +117,7 @@ share/doc/libdivecomputer/dc_descriptor_
 share/doc/libdivecomputer/dc_descriptor_get_product.3.html
 share/doc/libdivecomputer/dc_descriptor_get_transports.3.html
 share/doc/libdivecomputer/dc_descriptor_get_vendor.3.html
-share/doc/libdivecomputer/dc_descriptor_iterator.3.html
+share/doc/libdivecomputer/dc_descriptor_iterator_new.3.html
 share/doc/libdivecomputer/dc_device_close.3.html
 share/doc/libdivecomputer/dc_device_foreach.3.html
 share/doc/libdivecomputer/dc_device_open.3.html
@@ -138,7 +137,6 @@ share/doc/libdivecomputer/dc_parser_get_
 share/doc/libdivecomputer/dc_parser_get_field.3.html
 share/doc/libdivecomputer/dc_parser_new.3.html
 share/doc/libdivecomputer/dc_parser_samples_foreach.3.html
-share/doc/libdivecomputer/dc_parser_set_data.3.html
 share/doc/libdivecomputer/dc_serial_device_free.3.html
 share/doc/libdivecomputer/dc_serial_device_get_name.3.html
 share/doc/libdivecomputer/dc_serial_iterator_new.3.html
Index: pkgsrc/misc/libdivecomputer/distinfo
diff -u pkgsrc/misc/libdivecomputer/distinfo:1.1 pkgsrc/misc/libdivecomputer/distinfo:1.2
--- pkgsrc/misc/libdivecomputer/distinfo:1.1    Sat May 27 07:00:07 2023
+++ pkgsrc/misc/libdivecomputer/distinfo        Sat Jul 26 07:42:16 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2023/05/27 07:00:07 charlotte Exp $
+$NetBSD: distinfo,v 1.2 2025/07/26 07:42:16 charlotte Exp $
 
-BLAKE2s (libdivecomputer-0.8.0.tar.gz) = 3da5af217a304f373dea9c7b73a8b4926c12df51be234f93c7230f505b42f345
-SHA512 (libdivecomputer-0.8.0.tar.gz) = f626b8d6f829885a8b3df08f73ae9574f04e557744bdf1f91eb6daddd9ea85d1b3b6eee65993d7711992f9ba005415584177eaaf8b7abef00a0720e5abbf064b
-Size (libdivecomputer-0.8.0.tar.gz) = 810012 bytes
+BLAKE2s (libdivecomputer-0.9.0.tar.gz) = 086326650eb0232371de927862d84e97281e1d9df3598dd90a5e04d382f92b0d
+SHA512 (libdivecomputer-0.9.0.tar.gz) = 24db5f4d84fc4f52c0103ee561744e5555ce063b433c0a39e5fd38905dc221a2917bad3213dbaa243a20d5f7eb4c5c0120b22427c8fd8bf015b9543d0ff3bc47
+Size (libdivecomputer-0.9.0.tar.gz) = 829979 bytes

Index: pkgsrc/misc/libdivecomputer/buildlink3.mk
diff -u pkgsrc/misc/libdivecomputer/buildlink3.mk:1.2 pkgsrc/misc/libdivecomputer/buildlink3.mk:1.3
--- pkgsrc/misc/libdivecomputer/buildlink3.mk:1.2       Sat May 27 07:09:09 2023
+++ pkgsrc/misc/libdivecomputer/buildlink3.mk   Sat Jul 26 07:42:16 2025
@@ -1,12 +1,12 @@
-# $NetBSD: buildlink3.mk,v 1.2 2023/05/27 07:09:09 charlotte Exp $
+# $NetBSD: buildlink3.mk,v 1.3 2025/07/26 07:42:16 charlotte Exp $
 
 BUILDLINK_TREE+=       libdivecomputer
 
 .if !defined(LIBDIVECOMPUTER_BUILDLINK3_MK)
 LIBDIVECOMPUTER_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.libdivecomputer+=        libdivecomputer>=0.8.0
-BUILDLINK_ABI_DEPENDS.libdivecomputer+=        libdivecomputer>=0.8.0
+BUILDLINK_API_DEPENDS.libdivecomputer+=        libdivecomputer>=0.9.0
+BUILDLINK_ABI_DEPENDS.libdivecomputer+=        libdivecomputer>=0.9.0
 BUILDLINK_PKGSRCDIR.libdivecomputer?=  ../../misc/libdivecomputer
 
 .endif # LIBDIVECOMPUTER_BUILDLINK3_MK



Home | Main Index | Thread Index | Old Index