public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2015-08-27  5:32 Mike Frysinger
  0 siblings, 0 replies; 65+ messages in thread
From: Mike Frysinger @ 2015-08-27  5:32 UTC (permalink / raw
  To: gentoo-commits

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
+}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2016-01-26 22:14 Mike Frysinger
  0 siblings, 0 replies; 65+ messages in thread
From: Mike Frysinger @ 2016-01-26 22:14 UTC (permalink / raw
  To: gentoo-commits

commit:     3bbe7747d818d2634b3cd21ab56e1efce12fd104
Author:     Brian Norris <computersforpeace <AT> gmail <DOT> com>
AuthorDate: Tue Jan 26 22:12:24 2016 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Tue Jan 26 22:13:40 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bbe7747

sys-fs/mtd-utils: update path to ubifs docs

 sys-fs/mtd-utils/mtd-utils-99999999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-99999999.ebuild b/sys-fs/mtd-utils/mtd-utils-99999999.ebuild
index 4380caf..e956d50 100644
--- a/sys-fs/mtd-utils/mtd-utils-99999999.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-99999999.ebuild
@@ -57,6 +57,6 @@ src_compile() {
 src_install() {
 	emake $(makeopts) install DESTDIR="${ED}"
 	dodoc *.txt
-	newdoc mkfs.ubifs/README README.mkfs.ubifs
+	newdoc ubifs-utils/mkfs.ubifs/README README.mkfs.ubifs
 	# TODO: check ubi-utils for docs+scripts
 }


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2016-10-24 18:12 Markus Meier
  0 siblings, 0 replies; 65+ messages in thread
From: Markus Meier @ 2016-10-24 18:12 UTC (permalink / raw
  To: gentoo-commits

commit:     d05500e67ea59838578310a1b228ce59f2e67d66
Author:     Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 24 18:11:57 2016 +0000
Commit:     Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Mon Oct 24 18:11:57 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d05500e6

sys-fs/mtd-utils: arm stable, bug #592742

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

 sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild b/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild
index 176261d..52f5d16 100644
--- a/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -20,7 +20,7 @@ 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"
+	KEYWORDS="~amd64 arm ~mips ~ppc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
 fi
 
 DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2016-11-22  8:54 Vicente Olivert Riera
  0 siblings, 0 replies; 65+ messages in thread
From: Vicente Olivert Riera @ 2016-11-22  8:54 UTC (permalink / raw
  To: gentoo-commits

commit:     2fb1d3f3c426bd2cdcf2221524aa1cca1a27cf6b
Author:     Vicente Olivert Riera <vincent <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 22 08:53:32 2016 +0000
Commit:     Vicente Olivert Riera <vincent <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 08:53:32 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fb1d3f3

sys-fs/mtd-utils: amd64 stable

Stable request:
  https://bugs.gentoo.org/show_bug.cgi?id=592742

Package-Manager: portage-2.3.0

 sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild b/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild
index 52f5d16..a07c3f4 100644
--- a/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild
@@ -20,7 +20,7 @@ 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"
+	KEYWORDS="amd64 arm ~mips ~ppc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
 fi
 
 DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2016-11-22  8:56 Vicente Olivert Riera
  0 siblings, 0 replies; 65+ messages in thread
From: Vicente Olivert Riera @ 2016-11-22  8:56 UTC (permalink / raw
  To: gentoo-commits

commit:     e3a1b8ea5cc348d1439c07d96c921b7ebd847acf
Author:     Vicente Olivert Riera <vincent <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 22 08:56:01 2016 +0000
Commit:     Vicente Olivert Riera <vincent <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 08:56:01 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3a1b8ea

sys-fs/mtd-utils: switch to EAPI 5

Package-Manager: portage-2.3.0

 sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild b/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild
index a07c3f4..cb262f0 100644
--- a/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI="4"
+EAPI="5"
 
 inherit eutils vcs-snapshot
 


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2017-05-15 21:28 Manuel Rüger
  0 siblings, 0 replies; 65+ messages in thread
From: Manuel Rüger @ 2017-05-15 21:28 UTC (permalink / raw
  To: gentoo-commits

commit:     879f068935972ce57fb1bdf192fbd07c47b57fec
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon May 15 21:27:54 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon May 15 21:28:14 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=879f0689

sys-fs/mtd-utils: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 sys-fs/mtd-utils/Manifest               |  2 --
 sys-fs/mtd-utils/mtd-utils-1.5.0.ebuild | 61 ---------------------------------
 sys-fs/mtd-utils/mtd-utils-1.5.1.ebuild | 61 ---------------------------------
 3 files changed, 124 deletions(-)

diff --git a/sys-fs/mtd-utils/Manifest b/sys-fs/mtd-utils/Manifest
index 3d3957245a9..a8f06081bd1 100644
--- a/sys-fs/mtd-utils/Manifest
+++ b/sys-fs/mtd-utils/Manifest
@@ -1,3 +1 @@
-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.0.ebuild b/sys-fs/mtd-utils/mtd-utils-1.5.0.ebuild
deleted file mode 100644
index 4de2e13a2ab..00000000000
--- a/sys-fs/mtd-utils/mtd-utils-1.5.0.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="3"
-
-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
-}

diff --git a/sys-fs/mtd-utils/mtd-utils-1.5.1.ebuild b/sys-fs/mtd-utils/mtd-utils-1.5.1.ebuild
deleted file mode 100644
index 83491b2aa01..00000000000
--- a/sys-fs/mtd-utils/mtd-utils-1.5.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2015 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 ~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
-}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2018-11-02 19:56 Robin H. Johnson
  0 siblings, 0 replies; 65+ messages in thread
From: Robin H. Johnson @ 2018-11-02 19:56 UTC (permalink / raw
  To: gentoo-commits

commit:     cf58e1cd105ab7384f5a59afd1ebc57670363151
Author:     Brian Norris <briannorris <AT> chromium <DOT> org>
AuthorDate: Tue Oct 16 19:46:21 2018 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Fri Nov  2 19:54:10 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf58e1cd

sys-fs/mtd-utils: Add 2.0.2 ebuild

It's been a few years since 1.5.2, and there are several new releases.
Let's take the latest, 2.0.2.

Main packaging changes:
 * started using autoconf -- no ./configure provided, so we need to run
 autogen.sh
 * directory reorganization, so shift how we install documentation
 * bump to EAPI 6

Left as unstable for all architectures for now.

Signed-off-by: Brian Norris <briannorris <AT> chromium.org>
(cherry picked from commit 996c31ba05d16fc623545c849ab45d64c7666489)
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

 sys-fs/mtd-utils/Manifest               |  1 +
 sys-fs/mtd-utils/mtd-utils-2.0.2.ebuild | 60 +++++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/sys-fs/mtd-utils/Manifest b/sys-fs/mtd-utils/Manifest
index 9332636ddb9..3dd13bea059 100644
--- a/sys-fs/mtd-utils/Manifest
+++ b/sys-fs/mtd-utils/Manifest
@@ -1 +1,2 @@
 DIST mtd-utils-1.5.2.tar.gz 343843 BLAKE2B 7f6612c4b9185583e9bbc785f7f96b08b7897c4af0c442a6206a446dc25f3c2aae9670c9344fba09606f73b87c73a96150f77bd974c96abe475d204ba5c28068 SHA512 81eb5cf27814234af65409fe93798ec50d9f733978dc606bd33e63d98eb99afb3f988df47dc66a9368a11baee0a35fa1d0d6677af8c23428919e34bd11a25697
+DIST mtd-utils-2.0.2.tar.gz 355964 BLAKE2B 9a795ddac1287c7c44f52215faa4b6295cf5ac3917392a407c7824f8715f4a180feab95621e6b1aa738fba38950c8e12b722b7c518c3362227e6da25deecd3fb SHA512 e61f4bb24d3b96d39fe262f73e01b7bf3e15a9258fd5766657ef0d807d7b5bb0b489ade9dc45068b2a25bcf378ca2877177df3915398b367f50ff1ef9bc5be7a

diff --git a/sys-fs/mtd-utils/mtd-utils-2.0.2.ebuild b/sys-fs/mtd-utils/mtd-utils-2.0.2.ebuild
new file mode 100644
index 00000000000..260052fe172
--- /dev/null
+++ b/sys-fs/mtd-utils/mtd-utils-2.0.2.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+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 <sys/acl.h> header file to build mkfs.jffs2
+# And ACL brings in Attr as well.
+DEPEND="${RDEPEND}
+	xattr? ( sys-apps/acl )
+	sys-devel/libtool"
+
+src_prepare() {
+	default
+	./autogen.sh || die
+}
+
+src_configure() {
+	econf \
+		$(use_with xattr)
+}
+
+src_install() {
+	default
+	dodoc jffsX-utils/device_table.txt
+	newdoc ubifs-utils/mkfs.ubifs/README README.mkfs.ubifs
+	doman \
+		jffsX-utils/mkfs.jffs2.1 \
+		ubi-utils/ubinize.8
+}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2019-07-29 14:47 Mikle Kolyada
  0 siblings, 0 replies; 65+ messages in thread
From: Mikle Kolyada @ 2019-07-29 14:47 UTC (permalink / raw
  To: gentoo-commits

commit:     bf5db1370fbc62f3bf2e3cb6168765717af76bae
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 29 14:46:49 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon Jul 29 14:46:49 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf5db137

sys-fs/mtd-utils: arm stable wrt bug #684568

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="arm"
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.0.2.ebuild b/sys-fs/mtd-utils/mtd-utils-2.0.2.ebuild
index 0a208914e00..3f9c4583bd0 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.0.2.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.0.2.ebuild
@@ -19,7 +19,7 @@ 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"
+	KEYWORDS="amd64 arm ~mips ppc x86 ~amd64-linux ~x86-linux"
 fi
 
 DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2019-12-15 20:30 Michał Górny
  0 siblings, 0 replies; 65+ messages in thread
From: Michał Górny @ 2019-12-15 20:30 UTC (permalink / raw
  To: gentoo-commits

commit:     ad8816953631c6b3eda9ba1a5f1e2b5e70a50d30
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 15 20:25:18 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> 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 <mgorny <AT> 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 <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 ubifs-utils/mkfs.ubifs/README README.mkfs.ubifs
-	# TODO: check ubi-utils for docs+scripts
-}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2020-02-13 21:40 David Seifert
  0 siblings, 0 replies; 65+ messages in thread
From: David Seifert @ 2020-02-13 21:40 UTC (permalink / raw
  To: gentoo-commits

commit:     1b0ab899475930648518666a372a91192e4797d5
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 13 21:39:26 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Feb 13 21:39:26 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b0ab899

sys-fs/mtd-utils: [QA] inherit toolchain-funcs.eclass directly

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild b/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild
index 0b91c6a378c..d319387dee4 100644
--- a/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-1.5.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
-inherit eutils vcs-snapshot
+inherit eutils vcs-snapshot toolchain-funcs
 
 if [[ ${PV} == "99999999" ]] ; then
 	EGIT_REPO_URI="git://git.infradead.org/mtd-utils.git"


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2020-05-11 18:14 Georgy Yakovlev
  0 siblings, 0 replies; 65+ messages in thread
From: Georgy Yakovlev @ 2020-05-11 18:14 UTC (permalink / raw
  To: gentoo-commits

commit:     ff88d5968cdaefd4095a294b876dd6c4f17a3d82
Author:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Mon May 11 16:23:33 2020 +0000
Commit:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Mon May 11 18:14:29 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff88d596

sys-fs/mtd-utils: keyword 2.0.2 on ~ppc64

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.0.2.ebuild b/sys-fs/mtd-utils/mtd-utils-2.0.2.ebuild
index 3f9c4583bd0..0fe8a0ccf74 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.0.2.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -19,7 +19,7 @@ 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"
+	KEYWORDS="amd64 arm ~mips ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 fi
 
 DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2020-09-16  8:04 Joonas Niilola
  0 siblings, 0 replies; 65+ messages in thread
From: Joonas Niilola @ 2020-09-16  8:04 UTC (permalink / raw
  To: gentoo-commits

commit:     02434fa3de86c0561e71c94520565efde153388d
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Tue Sep 15 18:54:07 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Sep 16 08:04:10 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02434fa3

sys-fs/mtd-utils: bump to 2.1.2

Closes: https://bugs.gentoo.org/722742
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Closes: https://github.com/gentoo/gentoo/pull/16866
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 sys-fs/mtd-utils/Manifest               |  1 +
 sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild | 43 +++++++++++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/sys-fs/mtd-utils/Manifest b/sys-fs/mtd-utils/Manifest
index 3dd13bea059..e714b58a58c 100644
--- a/sys-fs/mtd-utils/Manifest
+++ b/sys-fs/mtd-utils/Manifest
@@ -1,2 +1,3 @@
 DIST mtd-utils-1.5.2.tar.gz 343843 BLAKE2B 7f6612c4b9185583e9bbc785f7f96b08b7897c4af0c442a6206a446dc25f3c2aae9670c9344fba09606f73b87c73a96150f77bd974c96abe475d204ba5c28068 SHA512 81eb5cf27814234af65409fe93798ec50d9f733978dc606bd33e63d98eb99afb3f988df47dc66a9368a11baee0a35fa1d0d6677af8c23428919e34bd11a25697
 DIST mtd-utils-2.0.2.tar.gz 355964 BLAKE2B 9a795ddac1287c7c44f52215faa4b6295cf5ac3917392a407c7824f8715f4a180feab95621e6b1aa738fba38950c8e12b722b7c518c3362227e6da25deecd3fb SHA512 e61f4bb24d3b96d39fe262f73e01b7bf3e15a9258fd5766657ef0d807d7b5bb0b489ade9dc45068b2a25bcf378ca2877177df3915398b367f50ff1ef9bc5be7a
+DIST mtd-utils-2.1.2.tar.gz 380333 BLAKE2B 46cccf9cbe870f3415237deaa00a3ff57fbaacc019d4adc69e1ed516e752e58776ed5f53be0d46baef69dff8a0d90e1df5ca32a80ecbb620dd4bb0231f8c94dd SHA512 bd2d61d81f367a1d9f5345fa3985f5403e37fad1c1f811e2ab291b64339170514aa1fbceb89b78ba7a357f8cc3d7ade99796e9318c9624a40e2266fa0b3a9921

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
new file mode 100644
index 00000000000..9e4be5334a3
--- /dev/null
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"
+HOMEPAGE="http://git.infradead.org/?p=mtd-utils.git;a=summary"
+SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="+lzo xattr +zstd"
+
+DEPEND="!sys-fs/mtd
+	>=sys-apps/util-linux-2.16
+	sys-libs/zlib
+	lzo? ( dev-libs/lzo )
+	xattr? ( sys-apps/acl )
+	zstd? ( app-arch/zstd )"
+RDEPEND="${DEPEND}"
+BDEPEND="sys-devel/libtool"
+
+DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
+
+src_prepare() {
+	default
+	./autogen.sh || die
+}
+
+src_configure() {
+	econf \
+		$(use_with lzo) \
+		$(use_with xattr) \
+		$(use_with zstd)
+}
+
+src_install() {
+	default
+	doman \
+		jffsX-utils/mkfs.jffs2.1 \
+		ubi-utils/ubinize.8
+}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2020-10-28  4:10 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2020-10-28  4:10 UTC (permalink / raw
  To: gentoo-commits

commit:     75464337c017a27f06856027436585de7b5d9420
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 28 04:10:05 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 28 04:10:05 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75464337

sys-fs/mtd-utils: Keyword 2.1.2 arm64, #751310

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
index 9e4be5334a3..297168afea6 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="!sys-fs/mtd


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2020-12-02  3:06 Thomas Deutschmann
  0 siblings, 0 replies; 65+ messages in thread
From: Thomas Deutschmann @ 2020-12-02  3:06 UTC (permalink / raw
  To: gentoo-commits

commit:     89124702ed98632aa3bfe191919bf2b534160aa4
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  2 02:56:30 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Dec  2 02:56:30 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89124702

sys-fs/mtd-utils: x86 stable (bug #750119)

Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
index 297168afea6..5bb41c4b106 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="!sys-fs/mtd


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2020-12-03  6:40 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2020-12-03  6:40 UTC (permalink / raw
  To: gentoo-commits

commit:     e338712f32fdb1d1c720dadc95dd3777eab060dd
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec  3 06:40:08 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec  3 06:40:08 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e338712f

sys-fs/mtd-utils: Stabilize 2.1.2 arm, #750119

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
index 5bb41c4b106..57506c7cb32 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm ~arm64 ~mips ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="!sys-fs/mtd


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2020-12-04 18:31 Sergei Trofimovich
  0 siblings, 0 replies; 65+ messages in thread
From: Sergei Trofimovich @ 2020-12-04 18:31 UTC (permalink / raw
  To: gentoo-commits

commit:     827aec58148f90c1310fb30ef9c9aaa5c6b87496
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri Dec  4 18:23:30 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Dec  4 18:31:29 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=827aec58

sys-fs/mtd-utils: stable 2.1.2 for ppc

stable wrt bug #750119

Package-Manager: Portage-3.0.11, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
index 57506c7cb32..efd42d896bd 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~mips ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm ~arm64 ~mips ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="!sys-fs/mtd


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2020-12-17  2:41 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2020-12-17  2:41 UTC (permalink / raw
  To: gentoo-commits

commit:     6710fe6141b2dc2c5270911a5ddcbe315e194ee2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 17 02:41:25 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 17 02:41:36 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6710fe61

sys-fs/mtd-utils: Stabilize 2.1.2 amd64, #750119

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
index efd42d896bd..88222eda3de 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~mips ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~arm64 ~mips ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="!sys-fs/mtd


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2021-08-26 22:52 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2021-08-26 22:52 UTC (permalink / raw
  To: gentoo-commits

commit:     cc1ef5b07f72b7af52173a678899b4c5d3430a76
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Thu Aug 19 16:44:04 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 26 22:46:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc1ef5b0

sys-fs/mtd-utils: Version bump to 2.1.3

Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/Manifest               |  1 +
 sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild | 46 +++++++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/sys-fs/mtd-utils/Manifest b/sys-fs/mtd-utils/Manifest
index 3d9a152fe05..93bcf24082c 100644
--- a/sys-fs/mtd-utils/Manifest
+++ b/sys-fs/mtd-utils/Manifest
@@ -1 +1,2 @@
 DIST mtd-utils-2.1.2.tar.gz 380333 BLAKE2B 46cccf9cbe870f3415237deaa00a3ff57fbaacc019d4adc69e1ed516e752e58776ed5f53be0d46baef69dff8a0d90e1df5ca32a80ecbb620dd4bb0231f8c94dd SHA512 bd2d61d81f367a1d9f5345fa3985f5403e37fad1c1f811e2ab291b64339170514aa1fbceb89b78ba7a357f8cc3d7ade99796e9318c9624a40e2266fa0b3a9921
+DIST mtd-utils-2.1.3.tar.gz 383897 BLAKE2B 75aa73440101bb4bfc753b7e0b8371c141ea6b648aa3928c5c121f4976e01c37770d09da3683376891a9899d46c6ccbb7685b32c70f925e63916c552ae720037 SHA512 68efffda2077e14560b9c0b0e40ce8567aee21096c2a3e19bfb6febc3bc11d56c4ac5682728f08b6d215754e7cb39f956a3ced1f6bde3142f0d6ea8492b9bfda

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
new file mode 100644
index 00000000000..fe9bd2aed2b
--- /dev/null
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"
+HOMEPAGE="http://git.infradead.org/?p=mtd-utils.git;a=summary"
+SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="+lzo xattr +zstd"
+
+DEPEND="
+	sys-apps/util-linux
+	sys-libs/zlib
+	lzo? ( dev-libs/lzo )
+	xattr? ( sys-apps/acl )
+	zstd? ( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="sys-devel/libtool"
+
+DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		$(use_with lzo) \
+		$(use_with xattr) \
+		$(use_with zstd)
+}
+
+src_install() {
+	default
+	doman \
+		jffsX-utils/mkfs.jffs2.1 \
+		ubi-utils/ubinize.8
+}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2021-08-26 22:52 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2021-08-26 22:52 UTC (permalink / raw
  To: gentoo-commits

commit:     11b59b18c4b66f8752587da42099077c48ed98fb
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Thu Aug 19 16:51:21 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 26 22:46:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11b59b18

sys-fs/mtd-utils: Add myself as co-maintainer

Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Closes: https://github.com/gentoo/gentoo/pull/22037
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/metadata.xml | 25 +++++++++++++++----------
 1 file changed, 15 insertions(+), 10 deletions(-)

diff --git a/sys-fs/mtd-utils/metadata.xml b/sys-fs/mtd-utils/metadata.xml
index 9075500ddb8..508bbcf2140 100644
--- a/sys-fs/mtd-utils/metadata.xml
+++ b/sys-fs/mtd-utils/metadata.xml
@@ -1,14 +1,19 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer type="person">
-	<email>robbat2@gentoo.org</email>
-</maintainer>
-<maintainer type="project">
-	<email>embedded@gentoo.org</email>
-	<name>Embedded Gentoo</name>
-</maintainer>
-<upstream>
-	<remote-id type="cpe">cpe:/a:mtd-utils_project:mtd-utils</remote-id>
-</upstream>
+  <maintainer type="person">
+    <email>robbat2@gentoo.org</email>
+    <name>Robin H. Johnson</name>
+  </maintainer>
+  <maintainer type="person">
+    <email>jakov.smolic@sartura.hr</email>
+    <name>Jakov Smolic</name>
+  </maintainer>
+  <maintainer type="project">
+    <email>embedded@gentoo.org</email>
+    <name>Embedded Gentoo</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="cpe">cpe:/a:mtd-utils_project:mtd-utils</remote-id>
+  </upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2021-08-27 23:13 Jakov Smolić
  0 siblings, 0 replies; 65+ messages in thread
From: Jakov Smolić @ 2021-08-27 23:13 UTC (permalink / raw
  To: gentoo-commits

commit:     05a318da00186e3af14440c6781c40e93cdac7fb
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 27 23:00:42 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Aug 27 23:00:42 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05a318da

sys-fs/mtd-utils: Update my e-mail address

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-fs/mtd-utils/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/mtd-utils/metadata.xml b/sys-fs/mtd-utils/metadata.xml
index 508bbcf2140..4b798a4a9da 100644
--- a/sys-fs/mtd-utils/metadata.xml
+++ b/sys-fs/mtd-utils/metadata.xml
@@ -6,8 +6,8 @@
     <name>Robin H. Johnson</name>
   </maintainer>
   <maintainer type="person">
-    <email>jakov.smolic@sartura.hr</email>
-    <name>Jakov Smolic</name>
+    <email>jsmolic@gentoo.org</email>
+    <name>Jakov Smolić</name>
   </maintainer>
   <maintainer type="project">
     <email>embedded@gentoo.org</email>


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2021-08-31  2:23 Yixun Lan
  0 siblings, 0 replies; 65+ messages in thread
From: Yixun Lan @ 2021-08-31  2:23 UTC (permalink / raw
  To: gentoo-commits

commit:     fe44a23e68d18822351a430efb1b737946b1842e
Author:     Ahmed Charles <me <AT> ahmedcharles <DOT> com>
AuthorDate: Mon Aug 30 00:58:27 2021 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Tue Aug 31 02:20:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe44a23e

sys-fs/mtd-utils: keyword ~riscv

Signed-off-by: Ahmed Charles <me <AT> ahmedcharles.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
index fe9bd2aed2b..0f873521e8e 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2021-09-25 19:56 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2021-09-25 19:56 UTC (permalink / raw
  To: gentoo-commits

commit:     e28fa1a18031a92c79229e5025bdbcc0e6df1a88
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 25 19:55:17 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Sep 25 19:55:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e28fa1a1

sys-fs/mtd-utils: Stabilize 2.1.3 amd64, #814791

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
index 0f873521e8e..134245de947 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2021-09-26  5:01 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2021-09-26  5:01 UTC (permalink / raw
  To: gentoo-commits

commit:     d30a478a277afc482203b1296cad0eb2621b3d98
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 26 05:00:17 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 26 05:00:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d30a478a

sys-fs/mtd-utils: Stabilize 2.1.3 x86, #814791

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
index 134245de947..56f823c254e 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2021-09-26  7:28 Agostino Sarubbo
  0 siblings, 0 replies; 65+ messages in thread
From: Agostino Sarubbo @ 2021-09-26  7:28 UTC (permalink / raw
  To: gentoo-commits

commit:     10683e1847f0a312156b1527b5727e3f9252afc1
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 26 07:28:17 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Sep 26 07:28:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10683e18

sys-fs/mtd-utils: ppc stable wrt bug #814791

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
index 56f823c254e..57e0dd007bb 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2021-09-30 18:18 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2021-09-30 18:18 UTC (permalink / raw
  To: gentoo-commits

commit:     3070e58768e2bc3ed857ec6fb83dcdac2091b97f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 30 18:17:27 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 30 18:17:27 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3070e587

sys-fs/mtd-utils: Stabilize 2.1.3 arm, #814791

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
index 57e0dd007bb..0cfd35235d4 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~arm64 ~mips ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2021-09-30 18:45 Jakov Smolić
  0 siblings, 0 replies; 65+ messages in thread
From: Jakov Smolić @ 2021-09-30 18:45 UTC (permalink / raw
  To: gentoo-commits

commit:     e2bebf5c065e98f66cc6737b448a49da4b9115e8
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 30 18:42:14 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Sep 30 18:45:05 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2bebf5c

sys-fs/mtd-utils: Remove old 2.1.2

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-fs/mtd-utils/Manifest               |  1 -
 sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild | 43 ---------------------------------
 2 files changed, 44 deletions(-)

diff --git a/sys-fs/mtd-utils/Manifest b/sys-fs/mtd-utils/Manifest
index 93bcf24082c..fcefde686ed 100644
--- a/sys-fs/mtd-utils/Manifest
+++ b/sys-fs/mtd-utils/Manifest
@@ -1,2 +1 @@
-DIST mtd-utils-2.1.2.tar.gz 380333 BLAKE2B 46cccf9cbe870f3415237deaa00a3ff57fbaacc019d4adc69e1ed516e752e58776ed5f53be0d46baef69dff8a0d90e1df5ca32a80ecbb620dd4bb0231f8c94dd SHA512 bd2d61d81f367a1d9f5345fa3985f5403e37fad1c1f811e2ab291b64339170514aa1fbceb89b78ba7a357f8cc3d7ade99796e9318c9624a40e2266fa0b3a9921
 DIST mtd-utils-2.1.3.tar.gz 383897 BLAKE2B 75aa73440101bb4bfc753b7e0b8371c141ea6b648aa3928c5c121f4976e01c37770d09da3683376891a9899d46c6ccbb7685b32c70f925e63916c552ae720037 SHA512 68efffda2077e14560b9c0b0e40ce8567aee21096c2a3e19bfb6febc3bc11d56c4ac5682728f08b6d215754e7cb39f956a3ced1f6bde3142f0d6ea8492b9bfda

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
deleted file mode 100644
index 88222eda3de..00000000000
--- a/sys-fs/mtd-utils/mtd-utils-2.1.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"
-HOMEPAGE="http://git.infradead.org/?p=mtd-utils.git;a=summary"
-SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~mips ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="+lzo xattr +zstd"
-
-DEPEND="!sys-fs/mtd
-	>=sys-apps/util-linux-2.16
-	sys-libs/zlib
-	lzo? ( dev-libs/lzo )
-	xattr? ( sys-apps/acl )
-	zstd? ( app-arch/zstd )"
-RDEPEND="${DEPEND}"
-BDEPEND="sys-devel/libtool"
-
-DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
-
-src_prepare() {
-	default
-	./autogen.sh || die
-}
-
-src_configure() {
-	econf \
-		$(use_with lzo) \
-		$(use_with xattr) \
-		$(use_with zstd)
-}
-
-src_install() {
-	default
-	doman \
-		jffsX-utils/mkfs.jffs2.1 \
-		ubi-utils/ubinize.8
-}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-01-05 16:12 Arthur Zamarin
  0 siblings, 0 replies; 65+ messages in thread
From: Arthur Zamarin @ 2022-01-05 16:12 UTC (permalink / raw
  To: gentoo-commits

commit:     a3c75b8b94db03a3f0836c78bbba91810afb914e
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Jan  5 16:12:45 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Jan  5 16:12:51 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3c75b8b

sys-fs/mtd-utils: Stabilize 2.1.3 ppc64, #830606

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
index 0cfd35235d4f..fa65393bfc09 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~mips ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-01-05 17:34 Arthur Zamarin
  0 siblings, 0 replies; 65+ messages in thread
From: Arthur Zamarin @ 2022-01-05 17:34 UTC (permalink / raw
  To: gentoo-commits

commit:     cdd5c3076b6b5dffb048c75b486b271c230c5df8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Jan  5 17:34:32 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Jan  5 17:34:39 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdd5c307

sys-fs/mtd-utils: Stabilize 2.1.3 arm64, #830606

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
index fa65393bfc09..2dc1f42896e1 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-01-12 17:46 Mike Frysinger
  0 siblings, 0 replies; 65+ messages in thread
From: Mike Frysinger @ 2022-01-12 17:46 UTC (permalink / raw
  To: gentoo-commits

commit:     9298a5fe7f878b2aafb7c9ce3ca5167158b1c3b7
Author:     Mike Frysinger <vapier <AT> chromium <DOT> org>
AuthorDate: Wed Jan 12 17:45:01 2022 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Wed Jan 12 17:46:21 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9298a5fe

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

Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>

 sys-fs/mtd-utils/Manifest               |  1 +
 sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild | 43 +++++++++++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/sys-fs/mtd-utils/Manifest b/sys-fs/mtd-utils/Manifest
index fcefde686ed7..4c3159f4b0a3 100644
--- a/sys-fs/mtd-utils/Manifest
+++ b/sys-fs/mtd-utils/Manifest
@@ -1 +1,2 @@
 DIST mtd-utils-2.1.3.tar.gz 383897 BLAKE2B 75aa73440101bb4bfc753b7e0b8371c141ea6b648aa3928c5c121f4976e01c37770d09da3683376891a9899d46c6ccbb7685b32c70f925e63916c552ae720037 SHA512 68efffda2077e14560b9c0b0e40ce8567aee21096c2a3e19bfb6febc3bc11d56c4ac5682728f08b6d215754e7cb39f956a3ced1f6bde3142f0d6ea8492b9bfda
+DIST mtd-utils-2.1.4.tar.bz2 630365 BLAKE2B 0538ecb90cd1215662cc8493d07e743e067218c1ae1ce09f40343a1ab13f5318d5e198d622a0d69acb2d677cdd3415880689c42afa41877730ff6a546c2b318f SHA512 4010a7b25cf32df2de02b8efbbe91c49789e3963618df7461e4bf64a8c588440c55f17c750a7d2df34367a732b0fefc487ee052129a5aa6a44a0023b714dface

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
new file mode 100644
index 000000000000..1edb27beec20
--- /dev/null
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"
+HOMEPAGE="https://git.infradead.org/?p=mtd-utils.git;a=summary"
+SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+IUSE="+lzo xattr +zstd"
+
+DEPEND="
+	sys-apps/util-linux:=
+	sys-libs/zlib:=
+	lzo? ( dev-libs/lzo:= )
+	xattr? ( sys-apps/acl )
+	zstd? ( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
+
+src_prepare() {
+	default
+	sed -i '/if test.*then/s: == : = :' configure || die
+}
+
+src_configure() {
+	econf \
+		$(use_with lzo) \
+		$(use_with xattr) \
+		$(use_with zstd)
+}
+
+src_install() {
+	default
+	doman \
+		jffsX-utils/mkfs.jffs2.1 \
+		ubi-utils/ubinize.8
+}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-02-11 19:07 Jakov Smolić
  0 siblings, 0 replies; 65+ messages in thread
From: Jakov Smolić @ 2022-02-11 19:07 UTC (permalink / raw
  To: gentoo-commits

commit:     18d45e60a6ff9177bd40012515e1869b5bfd999f
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 11 19:06:42 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 19:06:42 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18d45e60

sys-fs/mtd-utils: Stabilize 2.1.4 x86, #833133

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
index 1edb27beec20..a3098fc7b6ec 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-02-11 19:07 Jakov Smolić
  0 siblings, 0 replies; 65+ messages in thread
From: Jakov Smolić @ 2022-02-11 19:07 UTC (permalink / raw
  To: gentoo-commits

commit:     e8208abba4de7096fc601d1463f414d97141d1e2
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 11 19:06:54 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 19:06:54 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8208abb

sys-fs/mtd-utils: Stabilize 2.1.4 amd64, #833133

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
index a3098fc7b6ec..c90bf990808c 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-02-11 19:19 Arthur Zamarin
  0 siblings, 0 replies; 65+ messages in thread
From: Arthur Zamarin @ 2022-02-11 19:19 UTC (permalink / raw
  To: gentoo-commits

commit:     39752f293248e0237722477179f8224d636ad323
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 11 19:18:42 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 19:19:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39752f29

sys-fs/mtd-utils: Stabilize 2.1.4 ppc, #833133

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
index c90bf990808c..4f1cff2d5cd9 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-02-11 19:20 Jakov Smolić
  0 siblings, 0 replies; 65+ messages in thread
From: Jakov Smolić @ 2022-02-11 19:20 UTC (permalink / raw
  To: gentoo-commits

commit:     496651c52901f29c277d6dbb3547e1f5e1086f58
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 11 19:20:15 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 19:20:15 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=496651c5

sys-fs/mtd-utils: Stabilize 2.1.4 arm, #833133

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
index 4f1cff2d5cd9..8ea6520826d6 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~arm64 ~mips ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-02-11 19:20 Jakov Smolić
  0 siblings, 0 replies; 65+ messages in thread
From: Jakov Smolić @ 2022-02-11 19:20 UTC (permalink / raw
  To: gentoo-commits

commit:     2153c59b7a8994c619bbf8f0356e8c13feddc2ff
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 11 19:20:19 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 19:20:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2153c59b

sys-fs/mtd-utils: Stabilize 2.1.4 arm64, #833133

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
index 8ea6520826d6..ee957de43612 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~mips ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~mips ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-02-11 20:48 Arthur Zamarin
  0 siblings, 0 replies; 65+ messages in thread
From: Arthur Zamarin @ 2022-02-11 20:48 UTC (permalink / raw
  To: gentoo-commits

commit:     c4fbd796964065a189760a22451722d0943c4f82
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 11 20:48:13 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 20:48:13 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4fbd796

sys-fs/mtd-utils: Stabilize 2.1.4 ppc64, #833133

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
index ee957de43612..02bb5cdb71a0 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-02-11 22:45 Jakov Smolić
  0 siblings, 0 replies; 65+ messages in thread
From: Jakov Smolić @ 2022-02-11 22:45 UTC (permalink / raw
  To: gentoo-commits

commit:     ffed9fa8c0080e86d7316286f5f57bcbe93f604d
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 11 22:44:26 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 22:44:50 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffed9fa8

sys-fs/mtd-utils: drop 2.1.3

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-fs/mtd-utils/Manifest               |  1 -
 sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild | 46 ---------------------------------
 2 files changed, 47 deletions(-)

diff --git a/sys-fs/mtd-utils/Manifest b/sys-fs/mtd-utils/Manifest
index 4c3159f4b0a3..3cfa8f44043b 100644
--- a/sys-fs/mtd-utils/Manifest
+++ b/sys-fs/mtd-utils/Manifest
@@ -1,2 +1 @@
-DIST mtd-utils-2.1.3.tar.gz 383897 BLAKE2B 75aa73440101bb4bfc753b7e0b8371c141ea6b648aa3928c5c121f4976e01c37770d09da3683376891a9899d46c6ccbb7685b32c70f925e63916c552ae720037 SHA512 68efffda2077e14560b9c0b0e40ce8567aee21096c2a3e19bfb6febc3bc11d56c4ac5682728f08b6d215754e7cb39f956a3ced1f6bde3142f0d6ea8492b9bfda
 DIST mtd-utils-2.1.4.tar.bz2 630365 BLAKE2B 0538ecb90cd1215662cc8493d07e743e067218c1ae1ce09f40343a1ab13f5318d5e198d622a0d69acb2d677cdd3415880689c42afa41877730ff6a546c2b318f SHA512 4010a7b25cf32df2de02b8efbbe91c49789e3963618df7461e4bf64a8c588440c55f17c750a7d2df34367a732b0fefc487ee052129a5aa6a44a0023b714dface

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
deleted file mode 100644
index 2dc1f42896e1..000000000000
--- a/sys-fs/mtd-utils/mtd-utils-2.1.3.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"
-HOMEPAGE="http://git.infradead.org/?p=mtd-utils.git;a=summary"
-SRC_URI="https://github.com/sigma-star/mtd-utils/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
-IUSE="+lzo xattr +zstd"
-
-DEPEND="
-	sys-apps/util-linux
-	sys-libs/zlib
-	lzo? ( dev-libs/lzo )
-	xattr? ( sys-apps/acl )
-	zstd? ( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="sys-devel/libtool"
-
-DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		$(use_with lzo) \
-		$(use_with xattr) \
-		$(use_with zstd)
-}
-
-src_install() {
-	default
-	doman \
-		jffsX-utils/mkfs.jffs2.1 \
-		ubi-utils/ubinize.8
-}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-10-05  7:56 Arthur Zamarin
  0 siblings, 0 replies; 65+ messages in thread
From: Arthur Zamarin @ 2022-10-05  7:56 UTC (permalink / raw
  To: gentoo-commits

commit:     ff4733b809d5525851ca446ed936c992dab12f82
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  5 07:56:29 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Oct  5 07:56:29 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff4733b8

sys-fs/mtd-utils: Stabilize 2.1.4-r1 arm, #875209

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
index 615da14e7db2..041559d23dca 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-10-05  8:03 Arthur Zamarin
  0 siblings, 0 replies; 65+ messages in thread
From: Arthur Zamarin @ 2022-10-05  8:03 UTC (permalink / raw
  To: gentoo-commits

commit:     b7603885ac09ea1f7297620e78af2573ae5a8197
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  5 08:03:46 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Oct  5 08:03:46 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7603885

sys-fs/mtd-utils: Stabilize 2.1.4-r1 ppc, #875209

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
index 717a8497b5b4..df13a139d15f 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~mips ~ppc ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm ~arm64 ~mips ppc ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-10-05  8:03 Arthur Zamarin
  0 siblings, 0 replies; 65+ messages in thread
From: Arthur Zamarin @ 2022-10-05  8:03 UTC (permalink / raw
  To: gentoo-commits

commit:     0084e71453aa2b12d35822d228fbe1c548ceac56
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  5 08:03:45 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Oct  5 08:03:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0084e714

sys-fs/mtd-utils: Stabilize 2.1.4-r1 ppc64, #875209

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
index 041559d23dca..717a8497b5b4 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm ~arm64 ~mips ~ppc ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-10-05 11:35 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2022-10-05 11:35 UTC (permalink / raw
  To: gentoo-commits

commit:     21807fc175b05bdcd49227961eae17f7131aa155
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  5 11:33:53 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct  5 11:33:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21807fc1

sys-fs/mtd-utils: Stabilize 2.1.4-r1 amd64, #875209

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
index df13a139d15f..31e79f43e487 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~mips ppc ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-10-05 11:35 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2022-10-05 11:35 UTC (permalink / raw
  To: gentoo-commits

commit:     2fc009bc42f0f298d7f4c4ca5f0e2f34c96cbc7d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  5 11:34:53 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct  5 11:34:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fc009bc

sys-fs/mtd-utils: Stabilize 2.1.4-r1 x86, #875209

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
index 31e79f43e487..2baa426644f5 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-10-07  9:35 Agostino Sarubbo
  0 siblings, 0 replies; 65+ messages in thread
From: Agostino Sarubbo @ 2022-10-07  9:35 UTC (permalink / raw
  To: gentoo-commits

commit:     e70cb3d3d9b79f99ce66ae4f663847b84bc002c8
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Oct  7 09:35:20 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Oct  7 09:35:20 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e70cb3d3

sys-fs/mtd-utils: Stabilize 2.1.4-r1 arm64, #875209

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
index 2baa426644f5..3043d82ddf48 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-10-07 12:25 Jakov Smolić
  0 siblings, 0 replies; 65+ messages in thread
From: Jakov Smolić @ 2022-10-07 12:25 UTC (permalink / raw
  To: gentoo-commits

commit:     553eb1ae531c118d0f431634410289c132ca0224
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Oct  7 12:24:12 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Oct  7 12:24:12 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=553eb1ae

sys-fs/mtd-utils: drop 2.1.4

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild | 43 ---------------------------------
 1 file changed, 43 deletions(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
deleted file mode 100644
index 02bb5cdb71a0..000000000000
--- a/sys-fs/mtd-utils/mtd-utils-2.1.4.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-
-DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"
-HOMEPAGE="https://git.infradead.org/?p=mtd-utils.git;a=summary"
-SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
-IUSE="+lzo xattr +zstd"
-
-DEPEND="
-	sys-apps/util-linux:=
-	sys-libs/zlib:=
-	lzo? ( dev-libs/lzo:= )
-	xattr? ( sys-apps/acl )
-	zstd? ( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
-
-src_prepare() {
-	default
-	sed -i '/if test.*then/s: == : = :' configure || die
-}
-
-src_configure() {
-	econf \
-		$(use_with lzo) \
-		$(use_with xattr) \
-		$(use_with zstd)
-}
-
-src_install() {
-	default
-	doman \
-		jffsX-utils/mkfs.jffs2.1 \
-		ubi-utils/ubinize.8
-}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2022-10-07 18:52 Robin H. Johnson
  0 siblings, 0 replies; 65+ messages in thread
From: Robin H. Johnson @ 2022-10-07 18:52 UTC (permalink / raw
  To: gentoo-commits

commit:     d9dacb2e13ec979bc4eb445a00de6210cc54f90b
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Fri Oct  7 18:52:22 2022 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Fri Oct  7 18:52:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9dacb2e

sys-fs/mtd-utils: bump

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

 sys-fs/mtd-utils/Manifest               |  1 +
 sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild | 47 +++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/sys-fs/mtd-utils/Manifest b/sys-fs/mtd-utils/Manifest
index 3cfa8f44043b..c78afb52f29c 100644
--- a/sys-fs/mtd-utils/Manifest
+++ b/sys-fs/mtd-utils/Manifest
@@ -1 +1,2 @@
 DIST mtd-utils-2.1.4.tar.bz2 630365 BLAKE2B 0538ecb90cd1215662cc8493d07e743e067218c1ae1ce09f40343a1ab13f5318d5e198d622a0d69acb2d677cdd3415880689c42afa41877730ff6a546c2b318f SHA512 4010a7b25cf32df2de02b8efbbe91c49789e3963618df7461e4bf64a8c588440c55f17c750a7d2df34367a732b0fefc487ee052129a5aa6a44a0023b714dface
+DIST mtd-utils-2.1.5.tar.bz2 640309 BLAKE2B 94dfd37c10d2759c2fe0b2a7565e2a2aeafdfcaaba2ab9eddc5de2d77658f2702f25004609698585c170839f4e4b685e99004918f1e20cf1ced6925680215427 SHA512 625ee12baf38401c60f6c22d53ed649710417f8d03c6c2217cee890478954e22261428fbf11c713493fb6b7d452ed5af44b0dc9c58133f7b4f52e369353a62c3

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
new file mode 100644
index 000000000000..2a257eabb439
--- /dev/null
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"
+HOMEPAGE="https://git.infradead.org/?p=mtd-utils.git;a=summary"
+SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+IUSE="+lzo xattr +zstd"
+
+DEPEND="
+	sys-apps/util-linux:=
+	sys-libs/zlib:=
+	lzo? ( dev-libs/lzo:= )
+	xattr? ( sys-apps/acl )
+	zstd? ( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
+
+PATCHES=(
+	#"${FILESDIR}"/${P}-glibc-2.36.patch
+)
+
+src_prepare() {
+	default
+	sed -i '/if test.*then/s: == : = :' configure || die
+}
+
+src_configure() {
+	econf \
+		$(use_with lzo) \
+		$(use_with xattr) \
+		$(use_with zstd)
+}
+
+src_install() {
+	default
+	doman \
+		jffsX-utils/mkfs.jffs2.1 \
+		ubi-utils/ubinize.8
+}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-01-08 17:00 Arthur Zamarin
  0 siblings, 0 replies; 65+ messages in thread
From: Arthur Zamarin @ 2023-01-08 17:00 UTC (permalink / raw
  To: gentoo-commits

commit:     7b1831c6a3766008ff0e65500d046a62370e77f1
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  8 17:00:09 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jan  8 17:00:09 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b1831c6

sys-fs/mtd-utils: Stabilize 2.1.5 ppc, #890220

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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 2a257eabb439..01cdfb91d6f9 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="8"
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-01-08 17:00 Arthur Zamarin
  0 siblings, 0 replies; 65+ messages in thread
From: Arthur Zamarin @ 2023-01-08 17:00 UTC (permalink / raw
  To: gentoo-commits

commit:     7a172fa92904ea088ad789f9c37de0e1e3f7b0ef
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  8 17:00:11 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jan  8 17:00:11 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a172fa9

sys-fs/mtd-utils: Stabilize 2.1.5 ppc64, #890220

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 01cdfb91d6f9..fbe498a6be1f 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ppc ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-01-08 17:00 Arthur Zamarin
  0 siblings, 0 replies; 65+ messages in thread
From: Arthur Zamarin @ 2023-01-08 17:00 UTC (permalink / raw
  To: gentoo-commits

commit:     84ffa5f1d59a3afeb4c1d56457126280eba978b1
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  8 17:00:12 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jan  8 17:00:12 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84ffa5f1

sys-fs/mtd-utils: Stabilize 2.1.5 amd64, #890220

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 fbe498a6be1f..32474ce9f0b6 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ppc ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-01-08 17:00 Arthur Zamarin
  0 siblings, 0 replies; 65+ messages in thread
From: Arthur Zamarin @ 2023-01-08 17:00 UTC (permalink / raw
  To: gentoo-commits

commit:     a3458e89bffeebdf504c47f2aaf27da170e8625d
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  8 17:00:13 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jan  8 17:00:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3458e89

sys-fs/mtd-utils: Stabilize 2.1.5 x86, #890220

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 32474ce9f0b6..bd03490d855f 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-01-08 17:58 Arthur Zamarin
  0 siblings, 0 replies; 65+ messages in thread
From: Arthur Zamarin @ 2023-01-08 17:58 UTC (permalink / raw
  To: gentoo-commits

commit:     ba46ed111c3eb0cd88d6646a9754ecdfbc7bd38a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  8 17:57:46 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jan  8 17:57:46 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba46ed11

sys-fs/mtd-utils: Stabilize 2.1.5 arm64, #890220

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 bd03490d855f..4139c7294f25 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-01-09  1:54 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2023-01-09  1:54 UTC (permalink / raw
  To: gentoo-commits

commit:     c56bf93fcc5c577640fb7d6a6d7145ee648ae657
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  9 01:54:43 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan  9 01:54:47 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c56bf93f

sys-fs/mtd-utils: Stabilize 2.1.5 arm, #890220

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 4139c7294f25..b0f0145367f0 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo xattr +zstd"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-01-09  8:55 Jakov Smolić
  0 siblings, 0 replies; 65+ messages in thread
From: Jakov Smolić @ 2023-01-09  8:55 UTC (permalink / raw
  To: gentoo-commits

commit:     c71c9b5904b8fc9299f29e34e4a4ee1626e18408
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  9 08:55:14 2023 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Jan  9 08:55:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c71c9b59

sys-fs/mtd-utils: drop 2.1.4-r1

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-fs/mtd-utils/Manifest                  |  1 -
 sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild | 47 ------------------------------
 2 files changed, 48 deletions(-)

diff --git a/sys-fs/mtd-utils/Manifest b/sys-fs/mtd-utils/Manifest
index c78afb52f29c..02452b41193b 100644
--- a/sys-fs/mtd-utils/Manifest
+++ b/sys-fs/mtd-utils/Manifest
@@ -1,2 +1 @@
-DIST mtd-utils-2.1.4.tar.bz2 630365 BLAKE2B 0538ecb90cd1215662cc8493d07e743e067218c1ae1ce09f40343a1ab13f5318d5e198d622a0d69acb2d677cdd3415880689c42afa41877730ff6a546c2b318f SHA512 4010a7b25cf32df2de02b8efbbe91c49789e3963618df7461e4bf64a8c588440c55f17c750a7d2df34367a732b0fefc487ee052129a5aa6a44a0023b714dface
 DIST mtd-utils-2.1.5.tar.bz2 640309 BLAKE2B 94dfd37c10d2759c2fe0b2a7565e2a2aeafdfcaaba2ab9eddc5de2d77658f2702f25004609698585c170839f4e4b685e99004918f1e20cf1ced6925680215427 SHA512 625ee12baf38401c60f6c22d53ed649710417f8d03c6c2217cee890478954e22261428fbf11c713493fb6b7d452ed5af44b0dc9c58133f7b4f52e369353a62c3

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
deleted file mode 100644
index 3043d82ddf48..000000000000
--- a/sys-fs/mtd-utils/mtd-utils-2.1.4-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-
-DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"
-HOMEPAGE="https://git.infradead.org/?p=mtd-utils.git;a=summary"
-SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
-IUSE="+lzo xattr +zstd"
-
-DEPEND="
-	sys-apps/util-linux:=
-	sys-libs/zlib:=
-	lzo? ( dev-libs/lzo:= )
-	xattr? ( sys-apps/acl )
-	zstd? ( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
-
-PATCHES=(
-	"${FILESDIR}"/${P}-glibc-2.36.patch
-)
-
-src_prepare() {
-	default
-	sed -i '/if test.*then/s: == : = :' configure || die
-}
-
-src_configure() {
-	econf \
-		$(use_with lzo) \
-		$(use_with xattr) \
-		$(use_with zstd)
-}
-
-src_install() {
-	default
-	doman \
-		jffsX-utils/mkfs.jffs2.1 \
-		ubi-utils/ubinize.8
-}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-05-31  3:26 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2023-05-31  3:26 UTC (permalink / raw
  To: gentoo-commits

commit:     ad71749807549d721f6675fedd025978dc8d9201
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 31 03:24:26 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 31 03:24:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad717498

sys-fs/mtd-utils: wire up tests

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

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 b0f0145367f0..871721ed7e9b 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
@@ -10,7 +10,8 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
-IUSE="+lzo xattr +zstd"
+IUSE="+lzo test xattr +zstd"
+RESTRICT="!test? ( test )"
 
 DEPEND="
 	sys-apps/util-linux:=
@@ -20,6 +21,7 @@ DEPEND="
 	zstd? ( app-arch/zstd:= )
 "
 RDEPEND="${DEPEND}"
+BDEPEND="test? ( dev-util/cmocka )"
 
 DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
 
@@ -33,7 +35,10 @@ src_prepare() {
 }
 
 src_configure() {
+	# --enable-tests is for test programs that are installed
 	econf \
+		--enable-tests \
+		$(use_enable test unit-tests) \
 		$(use_with lzo) \
 		$(use_with xattr) \
 		$(use_with zstd)


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-09-01 17:11 Robin H. Johnson
  0 siblings, 0 replies; 65+ messages in thread
From: Robin H. Johnson @ 2023-09-01 17:11 UTC (permalink / raw
  To: gentoo-commits

commit:     0963d6e6393c52e12191aa19f0e307ef9b8499b8
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Fri Sep  1 17:08:45 2023 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Fri Sep  1 17:11:07 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0963d6e6

sys-fs/mtd-utils: bump

Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

 sys-fs/mtd-utils/Manifest               |  1 +
 sys-fs/mtd-utils/mtd-utils-2.1.6.ebuild | 52 +++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/sys-fs/mtd-utils/Manifest b/sys-fs/mtd-utils/Manifest
index 02452b41193b..0b207ac64f0d 100644
--- a/sys-fs/mtd-utils/Manifest
+++ b/sys-fs/mtd-utils/Manifest
@@ -1 +1,2 @@
 DIST mtd-utils-2.1.5.tar.bz2 640309 BLAKE2B 94dfd37c10d2759c2fe0b2a7565e2a2aeafdfcaaba2ab9eddc5de2d77658f2702f25004609698585c170839f4e4b685e99004918f1e20cf1ced6925680215427 SHA512 625ee12baf38401c60f6c22d53ed649710417f8d03c6c2217cee890478954e22261428fbf11c713493fb6b7d452ed5af44b0dc9c58133f7b4f52e369353a62c3
+DIST mtd-utils-2.1.6.tar.bz2 458333 BLAKE2B 799c19fbee1a690fa695edfa7e2ab1691e37fccb3f83685065e93b5ceea96e550eecdba4576b7d1a58a1b0ce06e3e551ee635fe9ed16521952fc85986f74ae6f SHA512 470902475b9e583d3a12801c1cab5492c671ec3ccf853cc3336c4e2b8771eac489d67b1414b9f1e827c42ebdba0fe2cdc681297477d67a796af04d81160442bd

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.6.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.6.ebuild
new file mode 100644
index 000000000000..840f5928e349
--- /dev/null
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.6.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"
+HOMEPAGE="https://git.infradead.org/?p=mtd-utils.git;a=summary"
+SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+IUSE="+lzo test xattr +zstd"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	sys-apps/util-linux:=
+	sys-libs/zlib:=
+	lzo? ( dev-libs/lzo:= )
+	xattr? ( sys-apps/acl )
+	zstd? ( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="test? ( dev-util/cmocka )"
+
+DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
+
+PATCHES=(
+	#"${FILESDIR}"/${P}-glibc-2.36.patch
+)
+
+src_prepare() {
+	default
+	sed -i '/if test.*then/s: == : = :' configure || die
+}
+
+src_configure() {
+	# --enable-tests is for test programs that are installed
+	econf \
+		--enable-tests \
+		$(use_enable test unit-tests) \
+		$(use_with lzo) \
+		$(use_with xattr) \
+		$(use_with zstd)
+}
+
+src_install() {
+	default
+	doman \
+		jffsX-utils/mkfs.jffs2.1 \
+		ubi-utils/ubinize.8
+}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-09-14  5:27 WANG Xuerui
  0 siblings, 0 replies; 65+ messages in thread
From: WANG Xuerui @ 2023-09-14  5:27 UTC (permalink / raw
  To: gentoo-commits

commit:     553e73f70567e84225a3b752a82b8a03766ceb1d
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 14 04:54:19 2023 +0000
Commit:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Thu Sep 14 05:15:40 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=553e73f7

sys-fs/mtd-utils: keyword 2.1.6 for ~loong

Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.6.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.6.ebuild
index 840f5928e349..a46029f67b9d 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.6.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.6.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo test xattr +zstd"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-09-25 16:52 Jakov Smolić
  0 siblings, 0 replies; 65+ messages in thread
From: Jakov Smolić @ 2023-09-25 16:52 UTC (permalink / raw
  To: gentoo-commits

commit:     08785a19704f0ef4da7002d901dd1f91badf09fe
Author:     Matoro Mahri <matoro <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Sun Sep 24 23:07:32 2023 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Sep 25 16:50:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08785a19

sys-fs/mtd-utils: support USE=ssl

Closes: https://bugs.gentoo.org/887275
Signed-off-by: Matoro Mahri <matoro <AT> users.noreply.github.com>
Signed-off-by: Allen Webb <allenwebb <AT> google.com>
Closes: https://github.com/gentoo/gentoo/pull/33041
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild | 54 ++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
new file mode 100644
index 000000000000..d3d01859a5d6
--- /dev/null
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"
+HOMEPAGE="https://git.infradead.org/?p=mtd-utils.git;a=summary"
+SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+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:= )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="test? ( dev-util/cmocka )"
+
+DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
+
+PATCHES=(
+	#"${FILESDIR}"/${P}-glibc-2.36.patch
+)
+
+src_prepare() {
+	default
+	sed -i '/if test.*then/s: == : = :' configure || die
+}
+
+src_configure() {
+	# --enable-tests is for test programs that are installed
+	econf \
+		--enable-tests \
+		$(use_enable test unit-tests) \
+		$(use_with lzo) \
+		$(use_with ssl ubifs ) \
+		$(use_with xattr) \
+		$(use_with zstd)
+}
+
+src_install() {
+	default
+	doman \
+		jffsX-utils/mkfs.jffs2.1 \
+		ubi-utils/ubinize.8
+}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-09-25 16:52 Jakov Smolić
  0 siblings, 0 replies; 65+ messages in thread
From: Jakov Smolić @ 2023-09-25 16:52 UTC (permalink / raw
  To: gentoo-commits

commit:     91169ebcef8ae5629011b03e2fee90600533c5f7
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 25 16:51:04 2023 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Sep 25 16:51:04 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91169ebc

sys-fs/mtd-utils: Remove commented patch

We're not applying the patch anyway so let's remove the commented lines
from the ebuild.
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
index d3d01859a5d6..53f7c4c09597 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
@@ -26,10 +26,6 @@ BDEPEND="test? ( dev-util/cmocka )"
 
 DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
 
-PATCHES=(
-	#"${FILESDIR}"/${P}-glibc-2.36.patch
-)
-
 src_prepare() {
 	default
 	sed -i '/if test.*then/s: == : = :' configure || die


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-10-03 22:39 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2023-10-03 22:39 UTC (permalink / raw
  To: gentoo-commits

commit:     2f8ec7df92b221f6aa970c571b95aff913a1ff39
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  3 22:39:30 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct  3 22:39:30 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f8ec7df

sys-fs/mtd-utils: Stabilize 2.1.6-r1 arm, #915146

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
index d7b7cfa69088..57525df2e590 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 arm arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo +ssl test xattr +zstd"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-10-03 22:39 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2023-10-03 22:39 UTC (permalink / raw
  To: gentoo-commits

commit:     208a5e98061b83db8951db041a65b1e56febbd2c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  3 22:39:29 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct  3 22:39:29 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=208a5e98

sys-fs/mtd-utils: Stabilize 2.1.6-r1 arm64, #915146

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
index 53f7c4c09597..d7b7cfa69088 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo +ssl test xattr +zstd"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-10-03 22:39 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2023-10-03 22:39 UTC (permalink / raw
  To: gentoo-commits

commit:     fb21eefa2a39044a0b3d30aef09f965a5f0b4547
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  3 22:39:31 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct  3 22:39:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb21eefa

sys-fs/mtd-utils: Stabilize 2.1.6-r1 amd64, #915146

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
index 57525df2e590..dcdf23738709 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo +ssl test xattr +zstd"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-10-03 22:45 Sam James
  0 siblings, 0 replies; 65+ messages in thread
From: Sam James @ 2023-10-03 22:45 UTC (permalink / raw
  To: gentoo-commits

commit:     4e0103c468f9b469dbce05fab11b3e67f7bf1b1a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  3 22:45:37 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct  3 22:45:37 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e0103c4

sys-fs/mtd-utils: Stabilize 2.1.6-r1 x86, #915146

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
index dcdf23738709..b432f655ee26 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~loong ~mips ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo +ssl test xattr +zstd"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-10-04 18:32 Arthur Zamarin
  0 siblings, 0 replies; 65+ messages in thread
From: Arthur Zamarin @ 2023-10-04 18:32 UTC (permalink / raw
  To: gentoo-commits

commit:     b2a6c77c5ddee60ff20f061ae2d3f723f1082001
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  4 18:32:49 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Oct  4 18:32:49 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2a6c77c

sys-fs/mtd-utils: Stabilize 2.1.6-r1 ppc, #915146

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
index b432f655ee26..6ed17723b63c 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ~mips ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~loong ~mips ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo +ssl test xattr +zstd"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-12-22 13:29 Arthur Zamarin
  0 siblings, 0 replies; 65+ messages in thread
From: Arthur Zamarin @ 2023-12-22 13:29 UTC (permalink / raw
  To: gentoo-commits

commit:     5a8bdc29f00bdd37a651a5c909f6628e84284a6c
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 22 13:28:54 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 22 13:28:54 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a8bdc29

sys-fs/mtd-utils: Stabilize 2.1.6-r1 ppc64, #915146

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
index 6ed17723b63c..437ded5330bf 100644
--- a/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.6-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ~mips ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~loong ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="+lzo +ssl test xattr +zstd"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-12-23 18:45 Jakov Smolić
  0 siblings, 0 replies; 65+ messages in thread
From: Jakov Smolić @ 2023-12-23 18:45 UTC (permalink / raw
  To: gentoo-commits

commit:     195557167ebebfc09f88b18d377795bfa94867a1
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 23 18:43:48 2023 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Dec 23 18:45:25 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19555716

sys-fs/mtd-utils: drop 2.1.5, 2.1.6

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-fs/mtd-utils/Manifest               |  1 -
 sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild | 52 ---------------------------------
 sys-fs/mtd-utils/mtd-utils-2.1.6.ebuild | 52 ---------------------------------
 3 files changed, 105 deletions(-)

diff --git a/sys-fs/mtd-utils/Manifest b/sys-fs/mtd-utils/Manifest
index 0b207ac64f0d..4719fe93cf9b 100644
--- a/sys-fs/mtd-utils/Manifest
+++ b/sys-fs/mtd-utils/Manifest
@@ -1,2 +1 @@
-DIST mtd-utils-2.1.5.tar.bz2 640309 BLAKE2B 94dfd37c10d2759c2fe0b2a7565e2a2aeafdfcaaba2ab9eddc5de2d77658f2702f25004609698585c170839f4e4b685e99004918f1e20cf1ced6925680215427 SHA512 625ee12baf38401c60f6c22d53ed649710417f8d03c6c2217cee890478954e22261428fbf11c713493fb6b7d452ed5af44b0dc9c58133f7b4f52e369353a62c3
 DIST mtd-utils-2.1.6.tar.bz2 458333 BLAKE2B 799c19fbee1a690fa695edfa7e2ab1691e37fccb3f83685065e93b5ceea96e550eecdba4576b7d1a58a1b0ce06e3e551ee635fe9ed16521952fc85986f74ae6f SHA512 470902475b9e583d3a12801c1cab5492c671ec3ccf853cc3336c4e2b8771eac489d67b1414b9f1e827c42ebdba0fe2cdc681297477d67a796af04d81160442bd

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.5.ebuild
deleted file mode 100644
index 871721ed7e9b..000000000000
--- a/sys-fs/mtd-utils/mtd-utils-2.1.5.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"
-
-DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"
-HOMEPAGE="https://git.infradead.org/?p=mtd-utils.git;a=summary"
-SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
-IUSE="+lzo test xattr +zstd"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	sys-apps/util-linux:=
-	sys-libs/zlib:=
-	lzo? ( dev-libs/lzo:= )
-	xattr? ( sys-apps/acl )
-	zstd? ( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="test? ( dev-util/cmocka )"
-
-DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
-
-PATCHES=(
-	#"${FILESDIR}"/${P}-glibc-2.36.patch
-)
-
-src_prepare() {
-	default
-	sed -i '/if test.*then/s: == : = :' configure || die
-}
-
-src_configure() {
-	# --enable-tests is for test programs that are installed
-	econf \
-		--enable-tests \
-		$(use_enable test unit-tests) \
-		$(use_with lzo) \
-		$(use_with xattr) \
-		$(use_with zstd)
-}
-
-src_install() {
-	default
-	doman \
-		jffsX-utils/mkfs.jffs2.1 \
-		ubi-utils/ubinize.8
-}

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.6.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.6.ebuild
deleted file mode 100644
index a46029f67b9d..000000000000
--- a/sys-fs/mtd-utils/mtd-utils-2.1.6.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"
-
-DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"
-HOMEPAGE="https://git.infradead.org/?p=mtd-utils.git;a=summary"
-SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
-IUSE="+lzo test xattr +zstd"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	sys-apps/util-linux:=
-	sys-libs/zlib:=
-	lzo? ( dev-libs/lzo:= )
-	xattr? ( sys-apps/acl )
-	zstd? ( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="test? ( dev-util/cmocka )"
-
-DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
-
-PATCHES=(
-	#"${FILESDIR}"/${P}-glibc-2.36.patch
-)
-
-src_prepare() {
-	default
-	sed -i '/if test.*then/s: == : = :' configure || die
-}
-
-src_configure() {
-	# --enable-tests is for test programs that are installed
-	econf \
-		--enable-tests \
-		$(use_enable test unit-tests) \
-		$(use_with lzo) \
-		$(use_with xattr) \
-		$(use_with zstd)
-}
-
-src_install() {
-	default
-	doman \
-		jffsX-utils/mkfs.jffs2.1 \
-		ubi-utils/ubinize.8
-}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-12-23 18:45 Jakov Smolić
  0 siblings, 0 replies; 65+ messages in thread
From: Jakov Smolić @ 2023-12-23 18:45 UTC (permalink / raw
  To: gentoo-commits

commit:     22a7d08735e68f4f7bb6950a93af23553b6285d1
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 23 18:44:07 2023 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Dec 23 18:45:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22a7d087

sys-fs/mtd-utils: Remove myself from maintainers

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 sys-fs/mtd-utils/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/sys-fs/mtd-utils/metadata.xml b/sys-fs/mtd-utils/metadata.xml
index f1a55df93e29..85989de1c9ac 100644
--- a/sys-fs/mtd-utils/metadata.xml
+++ b/sys-fs/mtd-utils/metadata.xml
@@ -5,10 +5,6 @@
     <email>robbat2@gentoo.org</email>
     <name>Robin H. Johnson</name>
   </maintainer>
-  <maintainer type="person">
-    <email>jsmolic@gentoo.org</email>
-    <name>Jakov Smolić</name>
-  </maintainer>
   <maintainer type="project">
     <email>embedded@gentoo.org</email>
     <name>Embedded Gentoo</name>


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtd-utils/
@ 2023-12-31  2:45 Conrad Kostecki
  0 siblings, 0 replies; 65+ messages in thread
From: Conrad Kostecki @ 2023-12-31  2:45 UTC (permalink / raw
  To: gentoo-commits

commit:     d539f9db1a52840e4c09c28386e865ada9f3e078
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Thu Dec 28 20:40:56 2023 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Dec 31 02:40:44 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d539f9db

sys-fs/mtd-utils: fix calling ar directly, bug #913610

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>

Closes: https://bugs.gentoo.org/913610
Closes: https://github.com/gentoo/gentoo/pull/34525
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 sys-fs/mtd-utils/mtd-utils-2.1.6-r2.ebuild | 58 ++++++++++++++++++++++++++++++
 1 file changed, 58 insertions(+)

diff --git a/sys-fs/mtd-utils/mtd-utils-2.1.6-r2.ebuild b/sys-fs/mtd-utils/mtd-utils-2.1.6-r2.ebuild
new file mode 100644
index 000000000000..b3cd6fa4e221
--- /dev/null
+++ b/sys-fs/mtd-utils/mtd-utils-2.1.6-r2.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"
+HOMEPAGE="https://git.infradead.org/?p=mtd-utils.git;a=summary"
+SRC_URI="https://infraroot.at/pub/mtd/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+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:= )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="test? ( dev-util/cmocka )"
+
+DOCS=( jffsX-utils/device_table.txt ubifs-utils/mkfs.ubifs/README )
+
+src_prepare() {
+	default
+	sed -i '/if test.*then/s: == : = :' configure || die
+}
+
+src_configure() {
+	# --enable-tests is for test programs that are installed
+	local myeconfargs=(
+		--enable-tests
+		$(use_enable test unit-tests)
+		$(use_with lzo)
+		$(use_with ssl ubifs)
+		$(use_with xattr)
+		$(use_with zstd)
+	)
+	econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+	emake AR="$(tc-getAR)"
+}
+
+src_install() {
+	default
+	doman \
+		jffsX-utils/mkfs.jffs2.1 \
+		ubi-utils/ubinize.8
+}


^ permalink raw reply related	[flat|nested] 65+ messages in thread

end of thread, other threads:[~2023-12-31  2:45 UTC | newest]

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox