public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mike Frysinger" <vapier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
Date: Thu, 27 Aug 2015 05:32:48 +0000 (UTC)	[thread overview]
Message-ID: <1440653562.f99636c6a395f28164bddaeb38d0a96380998ad2.vapier@gentoo> (raw)

commit:     f99636c6a395f28164bddaeb38d0a96380998ad2
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 27 05:32:02 2015 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Thu Aug 27 05:32:42 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f99636c6

sys-fs/mtd-utils: version bump to 1.5.2

 sys-fs/mtd-utils/Manifest               |  1 +
 sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild | 62 +++++++++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)

diff --git a/sys-fs/mtd-utils/Manifest b/sys-fs/mtd-utils/Manifest
index 26eb11d..3d39572 100644
--- a/sys-fs/mtd-utils/Manifest
+++ b/sys-fs/mtd-utils/Manifest
@@ -1,2 +1,3 @@
 DIST mtd-utils-1.5.0.tar.gz 336791 SHA256 37c660830010910c75baf4bb92697b99bdef1a63be31630882f9ebdb9347c420 SHA512 d5be5fdf4e34b553b37486c36c786e1eb8f472660c35a6adfd1305045530a270388aae4da8df34d65138469ccb576d72f2791234a4c00d1fdbacdf680d361c5a WHIRLPOOL 0c66f31baa4e54b0e1430632270425ecba0da9a0e61ff09a90a8c2a668a9194c71ab2e775da29b597aac398d6e6e1069d13524f05d121c8a480184cc7687ec11
 DIST mtd-utils-1.5.1.tar.gz 341326 SHA256 c3c5765c9f8d2a0b505f4114264c70214984dcda60b0887f480bd9ed5a9d8015 SHA512 7b11dabec26db1187ce9a39f5187998bce9a2ae4e3b99c6ce230dee826cb7576f69885f2125c7e833b229ab7feb0ef18d19ce4bf63dad48c0126586b121183ab WHIRLPOOL 3c79c8d441f2cd872e36897fe641e427c4bdacd2d16396e87ecb2ef95732b1ea903a003f15ab224343002ba99c5e87ce05978a2136070c3aa8e9d2168a90915b
+DIST mtd-utils-1.5.2.tar.gz 343843 SHA256 8169e2860f63f3c216ba830c943139d00995fd030313079cc143bbad24ecf6c3 SHA512 81eb5cf27814234af65409fe93798ec50d9f733978dc606bd33e63d98eb99afb3f988df47dc66a9368a11baee0a35fa1d0d6677af8c23428919e34bd11a25697 WHIRLPOOL e5aa4a15f334222980469a9d002e5f1030510d9ebb46fa6221acf1a70632a68625cb6eb0927a949ebd6a0d2e92c1a51671da21c37386bed389d5f9859c978fc5

diff --git a/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild b/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild
new file mode 100644
index 0000000..26c0a62
--- /dev/null
+++ b/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+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 ~arm-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 <sys/acl.h> 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 mkfs.ubifs/README README.mkfs.ubifs
+	# TODO: check ubi-utils for docs+scripts
+}


             reply	other threads:[~2015-08-27  5:32 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-27  5:32 Mike Frysinger [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-01-26 22:14 [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/ Mike Frysinger
2016-10-24 18:12 Markus Meier
2016-11-22  8:54 Vicente Olivert Riera
2016-11-22  8:56 Vicente Olivert Riera
2017-05-15 21:28 Manuel Rüger
2018-11-02 19:56 Robin H. Johnson
2019-07-29 14:47 Mikle Kolyada
2019-12-15 20:30 Michał Górny
2020-02-13 21:40 David Seifert
2020-05-11 18:14 Georgy Yakovlev
2020-09-16  8:04 Joonas Niilola
2020-10-28  4:10 Sam James
2020-12-02  3:06 Thomas Deutschmann
2020-12-03  6:40 Sam James
2020-12-04 18:31 Sergei Trofimovich
2020-12-17  2:41 Sam James
2021-08-26 22:52 Sam James
2021-08-26 22:52 Sam James
2021-08-27 23:13 Jakov Smolić
2021-08-31  2:23 Yixun Lan
2021-09-25 19:56 Sam James
2021-09-26  5:01 Sam James
2021-09-26  7:28 Agostino Sarubbo
2021-09-30 18:18 Sam James
2021-09-30 18:45 Jakov Smolić
2022-01-05 16:12 Arthur Zamarin
2022-01-05 17:34 Arthur Zamarin
2022-01-12 17:46 Mike Frysinger
2022-02-11 19:07 Jakov Smolić
2022-02-11 19:07 Jakov Smolić
2022-02-11 19:19 Arthur Zamarin
2022-02-11 19:20 Jakov Smolić
2022-02-11 19:20 Jakov Smolić
2022-02-11 20:48 Arthur Zamarin
2022-02-11 22:45 Jakov Smolić
2022-10-05  7:56 Arthur Zamarin
2022-10-05  8:03 Arthur Zamarin
2022-10-05  8:03 Arthur Zamarin
2022-10-05 11:35 Sam James
2022-10-05 11:35 Sam James
2022-10-07  9:35 Agostino Sarubbo
2022-10-07 12:25 Jakov Smolić
2022-10-07 18:52 Robin H. Johnson
2023-01-08 17:00 Arthur Zamarin
2023-01-08 17:00 Arthur Zamarin
2023-01-08 17:00 Arthur Zamarin
2023-01-08 17:00 Arthur Zamarin
2023-01-08 17:58 Arthur Zamarin
2023-01-09  1:54 Sam James
2023-01-09  8:55 Jakov Smolić
2023-05-31  3:26 Sam James
2023-09-01 17:11 Robin H. Johnson
2023-09-14  5:27 WANG Xuerui
2023-09-25 16:52 Jakov Smolić
2023-09-25 16:52 Jakov Smolić
2023-10-03 22:39 Sam James
2023-10-03 22:39 Sam James
2023-10-03 22:39 Sam James
2023-10-03 22:45 Sam James
2023-10-04 18:32 Arthur Zamarin
2023-12-22 13:29 Arthur Zamarin
2023-12-23 18:45 Jakov Smolić
2023-12-23 18:45 Jakov Smolić
2023-12-31  2:45 Conrad Kostecki
2024-09-25 16:20 Robin H. Johnson
2024-09-26  8:08 Robin H. Johnson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1440653562.f99636c6a395f28164bddaeb38d0a96380998ad2.vapier@gentoo \
    --to=vapier@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox