<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Oh Brave New World! &#187; Fedora</title>
	<atom:link href="http://mybravenewworld.wordpress.com/category/fedora/feed/" rel="self" type="application/rss+xml" />
	<link>http://mybravenewworld.wordpress.com</link>
	<description>Let&#039;s make the Free Software test stack truly rock!</description>
	<lastBuildDate>Mon, 07 May 2012 03:52:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mybravenewworld.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Oh Brave New World! &#187; Fedora</title>
		<link>http://mybravenewworld.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mybravenewworld.wordpress.com/osd.xml" title="Oh Brave New World!" />
	<atom:link rel='hub' href='http://mybravenewworld.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Autotest 0.14.0 released!</title>
		<link>http://mybravenewworld.wordpress.com/2012/05/07/autotest-0-14-0-released/</link>
		<comments>http://mybravenewworld.wordpress.com/2012/05/07/autotest-0-14-0-released/#comments</comments>
		<pubDate>Mon, 07 May 2012 03:51:56 +0000</pubDate>
		<dc:creator>lmr</dc:creator>
				<category><![CDATA[Fedora]]></category>

		<guid isPermaLink="false">http://mybravenewworld.wordpress.com/?p=331</guid>
		<description><![CDATA[Autotest 0.14.0 is a new major release of autotest! The goal here is to provide the latest advances on autotest while providing a stable ground for groups and organizations looking for autotest, such as distro packagers and newcomers. For the &#8230; <a href="http://mybravenewworld.wordpress.com/2012/05/07/autotest-0-14-0-released/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=331&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Autotest 0.14.0 is a new major release of autotest! The goal here is to<br />
provide the latest advances on autotest while providing a stable ground<br />
for groups and organizations looking for autotest, such as distro<br />
packagers and newcomers.</p>
<h3>For the impatient</h3>
<p>Download autotest here</p>
<p><a href="https://github.com/autotest/autotest/downloads">https://github.com/autotest/autotest/downloads</a></p>
<p>Or pick the tarballs automatically generated by github here:</p>
<p><a href="https://github.com/autotest/autotest/tarball/0.14.0">https://github.com/autotest/autotest/tarball/0.14.0</a></p>
<h3>Changes</h3>
<h3>API cleanup</h3>
<p>Autotest 0.14.0 brings major new API changes over the previous 0.13.X series.<br />
For a long time, we wanted to clean up the API namespace of unneeded _lib<br />
prefixes to the autotest libraries. The main changes made were:</p>
<p>* No more autotest/client/bin dir, so no more autotest_lib.client.bin namespace.<br />
Now all the main libs and entry points are at the top level client.<br />
* API: autotest_lib -&gt; autotest<br />
* API: autotest.client.common_lib -&gt; autotest.client.shared</p>
<p>As an example, here&#8217;s how the imports on client/bin/job.py used to be on pre-0.14:</p>
<pre>from autotest_lib.client.bin import client_logging_config
from autotest_lib.client.bin import utils, parallel, kernel, xen
from autotest_lib.client.bin import profilers, boottool, harness
from autotest_lib.client.bin import config, sysinfo, test, local_host
from autotest_lib.client.bin import partition as partition_lib
from autotest_lib.client.common_lib import base_job
from autotest_lib.client.common_lib import error, barrier, log, logging_manager
from autotest_lib.client.common_lib import base_packages, packages
from autotest_lib.client.common_lib import global_config
from autotest_lib.client.tools import html_report</pre>
<p>And that&#8217;s how it looks on 0.14.0:</p>
<pre>from autotest.client import client_logging_config
from autotest.client import utils, parallel, kernel, xen
from autotest.client import profilers, boottool, harness
from autotest.client import config, sysinfo, test, local_host
from autotest.client import partition as partition_lib
from autotest.client.shared import base_job
from autotest.client.shared import error, barrier, log, logging_manager
from autotest.client.shared import base_packages, packages
from autotest.client.shared import global_config
from autotest.client.tools import html_report</pre>
<p>The conversion should be mostly automatic for most users.</p>
<h3>Entry names change</h3>
<p>In order to ease discoverability on a system wide install, some widely used<br />
entry point names changed names. By entry point, we mean the autotest high<br />
level utility programs. Check out the name changes:</p>
<p>1. client/bin/autotest -&gt; client/autotest-local<br />
2. server/autoserv -&gt; server/autotest-remote<br />
3. cli/atest -&gt; cli/autotest-rpc-client<br />
4. scheduler/monitor_db.py -&gt; scheduler/autotest-scheduler<br />
5. scheduler/monitor_db_babysitter.py -&gt; scheduler/autotest-scheduler-watcher</p>
<h3>Boottool</h3>
<p>Autotest used a perl based tool to manage bootloader entries, but the<br />
tool did not support grub2. So when Fedora started to use grub2, we took<br />
the opportunity to rewrite the whole thing and ditch the perl based boot<br />
tool. As a side effect, now it supports installing kernels on newer<br />
Ubuntu too (and well, Opensuse and what else). It is based on the open source<br />
project grubby, the tool used by anaconda and therefore, Fedora and RHEL distros<br />
to manipulate boot entries.</p>
<h3>Git history rewrite</h3>
<p>The git repo history was rewritten to properly follow git authorship<br />
conventions. This effort reveals over 200 unique authors that did contribute<br />
to autotest during the last 6 years. May we have many years more with an active<br />
and healthy development community!</p>
<h3>What&#8217;s next?</h3>
<p>With the series of cleanups and improvements, here are the next steps:</p>
<p>- Port of the rpc server application to Django 1.4<br />
- Documentation improvements and API documentation generation.<br />
- Further cobbler-autotest integration<br />
- Separation of tests and core autotest code<br />
- Make the autotest test runner to be smarter, more tight in terms of output</p>
<p>You can also help, please join the mailing lists and happy hacking!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mybravenewworld.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mybravenewworld.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mybravenewworld.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mybravenewworld.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mybravenewworld.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mybravenewworld.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mybravenewworld.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mybravenewworld.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mybravenewworld.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mybravenewworld.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mybravenewworld.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mybravenewworld.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mybravenewworld.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mybravenewworld.wordpress.com/331/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=331&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mybravenewworld.wordpress.com/2012/05/07/autotest-0-14-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/743e19d84263b1b4b4d8d904daa392f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lookkas</media:title>
		</media:content>
	</item>
		<item>
		<title>Rewriting git history</title>
		<link>http://mybravenewworld.wordpress.com/2012/04/26/rewriting-git-history/</link>
		<comments>http://mybravenewworld.wordpress.com/2012/04/26/rewriting-git-history/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 23:18:56 +0000</pubDate>
		<dc:creator>lmr</dc:creator>
				<category><![CDATA[Fedora]]></category>

		<guid isPermaLink="false">http://mybravenewworld.wordpress.com/?p=324</guid>
		<description><![CDATA[So, autotest (http://autotest.github.com/), the project I work on was kept for a long time on an svn repo (over 6 years). Turns out that people love git [1] and then a git-svn mirror was set up. It took a while &#8230; <a href="http://mybravenewworld.wordpress.com/2012/04/26/rewriting-git-history/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=324&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, autotest (<a href="http://autotest.github.com/">http://autotest.github.com/</a>), the project I work on was kept for a long time on an svn repo (over 6 years). Turns out that people love git [1] and then a git-svn mirror was set up.</p>
<p>It took a while to finally take the decision to move autotest entirely to git.  When we did, we briefly discussed doing a proper history rewrite, to eliminate old svn cruft (the hideous git-svn-id: lines on the commit messages) and assign authorship properly (on git-svn, the committer is considered the patch author). It&#8217;s fair enough that git-svn behaves this way, since there&#8217;s no reliable way to tell what is the original author of the patch, since each project does the copyright assignment on a different way.</p>
<p>On autotest, in the Old Days (TM), this was done by means of a From: field on the commit message, and late by Signed-off-by. So the mirror did not contain reliable version information to tell the authors, by, say, using git shortlog -s. This is the original mess the repo was:</p>
<pre>$ git shortlog -s
     1  00:18.584417Z
     1  Alex Jia
    22  Amos Kong
     1  Aneesh Kumar K.V
    44  Chris Evich
    81  Cleber Rosa
     1  Daniel Veillard
     3  David Greenberg
     1  Eduardo Habkost
     2  Guannan Ren
     1  Jerry Tang
     1  Jiri Zupka
    19  Jiří Župka
     4  Lei Yang
     1  Liu Sheng
     4  Lubos Kocman
   331  Lucas Meneghel Rodrigues
    28  Lukas Doktor
     6  Madhuri Appana
     3  Martin Krizek
     6  Miroslav Rezanina
    13  Nishanth Aravamudan
     1  Onkar N Mahajan
     2  Pavel Hrdina
     1  Philipp Seiler
    27  Qingtang Zhou
     3  Quentin Deldycke
     1  Satheesh Rajendran
     1  Steve
     5  Steve Conklin
     3  Thomas Jarosch
    16  Vinson Lee
     1  Wei Yang
     1  Wenyi Gao
     9  Yiqiao Pu
     1  Yu Mingfei
   154  apw
     9  ericli
     8  guyanhua
   454  jadmanski
   138  jamesren
  1380  lmr
  2450  mbligh
     1  pradeep
     2  root
   795  showard
    12  tangchen</pre>
<p>Now, how to solve this? Considering the complete lack of a rigid standard used across the commits, it was clear I&#8217;d have to use several passes of git filter-branch vodoo.</p>
<p>So, in the first pass, I wanted to look for signed-off-by: entries, extract the names and authors, and rewrite the commits. If no signed-off-by: name could be successfuly obtained, fall back to the old author. If the old author happens to be one of the (few) commiters of the old svn repo, use a conversion table to replace the names:</p>
<pre>mbligh=Martin Bligh &lt;mbligh@google.com&gt;
jadmanski=John Admanski &lt;jadmanski@google.com&gt;
ericli=Eric Li &lt;ericli@google.com&gt;
apw=Andy Whitcroft &lt;apw@shadowen.org&gt;
jamesren=James Ren &lt;jamesren@google.com&gt;
lmr=Lucas Meneghel Rodrigues &lt;lookkas@gmail.com&gt;
showard=Steve Howard &lt;showard@google.com&gt;</pre>
<p>Then the following script was created:</p>
<pre> #!/bin/bash

 git filter-branch -f --env-filter '

 get_name_authors_txt () {
     fail=0
     grep $1 /tmp/authors.txt &gt;&gt; /dev/null || fail=1
     if [ $fail -eq 0 ];
     then
       lname=$(grep "^$1=" "/tmp/authors.txt" | sed "s/^.*=\(.*\) $/\1/")
       if [ -n "$lname" ]
       then
           echo "$lname"
       else
           echo "$GIT_COMMITTER_NAME"
       fi
     else
       echo "$GIT_COMMITTER_NAME"
     fi
 }

 get_email_authors_txt () {
     fail=0
     grep $1 /tmp/authors.txt &gt;&gt; /dev/null || fail=1
     if [ $fail -eq 0 ];
     then
       lemail=$(grep "^$1=" "/tmp/authors.txt" | sed "s/^.*=.* $/\1/")
       if [ -n "$lemail" ]
       then
           echo "$lemail"
       else
           echo "$GIT_COMMITTER_NAME"
       fi
     else
       echo "$GIT_COMMITTER_EMAIL"
     fi
 }

 get_name () {
     name=$(git log $GIT_COMMIT -1 | grep "Signed-off-by:" | head -1 | sed "s/^.*:\(.*\) $/\1/" | grep -v "Signed-off-by:")
     if [ -n "$name" ]
     then
         echo "$name"
     else
         get_name_authors_txt $1
     fi
 }

 get_email () {
     email=$(git log $GIT_COMMIT -1 | grep "Signed-off-by:" | head -1 | sed "s/^.*:.* $/\1/" | grep -v "Signed-off-by:")
     if [ -n "$email" ]
     then
         echo "$email"
     else
         get_email_authors_txt $1
     fi
 }

 GIT_AUTHOR_NAME=$(get_name $GIT_COMMITTER_NAME) &amp;&amp;
     GIT_AUTHOR_EMAIL=$(get_email $GIT_COMMITTER_NAME) &amp;&amp;
     GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME &amp;&amp;
     GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL &amp;&amp;
     export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL &amp;&amp;
     export GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL
 '

git filter-branch f --msg-filter 'sed -e "/^git-svn-id:/d"'</pre>
<p>So, the basic idea is to try find the first Signed-off-by: line of the patch, extract the author, provided it is in the standard format, and set that to the author name, same process for the email.</p>
<p>This, for the first pass, greatly cleaned up the state of the commits, by assigning proper names and then getting rid of the git-svn-id: tags.</p>
<p>As a matter of fact, I&#8217;ve used this same script with small variations over and over to get to the (mostly) complete cleanup, and now things look a lot better:</p>
<pre>$ git shortlog -s | wc -l
202</pre>
<p>And obviously, this blog post is a way to remember, and hopefully it might be useful to others. About rewriting the history, I know, that&#8217;s bad, but obviously I&#8217;ll avoid doing it again, and now people can extract stats from the code base more easily now.</p>
<p>[1] And in my humble opinion they should love it, it&#8217;s a pretty great program <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mybravenewworld.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mybravenewworld.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mybravenewworld.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mybravenewworld.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mybravenewworld.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mybravenewworld.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mybravenewworld.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mybravenewworld.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mybravenewworld.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mybravenewworld.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mybravenewworld.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mybravenewworld.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mybravenewworld.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mybravenewworld.wordpress.com/324/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=324&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mybravenewworld.wordpress.com/2012/04/26/rewriting-git-history/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/743e19d84263b1b4b4d8d904daa392f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lookkas</media:title>
		</media:content>
	</item>
		<item>
		<title>FLOSS Weekly episode 200</title>
		<link>http://mybravenewworld.wordpress.com/2012/02/01/floss-weekly-episode-200/</link>
		<comments>http://mybravenewworld.wordpress.com/2012/02/01/floss-weekly-episode-200/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 20:06:55 +0000</pubDate>
		<dc:creator>lmr</dc:creator>
				<category><![CDATA[Fedora]]></category>

		<guid isPermaLink="false">http://mybravenewworld.wordpress.com/?p=318</guid>
		<description><![CDATA[Today myself and my good friend (and co-worker) Cleber Rosa were interviewed today for FLOSS weekly episode 200. There we talked about autotest, a test automation framework. In the next hours, the show will be available under http://twit.tv/show/floss-weekly/200, you can watch it if &#8230; <a href="http://mybravenewworld.wordpress.com/2012/02/01/floss-weekly-episode-200/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=318&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today myself and my good friend (and co-worker) <a href="http://www.facebook.com/cleber.gnu">Cleber Rosa</a> were interviewed today for FLOSS weekly episode 200. There we talked about autotest, a test automation framework. In the next hours, the show will be available under <a href="http://twit.tv/show/floss-weekly/200">http://twit.tv/show/floss-weekly/200</a>, you can watch it if you like <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mybravenewworld.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mybravenewworld.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mybravenewworld.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mybravenewworld.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mybravenewworld.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mybravenewworld.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mybravenewworld.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mybravenewworld.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mybravenewworld.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mybravenewworld.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mybravenewworld.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mybravenewworld.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mybravenewworld.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mybravenewworld.wordpress.com/318/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=318&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mybravenewworld.wordpress.com/2012/02/01/floss-weekly-episode-200/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/743e19d84263b1b4b4d8d904daa392f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lookkas</media:title>
		</media:content>
	</item>
		<item>
		<title>FUDCon Day 2 &#8211; Update</title>
		<link>http://mybravenewworld.wordpress.com/2012/01/14/fudcon-day-2-update/</link>
		<comments>http://mybravenewworld.wordpress.com/2012/01/14/fudcon-day-2-update/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 18:12:37 +0000</pubDate>
		<dc:creator>lmr</dc:creator>
				<category><![CDATA[Fedora]]></category>

		<guid isPermaLink="false">http://mybravenewworld.wordpress.com/?p=307</guid>
		<description><![CDATA[I&#8217;ve attended spot&#8217;s barcamp session on the new applications the infrastructure team is working on. Some remarks: Gamification Gamification is a very interesting idea for a community based project. The new tagger page is making use of these concepts, so &#8230; <a href="http://mybravenewworld.wordpress.com/2012/01/14/fudcon-day-2-update/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=307&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve attended spot&#8217;s barcamp session on the new applications the infrastructure team is working on. Some remarks:</p>
<h3>Gamification</h3>
<p><a title="Concept of Gamification" href="http://en.wikipedia.org/wiki/Gamification" target="_blank">Gamification</a> is a very interesting idea for a community based project. The new tagger page is making use of these concepts, so the more tags people tag, the more badges they earn. We even might have a &#8220;Fedora Contributor Network&#8221;, where we&#8217;ll have ranking boards for Fedora based on their accomplishments. Well done, guys!</p>
<h3>Software centers, App Markets or whatever</h3>
<p>The concept of a place that is a one stop shop for your software needs is not a new idea, and definitely organizations have been building successful models around it. I for one would like to see such a software center in Fedora.</p>
<p>Spot argues that it is a successful model for people looking for earning money out of it, but I beg to differ: In Fedora, we are interested in a subset of these goals: we want people to browse the available apps in our repos [1], and install that software with the least hassle possible (ideally with 1 click), with great search capabilities, and possibly reviews and other cool things around it.</p>
<p>Anyway, I understand why the team didn&#8217;t come after this model in the first pass. I&#8217;d like to see things going on this direction, although such an undertaking is huge work, and brings obvious concerns over scalability and maintainability. Still, good to think about it&#8230;</p>
<p>[1] We don&#8217;t even have to introduce the concept of &#8216;repos&#8217; to people, making things easy to grasp to less-technically inclined people.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mybravenewworld.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mybravenewworld.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mybravenewworld.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mybravenewworld.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mybravenewworld.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mybravenewworld.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mybravenewworld.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mybravenewworld.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mybravenewworld.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mybravenewworld.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mybravenewworld.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mybravenewworld.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mybravenewworld.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mybravenewworld.wordpress.com/307/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=307&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mybravenewworld.wordpress.com/2012/01/14/fudcon-day-2-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/743e19d84263b1b4b4d8d904daa392f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lookkas</media:title>
		</media:content>
	</item>
		<item>
		<title>FUDCon Blacksburg 2012 day 2</title>
		<link>http://mybravenewworld.wordpress.com/2012/01/14/fudcon-blacksburg-2012-day-2/</link>
		<comments>http://mybravenewworld.wordpress.com/2012/01/14/fudcon-blacksburg-2012-day-2/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 14:06:30 +0000</pubDate>
		<dc:creator>lmr</dc:creator>
				<category><![CDATA[Fedora]]></category>

		<guid isPermaLink="false">https://mybravenewworld.wordpress.com/?p=304</guid>
		<description><![CDATA[So, here we are gathered for FUDCon day 2, where the bar camp sessions are going to happen. I expect to give my Fedora test automation talk soon. The purpose of the presentation, simply put, is to show how we &#8230; <a href="http://mybravenewworld.wordpress.com/2012/01/14/fudcon-blacksburg-2012-day-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=304&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, here we are gathered for FUDCon day 2, where the bar camp sessions are going to happen. I expect to give my Fedora test automation talk soon. The purpose of the presentation, simply put, is to show how we can get good concepts from open test initiatives and apply them to Fedora. If you&#8217;re attending FUDCon and is interested, please drop by <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mybravenewworld.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mybravenewworld.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mybravenewworld.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mybravenewworld.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mybravenewworld.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mybravenewworld.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mybravenewworld.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mybravenewworld.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mybravenewworld.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mybravenewworld.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mybravenewworld.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mybravenewworld.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mybravenewworld.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mybravenewworld.wordpress.com/304/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=304&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mybravenewworld.wordpress.com/2012/01/14/fudcon-blacksburg-2012-day-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/743e19d84263b1b4b4d8d904daa392f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lookkas</media:title>
		</media:content>
	</item>
		<item>
		<title>My autotest TODO list during FUDCon</title>
		<link>http://mybravenewworld.wordpress.com/2012/01/13/my-autotest-todo-list-during-fudcon/</link>
		<comments>http://mybravenewworld.wordpress.com/2012/01/13/my-autotest-todo-list-during-fudcon/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 16:39:47 +0000</pubDate>
		<dc:creator>lmr</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[FUDCon]]></category>

		<guid isPermaLink="false">http://mybravenewworld.wordpress.com/?p=302</guid>
		<description><![CDATA[I probably didn&#8217;t mention, but packaging autotest is been a tough task, mostly because: Autotest uses a “self contained directory” design Makes sense for its purposes, but no go for packagers Web interface depends on gwt, which is hard to &#8230; <a href="http://mybravenewworld.wordpress.com/2012/01/13/my-autotest-todo-list-during-fudcon/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=302&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I probably didn&#8217;t mention, but packaging autotest is been a tough task, mostly because:</p>
<ul>
<li>Autotest uses a “self contained directory” design</li>
<li>Makes sense for its purposes, but no go for packagers</li>
<li>Web interface depends on gwt, which is hard to package properly</li>
</ul>
<p>As a result, it&#8217;s been a long ongoing task with upstream to make it more packaging friendly. But, we&#8217;re almost there. I promise <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;ve started to assemble my TODO list for the FUDCon days. It shouldn&#8217;t be that difficult to get this done between one presentation and another:</p>
<ul>
<li><a href="https://github.com/autotest/autotest/issues/88">https://github.com/autotest/autotest/issues/88</a></li>
<li><a href="https://github.com/autotest/autotest/issues/89">https://github.com/autotest/autotest/issues/89</a></li>
<li><a href="https://github.com/autotest/autotest/issues/140">https://github.com/autotest/autotest/issues/140</a></li>
</ul>
<p>I hope to come up with more stuff, let&#8217;s see&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mybravenewworld.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mybravenewworld.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mybravenewworld.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mybravenewworld.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mybravenewworld.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mybravenewworld.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mybravenewworld.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mybravenewworld.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mybravenewworld.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mybravenewworld.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mybravenewworld.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mybravenewworld.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mybravenewworld.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mybravenewworld.wordpress.com/302/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=302&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mybravenewworld.wordpress.com/2012/01/13/my-autotest-todo-list-during-fudcon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/743e19d84263b1b4b4d8d904daa392f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lookkas</media:title>
		</media:content>
	</item>
		<item>
		<title>FUDCon Blacksburg &#8211; 2012</title>
		<link>http://mybravenewworld.wordpress.com/2012/01/13/fudcon-blacksburg-2012-2/</link>
		<comments>http://mybravenewworld.wordpress.com/2012/01/13/fudcon-blacksburg-2012-2/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 15:35:50 +0000</pubDate>
		<dc:creator>lmr</dc:creator>
				<category><![CDATA[Fedora]]></category>

		<guid isPermaLink="false">http://mybravenewworld.wordpress.com/?p=265</guid>
		<description><![CDATA[Here I am in Blacksburg, at the VirginiaTech campus for the 1st day of FUDCon. It&#8217;s always good to see again the fine ladies and gentlemen that bring you Fedora I&#8217;m in the Secondary Arch hackfest, where TODO list items &#8230; <a href="http://mybravenewworld.wordpress.com/2012/01/13/fudcon-blacksburg-2012-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=265&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here I am in Blacksburg, at the VirginiaTech campus for the 1st day of FUDCon. It&#8217;s always good to see again the fine ladies and gentlemen that bring you Fedora <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#8217;m in the Secondary Arch hackfest, where TODO list items for the Power version of Fedora 17 are being discussed:</p>
<ul>
<li>KVM feature, feature process + deadlines (I&#8217;m interested in this one)</li>
<li>F17 schedule</li>
<li>Build boxes</li>
<li>Test team status &#8211; bugzilla review with the IBM team</li>
<li>Road map and release engineering</li>
</ul>
<p>It&#8217;s gonna be an interesting conference <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mybravenewworld.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mybravenewworld.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mybravenewworld.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mybravenewworld.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mybravenewworld.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mybravenewworld.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mybravenewworld.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mybravenewworld.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mybravenewworld.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mybravenewworld.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mybravenewworld.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mybravenewworld.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mybravenewworld.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mybravenewworld.wordpress.com/265/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=265&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mybravenewworld.wordpress.com/2012/01/13/fudcon-blacksburg-2012-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/743e19d84263b1b4b4d8d904daa392f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lookkas</media:title>
		</media:content>
	</item>
		<item>
		<title>Going to FUDCon Blacksburg 2012</title>
		<link>http://mybravenewworld.wordpress.com/2012/01/06/going-to-fudcon-blacksburg-2012/</link>
		<comments>http://mybravenewworld.wordpress.com/2012/01/06/going-to-fudcon-blacksburg-2012/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 22:11:46 +0000</pubDate>
		<dc:creator>lmr</dc:creator>
				<category><![CDATA[Fedora]]></category>

		<guid isPermaLink="false">http://mybravenewworld.wordpress.com/2012/01/06/going-to-fudcon-blacksburg-2012/</guid>
		<description><![CDATA[Hello [peeps&#124;ninjas&#124;folks]: I&#8217;m getting ready to go to FUDCon Blacksburg next week, where I&#8217;ll talk about the current Fedora test automation initiatives, as well as work with the brave folks of the QA team to put all nails needed in &#8230; <a href="http://mybravenewworld.wordpress.com/2012/01/06/going-to-fudcon-blacksburg-2012/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=262&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello [peeps|ninjas|folks]:</p>
<p>I&#8217;m getting ready to go to FUDCon Blacksburg next week, where I&#8217;ll talk about the current Fedora test automation initiatives, as well as work with the brave folks of the QA team to put all nails needed in the coffin of the task &#8216;autotest packaging&#8217;. I&#8217;ll be around, so if you are interested in test automation, let&#8217;s talk about it!</p>
<p>See you in about a week,</p>
<p>Lucas</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mybravenewworld.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mybravenewworld.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mybravenewworld.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mybravenewworld.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mybravenewworld.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mybravenewworld.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mybravenewworld.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mybravenewworld.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mybravenewworld.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mybravenewworld.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mybravenewworld.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mybravenewworld.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mybravenewworld.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mybravenewworld.wordpress.com/262/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=262&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mybravenewworld.wordpress.com/2012/01/06/going-to-fudcon-blacksburg-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/743e19d84263b1b4b4d8d904daa392f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lookkas</media:title>
		</media:content>
	</item>
		<item>
		<title>Autotest moved to github</title>
		<link>http://mybravenewworld.wordpress.com/2011/10/06/autotest-moved-to-github/</link>
		<comments>http://mybravenewworld.wordpress.com/2011/10/06/autotest-moved-to-github/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 18:39:55 +0000</pubDate>
		<dc:creator>lmr</dc:creator>
				<category><![CDATA[Fedora]]></category>

		<guid isPermaLink="false">http://mybravenewworld.wordpress.com/?p=234</guid>
		<description><![CDATA[It&#8217;s been a while that the Autotest open source project services were managed on a machine, test.kernel.org. We&#8217;ve been using SVN during the the inception of the project (mar 2006), and the move to a distributed source control system was &#8230; <a href="http://mybravenewworld.wordpress.com/2011/10/06/autotest-moved-to-github/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=234&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while that the Autotest open source project services were managed on a machine, test.kernel.org. We&#8217;ve been using SVN during the the inception of the project (mar 2006), and the move to a distributed source control system was long overdue. Also, we were short on maintainers for the project, so we needed some better governance policies to ensure autotest would run smoothly even with people not able to work on it anymore.</p>
<p>With the recent security incident involving kernel.org, our domains were taken out of DNS as the administrators of the domain were working to fix the security breach, that made our life a bit&#8230; hard, to say the least. All the infrastructure we were relying on, our <a href="http://autotest.kernel.org/">trac instance</a>, that comprised wiki, source code visualization, timeline view, and our <a href="http://patchwork.test.kernel.org/">patchwork instance</a>, gone.</p>
<p>So, this inconvenient situation triggered the work to fix most of those aforementioned problems. Now we:</p>
<ul>
<li>Moved to git</li>
<li>Moved to a source code hosting facility, so we spent less time maintaining infrastructure and focusing on delivering a kickass code base for our users</li>
<li>The new infrastructure also has a code review mechanism, better than using patchwork</li>
<li>An interesting look at how to contribute changes to the project (github pull requests)</li>
<li>The wiki now is a git repo, with plain files written in reStructuredText</li>
<li>We added new maintainers for the project and now are in the process</li>
</ul>
<p>I&#8217;m personally very happy with the improvements we&#8217;ve implemented, but there&#8217;s quite a bit of stuff to be done. So, be welcome to our new project page:</p>
<p><a href="http://autotest.github.com/">http://autotest.github.com/</a></p>
<p>We will make autotest.kernel.org to point to this domain, stay tuned <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mybravenewworld.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mybravenewworld.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mybravenewworld.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mybravenewworld.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mybravenewworld.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mybravenewworld.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mybravenewworld.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mybravenewworld.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mybravenewworld.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mybravenewworld.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mybravenewworld.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mybravenewworld.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mybravenewworld.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mybravenewworld.wordpress.com/234/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=234&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mybravenewworld.wordpress.com/2011/10/06/autotest-moved-to-github/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/743e19d84263b1b4b4d8d904daa392f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lookkas</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello Planet Fedora!</title>
		<link>http://mybravenewworld.wordpress.com/2011/10/06/hello-planet-fedora/</link>
		<comments>http://mybravenewworld.wordpress.com/2011/10/06/hello-planet-fedora/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 18:14:23 +0000</pubDate>
		<dc:creator>lmr</dc:creator>
				<category><![CDATA[Fedora]]></category>

		<guid isPermaLink="false">http://mybravenewworld.wordpress.com/?p=232</guid>
		<description><![CDATA[Hi guys, my name is Lucas Rodrigues, and I&#8217;m the maintainer of Autotest, the base software for Fedora&#8217;s AutoQA. I am a Red Hat engineer working full time in test automation, and I&#8217;m very happy to help the Fedora with &#8230; <a href="http://mybravenewworld.wordpress.com/2011/10/06/hello-planet-fedora/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=232&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi guys, my name is Lucas Rodrigues, and I&#8217;m the maintainer of <a href="http://autotest.github.com/" title="Autotest main page">Autotest</a>, the base software for Fedora&#8217;s <a href="https://fedorahosted.org/autoqa/" title="AutoQA main page">AutoQA</a>. I am a Red Hat engineer working full time in test automation, and I&#8217;m very happy to help the Fedora with its testing infrastructure. This is my first post to Planet Fedora, and my idea is to blog about the Autotest project and other thoughts about test automation, and well, of course, Fedora <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mybravenewworld.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mybravenewworld.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mybravenewworld.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mybravenewworld.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mybravenewworld.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mybravenewworld.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mybravenewworld.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mybravenewworld.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mybravenewworld.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mybravenewworld.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mybravenewworld.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mybravenewworld.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mybravenewworld.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mybravenewworld.wordpress.com/232/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mybravenewworld.wordpress.com&#038;blog=653814&#038;post=232&#038;subd=mybravenewworld&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mybravenewworld.wordpress.com/2011/10/06/hello-planet-fedora/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/743e19d84263b1b4b4d8d904daa392f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lookkas</media:title>
		</media:content>
	</item>
	</channel>
</rss>
