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

vapier      11/07/11 02:48:50

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

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	6 Apr 2011 20:03:20 -0000	1.37
+++ ChangeLog	11 Jul 2011 02:48:49 -0000	1.38
@@ -1,6 +1,11 @@
 # 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.37 2011/04/06 20:03:20 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.38 2011/07/11 02:48:49 vapier Exp $
+
+*mtd-utils-1.4.5 (11 Jul 2011)
+
+  11 Jul 2011; Mike Frysinger <vapier@gentoo.org> +mtd-utils-1.4.5.ebuild:
+  Version bump.
 
 *mtd-utils-1.4.4 (06 Apr 2011)
 



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

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

Index: mtd-utils-1.4.5.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.5.ebuild,v 1.1 2011/07/11 02:48:49 vapier Exp $

EAPI="3"

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

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="${D}" || 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: ChangeLog mtd-utils-1.4.5.ebuild
@ 2011-08-21  3:41 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-08-21  3:41 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/08/21 03:41:51

  Modified:             ChangeLog mtd-utils-1.4.5.ebuild
  Log:
  x86 stable wrt bug #379875
  
  (Portage version: 2.1.10.3/cvs/Linux i686)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	19 Aug 2011 15:29:35 -0000	1.41
+++ ChangeLog	21 Aug 2011 03:41:51 -0000	1.42
@@ -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.41 2011/08/19 15:29:35 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.42 2011/08/21 03:41:51 phajdan.jr Exp $
+
+  21 Aug 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> mtd-utils-1.4.5.ebuild:
+  x86 stable wrt bug #379875
 
 *mtd-utils-1.4.6 (19 Aug 2011)
 



1.4                  sys-fs/mtd-utils/mtd-utils-1.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.5.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.5.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.5.ebuild?r1=1.3&r2=1.4

Index: mtd-utils-1.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mtd-utils-1.4.5.ebuild	29 Jul 2011 08:31:56 -0000	1.3
+++ mtd-utils-1.4.5.ebuild	21 Aug 2011 03:41:51 -0000	1.4
@@ -1,6 +1,6 @@
 # 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.5.ebuild,v 1.3 2011/07/29 08:31:56 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.5.ebuild,v 1.4 2011/08/21 03:41:51 phajdan.jr Exp $
 
 EAPI="3"
 
@@ -18,7 +18,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)"






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/mtd-utils: ChangeLog mtd-utils-1.4.5.ebuild
@ 2011-08-22 14:31 Tony Vroon (chainsaw)
  0 siblings, 0 replies; 5+ messages in thread
