public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-fs/mtd-utils: mtd-utils-1.4.8.ebuild ChangeLog
@ 2011-11-19 21:10 Mike Frysinger (vapier)
  0 siblings, 0 replies; 5+ messages in thread
From: Mike Frysinger (vapier) @ 2011-11-19 21:10 UTC (permalink / raw
  To: gentoo-commits

vapier      11/11/19 21:10:01

  Modified:             ChangeLog
  Added:                mtd-utils-1.4.8.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha75/cvs/Linux x86_64)

Revision  Changes    Path
1.49                 sys-fs/mtd-utils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?r1=1.48&r2=1.49

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	19 Nov 2011 21:09:02 -0000	1.48
+++ ChangeLog	19 Nov 2011 21:10:01 -0000	1.49
@@ -1,6 +1,12 @@
 # ChangeLog for sys-fs/mtd-utils
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.48 2011/11/19 21:09:02 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.49 2011/11/19 21:10:01 vapier Exp $
+
+*mtd-utils-1.4.8 (19 Nov 2011)
+
+  19 Nov 2011; Mike Frysinger <vapier@gentoo.org> +mtd-utils-1.4.8.ebuild,
+  +files/mtd-utils-1.4.8-install.patch:
+  Version bump.
 
   07 Nov 2011; Mike Frysinger <vapier@gentoo.org> -mtd-utils-1.4.4.ebuild,
   -mtd-utils-20100718.ebuild, -files/mtd-utils-20100718-ubi-parallel.patch:



1.1                  sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?rev=1.1&content-type=text/plain

Index: mtd-utils-1.4.8.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild,v 1.1 2011/11/19 21:10:01 vapier Exp $

EAPI="3"

inherit eutils

if [[ ${PV} == "99999999" ]] ; then
	EGIT_REPO_URI="git://git.infradead.org/mtd-utils.git"

	inherit git
	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 ~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 )"

# Diff snapshots have diff versions encoded into their dirnames
S=${WORKDIR}/${PN}

src_prepare() {
	cd "${S}"*
	epatch "${FILESDIR}"/${P}-install.patch
}

makeopts() {
	echo CROSS=${CHOST}-
	use xattr || echo WITHOUT_XATTR=1
}

src_compile() {
	cd "${S}"*
	emake $(makeopts) || die
}

src_install() {
	cd "${S}"*
	emake $(makeopts) install DESTDIR="${ED}" || die
	dodoc *.txt
	newdoc mkfs.ubifs/README README.mkfs.ubifs
	# TODO: check ubi-utils for docs+scripts
}






