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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 96C53138335 for ; Sun, 15 Dec 2019 20:30:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD9C5E0894; Sun, 15 Dec 2019 20:30:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5FFCFE087F for ; Sun, 15 Dec 2019 20:30:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F2C9534D8D8 for ; Sun, 15 Dec 2019 20:30:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 644FB8AF for ; Sun, 15 Dec 2019 20:30:32 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1576441824.ad8816953631c6b3eda9ba1a5f1e2b5e70a50d30.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/mtd-utils/mtd-utils-99999999.ebuild X-VCS-Directories: sys-fs/mtd-utils/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ad8816953631c6b3eda9ba1a5f1e2b5e70a50d30 X-VCS-Branch: master Date: Sun, 15 Dec 2019 20:30: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: 5c2d9cd8-80ac-4b3d-a468-6ca7f9b86f3a X-Archives-Hash: 8636326f9c6b70c6c900669ca2f698b5 commit: ad8816953631c6b3eda9ba1a5f1e2b5e70a50d30 Author: Michał Górny gentoo org> AuthorDate: Sun Dec 15 20:25:18 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Dec 15 20:30:24 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad881695 sys-fs/mtd-utils: Drop unmaintained -9999* Signed-off-by: Michał Górny gentoo.org> sys-fs/mtd-utils/mtd-utils-99999999.ebuild | 61 ------------------------------ 1 file changed, 61 deletions(-) diff --git a/sys-fs/mtd-utils/mtd-utils-99999999.ebuild b/sys-fs/mtd-utils/mtd-utils-99999999.ebuild deleted file mode 100644 index 8354dce126c..00000000000 --- a/sys-fs/mtd-utils/mtd-utils-99999999.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit eutils vcs-snapshot - -if [[ ${PV} == "99999999" ]] ; then - EGIT_REPO_URI="git://git.infradead.org/mtd-utils.git" - - inherit git-2 - SRC_URI="" - #KEYWORDS="" -else - if [[ ${PV} == *.*.* ]] ; then - MY_PV="${PV}-*" - SRC_URI="http://git.infradead.org/mtd-utils.git/snapshot/v${PV}.tar.gz -> ${P}.tar.gz" - else - MY_PV="${PV}-02ae0aac87576d07202a62d11294ea55b56f450b" - SRC_URI="mirror://gentoo/${PN}-snapshot-${MY_PV}.tar.xz" - fi - KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86 ~amd64-linux ~x86-linux" -fi - -DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)" -HOMEPAGE="http://git.infradead.org/?p=mtd-utils.git;a=summary" - -LICENSE="GPL-2" -SLOT="0" -IUSE="xattr" - -# We need libuuid -RDEPEND="!sys-fs/mtd - dev-libs/lzo - sys-libs/zlib - >=sys-apps/util-linux-2.16" -# ACL is only required for the header file to build mkfs.jffs2 -# And ACL brings in Attr as well. -DEPEND="${RDEPEND} - xattr? ( sys-apps/acl )" - -makeopts() { - # These affect build output, so keep it common between compile & install. - echo CROSS=${CHOST}- V=1 - use xattr || echo WITHOUT_XATTR=1 -} - -src_compile() { - tc-export AR CC RANLIB - local compileopts=( - AR="${AR}" CC="${CC}" RANLIB="${RANLIB}" - ) - emake $(makeopts) "${compileopts[@]}" -} - -src_install() { - emake $(makeopts) install DESTDIR="${ED}" - dodoc *.txt - newdoc ubifs-utils/mkfs.ubifs/README README.mkfs.ubifs - # TODO: check ubi-utils for docs+scripts -}