commit: c16b7254d6c1fecb2ec4ad7110ab476cb045dbc3 Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org> AuthorDate: Thu Sep 5 18:46:15 2024 +0000 Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org> CommitDate: Thu Sep 5 19:53:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c16b7254
app-arch/wimlib: drop 1.14.1 Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org> app-arch/wimlib/Manifest | 1 - app-arch/wimlib/wimlib-1.14.1.ebuild | 52 ------------------------------------ 2 files changed, 53 deletions(-) diff --git a/app-arch/wimlib/Manifest b/app-arch/wimlib/Manifest index 3f9f417e7189..27bd111626c6 100644 --- a/app-arch/wimlib/Manifest +++ b/app-arch/wimlib/Manifest @@ -1,2 +1 @@ -DIST wimlib-1.14.1.tar.gz 1046078 BLAKE2B 56e44928229c9c4fda662fa64fc4021bd361c2c959f0786764b84fa4cc9d7f7b0d5440edb4d4079657cc7bf450ac9c755f554c7da7a8b2b7e96d69ddbeb4f22f SHA512 9f92a8ce2d386918d66a1a3e52d4fbffeeb9f8b9345b25012fd0bd07039a00be84fd83d83a9bb25bcefab09597a81e9392522be835dd6693dd00050f8624af00 DIST wimlib-1.14.4.tar.gz 1045888 BLAKE2B fa3d8568e777783034d426ff97d542e9db9679486e282667b6f44137a00c658697c0cff2ff065b86e782e9720f36ed050f75bd60aea9ae0bedf71355997b6b27 SHA512 f3c25ee14fe849f452f004ce8137ef040410ea048555ae71180086f010858b6ed593c8881b805bac65f9ee878bf11661a7f17677c6c24e2c77149c35ee0cd853 diff --git a/app-arch/wimlib/wimlib-1.14.1.ebuild b/app-arch/wimlib/wimlib-1.14.1.ebuild deleted file mode 100644 index 14ba614885b5..000000000000 --- a/app-arch/wimlib/wimlib-1.14.1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools pax-utils - -DESCRIPTION="The open source Windows Imaging (WIM) library" -HOMEPAGE="https://wimlib.net" -SRC_URI="https://wimlib.net/downloads/${P}.tar.gz" - -LICENSE="|| ( GPL-3+ LGPL-3+ ) MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="fuse iso ntfs test yasm" -RESTRICT="!test? ( test )" - -RDEPEND=" - fuse? ( sys-fs/fuse:3 ) - iso? ( - app-arch/cabextract - app-cdr/cdrtools - ) - ntfs? ( sys-fs/ntfs3g:= ) -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - local myeconfargs=( - $(use_with ntfs ntfs-3g) - $(use_with fuse) - $(use_enable test test-support) - ) - - econf "${myeconfargs[@]}" -} - -src_compile() { - default - pax-mark m "${S}"/.libs/wimlib-imagex -} - -src_install() { - default - find "${ED}" -name '*.la' -delete || die -}