^ permalink raw reply	[flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-fs/mtd-utils: mtd-utils-1.4.8.ebuild ChangeLog
@ 2012-03-28  7:43 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-03-28  7:43 UTC (permalink / raw
  To: gentoo-commits

ago         12/03/28 07:43:53

  Modified:             mtd-utils-1.4.8.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #404863
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?r1=1.1&r2=1.2

Index: mtd-utils-1.4.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mtd-utils-1.4.8.ebuild	19 Nov 2011 21:10:01 -0000	1.1
+++ mtd-utils-1.4.8.ebuild	28 Mar 2012 07:43:53 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild,v 1.1 2011/11/19 21:10:01 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild,v 1.2 2012/03/28 07:43:53 ago Exp $
 
 EAPI="3"
 
@@ -20,7 +20,7 @@
 		MY_PV="${PV}-02ae0aac87576d07202a62d11294ea55b56f450b"
 		SRC_URI="mirror://gentoo/${PN}-snapshot-${MY_PV}.tar.xz"
 	fi
-	KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86 ~x86-linux"
+	KEYWORDS="amd64 ~arm ~mips ~ppc ~x86 ~x86-linux"
 fi
 
 DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"



1.50                 sys-fs/mtd-utils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?r1=1.49&r2=1.50

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog	19 Nov 2011 21:10:01 -0000	1.49
+++ ChangeLog	28 Mar 2012 07:43:53 -0000	1.50
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/mtd-utils
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.49 2011/11/19 21:10:01 vapier Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.50 2012/03/28 07:43:53 ago Exp $
+
+  28 Mar 2012; Agostino Sarubbo <ago@gentoo.org> mtd-utils-1.4.8.ebuild:
+  Stable for amd64, wrt bug #404863
 
 *mtd-utils-1.4.8 (19 Nov 2011)
 






^ permalink raw reply	[flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-fs/mtd-utils: mtd-utils-1.4.8.ebuild ChangeLog
@ 2012-03-30 18:08 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2012-03-30 18:08 UTC (permalink / raw
  To: gentoo-commits

maekke      12/03/30 18:08:16

  Modified:             mtd-utils-1.4.8.ebuild ChangeLog
  Log:
  arm stable, bug #404863
  
  (Portage version: 2.1.10.51/cvs/Linux i686)

Revision  Changes    Path
1.3                  sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?r1=1.2&r2=1.3

Index: mtd-utils-1.4.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mtd-utils-1.4.8.ebuild	28 Mar 2012 07:43:53 -0000	1.2
+++ mtd-utils-1.4.8.ebuild	30 Mar 2012 18:08:16 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild,v 1.2 2012/03/28 07:43:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild,v 1.3 2012/03/30 18:08:16 maekke Exp $
 
 EAPI="3"
 
@@ -20,7 +20,7 @@
 		MY_PV="${PV}-02ae0aac87576d07202a62d11294ea55b56f450b"
 		SRC_URI="mirror://gentoo/${PN}-snapshot-${MY_PV}.tar.xz"
 	fi
-	KEYWORDS="amd64 ~arm ~mips ~ppc ~x86 ~x86-linux"
+	KEYWORDS="amd64 arm ~mips ~ppc ~x86 ~x86-linux"
 fi
 
 DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"



1.51                 sys-fs/mtd-utils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?rev=1.51&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?rev=1.51&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?r1=1.50&r2=1.51

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog	28 Mar 2012 07:43:53 -0000	1.50
+++ ChangeLog	30 Mar 2012 18:08:16 -0000	1.51
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/mtd-utils
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.50 2012/03/28 07:43:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.51 2012/03/30 18:08:16 maekke Exp $
+
+  30 Mar 2012; Markus Meier <maekke@gentoo.org> mtd-utils-1.4.8.ebuild:
+  arm stable, bug #404863
 
   28 Mar 2012; Agostino Sarubbo <ago@gentoo.org> mtd-utils-1.4.8.ebuild:
   Stable for amd64, wrt bug #404863






^ permalink raw reply	[flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-fs/mtd-utils: mtd-utils-1.4.8.ebuild ChangeLog
@ 2012-04-05  5:45 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-04-05  5:45 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/04/05 05:45:29

  Modified:             mtd-utils-1.4.8.ebuild ChangeLog
  Log:
  marked x86 per bug 404863
  
  (Portage version: 2.2.0_alpha99/cvs/Linux i686)

Revision  Changes    Path
1.4                  sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?r1=1.3&r2=1.4

Index: mtd-utils-1.4.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mtd-utils-1.4.8.ebuild	30 Mar 2012 18:08:16 -0000	1.3
+++ mtd-utils-1.4.8.ebuild	5 Apr 2012 05:45:29 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild,v 1.3 2012/03/30 18:08:16 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild,v 1.4 2012/04/05 05:45:29 jdhore Exp $
 
 EAPI="3"
 
@@ -20,7 +20,7 @@
 		MY_PV="${PV}-02ae0aac87576d07202a62d11294ea55b56f450b"
 		SRC_URI="mirror://gentoo/${PN}-snapshot-${MY_PV}.tar.xz"
 	fi
-	KEYWORDS="amd64 arm ~mips ~ppc ~x86 ~x86-linux"
+	KEYWORDS="amd64 arm ~mips ~ppc x86 ~x86-linux"
 fi
 
 DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"



1.52                 sys-fs/mtd-utils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?r1=1.51&r2=1.52

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog	30 Mar 2012 18:08:16 -0000	1.51
+++ ChangeLog	5 Apr 2012 05:45:29 -0000	1.52
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/mtd-utils
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.51 2012/03/30 18:08:16 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.52 2012/04/05 05:45:29 jdhore Exp $
+
+  05 Apr 2012; Jeff Horelick <jdhore@gentoo.org> mtd-utils-1.4.8.ebuild:
+  marked x86 per bug 404863
 
   30 Mar 2012; Markus Meier <maekke@gentoo.org> mtd-utils-1.4.8.ebuild:
   arm stable, bug #404863






^ permalink raw reply	[flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-fs/mtd-utils: mtd-utils-1.4.8.ebuild ChangeLog
@ 2012-04-17 16:02 Brent Baude (ranger)
  0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2012-04-17 16:02 UTC (permalink / raw
  To: gentoo-commits

ranger      12/04/17 16:02:42

  Modified:             mtd-utils-1.4.8.ebuild ChangeLog
  Log:
  Marking mtd-utils-1.4.8 ppc for bug 404863
  
  (Portage version: 2.1.10.11/cvs/Linux ppc64)

Revision  Changes    Path
1.6                  sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?r1=1.5&r2=1.6

Index: mtd-utils-1.4.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mtd-utils-1.4.8.ebuild	14 Apr 2012 19:13:41 -0000	1.5
+++ mtd-utils-1.4.8.ebuild	17 Apr 2012 16:02:42 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild,v 1.5 2012/04/14 19:13:41 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild,v 1.6 2012/04/17 16:02:42 ranger Exp $
 
 EAPI="3"
 
@@ -20,7 +20,7 @@
 		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)"



1.54                 sys-fs/mtd-utils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?r1=1.53&r2=1.54

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog	14 Apr 2012 19:13:41 -0000	1.53
+++ ChangeLog	17 Apr 2012 16:02:42 -0000	1.54
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/mtd-utils
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.53 2012/04/14 19:13:41 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.54 2012/04/17 16:02:42 ranger Exp $
+
+  17 Apr 2012; Brent Baude <ranger@gentoo.org> mtd-utils-1.4.8.ebuild:
+  Marking mtd-utils-1.4.8 ppc for bug 404863
 
   14 Apr 2012; Zac Medico <zmedico@gentoo.org> mtd-utils-1.4.8.ebuild,
   mtd-utils-99999999.ebuild:






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

end of thread, other threads:[~2012-04-17 16:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-19 21:10 [gentoo-commits] gentoo-x86 commit in sys-fs/mtd-utils: mtd-utils-1.4.8.ebuild ChangeLog Mike Frysinger (vapier)
  -- strict thread matches above, loose matches on Subject: below --
2012-03-28  7:43 Agostino Sarubbo (ago)
2012-03-30 18:08 Markus Meier (maekke)
2012-04-05  5:45 Jeff Horelick (jdhore)
2012-04-17 16:02 Brent Baude (ranger)

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