<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-1465</id>
	<title>Nabble - Gnu - Arch</title>
	<updated>2009-03-31T09:31:39Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Gnu---Arch-f1465.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Gnu---Arch-f1465.html" />
	<subtitle type="html">GNU arch is a revision control system, similar in purpose to tools such as CVS, SCCS, and Subversion. Gnu - Arch home is &lt;a href=&quot;http://www.gnu.org/software/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-22809503</id>
	<title>tla: file descriptor leak, causes panic when removing temporary directory</title>
	<published>2009-03-31T09:31:39Z</published>
	<updated>2009-03-31T09:31:39Z</updated>
	<author>
		<name>Sergio Gelato</name>
	</author>
	<content type="html">Package: tla
&lt;br&gt;Version: 1.3.5+dfsg-14
&lt;br&gt;Tags: patch
&lt;br&gt;&lt;br&gt;When computing a changeset (e.g. for the &amp;quot;tla changes --diffs&amp;quot; command), tla
&lt;br&gt;creates a temporary directory with a name that begins in ,,what-changed.
&lt;br&gt;This directory is cleaned up at the end of the operation.
&lt;br&gt;&lt;br&gt;Symbolic links are compared by writing the target of the link into a
&lt;br&gt;text file under that directory, then relying on usual &amp;quot;diff&amp;quot; behaviour.
&lt;br&gt;&lt;br&gt;Unfortunately, tla doesn't explicitly close this text file. As a result:
&lt;br&gt;(1) it uses more file descriptors than necessary;
&lt;br&gt;(2) on some filesystems (e.g., OpenAFS 1.4.8 and newer) tla dies with
&lt;br&gt;an I/O panic as the rmdir() operation on the parent directory fails with 
&lt;br&gt;ENOTEMPTY, even though the unlink() of the file itself succeeded, because 
&lt;br&gt;the file is still open.
&lt;br&gt;&lt;br&gt;The attached patch has been tested and gets rid of symptom (2). I expect
&lt;br&gt;it to help with (1) as well. The variables that hold the file descriptor
&lt;br&gt;numbers go out of scope shortly afterwards.
&lt;br&gt;&lt;br /&gt;#! /bin/sh /usr/share/dpatch/dpatch-run
&lt;br&gt;## 07-changeset-fd-leak.dpatch by Sergio Gelato &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22809503&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Sergio.Gelato@...&lt;/a&gt;&amp;gt;
&lt;br&gt;##
&lt;br&gt;## All lines beginning with `## DP:' are a description of the patch.
&lt;br&gt;## DP: Remember to close file descriptors before they go out of scope.
&lt;br&gt;&lt;br&gt;@DPATCH@
&lt;br&gt;diff -urNad tla-1.3.5+dfsg-14~/src/tla/libarch/make-changeset.c tla-1.3.5+dfsg-14/src/tla/libarch/make-changeset.c
&lt;br&gt;--- tla-1.3.5+dfsg-14~/src/tla/libarch/make-changeset.c	2006-07-20 08:34:40.000000000 +0200
&lt;br&gt;+++ tla-1.3.5+dfsg-14/src/tla/libarch/make-changeset.c	2009-03-31 00:19:39.449388785 +0200
&lt;br&gt;@@ -1485,6 +1485,9 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;safe_printfmt (orig_out_fd, &amp;quot;%s\n&amp;quot;, orig_target);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;safe_printfmt (mod_out_fd, &amp;quot;%s\n&amp;quot;, mod_target);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;safe_close (orig_out_fd);
&lt;br&gt;+	 &amp;nbsp; safe_close (mod_out_fd);
&lt;br&gt;+
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;lim_free (0, patch_basename_path);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;lim_free (0, orig_patch);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;lim_free (0, mod_patch);
&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22809503&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/tla%3A-file-descriptor-leak%2C-causes-panic-when-removing-temporary-directory-tp22809503p22809503.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20850103</id>
	<title>Re: please look into gittorrent</title>
	<published>2008-12-05T01:07:28Z</published>
	<updated>2008-12-05T01:07:28Z</updated>
	<author>
		<name>Peter Conrad</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Am Freitag, 5. Dezember 2008 schrieb Thomas Lord:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Arch does better than git in taxonimizing versioned objects and in its
&lt;br&gt;&amp;gt; management of coding history, branching, merging, etc.... but Arch
&lt;br&gt;&amp;gt; shares with gittorrent this idea of distributed, decentralized revision
&lt;br&gt;&amp;gt; control -- free software source code should be just sort of &amp;quot;floating&amp;quot;
&lt;br&gt;&amp;gt; on a meta-net, on the Internet, over a P2P layer -- just so. &amp;nbsp;This is a
&lt;br&gt;&amp;gt; political goal because of the &amp;quot;decentralization&amp;quot; part.
&lt;br&gt;&lt;br&gt;I tried something like that back in the days of &amp;quot;larch&amp;quot;.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.unix-ag.uni-kl.de/~conrad/Archives/DSDiF/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.unix-ag.uni-kl.de/~conrad/Archives/DSDiF/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Basically, the idea was to host larch archives within freenet.
&lt;br&gt;The proof-of-concept worked, but then tla was born, and somehow
&lt;br&gt;the project fell asleep...
&lt;br&gt;&lt;br&gt;The only thing that's really needed for hosting arch archives
&lt;br&gt;in freenet is an efficient way to mirror local archives into
&lt;br&gt;freenet and vice versa.
&lt;br&gt;&lt;br&gt;Bye,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Conrad &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tel: +49 6102 / 80 99 072
&lt;br&gt;[ t]ivano Software GmbH &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fax: +49 6102 / 80 99 071
&lt;br&gt;Bahnhofstr. 18 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.tivano.de/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tivano.de/&lt;/a&gt;&lt;br&gt;63263 Neu-Isenburg
&lt;br&gt;&lt;br&gt;Germany
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20850103&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/please-look-into-gittorrent-tp20845374p20850103.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20847274</id>
	<title>Re: please look into gittorrent</title>
	<published>2008-12-04T19:36:51Z</published>
	<updated>2008-12-04T19:36:51Z</updated>
	<author>
		<name>Matthew Hannigan</name>
	</author>
	<content type="html">lkcl's overview and related:
&lt;br&gt;&amp;nbsp; &amp;nbsp; GitTorrent, The Movie
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.advogato.org/article/994.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.advogato.org/article/994.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;On Thu, Dec 04, 2008 at 04:50:41PM -0800, Andy Tai wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://code.google.com/p/gittorrent/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/gittorrent/&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Thu, Dec 4, 2008 at 4:11 PM, Thomas Lord &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20847274&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lord@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Please look into gittorrent.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Andy Tai, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20847274&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;atai@...&lt;/a&gt;
&lt;/div&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Gnu-arch-users mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20847274&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; GNU arch home page:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20847274&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/please-look-into-gittorrent-tp20845374p20847274.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20845797</id>
	<title>Re: please look into gittorrent</title>
	<published>2008-12-04T16:50:41Z</published>
	<updated>2008-12-04T16:50:41Z</updated>
	<author>
		<name>Andy Tai</name>
	</author>
	<content type="html">&lt;a href=&quot;http://code.google.com/p/gittorrent/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/gittorrent/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Dec 4, 2008 at 4:11 PM, Thomas Lord &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20845797&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lord@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;Please look into gittorrent.&amp;nbsp; &lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Andy Tai, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20845797&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;atai@...&lt;/a&gt;&lt;br&gt;

&lt;br /&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20845797&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/please-look-into-gittorrent-tp20845374p20845797.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20845374</id>
	<title>please look into gittorrent</title>
	<published>2008-12-04T16:11:44Z</published>
	<updated>2008-12-04T16:11:44Z</updated>
	<author>
		<name>Thomas Lord</name>
	</author>
	<content type="html">Please look into gittorrent. &amp;nbsp;While there are still important (at least
&lt;br&gt;to my mind) gaps between git and Arch (things missing from the former
&lt;br&gt;that are at least pointed out by the latter) nevertheless gittorrent
&lt;br&gt;looks initially like an important development that helps narrow the gap.
&lt;br&gt;I wanted to go someplace similar with GNU Arch.
&lt;br&gt;&lt;br&gt;Arch does better than git in taxonimizing versioned objects and in its
&lt;br&gt;management of coding history, branching, merging, etc.... but Arch
&lt;br&gt;shares with gittorrent this idea of distributed, decentralized revision
&lt;br&gt;control -- free software source code should be just sort of &amp;quot;floating&amp;quot;
&lt;br&gt;on a meta-net, on the Internet, over a P2P layer -- just so. &amp;nbsp;This is a
&lt;br&gt;political goal because of the &amp;quot;decentralization&amp;quot; part.
&lt;br&gt;&lt;br&gt;We also have a lot of work to do on the economics of the emerging
&lt;br&gt;ecosystem of free software source code and because economics &amp;quot;wants&amp;quot; to
&lt;br&gt;be &amp;quot;transactional&amp;quot; -- and because of the nature of the natural unit of a
&lt;br&gt;&amp;quot;transaction&amp;quot; in software source code development and support -- the
&lt;br&gt;economics of how free software can be a career and the formality imposed
&lt;br&gt;by a global-scale, distributed, decentralized revision control system
&lt;br&gt;are closely intertwined. &amp;nbsp;Issuing a &amp;quot;commit&amp;quot; command should be an
&lt;br&gt;economically significant act -- a &amp;quot;transaction&amp;quot; in both senses of the
&lt;br&gt;word.
&lt;br&gt;&lt;br&gt;But that's a larger, future topic, for now. &amp;nbsp; For now: please do look
&lt;br&gt;into gittorrent and share your impressions. &amp;nbsp;Have they actually made
&lt;br&gt;progress on distributed, decentralized revision control? &amp;nbsp;Are their
&lt;br&gt;politics in order?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;-t
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20845374&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/please-look-into-gittorrent-tp20845374p20845374.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20696489</id>
	<title>Re: Inclusion of Bzr into the GNU system</title>
	<published>2008-11-26T00:14:45Z</published>
	<updated>2008-11-26T00:14:45Z</updated>
	<author>
		<name>Thomas Lord</name>
	</author>
	<content type="html">On Wed, 2008-11-26 at 13:18 +0900, Stephen J. Turnbull wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; So there's no longer room for proof-of-concept implementations, and
&lt;br&gt;&amp;gt; that's all that Arch ever was to Tom Lord, at least that's what he
&lt;br&gt;&amp;gt; said when he was busking for (financial) contributions. &amp;nbsp;He even
&lt;br&gt;&amp;gt; regrets many of the UI and feature concessions he made to the crew of
&lt;br&gt;&amp;gt; developers who later became the nucleus of the Bazaar project. &amp;nbsp;Making
&lt;br&gt;&amp;gt; Arch into a contender again will require a genius (or, to be specific,
&lt;br&gt;&amp;gt; Tom). &amp;nbsp;But Tom, too, has moved on I think. &amp;nbsp;While there are many ideas
&lt;br&gt;&amp;gt; in Arch that haven't made it into other VCSes even today, the
&lt;br&gt;&amp;gt; value-add to implementing them in Yet Another DVCS probably isn't that
&lt;br&gt;&amp;gt; high.
&lt;/div&gt;&lt;br&gt;&lt;br&gt;I have not &amp;quot;moved on&amp;quot; I've been slain. &amp;nbsp;I'm
&lt;br&gt;left with no career or career prospects, no
&lt;br&gt;savings, no resources to invest in much by way
&lt;br&gt;of software development and a damaged reputation
&lt;br&gt;as I enter my 44th year. &amp;nbsp;'Tis not so deep as a 
&lt;br&gt;well nor wide as a church door but 'tis enough;
&lt;br&gt;'twill serve.
&lt;br&gt;&lt;br&gt;I spend a decent amount of time, these days,
&lt;br&gt;observing a couple of trees and some birds
&lt;br&gt;that live nearby. &amp;nbsp;Oh, and, today I saw a cat
&lt;br&gt;do something surprising. &amp;nbsp;This appears to be about
&lt;br&gt;what's left for me.
&lt;br&gt;&lt;br&gt;Were it otherwise I might say:
&lt;br&gt;&lt;br&gt;I don't care about the &amp;quot;GNU project&amp;quot; per se,
&lt;br&gt;anymore, because I don't think that there is 
&lt;br&gt;any such project other than in name only. &amp;nbsp;There
&lt;br&gt;is no coherently expressed organizing set of goals.
&lt;br&gt;There is no true strategy. &amp;nbsp; There is no project
&lt;br&gt;there, no matter what it's called. &amp;nbsp; I'd argue
&lt;br&gt;that there once was a GNU project and that it
&lt;br&gt;was killed deliberately by Cygnus and Cygnus'
&lt;br&gt;friends although I must also give due credit 
&lt;br&gt;to RMS for folding like a house of cards under
&lt;br&gt;their pressure.
&lt;br&gt;&lt;br&gt;I do care about the progress of software in
&lt;br&gt;society. &amp;nbsp; I do think software freedom is important.
&lt;br&gt;I do think there is a social policy need for 
&lt;br&gt;something worthy of the name &amp;quot;GNU project&amp;quot; but
&lt;br&gt;as I say: no such thing exists. &amp;nbsp;It got killed
&lt;br&gt;and I would say it got killed to make way for 
&lt;br&gt;the Open Source Industrial Complex.
&lt;br&gt;&lt;br&gt;Were there a GNU project I think there is much
&lt;br&gt;from the Arch project that would be worth
&lt;br&gt;contemplating. &amp;nbsp; For example, much in Arch is
&lt;br&gt;applicable to the challenge of developing a 
&lt;br&gt;distributed, decentralized, transactional file
&lt;br&gt;system and I would also argue that such a bit of
&lt;br&gt;technology would help considerably to promote
&lt;br&gt;software freedom. &amp;nbsp;But there is no GNU project or
&lt;br&gt;anything like it and so why go into such matters?
&lt;br&gt;&lt;br&gt;I think that one thing that was and remains 
&lt;br&gt;under-appreciated about Arch is that it was
&lt;br&gt;an attack on the business models of the GNU/Linux
&lt;br&gt;vendors and the &amp;quot;large, well funded, famous 
&lt;br&gt;projects&amp;quot;. &amp;nbsp; It was a technological attack
&lt;br&gt;on the necessity of those firms in their present 
&lt;br&gt;form.
&lt;br&gt;&lt;br&gt;We, as a generally free-wheeling, crazy chaotic,
&lt;br&gt;catch-as-catch can community of free software
&lt;br&gt;developers *can* -- *without painful effort* -- 
&lt;br&gt;displace the need for big, centralized, lock-in
&lt;br&gt;GNU/Linux vendors and create stable distributions
&lt;br&gt;and support that is *more reliable* than the current
&lt;br&gt;vendors. &amp;nbsp;We can do all that and capture their 
&lt;br&gt;revenue streams into a process that democratically
&lt;br&gt;distributes the money among contributors. &amp;nbsp;We
&lt;br&gt;can do all of that in a decentralized way so that
&lt;br&gt;the arising of those replacement products is 
&lt;br&gt;an emergent property of our community practices --
&lt;br&gt;that is, we can &amp;quot;distribute control&amp;quot;.
&lt;br&gt;&lt;br&gt;Arch was *by design* a first step in that direction
&lt;br&gt;and so *naturally* it &amp;quot;had&amp;quot; to be rudely treated
&lt;br&gt;by capital. &amp;nbsp;Had Arch succeeded, Canonical, Red Hat,
&lt;br&gt;Linus, Collabnet, et al. would all have had to radically
&lt;br&gt;change business models sooner rather than later.
&lt;br&gt;&lt;br&gt;And so I am slain....
&lt;br&gt;&lt;br&gt;-t
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20696489&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Inclusion-of-Bzr-into-the-GNU-system-tp20691554p20696489.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20694516</id>
	<title>Inclusion of Bzr into the GNU system</title>
	<published>2008-11-25T20:15:27Z</published>
	<updated>2008-11-25T20:15:27Z</updated>
	<author>
		<name>Stephen J. Turnbull</name>
	</author>
	<content type="html">deadlyhead writes:
&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;gt; But Python, while ostensibly free software,
&lt;br&gt;&lt;br&gt;Even RMS admits that it is strictly freer than GPL software, but based
&lt;br&gt;on the long-term interests of the community he decided that GNU policy
&lt;br&gt;should be oriented to *freedom-preserving* software, and not merely
&lt;br&gt;free software. &amp;nbsp;For that reason he defined &amp;quot;software freedom&amp;quot; in such
&lt;br&gt;a way as to allow restrictive licenses like the GPL, and the GPL is
&lt;br&gt;(at least to a pretty good approximation) the most restrictive license
&lt;br&gt;that still qualifies as a free software license (even the GFDL does
&lt;br&gt;not, although some instances of the GFDL do).
&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;gt; has a rather weak license and in the past its community has shown a
&lt;br&gt;&amp;nbsp;&amp;gt; bit of hostility toward maintaining the Four Freedoms. &amp;nbsp;This
&lt;br&gt;&amp;nbsp;&amp;gt; greatly troubles me for a project that has been accepted as part of
&lt;br&gt;&amp;nbsp;&amp;gt; the GNU system.
&lt;br&gt;&lt;br&gt;I guess you refuse to use X11, Perl, TeX, Apache, OpenSSH, and the BSD
&lt;br&gt;shell utilities, then? &amp;nbsp;The GNU System has a long history of
&lt;br&gt;incorporating free software even though it it not copyleft.
&lt;br&gt;&lt;br&gt;The license is easy enough to fix. &amp;nbsp;You can create a GNU Python
&lt;br&gt;project which simply GPLs each release of Python as it comes out (I
&lt;br&gt;told you Python's license was freer than the GPL, and this is an
&lt;br&gt;important example of that freedom -- go ahead and try the reverse on
&lt;br&gt;FSF-owned software if you don't believe me), and test whether Bazaar
&lt;br&gt;works with the GPLed version. &amp;nbsp;If not, you complain to the Bazaar
&lt;br&gt;devs.
&lt;br&gt;&lt;br&gt;Also, it's a fundamental principle of copyleft theory that you
&lt;br&gt;separate the platform from the licensed work. &amp;nbsp;If people want to port
&lt;br&gt;Emacs to Windows, this is not a problem for the Emacs project as long
&lt;br&gt;as it doesn't provide features that make using Emacs on Windows more
&lt;br&gt;attractive than using Emacs on free platforms. &amp;nbsp;The rationale is that
&lt;br&gt;Emacs becomes no less free, and all else equal Emacs users on Windows
&lt;br&gt;will find it easier to migrate to free platforms because they don't
&lt;br&gt;have to worry about learning a new editor.
&lt;br&gt;&lt;br&gt;For those reasons, I rather doubt that the discussion of admitting
&lt;br&gt;Bazaar as a GNU project (which AFAIK is kept private and simply
&lt;br&gt;consists of getting the developers to sign a document saying they
&lt;br&gt;adhere to GNU goals) considered whether Python was GNUish or not.
&lt;br&gt;&lt;br&gt;It certainly did not come up at all in the discussion of a DVCS for
&lt;br&gt;Emacs, which RMS summarily terminated by deciding on Bazaar because it
&lt;br&gt;was an active GNU project. &amp;nbsp;This, despite the presence of advocates of
&lt;br&gt;GNU Arch---who actually have maintained a working Arch mirror of Emacs
&lt;br&gt;for years. &amp;nbsp;Even Tom Lord, who participated in that discussion, was
&lt;br&gt;unable to effectively argue for Arch.
&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;gt; This is just my perspective. &amp;nbsp;I'd like to see what others have to
&lt;br&gt;&amp;nbsp;&amp;gt; say for the inclusion of Bazaar as a GNU project, how that sits
&lt;br&gt;&amp;nbsp;&amp;gt; with the GNU Arch community, its benefits and detriments, and what
&lt;br&gt;&amp;nbsp;&amp;gt; that means for the future of Arch.
&lt;br&gt;&lt;br&gt;Sad to say, I don't think Arch has a future beyond maintaining
&lt;br&gt;existing projects that use Arch. &amp;nbsp;Distributed revision control has
&lt;br&gt;moved on. &amp;nbsp;Git provides performance and the most intuitive database
&lt;br&gt;schema, Mercurial gives almost as good performance and a convenient
&lt;br&gt;UI, Darcs is patch-oriented, has some nice UI features, and
&lt;br&gt;automatically computes optimal merge strategies for you, and Bazaar is
&lt;br&gt;a GNU project (acceptable to RMS as long-term host for his first-born
&lt;br&gt;child) for freedom-lovers.
&lt;br&gt;&lt;br&gt;So there's no longer room for proof-of-concept implementations, and
&lt;br&gt;that's all that Arch ever was to Tom Lord, at least that's what he
&lt;br&gt;said when he was busking for (financial) contributions. &amp;nbsp;He even
&lt;br&gt;regrets many of the UI and feature concessions he made to the crew of
&lt;br&gt;developers who later became the nucleus of the Bazaar project. &amp;nbsp;Making
&lt;br&gt;Arch into a contender again will require a genius (or, to be specific,
&lt;br&gt;Tom). &amp;nbsp;But Tom, too, has moved on I think. &amp;nbsp;While there are many ideas
&lt;br&gt;in Arch that haven't made it into other VCSes even today, the
&lt;br&gt;value-add to implementing them in Yet Another DVCS probably isn't that
&lt;br&gt;high.
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20694516&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Inclusion-of-Bzr-into-the-GNU-system-tp20691554p20694516.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20694114</id>
	<title>Re: Inclusion of Bzr into the GNU system</title>
	<published>2008-11-25T19:26:21Z</published>
	<updated>2008-11-25T19:26:21Z</updated>
	<author>
		<name>Stefan Monnier</name>
	</author>
	<content type="html">&amp;gt; This is just my perspective. &amp;nbsp;I'd like to see what others have to say for
&lt;br&gt;&amp;gt; the inclusion of Bazaar as a GNU project, how that sits with the GNU Arch
&lt;br&gt;&lt;br&gt;The fact that Bzr and Arch cover basically the same needs doesn't mean
&lt;br&gt;they can't both be GNU projects. &amp;nbsp;There is very little competition in
&lt;br&gt;the &amp;quot;race to be accepted as GNU project&amp;quot;.
&lt;br&gt;So to a large extent, the two are mostly unrelated. &amp;nbsp;If anything, Bzr's
&lt;br&gt;acceptance as a GNU package might be remotly linked to Arch's lack of
&lt;br&gt;development activity, but that's about it.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Stefan
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20694114&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Inclusion-of-Bzr-into-the-GNU-system-tp20691554p20694114.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20692118</id>
	<title>Re: Inclusion of Bzr into the GNU system</title>
	<published>2008-11-25T15:50:35Z</published>
	<updated>2008-11-25T15:50:35Z</updated>
	<author>
		<name>Andy Tai</name>
	</author>
	<content type="html">Hi, just some general comments:&lt;br&gt;&lt;br&gt;GNU Arch is not in active development, nor maintenance... (the latter my fault; the former, don&amp;#39;t blame me).&lt;br&gt;&lt;br&gt;Software&amp;#39;s value depends on many factors; resources behind active development are one of them...&amp;nbsp; in that regard bzr&amp;nbsp; beats&amp;nbsp; Arch&amp;nbsp; hands down.&amp;nbsp; There may be technical&amp;nbsp; viewpoints&amp;nbsp; favoring one or the other, but bzr also has one more thing superior to Arch: its (command line) user interface is much better due to the efforts spent on the design.&lt;br&gt;
&lt;br&gt;Python is free software; and how the Python inventor thinks of software freedom is not relevant because that is not connected to the developers of bzr. Not a reason to use or not to use Python. (I do not use Python myself)&lt;br&gt;
&lt;br&gt;Bzr is a GNU project; the issue of whether GNU should have accepted it is outside the scope of the GNU Arch community; frankly.&amp;nbsp; &lt;br&gt;&lt;br&gt;Arch is still a GNU project and contribution is welcome; and I welcome a better person to come along to take over the maintainership if such a hero exists.&lt;br&gt;
&lt;br&gt;Andy&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Nov 25, 2008 at 3:11 PM, deadlyhead &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20692118&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;deadlyhead@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
I&amp;#39;ve been sitting on this for a long time, but it&amp;#39;s been bothering me a bit and I need to get some others&amp;#39; perspectives on it.&lt;br&gt;
&lt;br&gt;
I&amp;#39;m a fan of GNU Arch. &amp;nbsp;Seriously. &amp;nbsp;I&amp;#39;m not a major software author at all, but I do have need of a revision control system, and of all that I&amp;#39;ve used, GNU Arch is the one that I really feel fits how I work. &amp;nbsp;The fact that it is distributed, that it uses forward patching, that it has a sane, usable interface and more make it ideally suited to my needs. &amp;nbsp;Most of all, it&amp;#39;s a GNU project, and thus I am ensured that in using it I retain my freedom.&lt;br&gt;

&lt;br&gt;
The fact that GNU Arch has a smaller user base than some revision systems has always been a bit of a downer to me, but has not deterred my use of it in my own projects. &amp;nbsp;When Bazaar forked, then rewrote, GNU Arch, I was fairly unimpressed, because potential users of Arch were then pulled over to Bzr. &amp;nbsp;I can&amp;#39;t fault either the Bazaar team nor the users; this is a freedom protected by free software. &amp;nbsp;I would have preferred to see those same efforts make there way into GNU Arch (though I have read of the reasons why they weren&amp;#39;t), but what really galls me is the means of developing Bazaar and the subsequent product.&lt;br&gt;

&lt;br&gt;
Bazaar is written in Python. &amp;nbsp;I&amp;#39;ve used Python, and though I personally don&amp;#39;t prefer it (I&amp;#39;m a Guile user), I see its merits and why so many programmers are drawn to it. &amp;nbsp;But Python, while ostensibly free software, has a rather weak license and in the past its community has shown a bit of hostility toward maintaining the Four Freedoms. &amp;nbsp;This greatly troubles me for a project that has been accepted as part of the GNU system. &amp;nbsp;I would like to have seen the deliberations over accepting Bazaar as a GNU project and know whether this issue was brought up.&lt;br&gt;

&lt;br&gt;
My personal wish would be to see the continued development of GNU Arch (1.x or 2, either works) as a GNU project. &amp;nbsp;I feel that these programs are much more in line with GNU philosophy and thus a better choice for the system. &amp;nbsp;I realize that the ``best&amp;#39;&amp;#39; way to go about this is to take an active role in the development of either piece of software, and I&amp;#39;d love to, though I feel barely confident in my abilities to do the software justice. &amp;nbsp;(I&amp;#39;m a passable C programmer at best. &amp;nbsp;Along with being an avid Guile user, my interests lie squarely with Ada programming and GNAT. &amp;nbsp;Talk about marginalizing my own project acceptance!) &amp;nbsp;I feel that it would be worthwhile to use all GNU-supported languages for GNU projects, and GNU Arch extended with Guile would be a worthy showpiece for GNU&amp;#39;s extension language as well. &amp;nbsp;Maybe I&amp;#39;m just a fanboy, but using GNU&amp;#39;s tools when working on a GNU project seems _right_ in so many ways.&lt;br&gt;

&lt;br&gt;
This is just my perspective. &amp;nbsp;I&amp;#39;d like to see what others have to say for the inclusion of Bazaar as a GNU project, how that sits with the GNU Arch community, its benefits and detriments, and what that means for the future of Arch. &amp;nbsp;I&amp;#39;m inclined to get involved with Arch if it&amp;#39;s active in any way still (but don&amp;#39;t think I could push start it if it&amp;#39;s stalled), &amp;nbsp;but due to my reservations with Bazaar, involvement in it, let alone use of it, is unlikely. &amp;nbsp;(It doesn&amp;#39;t even work on my Debian box! &amp;nbsp;WTFpython!?)&lt;br&gt;

&lt;br&gt;
Thanks for reading.&lt;br&gt;
&lt;br&gt;
-- deadlyhead&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
_______________________________________________&lt;br&gt;
Gnu-arch-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20692118&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
GNU arch home page:&lt;br&gt;
&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Andy Tai, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20692118&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;atai@...&lt;/a&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20692118&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Inclusion-of-Bzr-into-the-GNU-system-tp20691554p20692118.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20691554</id>
	<title>Inclusion of Bzr into the GNU system</title>
	<published>2008-11-25T15:11:18Z</published>
	<updated>2008-11-25T15:11:18Z</updated>
	<author>
		<name>Seth Brutzman</name>
	</author>
	<content type="html">I've been sitting on this for a long time, but it's been bothering me a 
&lt;br&gt;bit and I need to get some others' perspectives on it.
&lt;br&gt;&lt;br&gt;I'm a fan of GNU Arch. &amp;nbsp;Seriously. &amp;nbsp;I'm not a major software author at 
&lt;br&gt;all, but I do have need of a revision control system, and of all that 
&lt;br&gt;I've used, GNU Arch is the one that I really feel fits how I work. &amp;nbsp;The 
&lt;br&gt;fact that it is distributed, that it uses forward patching, that it has 
&lt;br&gt;a sane, usable interface and more make it ideally suited to my needs. &amp;nbsp;
&lt;br&gt;Most of all, it's a GNU project, and thus I am ensured that in using it 
&lt;br&gt;I retain my freedom.
&lt;br&gt;&lt;br&gt;The fact that GNU Arch has a smaller user base than some revision 
&lt;br&gt;systems has always been a bit of a downer to me, but has not deterred my 
&lt;br&gt;use of it in my own projects. &amp;nbsp;When Bazaar forked, then rewrote, GNU 
&lt;br&gt;Arch, I was fairly unimpressed, because potential users of Arch were 
&lt;br&gt;then pulled over to Bzr. &amp;nbsp;I can't fault either the Bazaar team nor the 
&lt;br&gt;users; this is a freedom protected by free software. &amp;nbsp;I would have 
&lt;br&gt;preferred to see those same efforts make there way into GNU Arch (though 
&lt;br&gt;I have read of the reasons why they weren't), but what really galls me 
&lt;br&gt;is the means of developing Bazaar and the subsequent product.
&lt;br&gt;&lt;br&gt;Bazaar is written in Python. &amp;nbsp;I've used Python, and though I personally 
&lt;br&gt;don't prefer it (I'm a Guile user), I see its merits and why so many 
&lt;br&gt;programmers are drawn to it. &amp;nbsp;But Python, while ostensibly free 
&lt;br&gt;software, has a rather weak license and in the past its community has 
&lt;br&gt;shown a bit of hostility toward maintaining the Four Freedoms. &amp;nbsp;This 
&lt;br&gt;greatly troubles me for a project that has been accepted as part of the 
&lt;br&gt;GNU system. &amp;nbsp;I would like to have seen the deliberations over accepting 
&lt;br&gt;Bazaar as a GNU project and know whether this issue was brought up.
&lt;br&gt;&lt;br&gt;My personal wish would be to see the continued development of GNU Arch 
&lt;br&gt;(1.x or 2, either works) as a GNU project. &amp;nbsp;I feel that these programs 
&lt;br&gt;are much more in line with GNU philosophy and thus a better choice for 
&lt;br&gt;the system. &amp;nbsp;I realize that the ``best'' way to go about this is to take 
&lt;br&gt;an active role in the development of either piece of software, and I'd 
&lt;br&gt;love to, though I feel barely confident in my abilities to do the 
&lt;br&gt;software justice. &amp;nbsp;(I'm a passable C programmer at best. &amp;nbsp;Along with 
&lt;br&gt;being an avid Guile user, my interests lie squarely with Ada programming 
&lt;br&gt;and GNAT. &amp;nbsp;Talk about marginalizing my own project acceptance!) &amp;nbsp;I feel 
&lt;br&gt;that it would be worthwhile to use all GNU-supported languages for GNU 
&lt;br&gt;projects, and GNU Arch extended with Guile would be a worthy showpiece 
&lt;br&gt;for GNU's extension language as well. &amp;nbsp;Maybe I'm just a fanboy, but 
&lt;br&gt;using GNU's tools when working on a GNU project seems _right_ in so many 
&lt;br&gt;ways.
&lt;br&gt;&lt;br&gt;This is just my perspective. &amp;nbsp;I'd like to see what others have to say 
&lt;br&gt;for the inclusion of Bazaar as a GNU project, how that sits with the GNU 
&lt;br&gt;Arch community, its benefits and detriments, and what that means for the 
&lt;br&gt;future of Arch. &amp;nbsp;I'm inclined to get involved with Arch if it's active 
&lt;br&gt;in any way still (but don't think I could push start it if it's 
&lt;br&gt;stalled), &amp;nbsp;but due to my reservations with Bazaar, involvement in it, 
&lt;br&gt;let alone use of it, is unlikely. &amp;nbsp;(It doesn't even work on my Debian 
&lt;br&gt;box! &amp;nbsp;WTFpython!?)
&lt;br&gt;&lt;br&gt;Thanks for reading.
&lt;br&gt;&lt;br&gt;-- deadlyhead
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20691554&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Inclusion-of-Bzr-into-the-GNU-system-tp20691554p20691554.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19471252</id>
	<title>[bug #11964] Bug in tla undo with file ids in {arch} directory</title>
	<published>2008-09-13T07:44:28Z</published>
	<updated>2008-09-13T07:44:28Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #1, bug #11964 (project gnu-arch):
&lt;br&gt;&lt;br&gt;All artists by Rock | MP3 Download | mp3ultima.com
&lt;br&gt;&lt;a href=&quot;http://mp3ultima.com/genres/genre332/Rock/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mp3ultima.com/genres/genre332/Rock/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?11964&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?11964&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19471252&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--11964--Bug-in-tla-undo-with-file-ids-in-%7Barch%7D-directory-tp19471252p19471252.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19266584</id>
	<title>Re: botched invariant pest</title>
	<published>2008-09-02T01:57:44Z</published>
	<updated>2008-09-02T01:57:44Z</updated>
	<author>
		<name>Peter Conrad</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Am Samstag, 30. August 2008 schrieb Ralf Juengling:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; In recent days I am experiencing the same error message again
&lt;br&gt;&amp;gt; and again, a message which does not reveal anything to me:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; * looking for &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19266584&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;juengling@...&lt;/a&gt;/lush--soc--1.4--patch-176 to compare
&lt;br&gt;&amp;gt; with * comparing to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19266584&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;juengling@...&lt;/a&gt;/lush--soc--1.4--patch-176
&lt;br&gt;&amp;gt; /u/juenglin/downloads/tla-1.3.5/src/tla/libarch/invent.c:982:botched
&lt;br&gt;&amp;gt; invariant
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;*a &amp;lt; *b
&lt;br&gt;&amp;gt; PANIC: exiting on botched invariant
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Whenever I run into this, the project tree becomes unusable and
&lt;br&gt;&amp;gt; I need to start a new one, find those modified files and copy
&lt;br&gt;&amp;gt; them over to the new project tree by hand.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; These error message are haunting me for a couple of days now
&lt;br&gt;&amp;gt; and have not been able to make out what might trigger them to
&lt;br&gt;&amp;gt; occur. I am working on my files, do a 'tla changes' once in a
&lt;br&gt;&amp;gt; while, and suddenly I see this error.
&lt;/div&gt;&lt;br&gt;AFAICS this happens when tla compares path names that should be
&lt;br&gt;in lexical order but aren't. At first glance, the reason for this 
&lt;br&gt;could be that the list of path names is sorted as t_uchar, but
&lt;br&gt;the botched invariant compares char *.
&lt;br&gt;&lt;br&gt;And the reason for this is, most likely, non-ascii characters in
&lt;br&gt;filenames.
&lt;br&gt;&lt;br&gt;Hope this helps,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Peter
&lt;br&gt;-- 
&lt;br&gt;Peter Conrad &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Tel: +49 6102 / 80 99 072
&lt;br&gt;[ t]ivano Software GmbH &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fax: +49 6102 / 80 99 071
&lt;br&gt;Bahnhofstr. 18 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.tivano.de/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tivano.de/&lt;/a&gt;&lt;br&gt;63263 Neu-Isenburg
&lt;br&gt;&lt;br&gt;Germany
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19266584&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/botched-invariant-pest-tp19235726p19266584.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19235726</id>
	<title>botched invariant pest</title>
	<published>2008-08-30T11:05:37Z</published>
	<updated>2008-08-30T11:05:37Z</updated>
	<author>
		<name>Ralf Juengling</name>
	</author>
	<content type="html">Greetings,
&lt;br&gt;&lt;br&gt;In recent days I am experiencing the same error message again
&lt;br&gt;and again, a message which does not reveal anything to me:
&lt;br&gt;&lt;br&gt;* looking for &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19235726&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;juengling@...&lt;/a&gt;/lush--soc--1.4--patch-176 to compare with
&lt;br&gt;* comparing to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19235726&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;juengling@...&lt;/a&gt;/lush--soc--1.4--patch-176
&lt;br&gt;/u/juenglin/downloads/tla-1.3.5/src/tla/libarch/invent.c:982:botched 
&lt;br&gt;invariant
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;*a &amp;lt; *b
&lt;br&gt;PANIC: exiting on botched invariant
&lt;br&gt;&lt;br&gt;Whenever I run into this, the project tree becomes unusable and
&lt;br&gt;I need to start a new one, find those modified files and copy
&lt;br&gt;them over to the new project tree by hand.
&lt;br&gt;&lt;br&gt;These error message are haunting me for a couple of days now
&lt;br&gt;and have not been able to make out what might trigger them to
&lt;br&gt;occur. I am working on my files, do a 'tla changes' once in a
&lt;br&gt;while, and suddenly I see this error.
&lt;br&gt;&lt;br&gt;Any help will be much appreciated.
&lt;br&gt;Ralf
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19235726&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/botched-invariant-pest-tp19235726p19235726.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18638710</id>
	<title>[bug #23931] Implicit pointer convention breaks binaries on many architectures</title>
	<published>2008-07-24T12:14:53Z</published>
	<updated>2008-07-24T12:14:53Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #1, bug #23931 (project gnu-arch):
&lt;br&gt;&lt;br&gt;BTW, the comment is from the build of tla on IA64,
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://buildd.debian.org/fetch.cgi?pkg=tla;ver=1.3.5%2Bdfsg-11;arch=ia64;stamp=1216832762&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://buildd.debian.org/fetch.cgi?pkg=tla;ver=1.3.5%2Bdfsg-11;arch=ia64;stamp=1216832762&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?23931&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?23931&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18638710&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--23931--Implicit-pointer-convention-breaks-binaries-on-many-architectures-tp18638690p18638710.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18638690</id>
	<title>[bug #23931] Implicit pointer convention breaks binaries on many architectures</title>
	<published>2008-07-24T12:13:36Z</published>
	<updated>2008-07-24T12:13:36Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;URL:
&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?23931&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?23931&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Summary: Implicit pointer convention breaks binaries on many
&lt;br&gt;architectures
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: GNU arch -- a revision control system
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Submitted by: None
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Submitted on: Thursday 07/24/2008 at 19:13 UTC
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Category: tla
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Severity: 3 - Normal
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Item Group: bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Status: None
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Privacy: Public
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Open/Closed: Open
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Discussion Lock: Any
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Release: 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Fixed Release: 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Merge Request?: None
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Your Archive Name: 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Your Archive Location: 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assigned to: None
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Details:
&lt;br&gt;&lt;br&gt;Build finished at 20080723-1705
&lt;br&gt;Function `arch_interpret_delta_path' implicitly converted to pointer at
&lt;br&gt;/build/buildd/tla-1.3.5+dfsg/src/tla/libarch/cmd-apply-delta.c:304
&lt;br&gt;Function `arch_find_or_make_tmp_local_copy' implicitly converted to pointer
&lt;br&gt;at /build/buildd/tla-1.3.5+dfsg/src/tla/libarch/cmdutils.c:571
&lt;br&gt;Function `tmp_dir' implicitly converted to pointer at
&lt;br&gt;/build/buildd/tla-1.3.5+dfsg/src/tla/libfsutils/tmp-files.c:84
&lt;br&gt;Function `arch_interpret_delta_path' implicitly converted to pointer at
&lt;br&gt;/build/buildd/tla-1.3.5+dfsg/src/tla/libarch/cmd-apply-delta.c:304
&lt;br&gt;Function `arch_find_or_make_tmp_local_copy' implicitly converted to pointer
&lt;br&gt;at /build/buildd/tla-1.3.5+dfsg/src/tla/libarch/cmdutils.c:571
&lt;br&gt;Function `tmp_dir' implicitly converted to pointer at
&lt;br&gt;/build/buildd/tla-1.3.5+dfsg/src/tla/libfsutils/tmp-files.c:84
&lt;br&gt;Function `arch_interpret_delta_path' implicitly converted to pointer at
&lt;br&gt;/build/buildd/tla-1.3.5+dfsg/src/tla/libarch/cmd-apply-delta.c:304
&lt;br&gt;Function `arch_find_or_make_tmp_local_copy' implicitly converted to pointer
&lt;br&gt;at /build/buildd/tla-1.3.5+dfsg/src/tla/libarch/cmdutils.c:571
&lt;br&gt;Function `tmp_dir' implicitly converted to pointer at
&lt;br&gt;/build/buildd/tla-1.3.5+dfsg/src/tla/libfsutils/tmp-files.c:84
&lt;br&gt;&lt;br&gt;&lt;br&gt;Our automated build log filter detected the problem(s) above that will
&lt;br&gt;likely cause your package to segfault on architectures where the size of
&lt;br&gt;a pointer is greater than the size of an integer, such as ia64 and amd64.
&lt;br&gt;&lt;br&gt;This is often due to a missing function prototype definition.
&lt;br&gt;&lt;br&gt;Since use of implicitly converted pointers is always fatal to the
&lt;br&gt;application
&lt;br&gt;on ia64, they are errors. &amp;nbsp;Please correct them for your next upload.
&lt;br&gt;&lt;br&gt;More information can be found at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://wiki.debian.org/ImplicitPointerConversions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.debian.org/ImplicitPointerConversions&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;FAILED [dpkg-buildpackage died]
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?23931&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?23931&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18638690&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--23931--Implicit-pointer-convention-breaks-binaries-on-many-architectures-tp18638690p18638690.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18484960</id>
	<title>Re: GNU Arch intro in russian</title>
	<published>2008-07-16T03:53:43Z</published>
	<updated>2008-07-16T03:53:43Z</updated>
	<author>
		<name>Mikhael Goikhman</name>
	</author>
	<content type="html">On 16 Jul 2008 13:46:23 +0700, Ivan Shmakov wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	FWIW, I've put a short introduction into the GNU Arch in Russian
&lt;br&gt;&amp;gt; 	on the Web:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://theory.asu.ru/~ivan/doc/tla/index.html.ru&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://theory.asu.ru/~ivan/doc/tla/index.html.ru&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	The whole idea behind these bits was to make new GNU Arch users
&lt;br&gt;&amp;gt; 	able to do some basic work with it, such as: registering archive
&lt;br&gt;&amp;gt; 	locations and retrieving working copies out of the Arch
&lt;br&gt;&amp;gt; 	archives. &amp;nbsp;It doesn't reveal much more beside of that.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	(Although I still have plans for writing a more comprehensive
&lt;br&gt;&amp;gt; 	comparison of the GNU Arch to the other DVCS of today, both in
&lt;br&gt;&amp;gt; 	English and Russian.)
&lt;/div&gt;&lt;br&gt;If it helps, you may use this information about GNU Arch:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://migo.sixbit.org/papers/Revision_Control_Systems/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://migo.sixbit.org/papers/Revision_Control_Systems/&lt;/a&gt;&lt;br&gt;&lt;br&gt;My coworkers consult this Arch tutorial to work on their branches.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Mikhael.
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18484960&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GNU-Arch-intro-in-russian-tp18482637p18484960.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18482637</id>
	<title>GNU Arch intro in russian</title>
	<published>2008-07-15T23:46:23Z</published>
	<updated>2008-07-15T23:46:23Z</updated>
	<author>
		<name>Ivan Shmakov</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FWIW, I've put a short introduction into the GNU Arch in Russian
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; on the Web:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://theory.asu.ru/~ivan/doc/tla/index.html.ru&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://theory.asu.ru/~ivan/doc/tla/index.html.ru&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; The whole idea behind these bits was to make new GNU Arch users
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; able to do some basic work with it, such as: registering archive
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; locations and retrieving working copies out of the Arch
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; archives. &amp;nbsp;It doesn't reveal much more beside of that.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (Although I still have plans for writing a more comprehensive
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; comparison of the GNU Arch to the other DVCS of today, both in
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; English and Russian.)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18482637&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/GNU-Arch-intro-in-russian-tp18482637p18482637.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18356083</id>
	<title>[bug #17626] tla update deletes directories and files</title>
	<published>2008-07-09T00:36:20Z</published>
	<updated>2008-07-09T00:36:20Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Additional Item Attachment, bug #17626 (project gnu-arch):
&lt;br&gt;&lt;br&gt;File name: feed_rss20_80x15_2.png &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Size:3 KB
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?17626&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?17626&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356083&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--17626--tla-update-deletes-directories-and-files-tp6171594p18356083.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18356005</id>
	<title>[bug #7101] solaris build changes (package-framework)</title>
	<published>2008-07-09T00:32:13Z</published>
	<updated>2008-07-09T00:32:13Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Additional Item Attachment, bug #7101 (project gnu-arch):
&lt;br&gt;&lt;br&gt;File name: get_mysql_80x15_2.png &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Size:3 KB
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?7101&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?7101&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356005&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--7101--solaris-build-changes-%28package-framework%29-tp2244461p18356005.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18355997</id>
	<title>[bug #12751] stdarg missuse breaks on sparc-sun-solaris</title>
	<published>2008-07-09T00:31:22Z</published>
	<updated>2008-07-09T00:31:22Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Additional Item Attachment, bug #12751 (project gnu-arch):
&lt;br&gt;&lt;br&gt;File name: powered_apache_80x15_2.png &amp;nbsp; &amp;nbsp; Size:3 KB
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?12751&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?12751&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18355997&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--12751--stdarg-missuse-breaks-on-sparc-sun-solaris-tp16045699p18355997.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18198506</id>
	<title>[bug #10145] Directory named core should not violate default naming conventions</title>
	<published>2008-06-30T08:46:28Z</published>
	<updated>2008-06-30T08:46:28Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #4, bug #10145 (project gnu-arch):
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;a href=&quot;http://www.xuri.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.xuri.org&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?10145&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?10145&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18198506&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--10145--Directory-named-core-should-not-violate-default-naming-conventions-tp18198506p18198506.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18198437</id>
	<title>[bug #12751] stdarg missuse breaks on sparc-sun-solaris</title>
	<published>2008-06-30T08:42:53Z</published>
	<updated>2008-06-30T08:42:53Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #3, bug #12751 (project gnu-arch):
&lt;br&gt;&lt;br&gt;&amp;lt;span id=&amp;quot;hidsubpartcontentdiscussion&amp;quot;&amp;gt;&amp;lt;a
&lt;br&gt;href=&amp;quot;&lt;a href=&quot;http://abc.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://abc.com/&lt;/a&gt;&amp;quot;&amp;gt;online&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?12751&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?12751&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18198437&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--12751--stdarg-missuse-breaks-on-sparc-sun-solaris-tp16045699p18198437.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18186653</id>
	<title>[bug #15915] MACHINE_ALIGNMENT miscalculated on PPC32</title>
	<published>2008-06-29T16:41:15Z</published>
	<updated>2008-06-29T16:41:15Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #5, bug #15915 (project gnu-arch):
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/animal-sex-tube-x&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/animal-sex-tube-x&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/zootube-beastiality&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/zootube-beastiality&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/extreme-animalsex&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/extreme-animalsex&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/zoo-animal-sex-tube-x&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/zoo-animal-sex-tube-x&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/zoo-tube-365-com-x&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/zoo-tube-365-com-x&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/kds-bbs-pics-x&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/kds-bbs-pics-x&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/forbidden-cp-pics-x&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/forbidden-cp-pics-x&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/underage-russian-cp-video&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/underage-russian-cp-video&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/pedoland-bbs-pthc-c&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/pedoland-bbs-pthc-c&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/preteen-bbs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/preteen-bbs&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/sex-movies-x&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/sex-movies-x&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/spank-teens-hardcore&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/spank-teens-hardcore&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/little-oral-annie---best-porn-video&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/little-oral-annie---best-porn-video&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/enema-punishment-stories&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/enema-punishment-stories&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/free-bdsm-videos&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/free-bdsm-videos&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/free-bondage-videos&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/free-bondage-videos&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/pissing-in-public&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/pissing-in-public&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/cumshot-compilation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/cumshot-compilation&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/amateur-and-free-and-video&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/amateur-and-free-and-video&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/interracial-gang-bang-x&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/interracial-gang-bang-x&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/animalporn-tube-c&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/animalporn-tube-c&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/free-animal-porn-tube-c&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/free-animal-porn-tube-c&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/yuo-tube-porno&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/yuo-tube-porno&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/animals-bestiality-tube&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/animals-bestiality-tube&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://groups-beta.google.com/group/beast-tube-videos&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups-beta.google.com/group/beast-tube-videos&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?15915&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?15915&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18186653&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--15915--MACHINE_ALIGNMENT-miscalculated-on-PPC32-tp3224407p18186653.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17862698</id>
	<title>[bug #12751] stdarg missuse breaks on sparc-sun-solaris</title>
	<published>2008-06-16T04:32:57Z</published>
	<updated>2008-06-16T04:32:57Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #2, bug #12751 (project gnu-arch):
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://mp3alf.com/artist-download-mp3-music-alcymar-monteiro-86404-1/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mp3alf.com/artist-download-mp3-music-alcymar-monteiro-86404-1/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://mp3alf.com/album-download-full-mp3-quadrilha/album-ao-vivo-deixa-que-aconteca-285591/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mp3alf.com/album-download-full-mp3-quadrilha/album-ao-vivo-deixa-que-aconteca-285591/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://mp3alf.com/artist-download-mp3-music-edorf-77907-1/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mp3alf.com/artist-download-mp3-music-edorf-77907-1/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://mp3alf.com/album-download-full-mp3-roberto-carlos/album-canta-para-a-juventude-179127/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mp3alf.com/album-download-full-mp3-roberto-carlos/album-canta-para-a-juventude-179127/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://mp3alf.com/artist-download-mp3-music-surinder-rattan-123167-1/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mp3alf.com/artist-download-mp3-music-surinder-rattan-123167-1/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://mp3alf.com/album-download-full-mp3-lenine/album-lenine-193565/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mp3alf.com/album-download-full-mp3-lenine/album-lenine-193565/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://mp3alf.com/artist-download-mp3-music-a.c.-one-51408-1/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mp3alf.com/artist-download-mp3-music-a.c.-one-51408-1/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://mp3alf.com/album-download-full-mp3-alcione/album-uma-nova-paixao-95278/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mp3alf.com/album-download-full-mp3-alcione/album-uma-nova-paixao-95278/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://mp3alf.com/album-download-full-mp3-anna-king/album-back-to-soul-151725/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mp3alf.com/album-download-full-mp3-anna-king/album-back-to-soul-151725/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://mp3alf.com/artist-download-mp3-music-el-cartel-de-nuevo-leon-69991-1/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mp3alf.com/artist-download-mp3-music-el-cartel-de-nuevo-leon-69991-1/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://mp3alf.com/album-download-full-mp3-egotronic/album-lustprinzip-341753/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mp3alf.com/album-download-full-mp3-egotronic/album-lustprinzip-341753/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://mp3alf.com/artist-download-mp3-music-fann-klub-hustlaz-109239-1/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mp3alf.com/artist-download-mp3-music-fann-klub-hustlaz-109239-1/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://mp3alf.com/album-download-full-mp3-sabrina-johnston/album-i-wanna-sing-14623/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mp3alf.com/album-download-full-mp3-sabrina-johnston/album-i-wanna-sing-14623/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://mp3alf.com/album-download-full-mp3-jimmy-saa/album-golpe-original-349110/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mp3alf.com/album-download-full-mp3-jimmy-saa/album-golpe-original-349110/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?12751&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?12751&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17862698&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--12751--stdarg-missuse-breaks-on-sparc-sun-solaris-tp16045699p17862698.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17721508</id>
	<title>[bug #7101] solaris build changes (package-framework)</title>
	<published>2008-06-08T11:18:16Z</published>
	<updated>2008-06-08T11:18:16Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #2, bug #7101 (project gnu-arch):
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://sex.bestfsearch.info/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sex.bestfsearch.info/index.html&lt;/a&gt;|office sex naughty
&lt;br&gt;&lt;a href=&quot;http://sex.bestfsearch.info/index1.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sex.bestfsearch.info/index1.html&lt;/a&gt;|mature lesbians having sex with
&lt;br&gt;teens
&lt;br&gt;&lt;a href=&quot;http://sex.bestfsearch.info/index2.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sex.bestfsearch.info/index2.html&lt;/a&gt;|free online sex movie animal
&lt;br&gt;&lt;a href=&quot;http://sex.bestfsearch.info/index3.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sex.bestfsearch.info/index3.html&lt;/a&gt;|hardcore &amp;nbsp;outdoor sex
&lt;br&gt;&lt;a href=&quot;http://sex.bestfsearch.info/index4.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sex.bestfsearch.info/index4.html&lt;/a&gt;|ebony women sex
&lt;br&gt;&lt;a href=&quot;http://sex.bestfsearch.info/index5.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sex.bestfsearch.info/index5.html&lt;/a&gt;|pictures of sex in nature
&lt;br&gt;&lt;a href=&quot;http://sex.bestfsearch.info/index6.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sex.bestfsearch.info/index6.html&lt;/a&gt;|outdoor extreme sex
&lt;br&gt;&lt;a href=&quot;http://sex.bestfsearch.info/index7.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sex.bestfsearch.info/index7.html&lt;/a&gt;|carmen electra sex video free
&lt;br&gt;&lt;a href=&quot;http://sex.bestfsearch.info/index8.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sex.bestfsearch.info/index8.html&lt;/a&gt;|farm sex with horse
&lt;br&gt;&lt;a href=&quot;http://sex.bestfsearch.info/index9.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sex.bestfsearch.info/index9.html&lt;/a&gt;|free teen sex video
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?7101&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?7101&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17721508&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--7101--solaris-build-changes-%28package-framework%29-tp2244461p17721508.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17475522</id>
	<title>[bug #14739] tla crashes with some options</title>
	<published>2008-05-26T10:03:00Z</published>
	<updated>2008-05-26T10:03:00Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #6, bug #14739 (project gnu-arch):
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?14739&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?14739&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17475522&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--14739--tla-crashes-with-some-options-tp1056144p17475522.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17475497</id>
	<title>[bug #7853] Test framework assumes 'tar' is GNU tar</title>
	<published>2008-05-26T10:01:42Z</published>
	<updated>2008-05-26T10:01:42Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #4, bug #7853 (project gnu-arch):
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.de/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.de/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.in/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.in/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.co.jp/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.co.jp/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/14003799015354680770/BDQ2NQgoQ1p3vlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/14003799015354680770/BDShxQwoQrbvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/14003799015354680770/BDQ2NQgoQiNvvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/14003799015354680770/BDSHDQwoQ7fPvlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/14003799015354680770/BDQcKQgoQwZTwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/14003799015354680770/BDSIKQgoQqrXwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/14003799015354680770/BDQcKQgoQgNjwlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/16632111708192144902/BDQcKQgoQ7orxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/16632111708192144902/BDShxQwoQ-KvxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/16632111708192144902/BDQaSQgoQiMzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/16632111708192144902/BDQ2NQgoQ8uzxlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/16632111708192144902/BDQGMQgoQ8YzylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/16632111708192144902/BDQ2NQgoQtK3ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/16632111708192144902/BDSIKQgoQx87ylKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/12117232877081177558/BDQ2NQgoQqYTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/12117232877081177558/BDShxQwoQp6XzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/12117232877081177558/BDQcKQgoQ6cTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/12117232877081177558/BDQGMQgoQmuTzlKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/12117232877081177558/BDSIKQgoQ24T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/12117232877081177558/BDQ2NQgoQnKX0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/12117232877081177558/BDSHDQwoQt8T0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/05953231471609611245/BDSHDQwoQ8vb0lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/05953231471609611245/BDQ2NQgoQzpb1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/05953231471609611245/BDShxQwoQgLf1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/05953231471609611245/BDQ2NQgoQmtD1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/05953231471609611245/BDSMKQgoQte_1lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/05953231471609611245/BDSHDQwoQ6o_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/05953231471609611245/BDQGMQgoQ4a72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/15897631915428500780/BDSIKQgoQ7d72lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/15897631915428500780/BDSIKQgoQgf_2lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/15897631915428500780/BDShxQwoQz573lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/17260882609689309641/BDSMKQgoQkd_7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/17260882609689309641/BDQcKQgoQx__7lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/17260882609689309641/BDQ2NQgoQoJ_8lKIj&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.google.us/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.us/notebook/public/17260882609689309641/BDQGMQgoQwan9lKIj&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?7853&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?7853&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17475497&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--7853--Test-framework-assumes-%27tar%27-is-GNU-tar-tp2244407p17475497.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17374394</id>
	<title>Fwd: Bazaar becomes a GNU project</title>
	<published>2008-05-21T10:28:58Z</published>
	<updated>2008-05-21T10:28:58Z</updated>
	<author>
		<name>Andy Tai</name>
	</author>
	<content type="html">Bazaar was &amp;quot;derived&amp;quot; (in a way) from Arch.&amp;nbsp; This should be of interest to people here regardless of what you thought of Bzr.&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;---------- Forwarded message ----------&lt;br&gt;From: &lt;b class=&quot;gmail_sendername&quot;&gt;Martin Pool&lt;/b&gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17374394&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mbp@...&lt;/a&gt;&amp;gt;&lt;br&gt;
Date: Wed, May 21, 2008 at 3:05 AM&lt;br&gt;Subject: Bazaar becomes a GNU project&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17374394&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info-gnu@...&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The Bazaar version control system &amp;lt;&lt;a href=&quot;http://bazaar-vcs.org/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://bazaar-vcs.org/&lt;/a&gt;&amp;gt; recently became&lt;br&gt;

a GNU project. &amp;nbsp;We set out several years ago to build a version control&lt;br&gt;
system that would suit the collaboration and cooperation at the heart of&lt;br&gt;
free software, and Bazaar is the result of that effort.&lt;br&gt;
&lt;br&gt;
Our goal has been to make distributed version control easy to use&lt;br&gt;
across all platforms. Bazaar features a simple and friendly interface,&lt;br&gt;
so that new users will find it familiar and natural. The key&lt;br&gt;
operations for distributed version control are branching and merging,&lt;br&gt;
so much of Bazaar&amp;#39;s design is to make sure that you can branch and&lt;br&gt;
merge efficiently between individuals and teams, using local or remote&lt;br&gt;
branches. For developers, there is an extension API and plugin&lt;br&gt;
suite that enable you to extend Bazaar, and bzrlib makes it easy to&lt;br&gt;
embed Bazaar functionality into your own GPL applications.&lt;br&gt;
&lt;br&gt;
Bazaar is still under very active development. &amp;nbsp;There is a culture of code&lt;br&gt;
reviews and test driven development in the Bazaar core team, so you can&lt;br&gt;
quite easily expect to be able to contribute code to the core of Bazaar.&lt;br&gt;
The focus of our current work on Bazaar is network efficiency, so we&lt;br&gt;
encourage folks to help us optimise the smart server protocol for&lt;br&gt;
collaboration from all corners of the globe.&lt;br&gt;
&lt;br&gt;
Another goal in the design of Bazaar is to make it straightforward to&lt;br&gt;
interoperate with projects that are using a different VCS. We know&lt;br&gt;
different projects will choose the tools that suit them, but we wanted&lt;br&gt;
to make it possible for someone to use Bazaar to participate in any&lt;br&gt;
project. So Bazaar can represent the version control operations of&lt;br&gt;
every other VCS, and there are plugins that let you read version&lt;br&gt;
history for a project into Bazaar from Subversion, Git, CVS and other&lt;br&gt;
projects. It is possible to keep the &amp;quot;trunk&amp;quot; of project development&lt;br&gt;
on, say, Subversion, and run a continuous &amp;quot;import&amp;quot; of that trunk into&lt;br&gt;
Bazaar from which developers can branch and merge. Such an import has&lt;br&gt;
already been setup for Emacs and a few other projects - Canonical runs&lt;br&gt;
more than 1,000 of them constantly at Launchpad.net (see&lt;br&gt;
&lt;a href=&quot;https://code.launchpad.net/+project-cloud&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://code.launchpad.net/+project-cloud&lt;/a&gt; for a list of projects that&lt;br&gt;
have registered Bazaar branches there). The code that does the&lt;br&gt;
Launchpad imports is all published under the GPL if you want to do it&lt;br&gt;
yourself.&lt;br&gt;
&lt;br&gt;
We&amp;#39;re happy to help with, or offer advice on, conversion of your&lt;br&gt;
project from any other system. Speak to us in #bzr on Freenode, or&lt;br&gt;
write to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17374394&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bazaar@...&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
You can host Bazaar branches on almost any server where you&lt;br&gt;
have read and write access over SFTP, FTP or HTTP, or over SSH with the&lt;br&gt;
bzr smart server. &amp;nbsp;We would like to have first-class support on Savannah,&lt;br&gt;
and are seeking someone experienced with PHP and Perl and the Savane&lt;br&gt;
codebase to help with this.&lt;br&gt;
&lt;font color=&quot;#888888&quot;&gt;&lt;br&gt;
--&lt;br&gt;
Martin&lt;br&gt;
for the Bazaar developers&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
_______________________________________________&lt;br&gt;
GNU Announcement mailing list &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17374394&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info-gnu@...&lt;/a&gt;&amp;gt;&lt;br&gt;
&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/info-gnu&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/info-gnu&lt;/a&gt;&lt;br&gt;
&lt;/font&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Andy Tai, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17374394&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;atai@...&lt;/a&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17374394&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Fwd%3A-Bazaar-becomes-a-GNU-project-tp17374394p17374394.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17051461</id>
	<title>[bug #13261] double tag on FC3</title>
	<published>2008-05-04T14:20:04Z</published>
	<updated>2008-05-04T14:20:04Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #3, bug #13261 (project gnu-arch):
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://groups.google.us/group/jou-tubex&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.us/group/jou-tubex&lt;/a&gt;&lt;br&gt;Here You Will Find The Web's Best Ever Sex Blog With Loads Of Free Porn
&lt;br&gt;Videos Updated Daily.
&lt;br&gt;&lt;a href=&quot;http://groups.google.us/group/animalporn-tube&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.us/group/animalporn-tube&lt;/a&gt;&lt;br&gt;They actually look at different directories using the same path.
&lt;br&gt;danwalsh.
&lt;br&gt;&lt;a href=&quot;http://groups.google.us/group/animal-sex-tubex&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.us/group/animal-sex-tubex&lt;/a&gt;&lt;br&gt;2007-12-03 12:14 am UTC (link) Track This
&lt;br&gt;So user a looking at /tmp see's a different directory then user b looking at
&lt;br&gt;/tmp.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?13261&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?13261&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17051461&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--13261--double-tag-on-FC3-tp114980p17051461.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17051433</id>
	<title>[bug #7853] Test framework assumes 'tar' is GNU tar</title>
	<published>2008-05-04T14:18:02Z</published>
	<updated>2008-05-04T14:18:02Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #3, bug #7853 (project gnu-arch):
&lt;br&gt;&lt;br&gt;&amp;lt;a
&lt;br&gt;href=&amp;quot;&lt;a href=&quot;http://groups.google.us/group/jou-tubex&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.us/group/jou-tubex&lt;/a&gt;&amp;quot;&amp;gt;&lt;a href=&quot;http://groups.google.us/group/jou-tubex&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.us/group/jou-tubex&lt;/a&gt;&amp;lt;/a&amp;gt;
&lt;br&gt;Here You Will Find The Web's Best Ever Sex Blog With Loads Of Free Porn
&lt;br&gt;Videos Updated Daily.
&lt;br&gt;&lt;a href=&quot;http://groups.google.us/group/animalporn-tube&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.us/group/animalporn-tube&lt;/a&gt;&lt;br&gt;They actually look at different directories using the same path.
&lt;br&gt;danwalsh.
&lt;br&gt;&lt;a href=&quot;http://groups.google.us/group/animal-sex-tubex&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.us/group/animal-sex-tubex&lt;/a&gt;&lt;br&gt;2007-12-03 12:14 am UTC (link) Track This
&lt;br&gt;So user a looking at /tmp see's a different directory then user b looking at
&lt;br&gt;/tmp.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?7853&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?7853&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17051433&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--7853--Test-framework-assumes-%27tar%27-is-GNU-tar-tp2244407p17051433.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17033445</id>
	<title>[bug #14739] tla crashes with some options</title>
	<published>2008-05-03T02:49:35Z</published>
	<updated>2008-05-03T02:49:35Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #5, bug #14739 (project gnu-arch):
&lt;br&gt;&lt;br&gt;It seems to work fine now. At least tla archives doesn't crash anymore. I'll
&lt;br&gt;test more deeply tomorrow. Thanks for your work! xenical
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.youtube.com/user/KristinOrlistat&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.youtube.com/user/KristinOrlistat&lt;/a&gt;&amp;gt;, levitra
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.youtube.com/user/EdTada&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.youtube.com/user/EdTada&lt;/a&gt;&amp;gt;,
&lt;br&gt;clomid &amp;lt;&lt;a href=&quot;http://www.youtube.com/user/CindyGarman&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.youtube.com/user/CindyGarman&lt;/a&gt;&amp;gt;, buy viagra
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.youtube.com/JackGillOnline&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.youtube.com/JackGillOnline&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?14739&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?14739&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17033445&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--14739--tla-crashes-with-some-options-tp1056144p17033445.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17033409</id>
	<title>[bug #12566] tla tree-lint report false &quot;These explicit ids have no corresponding file&quot;</title>
	<published>2008-05-03T02:48:46Z</published>
	<updated>2008-05-03T02:48:46Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #3, bug #12566 (project gnu-arch):
&lt;br&gt;&lt;br&gt;The 1.2 version used was the &amp;quot;tla-1.2-4 from regexps.com&amp;quot;. This version do
&lt;br&gt;not have this bug. xenical &amp;lt;&lt;a href=&quot;http://www.youtube.com/user/KristinOrlistat&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.youtube.com/user/KristinOrlistat&lt;/a&gt;&amp;gt;,
&lt;br&gt;levitra &amp;lt;&lt;a href=&quot;http://www.youtube.com/user/EdTada&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.youtube.com/user/EdTada&lt;/a&gt;&amp;gt;,
&lt;br&gt;clomid &amp;lt;&lt;a href=&quot;http://www.youtube.com/user/CindyGarman&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.youtube.com/user/CindyGarman&lt;/a&gt;&amp;gt;, buy viagra
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.youtube.com/JackGillOnline&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.youtube.com/JackGillOnline&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?12566&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?12566&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17033409&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--12566--tla-tree-lint-report-false-%22These-explicit-ids-have-no-corresponding-file%22-tp17033409p17033409.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17033408</id>
	<title>[bug #5251] |tla undo -o mychanges| barfs badly</title>
	<published>2008-05-03T02:47:54Z</published>
	<updated>2008-05-03T02:47:54Z</updated>
	<author>
		<name>Ilguiz Latypov-3</name>
	</author>
	<content type="html">&lt;br&gt;Follow-up Comment #3, bug #5251 (project gnu-arch):
&lt;br&gt;&lt;br&gt;It's probably irrelevant to the fix, but the changed (not added) files seem
&lt;br&gt;to be untouched in the working dir. xenical
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.youtube.com/user/KristinOrlistat&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.youtube.com/user/KristinOrlistat&lt;/a&gt;&amp;gt;, levitra
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.youtube.com/user/EdTada&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.youtube.com/user/EdTada&lt;/a&gt;&amp;gt;,
&lt;br&gt;clomid &amp;lt;&lt;a href=&quot;http://www.youtube.com/user/CindyGarman&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.youtube.com/user/CindyGarman&lt;/a&gt;&amp;gt;, buy viagra
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.youtube.com/JackGillOnline&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.youtube.com/JackGillOnline&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; _______________________________________________________
&lt;br&gt;&lt;br&gt;Reply to this item at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;&lt;a href=&quot;http://savannah.gnu.org/bugs/?5251&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/bugs/?5251&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&amp;nbsp; Message sent via/by Savannah
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://savannah.gnu.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Bug-gnu-arch mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=17033408&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bug-gnu-arch@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/bug-gnu-arch&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Bugs-f1466.html&quot; embed=&quot;fixTarget[1466]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu - Arch - Bugs&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-bug--5251--%7Ctla-undo--o-mychanges%7C-barfs-badly-tp17033408p17033408.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16640565</id>
	<title>rev. ctl and file systems</title>
	<published>2008-04-11T13:48:44Z</published>
	<updated>2008-04-11T13:48:44Z</updated>
	<author>
		<name>Thomas Lord</name>
	</author>
	<content type="html">So, the general question is &amp;quot;should revision control be
&lt;br&gt;built-in at the storage level; &amp;nbsp;should it be part of the file system&amp;quot;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Here is a more complete description of my current best guess
&lt;br&gt;as to a good answer. &amp;nbsp; This answer is already present in
&lt;br&gt;the design (and partially, in the implementation) of
&lt;br&gt;Flower: &amp;nbsp;&lt;a href=&quot;http://basiscraft.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://basiscraft.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;Flower contains patent pending technology, I am obligated
&lt;br&gt;to remind people, at this juncture. &amp;nbsp;(The source code at
&lt;br&gt;the link uses a license that the FSF describes as a free
&lt;br&gt;software license and that the OSI has approved as an open source
&lt;br&gt;license. &amp;nbsp;It also helps to protect the value of any patents I
&lt;br&gt;may receive).
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------
&lt;br&gt;&lt;br&gt;As I said, &amp;quot;yes,&amp;quot; loosely speaking, I see the next logical step
&lt;br&gt;as being to build revision control deep into the storage level.
&lt;br&gt;First &amp;quot;why&amp;quot; and then &amp;quot;how&amp;quot;:
&lt;br&gt;&lt;br&gt;--------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;quot;Why&amp;quot; is more than just a matter of convenience. &amp;nbsp;It's a
&lt;br&gt;matter of necessity. &amp;nbsp; The reason is because of the rising
&lt;br&gt;importance of portable, personal computing and because
&lt;br&gt;of the rising importance of distributed collaboration.
&lt;br&gt;&lt;br&gt;When we carry around computers, and especially when we
&lt;br&gt;sometimes &amp;quot;work off-line&amp;quot; but then &amp;quot;sync-up&amp;quot;, in effect we
&lt;br&gt;are (by hand) simulating a distributed file system.
&lt;br&gt;&lt;br&gt;When two of us do that at the same time, remote from
&lt;br&gt;one another but working on copies of the &amp;quot;same files&amp;quot; that
&lt;br&gt;later we want to sync up, we are (by hand) simulating
&lt;br&gt;a revision control operation.
&lt;br&gt;&lt;br&gt;Even without &amp;quot;off-line&amp;quot; operation: &amp;nbsp;if two of us edit the same
&lt;br&gt;documents stored on the web, at the same time (as in Wikis) then,
&lt;br&gt;again, we need revision control functionality.
&lt;br&gt;&lt;br&gt;Because these kinds of activities are more and more the common
&lt;br&gt;case (at least for personal communication or collaborative content),
&lt;br&gt;we are reaching a situation in which we really &amp;quot;want&amp;quot; distributed,
&lt;br&gt;decentralized revision control for pretty much *all* of our
&lt;br&gt;data.
&lt;br&gt;&lt;br&gt;There is a group of researchers who, for many years, have worked
&lt;br&gt;on what I would call &amp;quot;conventional&amp;quot; approaches to (perhaps global-scale)
&lt;br&gt;distributed file systems. &amp;nbsp; An early cite might be, for example, the
&lt;br&gt;Andrew file system (aka AFS). &amp;nbsp; An interesting observation is that as they
&lt;br&gt;have wrestled with the problem of scaling upwards to global scale, and
&lt;br&gt;coping with networks that sometimes &amp;quot;partition&amp;quot; during a netsplit
&lt;br&gt;or that simply can be very slow -- they too have (long since) discovered
&lt;br&gt;that distributed, decentralized revision control is the only way to go.
&lt;br&gt;&lt;br&gt;So, the need for this at the storage level is indicated from top to
&lt;br&gt;bottom: &amp;nbsp;from what users need all the way down to what implementations
&lt;br&gt;require in order to work at all.
&lt;br&gt;&lt;br&gt;That's enough &amp;quot;why&amp;quot; for now.
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------
&lt;br&gt;&lt;br&gt;Let's talk &amp;quot;how&amp;quot;.
&lt;br&gt;&lt;br&gt;Laurent, your message set out to nicely explore a design space
&lt;br&gt;and try to map out the game tree there. &amp;nbsp; That's a good approach.
&lt;br&gt;But.... let's take one step back here.
&lt;br&gt;&lt;br&gt;Most of what you are talking about is ways to put revctl functionality
&lt;br&gt;into a unix-like file system. &amp;nbsp; We could imagine some future
&lt;br&gt;&amp;quot;Linux ext5 file system&amp;quot; that has these new capabilities.
&lt;br&gt;&lt;br&gt;I doubt that that is the right approach, though the reasons are a
&lt;br&gt;little unfamiliar to many:
&lt;br&gt;&lt;br&gt;First, memory (RAM) is inexpensive. &amp;nbsp; Second, network bandwidth
&lt;br&gt;is tending to go up but, network latency can only go so far. 
&lt;br&gt;&lt;br&gt;Let's look at latency. &amp;nbsp; Rough distance from the San Francisco Bay
&lt;br&gt;Area, where I live, to Boston, where the GNU project lives, is
&lt;br&gt;2,700 miles.
&lt;br&gt;&lt;br&gt;Ignoring all medium and switching costs, the best possible latency
&lt;br&gt;between me and Boston exceeds 14 milliseconds. &amp;nbsp; In reality, it
&lt;br&gt;will always be much worse than that. &amp;nbsp; In contrast, the latency
&lt;br&gt;cost of a system call on a local PC is something we typically measure
&lt;br&gt;in microseconds.
&lt;br&gt;&lt;br&gt;Why does latency matter to the design of a unix-like file system?
&lt;br&gt;Because the traditional unix API for files encourages random access,
&lt;br&gt;short reads and writes, etc. &amp;nbsp; It is on the basis of those properties that,
&lt;br&gt;for example, MySQL or Berkeley DB can reasonably run *atop* a
&lt;br&gt;unix file system rather than having to go to a &amp;quot;raw disk&amp;quot;. &amp;nbsp;The unix
&lt;br&gt;API makes it possible and natural; &amp;nbsp;the low (local) latency makes it
&lt;br&gt;practical (enough). &amp;nbsp; But raise that latency by an order of magnitude
&lt;br&gt;and, suddenly, the API no longer makes practical sense.
&lt;br&gt;&lt;br&gt;Why does memory matter? &amp;nbsp;Because that gives us an alternative: &amp;nbsp;we
&lt;br&gt;can do more work locally in RAM (even nvram or otherwise locally
&lt;br&gt;persistent store) and, instead of using a unix-like API, just try to
&lt;br&gt;read and write large chunks, infrequently.
&lt;br&gt;&lt;br&gt;Another practical insight here is that Unix's meta-data standards
&lt;br&gt;and transactional capabilities are anemic for todays needs; &amp;nbsp;it's
&lt;br&gt;indexing capabilities all but non-existent.
&lt;br&gt;&lt;br&gt;So, when it comes to &amp;quot;how&amp;quot; my inclination is to re-think what we
&lt;br&gt;mean by &amp;quot;file&amp;quot;.
&lt;br&gt;&lt;br&gt;The W3C's emerging architecture gives us a very natural answer:
&lt;br&gt;a &amp;quot;file&amp;quot; is (roughly speaking) the kind of thing you GET in an HTTP
&lt;br&gt;reply or PUT in an HTTP request. &amp;nbsp; Simplifying only a little, we can
&lt;br&gt;say that a &amp;quot;file&amp;quot; is, therefore:
&lt;br&gt;&lt;br&gt;1. An envelope, containing arbitrary XML meta-data.
&lt;br&gt;2. A primary payload, containing arbitrary XML data.
&lt;br&gt;3. One more (possibly multi-media) &amp;quot;attachments&amp;quot; -- additional
&lt;br&gt;&amp;nbsp; &amp;nbsp; MIME &amp;quot;parts&amp;quot;.
&lt;br&gt;&lt;br&gt;My concept of a multi-forked, multi-media file here is one that
&lt;br&gt;might remind you a bit of, for example, the original Macintosh
&lt;br&gt;file system.
&lt;br&gt;&lt;br&gt;Given that insight, &amp;quot;how&amp;quot;:
&lt;br&gt;&lt;br&gt;Well, to make a long story short my thought (in Flower) is to
&lt;br&gt;leverage database technology like Berkeley DB / DBXML for
&lt;br&gt;storage, transactions, and indexing --- and then to build revision
&lt;br&gt;control into the API for accessing that new kind of store.
&lt;br&gt;&lt;br&gt;That's one reason I hesitate before investing more in Arch 2.0:
&lt;br&gt;&lt;br&gt;I wonder if we can't render traditional unix file systems &amp;quot;obsolete
&lt;br&gt;legacy&amp;quot; within 5-10 years.
&lt;br&gt;&lt;br&gt;Make some sense?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;-t
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16640565&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/revc-tp16298903p16640565.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16632872</id>
	<title>Re: revc</title>
	<published>2008-04-11T06:38:40Z</published>
	<updated>2008-04-11T06:38:40Z</updated>
	<author>
		<name>Laurent Wandrebeck-2</name>
	</author>
	<content type="html">2008/4/11, Laurent Wandrebeck &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16632872&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;l.wandrebeck@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;Hi again,
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;nbsp;(quick thinking) I see 4 ways here:
&lt;br&gt;&amp;gt; &amp;nbsp;- Really develop a kernel level FS tailored for revision control
&lt;br&gt;&amp;gt; &amp;nbsp;system. Cons: quite a lot of work, pretty annoying to deploy,
&lt;br&gt;&amp;gt; &amp;nbsp;portability problems. We may hit too VFS &amp;quot;limitations&amp;quot; as we may need
&lt;br&gt;&amp;gt; &amp;nbsp;VFS changes. -&amp;gt; hard (impossible ?) to be integrated in mainline (just
&lt;br&gt;&amp;gt; &amp;nbsp;talking about linux/bsd kernels here. Reiser4 is a good example).
&lt;br&gt;&amp;gt; &amp;nbsp;Impossible with MS/Windows and other proprietary problems. Pros: would
&lt;br&gt;&amp;gt; &amp;nbsp;be fast.
&lt;br&gt;&amp;gt; &amp;nbsp;- Work on top of the FS, like some kind of a tar file. Cons: slower
&lt;br&gt;&amp;gt; &amp;nbsp;than a kernel level FS (but faster than FUSE I think). Pros:
&lt;br&gt;&amp;gt; &amp;nbsp;portability. Easy to distribute (http, ftp, ssh, rsync, you name it).
&lt;br&gt;&amp;gt; &amp;nbsp;We can implement our own checksumming, snapshoting methods as needed.
&lt;br&gt;&amp;gt; &amp;nbsp;- Use FUSE (FS in userspace) : still need to read through the doc to
&lt;br&gt;&amp;gt; &amp;nbsp;see if it provides snapshots and such. Anyway, ZFS on top of FUSE
&lt;br&gt;&amp;gt; &amp;nbsp;exists, so I suppose it would be powerful enough. Cons i'm aware of:
&lt;br&gt;&amp;gt; &amp;nbsp;quite slow. Unsure about availability on MS/Win (looks like there's a
&lt;br&gt;&amp;gt; &amp;nbsp;C# version). No openBSD port.
&lt;br&gt;&amp;gt; &amp;nbsp;- Work with the FS, like tla, git etc. Pros: well known. stable. Cons:
&lt;br&gt;&amp;gt; &amp;nbsp;limited by FS features (snapshotting just a part of a FS etc) -&amp;gt; need
&lt;br&gt;&amp;gt; &amp;nbsp;to implement it ourselves. Like in the &amp;quot;tar file&amp;quot; like way, but may be
&lt;br&gt;&amp;gt; &amp;nbsp;more difficult due to number of files etc.
&lt;br&gt;&amp;gt; &amp;nbsp;My prefered way would be the &amp;quot;tar file&amp;quot; like approach. You ?
&lt;/div&gt;A fifth way came to my mind. It'd need more thinking from a technical
&lt;br&gt;POV, but here it is anyway:
&lt;br&gt;- Using a SQL backend. A powerful one. That means truly ACID, or we
&lt;br&gt;wouldn't really get any pros from using it. Pros: Once the DB
&lt;br&gt;designed, no need to take care of the storage technical details.
&lt;br&gt;Easily allows to insert, update, delete, diff etc file contents.
&lt;br&gt;Snapshots are easy. Cons: each user would have to have the backend
&lt;br&gt;running on its system. quite easy if we would use sqlite or something,
&lt;br&gt;a bit more work if we would use a real DBMS like postgreSQL. A SQL
&lt;br&gt;backend looks easy to use in a centralized revision control system.
&lt;br&gt;Doesn't look so in a distributed one.
&lt;br&gt;Regards,
&lt;br&gt;Laurent.
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gnu-arch-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16632872&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gnu-arch-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/mailman/listinfo/gnu-arch-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;GNU arch home page:
&lt;br&gt;&lt;a href=&quot;http://savannah.gnu.org/projects/gnu-arch/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.gnu.org/projects/gnu-arch/&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Gnu---Arch---Users-f1469.html&quot; embed=&quot;fixTarget[1469]&quot; target=&quot;_top&quot; &gt;Gnu - Arch - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/revc-tp16298903p16632872.html" />
</entry>

</feed>