From: Tony Vroon (chainsaw) @ 2011-08-22 14:31 UTC (permalink / raw
  To: gentoo-commits

chainsaw    11/08/22 14:31:40

  Modified:             ChangeLog mtd-utils-1.4.5.ebuild
  Log:
  Marked stable on AMD64 based on arch testing by Ian "idella4" Delaney & Agostino "ago" Sarubbo in bug #379875.
  
  (Portage version: 2.1.10.11/cvs/Linux x86_64)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog	21 Aug 2011 03:41:51 -0000	1.42
+++ ChangeLog	22 Aug 2011 14:31:40 -0000	1.43
@@ -1,6 +1,10 @@
 # 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.42 2011/08/21 03:41:51 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.43 2011/08/22 14:31:40 chainsaw Exp $
+
+  22 Aug 2011; Tony Vroon <chainsaw@gentoo.org> mtd-utils-1.4.5.ebuild:
+  Marked stable on AMD64 based on arch testing by Ian "idella4" Delaney &
+  Agostino "ago" Sarubbo in bug #379875.
 
   21 Aug 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> mtd-utils-1.4.5.ebuild:
   x86 stable wrt bug #379875



1.5                  sys-fs/mtd-utils/mtd-utils-1.4.5.ebuild

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

Index: mtd-utils-1.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mtd-utils-1.4.5.ebuild	21 Aug 2011 03:41:51 -0000	1.4
+++ mtd-utils-1.4.5.ebuild	22 Aug 2011 14:31:40 -0000	1.5
@@ -1,6 +1,6 @@
 # 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.5.ebuild,v 1.4 2011/08/21 03:41:51 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.5.ebuild,v 1.5 2011/08/22 14:31:40 chainsaw Exp $
 
 EAPI="3"
 
@@ -18,7 +18,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)"






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/mtd-utils: ChangeLog mtd-utils-1.4.5.ebuild
@ 2011-08-28 19:51 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2011-08-28 19:51 UTC (permalink / raw
  To: gentoo-commits

maekke      11/08/28 19:51:23

  Modified:             ChangeLog mtd-utils-1.4.5.ebuild
  Log:
  arm stable, bug #379875
  
  (Portage version: 2.1.10.11/cvs/Linux i686)

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	22 Aug 2011 14:31:40 -0000	1.43
+++ ChangeLog	28 Aug 2011 19:51:23 -0000	1.44
@@ -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.43 2011/08/22 14:31:40 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.44 2011/08/28 19:51:23 maekke Exp $
+
+  28 Aug 2011; Markus Meier <maekke@gentoo.org> mtd-utils-1.4.5.ebuild:
+  arm stable, bug #379875
 
   22 Aug 2011; Tony Vroon <chainsaw@gentoo.org> mtd-utils-1.4.5.ebuild:
   Marked stable on AMD64 based on arch testing by Ian "idella4" Delaney &



1.6                  sys-fs/mtd-utils/mtd-utils-1.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.5.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.5.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.5.ebuild?r1=1.5&r2=1.6

Index: mtd-utils-1.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mtd-utils-1.4.5.ebuild	22 Aug 2011 14:31:40 -0000	1.5
+++ mtd-utils-1.4.5.ebuild	28 Aug 2011 19:51:23 -0000	1.6
@@ -1,6 +1,6 @@
 # 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.5.ebuild,v 1.5 2011/08/22 14:31:40 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.5.ebuild,v 1.6 2011/08/28 19:51:23 maekke Exp $
 
 EAPI="3"
 
@@ -18,7 +18,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)"






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/mtd-utils: ChangeLog mtd-utils-1.4.5.ebuild
@ 2011-11-07  0:27 Brent Baude (ranger)
  0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2011-11-07  0:27 UTC (permalink / raw
  To: gentoo-commits

ranger      11/11/07 00:27:43

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

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

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	21 Sep 2011 08:18:22 -0000	1.45
+++ ChangeLog	7 Nov 2011 00:27:43 -0000	1.46
@@ -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.45 2011/09/21 08:18:22 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.46 2011/11/07 00:27:43 ranger Exp $
+
+  07 Nov 2011; Brent Baude <ranger@gentoo.org> mtd-utils-1.4.5.ebuild:
+  Marking mtd-utils-1.4.5 ppc for bug 379875
 
   21 Sep 2011; Michał Górny <mgorny@gentoo.org> mtd-utils-99999999.ebuild:
   Migrate to git-2.



1.7                  sys-fs/mtd-utils/mtd-utils-1.4.5.ebuild

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

Index: mtd-utils-1.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.5.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- mtd-utils-1.4.5.ebuild	28 Aug 2011 19:51:23 -0000	1.6
+++ mtd-utils-1.4.5.ebuild	7 Nov 2011 00:27:43 -0000	1.7
@@ -1,6 +1,6 @@
 # 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.5.ebuild,v 1.6 2011/08/28 19:51:23 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.5.ebuild,v 1.7 2011/11/07 00:27:43 ranger Exp $
 
 EAPI="3"
 
@@ -18,7 +18,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)"






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

end of thread, other threads:[~2011-11-07  0:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-21  3:41 [gentoo-commits] gentoo-x86 commit in sys-fs/mtd-utils: ChangeLog mtd-utils-1.4.5.ebuild PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2011-11-07  0:27 Brent Baude (ranger)
2011-08-28 19:51 Markus Meier (maekke)
2011-08-22 14:31 Tony Vroon (chainsaw)
2011-07-11  2:48 Mike Frysinger (vapier)

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