diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-07-13 07:43:36 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-07-13 07:54:55 +0200 |
commit | eb1e2e61d52731cbf4ee60f2b85ce053663cd0d8 (patch) | |
tree | fd7145dd55f34a3ed06eb01b2535395a0f2ffe0f /media-libs/zxing-cpp | |
parent | sys-process/glances: drop 3.1.6.2 (diff) | |
download | gentoo-eb1e2e61d52731cbf4ee60f2b85ce053663cd0d8.tar.gz gentoo-eb1e2e61d52731cbf4ee60f2b85ce053663cd0d8.tar.bz2 gentoo-eb1e2e61d52731cbf4ee60f2b85ce053663cd0d8.zip |
media-libs/zxing-cpp: Drop 1.1.1
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-libs/zxing-cpp')
-rw-r--r-- | media-libs/zxing-cpp/Manifest | 1 | ||||
-rw-r--r-- | media-libs/zxing-cpp/files/zxing-cpp-1.1.1-gcc11.patch | 22 | ||||
-rw-r--r-- | media-libs/zxing-cpp/zxing-cpp-1.1.1.ebuild | 27 |
3 files changed, 0 insertions, 50 deletions
diff --git a/media-libs/zxing-cpp/Manifest b/media-libs/zxing-cpp/Manifest index 833baebc4c53..376361ba89e3 100644 --- a/media-libs/zxing-cpp/Manifest +++ b/media-libs/zxing-cpp/Manifest @@ -1,2 +1 @@ -DIST zxing-cpp-1.1.1.tar.gz 128925736 BLAKE2B d2d6b4b13c26ee1bf8c9f1188809207f895d9ab4bde83e7e06d85d7105c56021bb9f82f34b9f11e1c8ff5b82825de127d1bc873745fa6ef603a8d206f3eaedec SHA512 c7d97df147602e31e58eede54413814378895e9710cf266de984b22965a9a3f4c67648a0bf936a8bc8b213b45def59d1e5b34d6ce516265333dd2c0430554dc7 DIST zxing-cpp-1.2.0.tar.gz 97942494 BLAKE2B dc220783fe8a9c1ea321ad5b7835553985a06318f909af1574131b55f3a4bb71f8cf90f56925dfe8338df5cc24f91d93d8a7626cd8d2c01473b1ccce09bad8b0 SHA512 e61b4e44ccaf0871b5d8badf9ce0a81576f55e5d6a9458907b9b599a66227adceabb8d51a0c47b32319d8aeff93e758b4785d3bd0440375247471d95999de487 diff --git a/media-libs/zxing-cpp/files/zxing-cpp-1.1.1-gcc11.patch b/media-libs/zxing-cpp/files/zxing-cpp-1.1.1-gcc11.patch deleted file mode 100644 index 13adad906c0d..000000000000 --- a/media-libs/zxing-cpp/files/zxing-cpp-1.1.1-gcc11.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 427e814ebcfd2e55e1c18531b7e4aa9d6a1ca6fc Mon Sep 17 00:00:00 2001 -From: Christophe Giboudeaux <christophe@krop.fr> -Date: Tue, 9 Feb 2021 09:28:23 +0100 -Subject: [PATCH] Fix build with GCC 11 - -Starting with GCC 11, the 'limits' header is not included transitively anymore. ---- - core/src/Pattern.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/core/src/Pattern.h b/core/src/Pattern.h -index 4bbe6d26..c4a3f7c5 100644 ---- a/core/src/Pattern.h -+++ b/core/src/Pattern.h -@@ -22,6 +22,7 @@ - #include <cmath> - #include <cstddef> - #include <cstdint> -+#include <limits> - #include <numeric> - #include <vector> - diff --git a/media-libs/zxing-cpp/zxing-cpp-1.1.1.ebuild b/media-libs/zxing-cpp/zxing-cpp-1.1.1.ebuild deleted file mode 100644 index 3b38eb67cad9..000000000000 --- a/media-libs/zxing-cpp/zxing-cpp-1.1.1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2021 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 ~ppc64 x86" -IUSE="test" - -RESTRICT="!test? ( test )" - -PATCHES=( "${FILESDIR}/${P}-gcc11.patch" ) - -src_configure() { - local mycmakeargs=( - -DBUILD_EXAMPLES=OFF # nothing is installed - -DBUILD_BLACKBOX_TESTS=$(usex test) - ) - cmake_src_configure -} |