[gentoo-commits] repo/gentoo:master commit in: media-libs/zxing-cpp/files/, media-libs/zxing-cpp/

2023-01-09 Thread Andreas Sturmlechner
commit: 8212399920e9b6d42c32e1fb87a8880435998db7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jan  9 22:27:42 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jan 10 00:04:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82123999

media-libs/zxing-cpp: add 2.0.0

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-libs/zxing-cpp/Manifest  |  1 +
 .../files/zxing-cpp-2.0.0-fix-crash.patch  | 24 
 media-libs/zxing-cpp/zxing-cpp-2.0.0.ebuild| 26 ++
 3 files changed, 51 insertions(+)

diff --git a/media-libs/zxing-cpp/Manifest b/media-libs/zxing-cpp/Manifest
index 8a7287886422..663d55874d73 100644
--- a/media-libs/zxing-cpp/Manifest
+++ b/media-libs/zxing-cpp/Manifest
@@ -1,2 +1,3 @@
 DIST zxing-cpp-1.3.0.tar.gz 97938087 BLAKE2B 
f0c9c906ab2b534c67cf66605eca0ecc22a90fc9d69e23397bcb0bc8eaf3d68a7ad41631ea6d9c7f292ee03165d2e038d84f497307384205e2d6f37fef5dddba
 SHA512 
27821667dea3d09b91bf9825ff25483ed658d850fd238009f1c7e43b1b09e62d24b3a2cd78d4e39d29725931b32bfce3e21e7ec871830b3ad69a5a69c72d8de8
 DIST zxing-cpp-1.4.0.tar.gz 1018225 BLAKE2B 
98b6badfe0ddfa39650eb4fbfc02bc01f5237cdd5edfafd7b88067997a22caa2e64d067328b534c439d7d89fef5b6d48acf4bc29389142b332123b477f3e3dde
 SHA512 
05c5b9282f13b76fa0897b21e5b73cb7df0c52e62f1a2d9760fe774aa0378fde97f5f9896690b65b28b4b96ba6ad2703bed53ffaf9d3784636d29cbe860d4bad
+DIST zxing-cpp-2.0.0.tar.gz 856413 BLAKE2B 
8069d3e39a7ddf99510777df477a5e3503e5eead7adcbf175123ab59de47c3da75bb8187533dad552a07b1475756ff3981d30eaa3e8088c5c9b991e22a7127bd
 SHA512 
fa22164f834a42194eafd0d3e9c09d953233c69843ac6e79c8d6513314be28d8082382b436c379368e687e0eed05cb5e566d2893ec6eb29233a36643904ae083

diff --git a/media-libs/zxing-cpp/files/zxing-cpp-2.0.0-fix-crash.patch 
b/media-libs/zxing-cpp/files/zxing-cpp-2.0.0-fix-crash.patch
new file mode 100644
index ..e6b25633e8e9
--- /dev/null
+++ b/media-libs/zxing-cpp/files/zxing-cpp-2.0.0-fix-crash.patch
@@ -0,0 +1,24 @@
+From 23c19c5f98602a4d69d1667fff99678308b28b5b Mon Sep 17 00:00:00 2001
+From: liule 
+Date: Fri, 6 Jan 2023 22:06:24 +0800
+Subject: [PATCH] fix crash when the source image is less than 3 pixels
+ width/height
+
+---
+ core/src/ReadBarcode.cpp | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/core/src/ReadBarcode.cpp b/core/src/ReadBarcode.cpp
+index 905dd191c..5ac61e250 100644
+--- a/core/src/ReadBarcode.cpp
 b/core/src/ReadBarcode.cpp
+@@ -76,7 +76,8 @@ class LumImagePyramid
+ 
+   layers.push_back(iv);
+   // TODO: if only matrix codes were considered, then using 
std::min would be sufficient (see #425)
+-  while (threshold > 0 && std::max(layers.back().width(), 
layers.back().height()) > threshold)
++  while (threshold > 0 && std::max(layers.back().width(), 
layers.back().height()) > threshold &&
++ std::min(layers.back().width(), 
layers.back().height()) >= N)
+   addLayer();
+ #if 0
+   // Reversing the layers means we'd start with the smallest. 
that can make sense if we are only looking for a

diff --git a/media-libs/zxing-cpp/zxing-cpp-2.0.0.ebuild 
b/media-libs/zxing-cpp/zxing-cpp-2.0.0.ebuild
new file mode 100644
index ..6da2db080577
--- /dev/null
+++ b/media-libs/zxing-cpp/zxing-cpp-2.0.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="C++ Multi-format 1D/2D barcode image processing library"
+HOMEPAGE="https://github.com/nu-book/zxing-cpp;
+SRC_URI="https://github.com/nu-book/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0/3"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE=""
+
+PATCHES=( "${FILESDIR}/${P}-fix-crash.patch" )
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_EXAMPLES=OFF # nothing is installed
+   -DBUILD_BLACKBOX_TESTS=OFF # FIXME: FetchContent.cmake module 
usage
+   -DBUILD_UNIT_TESTS=OFF # for both tests options. no thanks. bug 
#793173
+   )
+   cmake_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zxing-cpp/files/, media-libs/zxing-cpp/

2020-04-09 Thread Andreas Sturmlechner
commit: f9d4418788a98c6acd9b904cb806767487d55776
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Apr  9 17:17:15 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Apr  9 21:36:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9d44187

media-libs/zxing-cpp: Fix pkgconfig version

Thanks-to: cyrillic  hotmail.com>
Closes: https://bugs.gentoo.org/716818
Package-Manager: Portage-2.3.98, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../zxing-cpp/files/zxing-cpp-1.0.8-pkgconfig.patch | 10 ++
 media-libs/zxing-cpp/zxing-cpp-1.0.8-r1.ebuild  | 17 +
 2 files changed, 27 insertions(+)

diff --git a/media-libs/zxing-cpp/files/zxing-cpp-1.0.8-pkgconfig.patch 
b/media-libs/zxing-cpp/files/zxing-cpp-1.0.8-pkgconfig.patch
new file mode 100644
index 000..d1dda4f584e
--- /dev/null
+++ b/media-libs/zxing-cpp/files/zxing-cpp-1.0.8-pkgconfig.patch
@@ -0,0 +1,10 @@
+--- a/zxing.pc.in  2020-04-09 11:43:22.494219440 -0400
 b/zxing.pc.in  2020-04-09 11:49:03.884867034 -0400
+@@ -5,6 +5,6 @@
+ 
+ Name: ZXing
+ Description: ZXing library set
+-Version: @VERSION@
++Version: @PROJECT_VERSION@
+ Libs: -L${libdir} -l@TARGET_ZXING@ 
+ Cflags: -I${includedir} -I${includedir}/ZXing
\ No newline at end of file

diff --git a/media-libs/zxing-cpp/zxing-cpp-1.0.8-r1.ebuild 
b/media-libs/zxing-cpp/zxing-cpp-1.0.8-r1.ebuild
new file mode 100644
index 000..4d6ad244fdd
--- /dev/null
+++ b/media-libs/zxing-cpp/zxing-cpp-1.0.8-r1.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="C++ Multi-format 1D/2D barcode image processing library"
+HOMEPAGE="https://github.com/nu-book/zxing-cpp;
+SRC_URI="https://github.com/nu-book/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="amd64 arm64 x86"
+IUSE=""
+
+PATCHES=( "${FILESDIR}/${P}-pkgconfig.patch" ) # bug 716818