From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C29E81581FB for ; Fri, 30 Aug 2024 15:31:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0FF53E29F7; Fri, 30 Aug 2024 15:31:36 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E9EF5E29F4 for ; Fri, 30 Aug 2024 15:31:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 141BF343028 for ; Fri, 30 Aug 2024 15:31:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 386481F1A for ; Fri, 30 Aug 2024 15:31:32 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1725031084.a2899cdf47df434247d43fb0c648ffc133759dff.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/simple-mtpfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/simple-mtpfs/simple-mtpfs-0.4.0-r1.ebuild X-VCS-Directories: sys-fs/simple-mtpfs/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: a2899cdf47df434247d43fb0c648ffc133759dff X-VCS-Branch: master Date: Fri, 30 Aug 2024 15:31:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c0b57bee-05bc-4e5d-b885-5c132b799236 X-Archives-Hash: c6084f518ccbe9f1f092a1947422e202 commit: a2899cdf47df434247d43fb0c648ffc133759dff Author: Jakov Smolić gentoo org> AuthorDate: Fri Aug 30 15:18:04 2024 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Fri Aug 30 15:18:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2899cdf sys-fs/simple-mtpfs: update EAPI 7 -> 8 Signed-off-by: Jakov Smolić gentoo.org> sys-fs/simple-mtpfs/simple-mtpfs-0.4.0-r1.ebuild | 31 ++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/sys-fs/simple-mtpfs/simple-mtpfs-0.4.0-r1.ebuild b/sys-fs/simple-mtpfs/simple-mtpfs-0.4.0-r1.ebuild new file mode 100644 index 000000000000..d915d61c898d --- /dev/null +++ b/sys-fs/simple-mtpfs/simple-mtpfs-0.4.0-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Simple MTP fuse filesystem driver" +HOMEPAGE="https://github.com/phatina/simple-mtpfs" +SRC_URI="https://github.com/phatina/simple-mtpfs/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + media-libs/libmtp + sys-fs/fuse:0" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-build/autoconf-archive + virtual/pkgconfig +" + +src_prepare() { + default + + # The tarball doesn't contain ./configure, only configure.ac and + # autogen.sh. + eautoreconf +}