FreeBSD Bugzilla – Attachment 177009 Details for
Bug 214519
[NEW PORT] textproc/zxing-cpp: ZXing C++ Library for QR code recognition
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
shar archive
zxing-cpp.shar (text/plain), 9.18 KB, created by
Yuri Victorovich
on 2016-11-14 23:21:37 UTC
(
hide
)
Description:
shar archive
Filename:
MIME Type:
Creator:
Yuri Victorovich
Created:
2016-11-14 23:21:37 UTC
Size:
9.18 KB
patch
obsolete
># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># textproc/zxing-cpp ># textproc/zxing-cpp/Makefile ># textproc/zxing-cpp/distinfo ># textproc/zxing-cpp/pkg-descr ># textproc/zxing-cpp/files ># textproc/zxing-cpp/files/patch-core_src_zxing_DecodeHints.cpp ># textproc/zxing-cpp/files/patch-core_src_zxing_oned_OneDReader.cpp ># textproc/zxing-cpp/files/patch-core_src_zxing_pdf417_detector_LinesSampler.cpp ># textproc/zxing-cpp/files/patch-core_src_zxing_pdf417_detector_LinesSampler.h ># textproc/zxing-cpp/pkg-plist ># >echo c - textproc/zxing-cpp >mkdir -p textproc/zxing-cpp > /dev/null 2>&1 >echo x - textproc/zxing-cpp/Makefile >sed 's/^X//' >textproc/zxing-cpp/Makefile << 'db149b53c5cf60f2f91a26d147d74023' >X# Created by: Yuri Victorovich <yuri@rawbw.com> >X# $FreeBSD$ >X >XPORTNAME= zxing-cpp >XPORTVERSION= 0.20161114 >XDISTVERSIONPREFIX= v >XCATEGORIES= textproc >X >XMAINTAINER= yuri@rawbw.com >XCOMMENT= ZXing C++ Library for QR code recognition >X >XLICENSE= APACHE20 >XLICENSE_FILE= ${WRKSRC}/COPYING >X >XUSE_GITHUB= yes >XGH_ACCOUNT= glassechidna >XGH_TAGNAME= 97e9c5c >X >XUSES= cmake:outsource gmake iconv >X >X.include <bsd.port.mk> >db149b53c5cf60f2f91a26d147d74023 >echo x - textproc/zxing-cpp/distinfo >sed 's/^X//' >textproc/zxing-cpp/distinfo << '37647dd62b2b31c48ddc20d4be9ca552' >XTIMESTAMP = 1479160657 >XSHA256 (glassechidna-zxing-cpp-v0.20161114-97e9c5c_GH0.tar.gz) = 5084329c0d3a045b2c1e416c42e8f52bf4b1afea5d44cb9442b8af12a19cba05 >XSIZE (glassechidna-zxing-cpp-v0.20161114-97e9c5c_GH0.tar.gz) = 307807 >37647dd62b2b31c48ddc20d4be9ca552 >echo x - textproc/zxing-cpp/pkg-descr >sed 's/^X//' >textproc/zxing-cpp/pkg-descr << 'a97a663cbc7e0e30274e18bd315a9a86' >XThe fork of C++ version of ZXing library (https://github.com/zxing/zxing). >X >XWWW: https://github.com/glassechidna/zxing-cpp >a97a663cbc7e0e30274e18bd315a9a86 >echo c - textproc/zxing-cpp/files >mkdir -p textproc/zxing-cpp/files > /dev/null 2>&1 >echo x - textproc/zxing-cpp/files/patch-core_src_zxing_DecodeHints.cpp >sed 's/^X//' >textproc/zxing-cpp/files/patch-core_src_zxing_DecodeHints.cpp << '729fb1a909003034f90cc508f974dd7a' >X--- core/src/zxing/DecodeHints.cpp.orig 2016-11-10 14:45:28 UTC >X+++ core/src/zxing/DecodeHints.cpp >X@@ -29,7 +29,7 @@ using zxing::DecodeHints; >X // VC++ >X using zxing::BarcodeFormat; >X >X-// const DecodeHintType DecodeHints::CHARACTER_SET; >X+const DecodeHintType DecodeHints::CHARACTER_SET; >X >X const DecodeHints DecodeHints::PRODUCT_HINT( >X UPC_A_HINT | >729fb1a909003034f90cc508f974dd7a >echo x - textproc/zxing-cpp/files/patch-core_src_zxing_oned_OneDReader.cpp >sed 's/^X//' >textproc/zxing-cpp/files/patch-core_src_zxing_oned_OneDReader.cpp << '3f71bb81b9c1398dd7bfb05b988291bc' >X--- core/src/zxing/oned/OneDReader.cpp.orig 2016-11-10 14:45:28 UTC >X+++ core/src/zxing/oned/OneDReader.cpp >X@@ -21,6 +21,7 @@ >X #include <zxing/oned/OneDResultPoint.h> >X #include <zxing/NotFoundException.h> >X #include <math.h> >X+#include <float.h> >X #include <limits.h> >X #include <algorithm> >X >3f71bb81b9c1398dd7bfb05b988291bc >echo x - textproc/zxing-cpp/files/patch-core_src_zxing_pdf417_detector_LinesSampler.cpp >sed 's/^X//' >textproc/zxing-cpp/files/patch-core_src_zxing_pdf417_detector_LinesSampler.cpp << '2f4416a2aa9c8239ac89e33e920b6401' >X--- core/src/zxing/pdf417/detector/LinesSampler.cpp.orig 2016-11-10 14:45:28 UTC >X+++ core/src/zxing/pdf417/detector/LinesSampler.cpp >X@@ -75,6 +75,11 @@ VoteResult getValueWithMaxVotes(map<int, >X >X } >X >X+const int LinesSampler::MODULES_IN_SYMBOL = 17; >X+const int LinesSampler::BARS_IN_SYMBOL = 8; >X+const int LinesSampler::POSSIBLE_SYMBOLS = 2787; >X+const int LinesSampler::BARCODE_START_OFFSET = 2; >X+ >X vector<float> LinesSampler::init_ratios_table() { >X // Pre-computes and outputs the symbol ratio table. >X vector<vector<float> > table (BitMatrixParser::SYMBOL_TABLE_LENGTH); >2f4416a2aa9c8239ac89e33e920b6401 >echo x - textproc/zxing-cpp/files/patch-core_src_zxing_pdf417_detector_LinesSampler.h >sed 's/^X//' >textproc/zxing-cpp/files/patch-core_src_zxing_pdf417_detector_LinesSampler.h << '8f9684f189992626afb6fc93cf2a8e32' >X--- core/src/zxing/pdf417/detector/LinesSampler.h.orig 2016-11-14 22:55:07 UTC >X+++ core/src/zxing/pdf417/detector/LinesSampler.h >X@@ -28,12 +28,12 @@ namespace detector { >X >X class LinesSampler { >X protected: >X- static const int MODULES_IN_SYMBOL = 17; >X- static const int BARS_IN_SYMBOL = 8; >X- static const int POSSIBLE_SYMBOLS = 2787; >X+ static const int MODULES_IN_SYMBOL; >X+ static const int BARS_IN_SYMBOL; >X+ static const int POSSIBLE_SYMBOLS; >X static const std::vector<float> RATIOS_TABLE; >X static std::vector<float> init_ratios_table(); >X- static const int BARCODE_START_OFFSET = 2; >X+ static const int BARCODE_START_OFFSET; >X >X Ref<BitMatrix> linesMatrix_; >X int symbolsPerLine_; >8f9684f189992626afb6fc93cf2a8e32 >echo x - textproc/zxing-cpp/pkg-plist >sed 's/^X//' >textproc/zxing-cpp/pkg-plist << '022e1d3ad2958d963086194e2df39917' >Xbin/zxing >Xinclude/zxing/BarcodeFormat.h >Xinclude/zxing/Binarizer.h >Xinclude/zxing/BinaryBitmap.h >Xinclude/zxing/ChecksumException.h >Xinclude/zxing/DecodeHints.h >Xinclude/zxing/Exception.h >Xinclude/zxing/FormatException.h >Xinclude/zxing/IllegalStateException.h >Xinclude/zxing/InvertedLuminanceSource.h >Xinclude/zxing/LuminanceSource.h >Xinclude/zxing/MultiFormatReader.h >Xinclude/zxing/NotFoundException.h >Xinclude/zxing/Reader.h >Xinclude/zxing/ReaderException.h >Xinclude/zxing/Result.h >Xinclude/zxing/ResultPoint.h >Xinclude/zxing/ResultPointCallback.h >Xinclude/zxing/ZXing.h >Xinclude/zxing/aztec/AztecDetectorResult.h >Xinclude/zxing/aztec/AztecReader.h >Xinclude/zxing/aztec/decoder/Decoder.h >Xinclude/zxing/aztec/detector/Detector.h >Xinclude/zxing/common/Array.h >Xinclude/zxing/common/BitArray.h >Xinclude/zxing/common/BitMatrix.h >Xinclude/zxing/common/BitSource.h >Xinclude/zxing/common/CharacterSetECI.h >Xinclude/zxing/common/Counted.h >Xinclude/zxing/common/DecoderResult.h >Xinclude/zxing/common/DetectorResult.h >Xinclude/zxing/common/GlobalHistogramBinarizer.h >Xinclude/zxing/common/GreyscaleLuminanceSource.h >Xinclude/zxing/common/GreyscaleRotatedLuminanceSource.h >Xinclude/zxing/common/GridSampler.h >Xinclude/zxing/common/HybridBinarizer.h >Xinclude/zxing/common/IllegalArgumentException.h >Xinclude/zxing/common/PerspectiveTransform.h >Xinclude/zxing/common/Point.h >Xinclude/zxing/common/Str.h >Xinclude/zxing/common/StringUtils.h >Xinclude/zxing/common/detector/JavaMath.h >Xinclude/zxing/common/detector/MathUtils.h >Xinclude/zxing/common/detector/MonochromeRectangleDetector.h >Xinclude/zxing/common/detector/WhiteRectangleDetector.h >Xinclude/zxing/common/reedsolomon/GenericGF.h >Xinclude/zxing/common/reedsolomon/GenericGFPoly.h >Xinclude/zxing/common/reedsolomon/ReedSolomonDecoder.h >Xinclude/zxing/common/reedsolomon/ReedSolomonException.h >Xinclude/zxing/datamatrix/DataMatrixReader.h >Xinclude/zxing/datamatrix/Version.h >Xinclude/zxing/datamatrix/decoder/BitMatrixParser.h >Xinclude/zxing/datamatrix/decoder/DataBlock.h >Xinclude/zxing/datamatrix/decoder/DecodedBitStreamParser.h >Xinclude/zxing/datamatrix/decoder/Decoder.h >Xinclude/zxing/datamatrix/detector/CornerPoint.h >Xinclude/zxing/datamatrix/detector/Detector.h >Xinclude/zxing/datamatrix/detector/DetectorException.h >Xinclude/zxing/multi/ByQuadrantReader.h >Xinclude/zxing/multi/GenericMultipleBarcodeReader.h >Xinclude/zxing/multi/MultipleBarcodeReader.h >Xinclude/zxing/multi/qrcode/QRCodeMultiReader.h >Xinclude/zxing/multi/qrcode/detector/MultiDetector.h >Xinclude/zxing/multi/qrcode/detector/MultiFinderPatternFinder.h >Xinclude/zxing/oned/CodaBarReader.h >Xinclude/zxing/oned/Code128Reader.h >Xinclude/zxing/oned/Code39Reader.h >Xinclude/zxing/oned/Code93Reader.h >Xinclude/zxing/oned/EAN13Reader.h >Xinclude/zxing/oned/EAN8Reader.h >Xinclude/zxing/oned/ITFReader.h >Xinclude/zxing/oned/MultiFormatOneDReader.h >Xinclude/zxing/oned/MultiFormatUPCEANReader.h >Xinclude/zxing/oned/OneDReader.h >Xinclude/zxing/oned/OneDResultPoint.h >Xinclude/zxing/oned/UPCAReader.h >Xinclude/zxing/oned/UPCEANReader.h >Xinclude/zxing/oned/UPCEReader.h >Xinclude/zxing/pdf417/PDF417Reader.h >Xinclude/zxing/pdf417/decoder/BitMatrixParser.h >Xinclude/zxing/pdf417/decoder/DecodedBitStreamParser.h >Xinclude/zxing/pdf417/decoder/Decoder.h >Xinclude/zxing/pdf417/decoder/ec/ErrorCorrection.h >Xinclude/zxing/pdf417/decoder/ec/ModulusGF.h >Xinclude/zxing/pdf417/decoder/ec/ModulusPoly.h >Xinclude/zxing/pdf417/detector/Detector.h >Xinclude/zxing/pdf417/detector/LinesSampler.h >Xinclude/zxing/qrcode/ErrorCorrectionLevel.h >Xinclude/zxing/qrcode/FormatInformation.h >Xinclude/zxing/qrcode/QRCodeReader.h >Xinclude/zxing/qrcode/Version.h >Xinclude/zxing/qrcode/decoder/BitMatrixParser.h >Xinclude/zxing/qrcode/decoder/DataBlock.h >Xinclude/zxing/qrcode/decoder/DataMask.h >Xinclude/zxing/qrcode/decoder/DecodedBitStreamParser.h >Xinclude/zxing/qrcode/decoder/Decoder.h >Xinclude/zxing/qrcode/decoder/Mode.h >Xinclude/zxing/qrcode/detector/AlignmentPattern.h >Xinclude/zxing/qrcode/detector/AlignmentPatternFinder.h >Xinclude/zxing/qrcode/detector/Detector.h >Xinclude/zxing/qrcode/detector/FinderPattern.h >Xinclude/zxing/qrcode/detector/FinderPatternFinder.h >Xinclude/zxing/qrcode/detector/FinderPatternInfo.h >Xlib/libzxing.a >022e1d3ad2958d963086194e2df39917 >exit >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 214519
: 177009