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: Tue May 10 05:50:32 UTC 2022
Modified Files:
pkgsrc/graphics/zxing-cpp: Makefile PLIST distinfo
Log Message:
zxing-cpp: update to 1.3.0.
The major new features:
Multi-barcode reading with the new std::vector<Result>
ReadBardcodes(...) function. Does not work for Aztec, DataMatrix
and Maxicode, yet.
Multi-resolution scanning that can automatically downscale the
input to substantially increase the detection rate on high
resolution scans, see DecodeHints::tryDownscale, currently only
enabled in the ReadBardcodes function
New Result::symbologyIdentifier property (thanks to @gitlost)
Updated and improved android wrapper (thanks to @markusfisch)
Worth mentioning:
Most deprecated APIs from last release were removed (will likely
break your build if you still have deprecation warnings with
1.2.0)
New Result::lineCount and DecodeHints::minLineCount properties
to improve reliability of 1D code reading
New Result::isMirrored property (works for QRCode, PDF417,
DataMatrix)
Improved FNC1 handling and deprecation of DecodeHints::assumeGS1
Lots of small fixes all over the place
Drop in-tree copy of stb image library
New OpenCV example code
QRCode reading improvements
Python 3.10 support
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/graphics/zxing-cpp/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/graphics/zxing-cpp/PLIST \
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.2 pkgsrc/graphics/zxing-cpp/Makefile:1.3
--- pkgsrc/graphics/zxing-cpp/Makefile:1.2 Sun Feb 6 13:22:47 2022
+++ pkgsrc/graphics/zxing-cpp/Makefile Tue May 10 05:50:32 2022
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.2 2022/02/06 13:22:47 ryoon Exp $
+# $NetBSD: Makefile,v 1.3 2022/05/10 05:50:32 wiz Exp $
-GITHUB_PROJECT= zxing-cpp
-GITHUB_TAG= v${PKGVERSION_NOREV}
-DISTNAME= zxing-cpp-1.2.0
+DISTNAME= zxing-cpp-1.3.0
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_GITHUB:=nu-book/}
+GITHUB_TAG= v${PKGVERSION_NOREV}
MAINTAINER= ryoon%NetBSD.org@localhost
HOMEPAGE= https://github.com/nu-book/zxing-cpp/
Index: pkgsrc/graphics/zxing-cpp/PLIST
diff -u pkgsrc/graphics/zxing-cpp/PLIST:1.1 pkgsrc/graphics/zxing-cpp/PLIST:1.2
--- pkgsrc/graphics/zxing-cpp/PLIST:1.1 Sat Feb 5 04:34:17 2022
+++ pkgsrc/graphics/zxing-cpp/PLIST Tue May 10 05:50:32 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2022/02/05 04:34:17 ryoon Exp $
+@comment $NetBSD: PLIST,v 1.2 2022/05/10 05:50:32 wiz Exp $
include/ZXing/BarcodeFormat.h
include/ZXing/BinaryBitmap.h
include/ZXing/BitArray.h
@@ -21,12 +21,11 @@ include/ZXing/Flags.h
include/ZXing/GTIN.h
include/ZXing/GenericGF.h
include/ZXing/GenericGFPoly.h
-include/ZXing/GenericLuminanceSource.h
include/ZXing/GlobalHistogramBinarizer.h
include/ZXing/GridSampler.h
include/ZXing/HybridBinarizer.h
+include/ZXing/ImageView.h
include/ZXing/LogMatrix.h
-include/ZXing/LuminanceSource.h
include/ZXing/Matrix.h
include/ZXing/MultiFormatReader.h
include/ZXing/MultiFormatWriter.h
@@ -40,7 +39,6 @@ include/ZXing/ReedSolomonDecoder.h
include/ZXing/ReedSolomonEncoder.h
include/ZXing/RegressionLine.h
include/ZXing/Result.h
-include/ZXing/ResultMetadata.h
include/ZXing/ResultPoint.h
include/ZXing/Scope.h
include/ZXing/StructuredAppend.h
@@ -129,7 +127,6 @@ include/ZXing/qrcode/QRCodecMode.h
include/ZXing/qrcode/QRDataBlock.h
include/ZXing/qrcode/QRDataMask.h
include/ZXing/qrcode/QRDecoder.h
-include/ZXing/qrcode/QRDecoderMetadata.h
include/ZXing/qrcode/QRDetector.h
include/ZXing/qrcode/QRECB.h
include/ZXing/qrcode/QREncodeResult.h
Index: pkgsrc/graphics/zxing-cpp/distinfo
diff -u pkgsrc/graphics/zxing-cpp/distinfo:1.1 pkgsrc/graphics/zxing-cpp/distinfo:1.2
--- pkgsrc/graphics/zxing-cpp/distinfo:1.1 Sat Feb 5 04:34:17 2022
+++ pkgsrc/graphics/zxing-cpp/distinfo Tue May 10 05:50:32 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2022/02/05 04:34:17 ryoon Exp $
+$NetBSD: distinfo,v 1.2 2022/05/10 05:50:32 wiz Exp $
-BLAKE2s (zxing-cpp-1.2.0.tar.gz) = 5a87c4a61248f30dd9a7011f11921a5bf3e5f98d94a58242eca2c00b44b8062e
-SHA512 (zxing-cpp-1.2.0.tar.gz) = e61b4e44ccaf0871b5d8badf9ce0a81576f55e5d6a9458907b9b599a66227adceabb8d51a0c47b32319d8aeff93e758b4785d3bd0440375247471d95999de487
-Size (zxing-cpp-1.2.0.tar.gz) = 97942494 bytes
+BLAKE2s (zxing-cpp-1.3.0.tar.gz) = 15124d59cb561371425a4e567d971a368621a8404a6ad570f2937072ace9bf43
+SHA512 (zxing-cpp-1.3.0.tar.gz) = 27821667dea3d09b91bf9825ff25483ed658d850fd238009f1c7e43b1b09e62d24b3a2cd78d4e39d29725931b32bfce3e21e7ec871830b3ad69a5a69c72d8de8
+Size (zxing-cpp-1.3.0.tar.gz) = 97938087 bytes
Home |
Main Index |
Thread Index |
Old Index