app-arch/innoextract: drop 1.9

Bug: https://bugs.gentoo.org/959411
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2025-07-27 23:18:51 +02:00
parent 7bbe5d3fe7
commit aa84b2a4d5
3 changed files with 0 additions and 60 deletions

View File

@@ -1,2 +1 @@
DIST innoextract-1.10_pre20250206.tar.gz 215658 BLAKE2B 26005e329e99682600c0ada6bb92a8d6e03a332151cfb36577a65ae920c2d140638b478cef5dbc5ac070318ec1fc474037ef70f999a4de327853aeaf1ce323bb SHA512 521e9d398b4af8af5fd2cc17b36432f399f64ba7bc5dcbd4c15262763ab5bae6affb00f1961e0d0e18441720680408c159eaf743523574653c47f12cc2caf590
DIST innoextract-1.9.tar.gz 206931 BLAKE2B 1d5f0d13a7cd52262b277263f061ecab85a3419197bceb22938a0d10000578603cc2c2b972a45474027cfea8e43b8bf89d680035034785210842477b147811fa SHA512 2b18f7bb7f50744bcb1bdcd25e57e0760193b179c77b55e0f63c537e55afc98de3b0380da3cae470ce97660ed41a7ffbb48c8c25329c9ce9b3811d9aec74bcde

View File

@@ -1,21 +0,0 @@
https://bugs.gentoo.org/930495
https://github.com/dscharrer/innoextract/pull/169
From 264c2fe6b84f90f6290c670e5f676660ec7b2387 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bernhard=20Rosenkr=C3=A4nzer?= <bero@lindev.ch>
Date: Thu, 28 Mar 2024 15:11:40 +0100
Subject: [PATCH] Fix build with boost 1.85
As of boost 1.85-beta1, boost/filesystem/directory.hpp is no longer
implicitly included by boost/filesystem/operations.hpp. Include it
explicitly.
--- a/src/stream/slice.cpp
+++ b/src/stream/slice.cpp
@@ -27,6 +27,7 @@
#include <boost/cstdint.hpp>
#include <boost/algorithm/string/predicate.hpp>
#include <boost/filesystem/operations.hpp>
+#include <boost/filesystem/directory.hpp>
#include <boost/range/size.hpp>
#include "util/console.hpp"

View File

@@ -1,38 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake
DESCRIPTION="A tool to unpack installers created by Inno Setup"
HOMEPAGE="https://constexpr.org/innoextract/"
SRC_URI="https://constexpr.org/innoextract/files/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 ~m68k ppc64 x86"
IUSE="debug +iconv +lzma"
RDEPEND="
dev-libs/boost:=[bzip2,zlib]
iconv? ( virtual/libiconv )
lzma? ( app-arch/xz-utils )"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}/${PN}-1.9-fix-linkage.patch"
"${FILESDIR}/${PN}-1.9-boost-1.85.0.patch"
)
src_configure() {
local mycmakeargs=(
-DDEBUG=$(usex debug)
-DSET_OPTIMIZATION_FLAGS=OFF
-DSTRICT_USE=ON
-DUSE_LZMA=$(usex lzma)
-DWITH_CONV=$(usex iconv iconv builtin)
)
cmake_src_configure
}