public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-fs/ntfs3g: ChangeLog ntfs3g-2010.3.6.ebuild
@ 2010-03-09 17:35 Patrick McLean (chutzpah)
  0 siblings, 0 replies; 5+ messages in thread
From: Patrick McLean (chutzpah) @ 2010-03-09 17:35 UTC (permalink / raw
  To: gentoo-commits

chutzpah    10/03/09 17:35:48

  Modified:             ChangeLog
  Added:                ntfs3g-2010.3.6.ebuild
  Log:
  Version bump (bug #308493).
  (Portage version: 2.1.8.2/cvs/Linux x86_64)

Revision  Changes    Path
1.91                 sys-fs/ntfs3g/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ChangeLog?r1=1.90&r2=1.91

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog	10 Feb 2010 03:48:10 -0000	1.90
+++ ChangeLog	9 Mar 2010 17:35:47 -0000	1.91
@@ -1,6 +1,11 @@
 # ChangeLog for sys-fs/ntfs3g
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.90 2010/02/10 03:48:10 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.91 2010/03/09 17:35:47 chutzpah Exp $
+
+*ntfs3g-2010.3.6 (09 Mar 2010)
+
+  09 Mar 2010; Patrick McLean <chutzpah@gentoo.org> +ntfs3g-2010.3.6.ebuild:
+  Version bump (bug #308493).
 
   10 Feb 2010; Joseph Jezak <josejx@gentoo.org> ntfs3g-2009.11.14.ebuild:
   Marked ppc/ppc64 stable for bug #300126.



1.1                  sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild?rev=1.1&content-type=text/plain

Index: ntfs3g-2010.3.6.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild,v 1.1 2010/03/09 17:35:47 chutzpah Exp $

EAPI=2

MY_PN="${PN/3g/-3g}"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="Open source read-write NTFS driver that runs under FUSE"
HOMEPAGE="http://www.tuxera.com/community/ntfs-3g-download/"
SRC_URI="http://tuxera.com/opensource/${MY_P}.tgz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="acl debug hal suid +external-fuse"

RDEPEND=">=sys-fs/fuse-2.6.0
	hal? ( sys-apps/hal )"
DEPEND="${RDEPEND}
	sys-apps/attr"

S="${WORKDIR}/${MY_P}"

src_configure() {
	econf \
		--docdir="/usr/share/doc/${PF}" \
		--enable-ldscript \
		--disable-ldconfig \
		--with-fuse=$(use external-fuse && echo external || echo internal) \
		$(use_enable acl posix-acls) \
		$(use_enable debug)
}

src_install() {
	emake DESTDIR="${D}" install || die "install failed"

	prepalldocs || die "prepalldocs failed"
	dodoc AUTHORS ChangeLog CREDITS

	use suid && fperms u+s "/bin/${MY_PN}"

	if use hal; then
		insinto /etc/hal/fdi/policy/
		newins "${FILESDIR}/10-ntfs3g.fdi.2009-r1" "10-ntfs3g.fdi"
	fi
}

pkg_postinst() {
	if use suid; then
		ewarn
		ewarn "You have chosen to install ${PN} with the binary setuid root. This"
		ewarn "means that if there any undetected vulnerabilities in the binary,"
		ewarn "then local users may be able to gain root access on your machine."
		ewarn
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/ntfs3g: ChangeLog ntfs3g-2010.3.6.ebuild
@ 2010-03-09 17:57 Patrick McLean (chutzpah)
  0 siblings, 0 replies; 5+ messages in thread
From: Patrick McLean (chutzpah) @ 2010-03-09 17:57 UTC (permalink / raw
  To: gentoo-commits

chutzpah    10/03/09 17:57:09

  Modified:             ChangeLog ntfs3g-2010.3.6.ebuild
  Log:
  Version bump (bug #308493), fix pulling in of sys-fs/fuse if external-fuse is turned off (bug #282408).
  (Portage version: 2.1.8.2/cvs/Linux x86_64)

Revision  Changes    Path
1.92                 sys-fs/ntfs3g/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ChangeLog?rev=1.92&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ChangeLog?rev=1.92&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ChangeLog?r1=1.91&r2=1.92

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog	9 Mar 2010 17:35:47 -0000	1.91
+++ ChangeLog	9 Mar 2010 17:57:08 -0000	1.92
@@ -1,6 +1,10 @@
 # ChangeLog for sys-fs/ntfs3g
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.91 2010/03/09 17:35:47 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.92 2010/03/09 17:57:08 chutzpah Exp $
+
+  09 Mar 2010; Patrick McLean <chutzpah@gentoo.org> ntfs3g-2010.3.6.ebuild:
+  Version bump (bug #308493), fix pulling in of sys-fs/fuse if external-fuse
+  is turned off (bug #282408).
 
 *ntfs3g-2010.3.6 (09 Mar 2010)
 



1.2                  sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild?r1=1.1&r2=1.2

Index: ntfs3g-2010.3.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ntfs3g-2010.3.6.ebuild	9 Mar 2010 17:35:47 -0000	1.1
+++ ntfs3g-2010.3.6.ebuild	9 Mar 2010 17:57:08 -0000	1.2
@@ -1,8 +1,9 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild,v 1.1 2010/03/09 17:35:47 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild,v 1.2 2010/03/09 17:57:08 chutzpah Exp $
 
 EAPI=2
+inherit linux-info
 
 MY_PN="${PN/3g/-3g}"
 MY_P="${MY_PN}-${PV}"
@@ -16,13 +17,24 @@
 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="acl debug hal suid +external-fuse"
 
-RDEPEND=">=sys-fs/fuse-2.6.0
+RDEPEND="external-fuse? ( >=sys-fs/fuse-2.6.0 )
 	hal? ( sys-apps/hal )"
 DEPEND="${RDEPEND}
 	sys-apps/attr"
 
 S="${WORKDIR}/${MY_P}"
 
+pkg_setup() {
+	if use external-fuse && use kernel_linux; then
+		if kernel_is lt 2 6 9; then
+			die "Your kernel is too old."
+		fi
+		CONFIG_CHECK="~FUSE_FS"
+		FUSE_FS_WARNING="You need to have FUSE module built to use ntfs-3g"
+		linux-info_pkg_setup
+	fi
+}
+
 src_configure() {
 	econf \
 		--docdir="/usr/share/doc/${PF}" \






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/ntfs3g: ChangeLog ntfs3g-2010.3.6.ebuild
@ 2010-07-20  8:34 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 5+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-07-20  8:34 UTC (permalink / raw
  To: gentoo-commits

fauli       10/07/20 08:34:01

  Modified:             ChangeLog ntfs3g-2010.3.6.ebuild
  Log:
  stable x86, bug 328171
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.100                sys-fs/ntfs3g/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog	19 Jul 2010 16:43:57 -0000	1.99
+++ ChangeLog	20 Jul 2010 08:34:01 -0000	1.100
@@ -1,6 +1,10 @@
 # ChangeLog for sys-fs/ntfs3g
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.99 2010/07/19 16:43:57 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.100 2010/07/20 08:34:01 fauli Exp $
+
+  20 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
+  ntfs3g-2010.3.6.ebuild:
+  stable x86, bug 328171
 
 *ntfs3g-2010.5.22 (19 Jul 2010)
 



1.4                  sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild

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

Index: ntfs3g-2010.3.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ntfs3g-2010.3.6.ebuild	5 May 2010 02:36:40 -0000	1.3
+++ ntfs3g-2010.3.6.ebuild	20 Jul 2010 08:34:01 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild,v 1.3 2010/05/05 02:36:40 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild,v 1.4 2010/07/20 08:34:01 fauli Exp $
 
 EAPI=2
 inherit linux-info
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc x86"
 IUSE="acl debug hal suid udev +external-fuse"
 
 RDEPEND="external-fuse? ( >=sys-fs/fuse-2.6.0 )






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/ntfs3g: ChangeLog ntfs3g-2010.3.6.ebuild
@ 2010-07-23  9:25 Peter Volkov (pva)
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Volkov (pva) @ 2010-07-23  9:25 UTC (permalink / raw
  To: gentoo-commits

pva         10/07/23 09:25:39

  Modified:             ChangeLog ntfs3g-2010.3.6.ebuild
  Log:
  amd64 stable, bug 328171
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.101                sys-fs/ntfs3g/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog	20 Jul 2010 08:34:01 -0000	1.100
+++ ChangeLog	23 Jul 2010 09:25:39 -0000	1.101
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/ntfs3g
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.100 2010/07/20 08:34:01 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.101 2010/07/23 09:25:39 pva Exp $
+
+  23 Jul 2010; Peter Volkov <pva@gentoo.org> ntfs3g-2010.3.6.ebuild:
+  amd64 stable, bug 328171
 
   20 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
   ntfs3g-2010.3.6.ebuild:



1.5                  sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild

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

Index: ntfs3g-2010.3.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ntfs3g-2010.3.6.ebuild	20 Jul 2010 08:34:01 -0000	1.4
+++ ntfs3g-2010.3.6.ebuild	23 Jul 2010 09:25:39 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild,v 1.4 2010/07/20 08:34:01 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild,v 1.5 2010/07/23 09:25:39 pva Exp $
 
 EAPI=2
 inherit linux-info
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86"
 IUSE="acl debug hal suid udev +external-fuse"
 
 RDEPEND="external-fuse? ( >=sys-fs/fuse-2.6.0 )






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

* [gentoo-commits] gentoo-x86 commit in sys-fs/ntfs3g: ChangeLog ntfs3g-2010.3.6.ebuild
@ 2010-08-13 13:54 Joseph Jezak (josejx)
  0 siblings, 0 replies; 5+ messages in thread
From: Joseph Jezak (josejx) @ 2010-08-13 13:54 UTC (permalink / raw
  To: gentoo-commits

josejx      10/08/13 13:54:54

  Modified:             ChangeLog ntfs3g-2010.3.6.ebuild
  Log:
  Marked ppc/ppc64 stable for bug #328171.
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.103                sys-fs/ntfs3g/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ChangeLog	10 Aug 2010 14:38:25 -0000	1.102
+++ ChangeLog	13 Aug 2010 13:54:54 -0000	1.103
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/ntfs3g
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.102 2010/08/10 14:38:25 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.103 2010/08/13 13:54:54 josejx Exp $
+
+  13 Aug 2010; Joseph Jezak <josejx@gentoo.org> ntfs3g-2010.3.6.ebuild:
+  Marked ppc/ppc64 stable for bug #328171.
 
 *ntfs3g-2010.8.8 (10 Aug 2010)
 



1.6                  sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild

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

Index: ntfs3g-2010.3.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ntfs3g-2010.3.6.ebuild	23 Jul 2010 09:25:39 -0000	1.5
+++ ntfs3g-2010.3.6.ebuild	13 Aug 2010 13:54:54 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild,v 1.5 2010/07/23 09:25:39 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2010.3.6.ebuild,v 1.6 2010/08/13 13:54:54 josejx Exp $
 
 EAPI=2
 inherit linux-info
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ppc ppc64 ~sparc x86"
 IUSE="acl debug hal suid udev +external-fuse"
 
 RDEPEND="external-fuse? ( >=sys-fs/fuse-2.6.0 )






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

end of thread, other threads:[~2010-08-13 13:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-09 17:35 [gentoo-commits] gentoo-x86 commit in sys-fs/ntfs3g: ChangeLog ntfs3g-2010.3.6.ebuild Patrick McLean (chutzpah)
  -- strict thread matches above, loose matches on Subject: below --
2010-03-09 17:57 Patrick McLean (chutzpah)
2010-07-20  8:34 Christian Faulhammer (fauli)
2010-07-23  9:25 Peter Volkov (pva)
2010-08-13 13:54 Joseph Jezak (josejx)

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