Summary: | sys-fs/mtd-utils: support USE=ssl | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | matoro <matoro_gentoo> |
Component: | Current packages | Assignee: | Robin Johnson <robbat2> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | allenwebb, embedded, jsmolic, matoro_gentoo |
Priority: | Normal | Keywords: | PullRequest |
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
See Also: | https://github.com/gentoo/gentoo/pull/33041 | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- |
Description
matoro
![]() I fixed this for ChromeOS with: diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild index 6d602a2f6..3b392b7a8 100644 --- a/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild +++ b/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild @@ -10,13 +10,14 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="*" -IUSE="+lzo test xattr +zstd" +IUSE="+lzo +ssl test xattr +zstd" RESTRICT="!test? ( test )" DEPEND=" sys-apps/util-linux:= sys-libs/zlib:= lzo? ( dev-libs/lzo:= ) + ssl? ( dev-libs/openssl:0= ) xattr? ( sys-apps/acl ) zstd? ( app-arch/zstd:= ) " @@ -40,6 +41,7 @@ src_configure() { --enable-tests \ $(use_enable test unit-tests) \ $(use_with lzo) \ + $(use_with ssl ubifs) \ $(use_with xattr) \ $(use_with zstd) } The bug has been closed via the following commit(s): https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08785a19704f0ef4da7002d901dd1f91badf09fe commit 08785a19704f0ef4da7002d901dd1f91badf09fe Author: Matoro Mahri <matoro@users.noreply.github.com> AuthorDate: 2023-09-24 23:07:32 +0000 Commit: Jakov Smolić <jsmolic@gentoo.org> CommitDate: 2023-09-25 16:50:39 +0000 sys-fs/mtd-utils: support USE=ssl Closes: https://bugs.gentoo.org/887275 Signed-off-by: Matoro Mahri <matoro@users.noreply.github.com> Signed-off-by: Allen Webb <allenwebb@google.com> Closes: https://github.com/gentoo/gentoo/pull/33041 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org> sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild | 54 ++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) |