sys-fs/ffmpegfs: drop 2.17, 2.17-r1

Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
This commit is contained in:
Alexey Sokolov
2026-06-23 00:20:23 +01:00
parent 4718311d86
commit 11c1c01fce
5 changed files with 0 additions and 144 deletions

View File

@@ -1,2 +1 @@
DIST ffmpegfs-2.17.tar.gz 14627337 BLAKE2B 1ab781ffe5bd655efd47b81216ead58576d2a965910ce852a4d60907718ec356798156b63f20e12ea158f2fbad77b389c47d89a7d14fca7b5a636e726db66d15 SHA512 89b8a5de7ed5ae6c7d53b9c56a711563229a6859e0d21ee4eaf0b362deff72424b0f6376956cc0e2cf9c676268aa3264db83cf22fd9b60de3bfd1d6f580786bd
DIST ffmpegfs-2.18.tar.gz 14634927 BLAKE2B e0b45768066b03eac257dbf5c5bc3023081cf5592bcf3386c21a0dbe6f0bd04fcf1b886bfcab22ce86c5b2c97c26c9b082efceabda8f9bd13d66c74a60e17330 SHA512 26b3438a6607479607c98cf8e847d83031b540c203257c20a9b70f4292970bb4f47228a6443cf10b9aaf2b4057f2de52ccb6184df38f9e1bed85da22de0b64c1

View File

@@ -1,55 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools ffmpeg-compat
DESCRIPTION="FUSE-based transcoding filesystem with support from/to many formats."
HOMEPAGE="https://nschlia.github.io/ffmpegfs/"
SRC_URI="https://github.com/nschlia/ffmpegfs/releases/download/v${PV}/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="bluray dvd"
RESTRICT="test" # needs /dev/fuse
BDEPEND="
app-editors/vim-core
app-text/asciidoc
virtual/pkgconfig
www-client/w3m
"
DEPEND="
dev-db/sqlite:3
dev-libs/libchardet
media-libs/libcue:=
media-video/ffmpeg-compat:7=
sys-fs/fuse:3
bluray? ( media-libs/libbluray:= )
dvd? ( media-libs/libdvdread:= )
"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}/ffmpegfs-2.16-cflags.patch"
"${FILESDIR}/ffmpegfs-2.16-varcache.patch"
)
src_prepare() {
default
# bug 936615
sed 's/-D_FORTIFY_SOURCE=2//' -i Makefile.am || die
eautoreconf
}
src_configure() {
ffmpeg_compat_setup 7
ffmpeg_compat_add_flags
econf \
$(use_with bluray libbluray) \
$(use_with dvd libdvd)
}

View File

@@ -1,52 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="FUSE-based transcoding filesystem with support from/to many formats."
HOMEPAGE="https://nschlia.github.io/ffmpegfs/"
SRC_URI="https://github.com/nschlia/ffmpegfs/releases/download/v${PV}/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="bluray dvd"
RESTRICT="test" # needs /dev/fuse
BDEPEND="
app-editors/vim-core
app-text/asciidoc
virtual/pkgconfig
www-client/w3m
"
DEPEND="
dev-db/sqlite:3
dev-libs/libchardet
media-libs/libcue:=
media-video/ffmpeg:=
sys-fs/fuse:3
bluray? ( media-libs/libbluray:= )
dvd? ( media-libs/libdvdread:= )
"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}/ffmpegfs-2.16-cflags.patch"
"${FILESDIR}/ffmpegfs-2.16-varcache.patch"
)
src_prepare() {
default
# bug 936615
sed 's/-D_FORTIFY_SOURCE=2//' -i Makefile.am || die
eautoreconf
}
src_configure() {
econf \
$(use_with bluray libbluray) \
$(use_with dvd libdvd)
}

View File

@@ -1,24 +0,0 @@
Respect user's CFLAGS
--- a/Makefile.am
+++ b/Makefile.am
@@ -2,7 +2,7 @@
if DEBUG
export OPTIMISATION = -DDEBUG -ggdb -fstack-protector-explicit
else
-export OPTIMISATION = -DNDEBUG -Ofast -g
+export OPTIMISATION = -DNDEBUG
endif
export WARNINGS = -Wall -Wextra -Wconversion -Wsign-compare -Wsign-conversion -Wpedantic
--- a/configure.ac
+++ b/configure.ac
@@ -19,8 +19,6 @@ AC_CANONICAL_HOST
AC_DEFINE_UNQUOTED([HOST_OS], ["$host_os"], [Host operating system])
# compiler flags
-CFLAGS=""
-CXXFLAGS=""
# Checks for programs
AC_PROG_CC

View File

@@ -1,12 +0,0 @@
Don't install to /var/cache
--- a/Makefile.am
+++ b/Makefile.am
@@ -156,7 +156,6 @@ install-exec-hook:
echo "$(CACHEDIR) already exists."; \
else \
echo "Creating cache in $(CACHEDIR)."; \
- mkdir -p $(CACHEDIR) || true; \
fi
uninstall-hook: