mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 06:35:19 +02:00
137 lines
2.7 KiB
Bash
137 lines
2.7 KiB
Bash
# Copyright 2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# Autogenerated by pycargoebuild 0.13.5
|
|
|
|
EAPI=8
|
|
|
|
CRATES="
|
|
adler2@2.0.0
|
|
anstream@0.6.18
|
|
anstyle-parse@0.2.6
|
|
anstyle-query@1.1.2
|
|
anstyle-wincon@3.0.7
|
|
anstyle@1.0.10
|
|
autocfg@1.4.0
|
|
bitflags@1.3.2
|
|
bitflags@2.8.0
|
|
bitvec@1.0.1
|
|
bumpalo@3.17.0
|
|
bytemuck@1.21.0
|
|
byteorder-lite@0.1.0
|
|
cc@1.2.13
|
|
cfg-if@1.0.0
|
|
clap@4.5.29
|
|
clap_builder@4.5.29
|
|
clap_lex@0.7.4
|
|
colorchoice@1.0.3
|
|
crc32fast@1.4.2
|
|
crossbeam-channel@0.5.14
|
|
crossbeam-deque@0.8.6
|
|
crossbeam-epoch@0.9.18
|
|
crossbeam-utils@0.8.21
|
|
either@1.13.0
|
|
env_filter@0.1.3
|
|
env_logger@0.11.6
|
|
equivalent@1.0.1
|
|
errno@0.3.10
|
|
fdeflate@0.3.7
|
|
filetime@0.2.25
|
|
flate2@1.0.35
|
|
funty@2.0.0
|
|
glob@0.3.2
|
|
hashbrown@0.15.2
|
|
image@0.25.5
|
|
indexmap@2.7.1
|
|
is_terminal_polyfill@1.70.1
|
|
libc@0.2.169
|
|
libdeflate-sys@1.23.0
|
|
libdeflater@1.23.0
|
|
libredox@0.1.3
|
|
linux-raw-sys@0.4.15
|
|
lockfree-object-pool@0.1.6
|
|
log@0.4.25
|
|
miniz_oxide@0.8.4
|
|
num-traits@0.2.19
|
|
once_cell@1.20.3
|
|
pkg-config@0.3.31
|
|
png@0.17.16
|
|
radium@0.7.0
|
|
rayon-core@1.12.1
|
|
rayon@1.10.0
|
|
redox_syscall@0.5.8
|
|
rgb@0.8.50
|
|
rustc-hash@2.1.1
|
|
rustix@0.38.44
|
|
shlex@1.3.0
|
|
simd-adler32@0.3.7
|
|
strsim@0.11.1
|
|
tap@1.0.1
|
|
terminal_size@0.4.1
|
|
utf8parse@0.2.2
|
|
windows-sys@0.59.0
|
|
windows-targets@0.52.6
|
|
windows_aarch64_gnullvm@0.52.6
|
|
windows_aarch64_msvc@0.52.6
|
|
windows_i686_gnu@0.52.6
|
|
windows_i686_gnullvm@0.52.6
|
|
windows_i686_msvc@0.52.6
|
|
windows_x86_64_gnu@0.52.6
|
|
windows_x86_64_gnullvm@0.52.6
|
|
windows_x86_64_msvc@0.52.6
|
|
wyz@0.5.1
|
|
zopfli@0.8.1
|
|
"
|
|
|
|
RUST_MIN_VER="1.74.0"
|
|
|
|
inherit cargo
|
|
|
|
DESCRIPTION="Multithreaded lossless PNG compression optimizer written in Rust"
|
|
HOMEPAGE="https://github.com/shssoichiro/oxipng"
|
|
SRC_URI="
|
|
https://github.com/shssoichiro/oxipng/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
|
${CARGO_CRATE_URIS}
|
|
"
|
|
|
|
LICENSE="MIT"
|
|
# Dependent crate licenses
|
|
LICENSE+=" Apache-2.0 Boost-1.0 MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
|
|
|
|
BDEPEND="virtual/pkgconfig"
|
|
DEPEND=">=app-arch/libdeflate-1.23"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
# rust does not use *FLAGS from make.conf, silence portage warning
|
|
# update with proper path to binaries this crate installs, omit leading /
|
|
QA_FLAGS_IGNORED="usr/bin/${PN}"
|
|
QA_PRESTRIPPED="usr/bin/${PN}"
|
|
|
|
src_prepare() {
|
|
pushd "${WORKDIR}" || die
|
|
eapply "${FILESDIR}"/oxipng-9.1.4-libdeflater-1.23.0-relax-libdeflate-sys-version.patch
|
|
popd > /dev/null || die
|
|
|
|
# Remove the linker configs (in `.cargo/config.toml`) specific to GitHub CI.
|
|
# https://bugs.gentoo.org/924946
|
|
rm -rv "${S}/.cargo/config.toml" || die
|
|
|
|
default_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
export PKG_CONFIG_ALLOW_CROSS=1
|
|
local myfeatures=(
|
|
system-libdeflate
|
|
)
|
|
|
|
cargo_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
cargo_src_install
|
|
|
|
dodoc CHANGELOG.md README.md
|
|
}
|