pkgsrc-Changes archive

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

CVS commit: pkgsrc/graphics/zxing-cpp



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sun Jan 12 10:33:18 UTC 2025

Modified Files:
        pkgsrc/graphics/zxing-cpp: Makefile PLIST distinfo

Log Message:
zxing-cpp: update to 2.3.0.

Shiny new stuff (more than I was aware of, after all this time...)

    Add support for DX Film Edge read by @Merinorus in #684
    Add support for detecting and reading Aztec Runes by @gormster in #763
    Add reader support for DataBarLimited symbols (sponsored by EUREKAM)
    Add C-API in official build (EDIT: unfortunately the default is still off, to enable do cmake -DZXING_C_API=ON)
    Add Kotlin/Native Wrapper by @ISNing in #719
    Add Rust wrapper based on C-API
    Add .NET wrapper based on C-API
    Introduce new name Barcode for Result which will be removed in 3.0
    LocalAverage binarizer: re-implement with symmetric threshold interpolation for improved detection of inverted symbols
    cmake: replace BUILD_... prefix of cmake options with ZXING_...
    cmake: switch to c++-20 by default for the core library
    ImageView: introduce bounds checks in constructor
    ImageView: Add ImageFormat::LumX for 2-byte grey + alpha input
    ImageFormat: replace 'X' with 'A', e.g. RGBX -> RGBA
    ZXingReader: add -binarizer <local|global|fixed> command line option
    ZXingReader: add -single option to setMaxNumberOfSymbols(1)
    ZXingReader: parse -formats (including 's') command line argument
    ZXingReader: support reading image file from stdin by passing '-'
    android: switch 'namespace' from zxingcpp to zxingcpp.lib to fix issue with maven central publication
    Python: add support to write bytes as binary data
    ZXing::Version() function to query the library version at runtime (useful when dynamically linked)

New experimental API (cmake option -DZXING_EXPERIMENTAL_API=ON)

    New experimental Create+Write API for generating/writing barcodes (will replace MultiFormatWriter)
    New experimental libzint based writer backend
    New ImageView Barcode::symbol() property
    New experimental writer API in python

Minor changes and bug fixes

    Complete ZXIReaderOptions in iOS Wrapper by @markusfisch in #692
    ios: remove initWithFormats initializer by @markusfisch in #723
    cmake: Make build reproducible across different build directories by @EchterAgo in #730
    Release color space after use in iOS wrapper by @markusfisch in #790
    cmake: allow overriding python install directories by @jameshilliard in #842
    Refine MultiFormatReader results filtering and apply C++20 erase_if by @Doekin in #846
    HRI: update AIs to latest gs1-syntax-dictionary.txt by @gitlost in #880
    android: add linker flag to support flexible page sizes in Android 15 by @ccrowell-kr in #872
    Deprecate validateITFCheckSum, validateCode39CheckSum, returnCodabarStartEnd
    BitHacks: fix random QRCode content on pre-Haswell Windows machines
    DataMatrix: improve detection of near 45° rotated symbols
    cmake: add /utf-8 to MSVC compile flags
    Barcode: tune operator==() to not split up overly tall linear symbols
    Several ITFReader improvements
    QRDecoder: return some content even in the presence of a checksum error
    DataBar: improve detection rate by incorporating edge-2-edge pattern
    PDF417: prevent wrong position info with right side collapsing to (0,0)
    Python: make sure macOS and 64bit Linux packes on pypi.org support multi-symbol DataMatrix detection (c++20 support)


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 pkgsrc/graphics/zxing-cpp/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/graphics/zxing-cpp/PLIST
cvs rdiff -u -r1.8 -r1.9 pkgsrc/graphics/zxing-cpp/distinfo

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

Modified files:

Index: pkgsrc/graphics/zxing-cpp/Makefile
diff -u pkgsrc/graphics/zxing-cpp/Makefile:1.14 pkgsrc/graphics/zxing-cpp/Makefile:1.15
--- pkgsrc/graphics/zxing-cpp/Makefile:1.14     Sun Aug 25 06:18:54 2024
+++ pkgsrc/graphics/zxing-cpp/Makefile  Sun Jan 12 10:33:18 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2024/08/25 06:18:54 wiz Exp $
+# $NetBSD: Makefile,v 1.15 2025/01/12 10:33:18 wiz Exp $
 
-DISTNAME=      zxing-cpp-2.2.1
+DISTNAME=      zxing-cpp-2.3.0
 CATEGORIES=    graphics
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=nu-book/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}

Index: pkgsrc/graphics/zxing-cpp/PLIST
diff -u pkgsrc/graphics/zxing-cpp/PLIST:1.7 pkgsrc/graphics/zxing-cpp/PLIST:1.8
--- pkgsrc/graphics/zxing-cpp/PLIST:1.7 Mon Dec 11 10:10:16 2023
+++ pkgsrc/graphics/zxing-cpp/PLIST     Sun Jan 12 10:33:18 2025
@@ -1,4 +1,5 @@
-@comment $NetBSD: PLIST,v 1.7 2023/12/11 10:10:16 wiz Exp $
+@comment $NetBSD: PLIST,v 1.8 2025/01/12 10:33:18 wiz Exp $
+include/ZXing/Barcode.h
 include/ZXing/BarcodeFormat.h
 include/ZXing/BitArray.h
 include/ZXing/BitHacks.h
@@ -22,9 +23,10 @@ include/ZXing/ReaderOptions.h
 include/ZXing/Result.h
 include/ZXing/StructuredAppend.h
 include/ZXing/TextUtfEncoding.h
+include/ZXing/Version.h
 include/ZXing/ZXAlgorithms.h
-include/ZXing/ZXConfig.h
 include/ZXing/ZXVersion.h
+include/ZXing/ZXingCpp.h
 lib/cmake/ZXing/ZXingConfig.cmake
 lib/cmake/ZXing/ZXingConfigVersion.cmake
 lib/cmake/ZXing/ZXingTargets-release.cmake

Index: pkgsrc/graphics/zxing-cpp/distinfo
diff -u pkgsrc/graphics/zxing-cpp/distinfo:1.8 pkgsrc/graphics/zxing-cpp/distinfo:1.9
--- pkgsrc/graphics/zxing-cpp/distinfo:1.8      Mon Dec 11 10:10:16 2023
+++ pkgsrc/graphics/zxing-cpp/distinfo  Sun Jan 12 10:33:18 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2023/12/11 10:10:16 wiz Exp $
+$NetBSD: distinfo,v 1.9 2025/01/12 10:33:18 wiz Exp $
 
-BLAKE2s (zxing-cpp-2.2.1.tar.gz) = 5e7ade78de231cc372c0af1ec0a3e2ad8f68f1bc82e492568469cd68572007cd
-SHA512 (zxing-cpp-2.2.1.tar.gz) = f1de8df783061a152a18cd9102ac0c579c40c76ab4a5ba9f30bcb8ddb532f3fac08736840a631adbf7c30a7fa00ce8d65625c8cd695288620601708e8f256a53
-Size (zxing-cpp-2.2.1.tar.gz) = 891055 bytes
+BLAKE2s (zxing-cpp-2.3.0.tar.gz) = 9b662fdeecdba3548984d60b7435eebfdc7871aefc1819e971dd47690e4e3188
+SHA512 (zxing-cpp-2.3.0.tar.gz) = be1c60a6b433c18f8dab56619553023370bfd3eddf49b0e16548466e1ebc2f1f37b48e0b36c2e74296a7274c4f0117d7052f1ffd7d1223d23e493451a11b4a80
+Size (zxing-cpp-2.3.0.tar.gz) = 1008541 bytes



Home | Main Index | Thread Index | Old Index