<?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/"
	>

<channel>
	<title>Pimp my Slack!</title>
	<atom:link href="http://slackware.ponce.cc/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://slackware.ponce.cc/blog</link>
	<description>Ponce Slackware Stuff</description>
	<lastBuildDate>Fri, 13 Apr 2012 09:42:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>lxc containers on slackware 13.37</title>
		<link>http://slackware.ponce.cc/blog/2011/07/17/lxc-containers/</link>
		<comments>http://slackware.ponce.cc/blog/2011/07/17/lxc-containers/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 15:27:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[guides]]></category>

		<guid isPermaLink="false">http://slackware.ponce.cc/blog/?p=267</guid>
		<description><![CDATA[I&#8217;m using some lxc containers to offer services with less resources than full virtualization (like kvm, virtualbox, etc.) demands for. At first I was creating the containers I needed basically following Chris Willing&#8217;s guide but, being jealous of the existing templates for the debian based distributions that allow creation of containers with a single command, <a href='http://slackware.ponce.cc/blog/2011/07/17/lxc-containers/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m using some <a href="http://lxc.sourceforge.net">lxc containers</a> to offer services with less resources than full virtualization (like kvm, virtualbox, etc.) demands for.<br />
At first I was creating the containers I needed basically following <a href="http://www.vislab.uq.edu.au/howto/lxc/create_container.html">Chris Willing&#8217;s guide</a> but, being jealous <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  of the existing templates for the debian based distributions that allow creation of containers with a single command, I tried to assemble one for slackware 13.37, that I personally use at work and at home as a virtualization platform.</p>
<p>The concept is simply reapplying the steps that the slackware setup normally follows but with the necessary changes (mainly omissions) to fit our container environment: so I uncompressed the slackware setup initrd to check Patrick Volkerding&#8217;s work</p>
<pre>gzip -dc /data/slackware/slackware64-13.37/isolinux/initrd.img | cpio -i -d -H newc --no-absolute-filenames</pre>
<p>and had a look at the install shell scripts in /usr/lib64/setup.<br />
Then I took as a base the existing lxc-debian template and modified it to:<br />
- download some slackware packages for a minimal installation (many thanks to <a href="http://connie.slackware.com/~vbatts/minimal/">Vincent Batts</a> for the selection);<br />
- install them in a folder;<br />
- apply all the standard postinstall routines;<br />
- apply the necessary container fixes (many thanks to Chris Willing that pioneered on this and documented it well <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).</p>
<p>I published <a href="https://raw.github.com/Ponce/lxc-slackware/master/lxc-slackware">the result</a> on github<br />
<a href="https://github.com/Ponce/lxc-slackware">https://github.com/Ponce/lxc-slackware</a></p>
<h4>&#8220;&#8230;ok, that&#8217;s enough!<br />
we want to play with containers too!&#8221;</h4>
<p>I was getting to it <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you want to try them you have to decide which kind of networking you want for them: choices are basically between using:<br />
- a network bridge on your network interface, with the containers in the same network segment as the host;<br />
- a network bridge on a dummy interface used as gateway with NAT: the containers will be in a private network segment.</p>
<p>If you want to offer services and you have plenty of ips to use (like in an home network), maybe the first solution can be easier, as you don&#8217;t have to use iptables to redirect incoming connections to the private network of the containers.</p>
<p>Slackware-13.37 kernel already supports all you need, so let&#8217;s setup our interface, assuming our host eth0 (the primary ethernet interface, in the example) address is 192.168.1.5 and that we are in a 192.168.1.0/24 class C network with 192.168.1.1 as our gateway.<br />
Here are the step to follow in each situation:</p>
<h4>containers on the same network segment as the host</h4>
<p>We have to put the interface down because we are going to add it to the bridge, so if you&#8217;are doing this through an ssh connection, I suggest you to run this as a script in a screen session, to avoid being cutted off <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<pre>/sbin/ifconfig eth0 down
/sbin/brctl addbr br0
/sbin/brctl setfd br0 0
/sbin/ifconfig br0 192.168.1.5 netmask 255.255.255.0 promisc up
/sbin/brctl addif br0 eth0
ifconfig eth0 0.0.0.0 up
route add default gw 192.168.1.1
echo 1 &gt; /proc/sys/net/ipv4/ip_forward
echo 1 &gt; /proc/sys/net/ipv4/conf/br0/proxy_arp</pre>
<p>At the end the bridge setup should be ok: you can find a version of the script above (to be included in /etc/rc.d/rc.local) <a href="https://raw.github.com/Ponce/lxc-slackware/master/lxc-network-bridge">here</a>; I also modify /etc/rc.d/rc.inet1.conf on my nodes where I use this configuration to omit eth0 config (the script is enough to bring up the interface on the host running the containers).</p>
<p>Next, we create a configuration file, let&#8217;s call it chuckd.config, for the <a href=http://twitter.com/MrChuckD>chuckd</a> virtual container that we are going to do: decide a custom hardware address (anything valid should do) and ip (as we said, in the same range)</p>
<pre>lxc.network.type = veth
lxc.network.flags = up
lxc.network.link = br0
lxc.network.hwaddr = 00:aa:11:bb:22:cc
lxc.network.ipv4 = 192.168.1.10/24
lxc.network.name = eth0</pre>
<h4>containers on a natted private network</h4>
<p>In this case the script to bring up the private network is this</p>
<pre>/sbin/brctl addbr br0
/sbin/brctl setfd br0 0
/sbin/ifconfig br0 192.168.2.1 netmask 255.255.255.0 promisc up
echo 1 > /proc/sys/net/ipv4/ip_forward
echo 1 > /proc/sys/net/ipv4/conf/br0/proxy_arp

/usr/sbin/iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
# examples of redirections
iptables -t nat -A PREROUTING -p tcp --dport 51 -i eth0 -j DNAT --to 192.168.2.10:51
iptables -t nat -A PREROUTING -p tcp --dport 80 -i eth0 -j DNAT --to 192.168.2.10:80</pre>
<p>at the end of the script you can see some example of redirection of incoming connections toward the containers in the private 192.168.2.0/24 network.</p>
<p>also the config file changes (with an ip on the same network)</p>
<pre>lxc.network.type = veth
lxc.network.flags = up
lxc.network.link = br0
lxc.network.hwaddr = 00:aa:11:bb:22:cc
lxc.network.ipv4 = 192.168.2.10/24
lxc.network.name = eth0</pre>
<p>- &#8211; -</p>
<p>Now we&#8217;ll setup our template so we can use it to create the container: change directory to /usr/lib/lxc/templates if you are on a 32 bit system</p>
<pre>cd /usr/lib64/lxc/templates
wget --no-check-certificate https://raw.github.com/Ponce/lxc-slackware/master/lxc-slackware
chmod +x lxc-slackware</pre>
<p>We are ready to create our first container, chuckd, using lxc-create and a slackware mirror: if not specified, defaults to the main one; here I&#8217;m using a local copy</p>
<pre>MIRROR=http://192.168.1.2 lxc-create -f /path_to/chuckd.config -n chuckd -t slackware</pre>
<p>wait some seconds (25, here) and you will have your slackware-13.37 minimal container in /var/lib/lxc/chuckd/rootfs <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>But you have to do another step before firing it up, and it&#8217;s setting the network parameters in /var/lib/lxc/$container/etc/rc.d/rc.inet1.conf to the one of your network, if you don&#8217;t have a dhcp server available</p>
<pre>IPADDR[0]="192.168.1.10"
NETMASK[0]="255.255.255.0"
USE_DHCP[0]=""
...
GATEWAY="192.168.1.1"</pre>
<p>(192.168.2.10, 255.255.255.0 and 192.168.2.1, in the nat example above) and a nameserver in /var/lib/lxc/$container/etc/resolv.conf (here I&#8217;m using google&#8217;s one)</p>
<pre>nameserver 8.8.8.8</pre>
<p>Then launch a screen session and fire up the container</p>
<pre>screen
lxc-start -n chuckd</pre>
<p>you&#8217;ll see something like this</p>
<pre>INIT: version 2.86 booting
INIT: Entering runlevel: 3
Going multiuser...
Updating shared library links:  /sbin/ldconfig &#038;
Starting sysklogd daemons:  /usr/sbin/syslogd /usr/sbin/klogd -c 3 -x
Starting OpenSSH SSH daemon:  /usr/sbin/sshd
Generating public/private rsa1 key pair.
Your identification has been saved in /etc/ssh/ssh_host_key.
Your public key has been saved in /etc/ssh/ssh_host_key.pub.
The key fingerprint is:
27:ac:44:47:c6:9d:a7:c3:e0:1a:5d:44:a5:d7:1e:69 root@chuckd
The key's randomart image is:
+--[RSA1 2048]----+
|       .o+oo.    |
|       oo +... . |
|      .o.+.o. E  |
|     ..oo +. o . |
|      .oS ..  .  |
|     ... o       |
|      .          |
|                 |
|                 |
+-----------------+
Generating public/private dsa key pair.
Your identification has been saved in /etc/ssh/ssh_host_dsa_key.
Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub.
The key fingerprint is:
dd:37:4d:fb:59:0f:06:da:e7:23:0a:55:3b:50:34:d0 root@chuckd
The key's randomart image is:
+--[ DSA 1024]----+
|          .++    |
|           .E.   |
|          . o   .|
|         . * o o.|
|        S + = *.o|
|         .   * o=|
|        .   . o.o|
|         . . . . |
|          .      |
+-----------------+
Generating public/private rsa key pair.
Your identification has been saved in /etc/ssh/ssh_host_rsa_key.
Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub.
The key fingerprint is:
ac:2e:04:67:ba:11:3a:17:fe:6b:4c:80:95:65:26:e9 root@chuckd
The key's randomart image is:
+--[ RSA 2048]----+
|  .++            |
|  ++             |
| +               |
|. E o  .         |
| o O    S        |
|o = o  .         |
| o B  .          |
|  . =.           |
|   ..o.          |
+-----------------+
Generating public/private ecdsa key pair.
Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key.
Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub.
The key fingerprint is:
a5:e2:95:07:42:fc:ed:62:e7:c6:29:4a:45:54:17:2d root@chuckd
The key's randomart image is:
+--[ECDSA  256]---+
|     .. ... oo   |
|     ...   .E .  |
|      ..o..  .   |
|       o.=.      |
|      . S..      |
|     . +o.o      |
|      o. = .     |
|     .  . =      |
|      .. o       |
+-----------------+

* container chuckd started. *
</pre>
<p>and the console output will stop there: that means that the container fired up successfully! <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Having it in a screen session means that you can detach the session (ctrl-A D) and reattach when needed (screen -D -r), it&#8217;s optional but useful.</p>
<p>After launching, you can connect to its ip via ssh or open a console with</p>
<pre>lxc-console -n chuckd</pre>
<p>You can install whatever package you use (also full package sets) with slackpkg, but you can alternatively use slapt-get, if you like.</p>
<p>Enjoy virtual containers!</p>
<p>Considerations: lxc aims to process isolation and at the moment it&#8217;s not full: the template sets in the default config to start the containers with lxc.cap.drop=sys_admin, but that line can be commented out from the template or per container, if needed.</p>
<p>P.S. if you want to specify your own set of packages for the container, just create a text file with a modified version of this list, following the same syntax</p>
<pre>export arch=x86_64
export PACKAGES=" \
a/aaa_base-13.37-$arch-3.txz \
a/aaa_elflibs-13.37-$arch-7.txz \
a/aaa_terminfo-5.8-$arch-1.txz \
a/bash-4.1.010-$arch-1.txz \
a/bin-11.1-$arch-1.txz \
a/bzip2-1.0.6-$arch-1.txz \
a/coreutils-8.11-$arch-1.txz \
n/dhcpcd-5.2.11-$arch-1.txz \
a/dialog-1.1_20100428-$arch-2.txz \
ap/diffutils-3.0-$arch-1.txz \
a/e2fsprogs-1.41.14-$arch-1.txz \
a/elvis-2.2_0-$arch-2.txz \
a/etc-13.013-$arch-1.txz \
a/findutils-4.4.2-$arch-1.txz \
a/gawk-3.1.8-$arch-1.txz \
a/glibc-solibs-2.13-$arch-4.txz \
n/gnupg-1.4.11-$arch-1.txz \
a/grep-2.7-$arch-1.txz \
a/gzip-1.4-$arch-1.tgz \
n/iputils-s20101006-$arch-1.txz \
a/logrotate-3.7.8-$arch-1.txz \
n/net-tools-1.60-$arch-3.txz \
n/network-scripts-13.0-noarch-3.txz \
n/openssh-5.8p1-$arch-1.txz \
a/openssl-solibs-0.9.8r-$arch-3.txz \
a/pkgtools-13.37-noarch-9.tgz \
a/procps-3.2.8-$arch-3.txz \
a/sed-4.2.1-$arch-1.txz \
a/shadow-4.1.4.3-$arch-2.txz \
a/sharutils-4.11-$arch-1.txz \
ap/slackpkg-2.82.0-noarch-5.tgz \
a/sysklogd-1.5-$arch-1.txz \
a/sysvinit-2.86-$arch-6.txz \
a/sysvinit-functions-8.53-$arch-2.txz \
a/sysvinit-scripts-1.2-noarch-43.txz \
a/tar-1.26-$arch-1.tgz \
a/udev-165-$arch-2.txz \
a/util-linux-2.19-$arch-1.txz \
n/wget-1.12-$arch-1.txz \
a/which-2.20-$arch-1.txz \
a/xz-5.0.2-$arch-1.tgz"</pre>
<p>then source it before launching lxc-create</p>
<pre>. packages_I_need_list</pre>
<p>you can also pass to the script a custom SUITE variable to use other versions than 13.37 (but this is untested, as PACKAGES has to be changed too for each SUITE).<br />
P.P.S. 14.9.2011: edited the nat bridge script following Chris Willing&#8217;s hints (thanks again! <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).</p>
<p><em>References:</em><br />
- <a href=http://www.vislab.uq.edu.au/howto/lxc.html>Linux Containers (LXC) on Slackware© 13.37</a> (Chris Willing)<br />
- <a href=http://lxc.teegra.net/>LXC HOWTO</a> (Dwight Schauer)<br />
- <a href=https://sourceforge.net/mailarchive/forum.php?forum_name=lxc-users>lxc-users mailing list</a><br />
- <a href=https://sourceforge.net/mailarchive/forum.php?forum_name=lxc-devel>lxc-devel mailing list</a></p>
]]></content:encoded>
			<wfw:commentRss>http://slackware.ponce.cc/blog/2011/07/17/lxc-containers/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Slackware LAMP server with phpmyadmin in a few easy steps</title>
		<link>http://slackware.ponce.cc/blog/2011/02/12/slackware-lamp-server-with-phpmyadmin-in-a-few-easy-steps/</link>
		<comments>http://slackware.ponce.cc/blog/2011/02/12/slackware-lamp-server-with-phpmyadmin-in-a-few-easy-steps/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 18:59:17 +0000</pubDate>
		<dc:creator>Matteo Bernardini</dc:creator>
				<category><![CDATA[guides]]></category>

		<guid isPermaLink="false">http://slackware.ponce.cc/blog/?p=232</guid>
		<description><![CDATA[You have a full slackware installed and you want to use it as a LAMP server? here is a basic setup with phpmyadmin, if you like pretty interfaces for database administration (optional), in some easy steps (as root). This is a superquick guide, for more informations consider reading mRgOBLIN excellent article. let&#8217;s start - make <a href='http://slackware.ponce.cc/blog/2011/02/12/slackware-lamp-server-with-phpmyadmin-in-a-few-easy-steps/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p> You have a full slackware installed and you want to use it as a <a href="http://en.wikipedia.org/wiki/LAMP_%28software_bundle%29">LAMP server</a>? here is a basic setup with phpmyadmin, if you like pretty interfaces for database administration (optional), in some easy steps (as root).<br />
This is a superquick guide, for more informations consider reading <a href="http://connie.slackware.com/~mrgoblin/slackware-lamp.php">mRgOBLIN excellent article</a>.</p>
<p>let&#8217;s start <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>- make executable the init scripts of httpd (apache) and mysql</p>
<pre>chmod +x /etc/rc.d/rc.{mysqld,httpd}</pre>
<p>- initialize the database and create standard mysql tables (I suggest to read output on screen, it&#8217;s interesting)</p>
<pre>mysql_install_db --user=mysql</pre>
<p>- start the database daemon and execute a post initialization script: you need to input some data for setup (I suggest to accept defaults to questions)</p>
<pre>/etc/rc.d/rc.mysqld start
mysql_secure_installation</pre>
<p>- edit /etc/httpd/httpd.conf: uncomment a line to enable mod_php and add index.php to the DirectoryIndex directive</p>
<pre>Include /etc/httpd/mod_php.conf</pre>
<pre>    DirectoryIndex index.php index.html</pre>
<p>- get phpmyadmin from <a href="http://slackbuilds.org/repository/13.37/network/phpmyadmin/">slackbuilds.org</a>, build the package and install it</p>
<pre>wget http://slackbuilds.org/slackbuilds/13.37/network/phpmyadmin.tar.gz
tar xf phpmyadmin.tar.gz
cd phpmyadmin
wget $( grep tar.xz phpmyadmin.info | cut -d\" -f2 )
chmod +x phpmyadmin.SlackBuild
PKGTYPE=txz ./phpmyadmin.SlackBuild
installpkg /tmp/phpmyadmin-*.txz</pre>
<p>- start the webserver</p>
<pre>/etc/rc.d/rc.httpd start</pre>
<p>congratulations, your LAMP server is up and running! <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
your DocumentRoot is /var/www/htdocs/, put your stuff in there.<br />
you are also free to look around in your phpmyadmin: use the root credentials setted during the mysql_secure_installation step</p>
<pre>links http://localhost/phpmyadmin/</pre>
<p>if you are on another host you can substitute localhost with the output of this command on the server</p>
<pre>/sbin/ifconfig | grep "inet addr" | grep -v "127.0.0.1" | cut -d: -f2 | cut -d' ' -f1</pre>
]]></content:encoded>
			<wfw:commentRss>http://slackware.ponce.cc/blog/2011/02/12/slackware-lamp-server-with-phpmyadmin-in-a-few-easy-steps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>slackbuilds.org with gource</title>
		<link>http://slackware.ponce.cc/blog/2010/09/24/slackbuilds-org-with-gource/</link>
		<comments>http://slackware.ponce.cc/blog/2010/09/24/slackbuilds-org-with-gource/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 11:03:45 +0000</pubDate>
		<dc:creator>Matteo Bernardini</dc:creator>
				<category><![CDATA[slackbuilds.org]]></category>

		<guid isPermaLink="false">http://slackware.ponce.cc/blog/?p=197</guid>
		<description><![CDATA[I submitted gource to slackbuilds.org and I&#8217;ve tried it with their repository you can alternatively watch it with mplayer mplayer http://ponce.cc/videos/other/slackbuilds-gource.mp4 first I got the avatars off gravatar with a perl script. then the command I&#8217;ve used to do this (inside of the slackbuilds repository folder) is gource -1280x800 -s 0.7 --user-image-dir .git/avatar/ --default-user-image ../no_photo.png <a href='http://slackware.ponce.cc/blog/2010/09/24/slackbuilds-org-with-gource/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I submitted <a href=http://code.google.com/p/gource/>gource</a> to <a href=http://slackbuilds.org/repository/13.1/graphics/gource/>slackbuilds.org</a> and I&#8217;ve tried it with their repository</p>
<p><a href="http://slackware.ponce.cc/blog/2010/09/24/slackbuilds-org-with-gource/"><em>Click here to view the embedded video.</em></a></p>
<p>you can alternatively watch it with mplayer</p>
<pre>mplayer http://ponce.cc/videos/other/slackbuilds-gource.mp4</pre>
<p>first I got the avatars off gravatar with <a href=http://code.google.com/p/gource/wiki/GravatarExample>a perl script</a>.</p>
<p>then the command I&#8217;ve used to do this (inside of the slackbuilds repository folder) is</p>
<pre>gource -1280x800 -s 0.7 --user-image-dir .git/avatar/ --default-user-image ../no_photo.png -a 0.25 --colour-images --bloom-multiplier 0.80 --bloom-intensity 0.55 --user-scale 1.8 --user-friction 0.7 --title "Slackbuild.org git history" --output-framerate 25 --disable-progress --stop-at-end --output-ppm-stream - | ffmpeg -vpre libx264-default -y -b 3000K -r 25 -f image2pipe -vcodec ppm -i - -vcodec libx264 ../gource.mp4</pre>
]]></content:encoded>
			<wfw:commentRss>http://slackware.ponce.cc/blog/2010/09/24/slackbuilds-org-with-gource/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://ponce.cc/videos/other/slackbuilds-gource.mp4" length="91042632" type="video/mp4" />
		</item>
		<item>
		<title>easily build yourself LXDE with sbopkg</title>
		<link>http://slackware.ponce.cc/blog/2010/08/23/easily-build-yourself-lxde-with-sbopkg/</link>
		<comments>http://slackware.ponce.cc/blog/2010/08/23/easily-build-yourself-lxde-with-sbopkg/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 11:40:13 +0000</pubDate>
		<dc:creator>ponce</dc:creator>
				<category><![CDATA[alien bob]]></category>
		<category><![CDATA[current]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[guides]]></category>
		<category><![CDATA[robby workman]]></category>
		<category><![CDATA[slackbuilds.org]]></category>

		<guid isPermaLink="false">http://slackware.ponce.cc/blog/?p=178</guid>
		<description><![CDATA[as I promised, I have added the necessary branches to my slackbuilds.org&#8217;s git master fork, so it will be easy to build a complete LXDE desktop using sbopkg. I used existing slackbuilds.org components, I added alien bob&#8217;s scripts adapting them to slackbuilds.org template and I wrote some from scratch. UPDATE: all the components are submitted <a href='http://slackware.ponce.cc/blog/2010/08/23/easily-build-yourself-lxde-with-sbopkg/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><img class="aligncenter" src="http://lxde.org/sites/default/files/garland_logo.png" alt="LXDE logo" /></p>
<p>as I promised, I have added the necessary <a href="http://cgit.ponce.cc/slackbuilds/refs/heads">branches</a> to my <a href="http://slackbuilds.org/cgit/slackbuilds/">slackbuilds.org&#8217;s git master</a> <a href="https://github.com/Ponce/slackbuilds">fork</a>, so it will be easy to build a complete <a href="http://www.lxde.org">LXDE desktop</a> using <a href="http://www.sbopkg.org">sbopkg</a>.<br />
I used existing <a href="http://slackbuilds.org">slackbuilds.org</a> components, I added <a href="http://connie.slackware.com/~alien/slackbuilds/lxde/build/">alien bob&#8217;s scripts</a> adapting them to <a href="http://slackbuilds.org/templates/autotools-template.SlackBuild">slackbuilds.org template</a> and I wrote some from scratch.</p>
<ol><strong>UPDATE</strong>: all the components are submitted to slackbuilds.org now so there&#8217;s no particular need to set up my repository, unless you want latest testing (but working) stuff.<br />
I also removed the gnome-vfs building option because it&#8217;s obsolete starting with slackware 13.37.<br />
I&#8217;ll try to keep it updated with the latest fixes, you can see them in the <a href="http://cgit.ponce.cc/slackbuilds/refs/heads">branch list of the git repository</a>, so you can use them individually.</ol>
<p><strong><em>the quick install guide:</em></strong></p>
<p>download and install <a href="http://www.sbopkg.org">the latest version of sbopkg</a> (if you don&#8217;t have it already, as it&#8217;s a must-have application for slackware <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )<br />
Launch it, go to the <strong>Utilities</strong> menu and use the <strong>Repository</strong> option to select the SBo-git repository.<br />
you can then go <strong>back</strong> to the main menu and select the <strong>Sync</strong> option.<br />
I can also use some <a href=https://github.com/Ponce/slackbuilds/wiki/configuring-the-current-repository-with-sbopkg>command line alternatives</a> <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
If you find any problems syncing, just</p>
<pre>rm -fR /var/lib/sbopkg/SBo-git
sbopkg -r</pre>
<p>use this text file as /var/lib/sbopkg/queues/lxde.sqf</p>
<pre>libatasmart
sg3_utils
udisks
upower
leafpad
xarchiver | BEND_ME_OVER=kthxbai
openbox
xmms2
gpicview
lxappearance
lxappearance-obconf
lxde-common
lxrandr
lxterminal
menu-cache
lxmenu-data
lxlauncher
lxpanel
lxpanel-xmms2
lxtask
lxpolkit
lxsession
lxsession-edit
gvfs
libfm
pcmanfm
lxshortcut
lxinput
lxmusic
lxdm
vala
libgee
gksu-polkit</pre>
<p>then launch</p>
<pre>sbopkg -i lxde</pre>
<p>choose in the dialog to keep the queue options and you&#8217;ve only to wait a little. <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>at the end, launching xwmconfig you can choose xinitrc.lxde and the next time you enter in X you&#8217;ll have a brand new shiny LXDE desktop. <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://slackware.ponce.cc/blog/2010/08/23/easily-build-yourself-lxde-with-sbopkg/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>LXDE from git on slackware-current</title>
		<link>http://slackware.ponce.cc/blog/2010/08/06/lxde-from-git-on-slackware-current/</link>
		<comments>http://slackware.ponce.cc/blog/2010/08/06/lxde-from-git-on-slackware-current/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 17:38:47 +0000</pubDate>
		<dc:creator>ponce</dc:creator>
				<category><![CDATA[alien bob]]></category>
		<category><![CDATA[current]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[robby workman]]></category>
		<category><![CDATA[slackbuilds.org]]></category>

		<guid isPermaLink="false">http://slackware.ponce.cc/blog/?p=167</guid>
		<description><![CDATA[hi, finally found the time to work a little on LXDE: I&#8217;ve prepared a second round of slackbuilds and packages based mainly on the git version of the various components (many improvements in there). hope I haven&#8217;t missed anything of the things spotted (still have to do experiments with suspend). maybe is better if I <a href='http://slackware.ponce.cc/blog/2010/08/06/lxde-from-git-on-slackware-current/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>hi, finally found the time to work a little on LXDE: I&#8217;ve prepared a second round of slackbuilds and packages based mainly on the git version of the various components (many improvements in there).<br />
hope I haven&#8217;t missed anything of the things spotted (still have to do experiments with suspend).<br />
maybe is better if I just cut and paste from the README.txt of the <a href=http://ponce.cc/slackware/testing/lxde-git/>download folder</a></p>
<pre>LXDE for slackware current
--------------------------

many of the slackbuilds here are from alien bob's repository and slackbuilds.org

<a href=http://connie.slackware.com/~alien/slackbuilds/lxde/build/>http://connie.slackware.com/~alien/slackbuilds/lxde/build/</a>

<a href=http://slackbuilds.org/>http://slackbuilds.org/</a>

I simply adapted/updated some things to build on current and added some others.
You can check the build scripts used in the "build" folder:
LXDE.SlackBuild is the script to launch (it uses a build queue, it's a modified
version of kde build script).

I updated the version of the stuff beyond the latest stable packages on sourceforge,
as on git there's lotta new interesting stuff going on:

- new libfm and pcmanfm with automounting/udisks support
- new lxappearance (this is version 2, renamed in the build script)
- many translation and other updates

How to use:

* install the packages for your architecture:

  - the i486 ones if you are running slackware-current
  - the x86_64 ones if you are running slackware64-current

packages are UNTESTED on 13.1 (but, who knows, they might work <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )

* be sure to have installed the packages tango-icon-theme (for the default
  desktop icons/menu theme), vte (for lxterminal), atk, glib, pango, cairo and
  gtk+2 from the official slackware repository (obviously also X packages <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ).

* run xwmconfig as user and choose the lxde session.

* start/restart X.

* if you want to run lxdm as the session manager (optional) apply the patch that you can
  find in this directory (instructions are inside the patch itself) to
  /etc/rc.d/rc.4

**************************************
              WARNING!
**************************************
these packages include *one* update of the standard slackware packages, glib2,
but unfortunately is needed for the new libfm.

<a href=http://blog.lxde.org/?p=768>http://blog.lxde.org/?p=768</a>

if you find any problems report them on <a href=http://www.linuxquestions.org/questions/slackware-14/lxde-desktop-for-slackware-13-1-testing-810047/>this linuxquestion thread</a></pre>
<p>I&#8217;m only a little disappointed for having to upgrade glib2 but, you know, it&#8217;s testing stuff <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>soon I&#8217;ll try to do branches about these packages on <a href=http://github.com/Ponce/slackbuilds>my slackbuilds.org fork</a> so I can use this stuff in <a href=http://wiki.github.com/Ponce/slackbuilds/sbopkg-queue-used>my sbopkg queue</a>: for eric scripts I think I&#8217;ll do a first commit in the corresponding branch adding the original script and a second one with the modified version (I tried to follow the autools-template).</p>
<p>you can find on the download page also a <a href=http://ponce.cc/slackware/testing/lxde-git/build.tar>.tar of the build folder</a> (with the sources folder and links in the slackbuilds folders too, for easy self-building).</p>
<p>happy testing! <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>EDIT: looks like suspend works! <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://slackware.ponce.cc/blog/2010/08/06/lxde-from-git-on-slackware-current/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20100704 update</title>
		<link>http://slackware.ponce.cc/blog/2010/07/05/20100704-update/</link>
		<comments>http://slackware.ponce.cc/blog/2010/07/05/20100704-update/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 06:36:09 +0000</pubDate>
		<dc:creator>ponce</dc:creator>
				<category><![CDATA[current]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[slackbuilds.org]]></category>

		<guid isPermaLink="false">http://slackware.ponce.cc/blog/?p=156</guid>
		<description><![CDATA[a quick update from holidays (sorry for the super-short post). The slackbuilds.org git fork got updated, the x86_64 packages and the i486 ones too.]]></description>
			<content:encoded><![CDATA[<p>a quick update from holidays (sorry for the super-short post).</p>
<p>The <a href="http://github.com/Ponce/slackbuilds">slackbuilds.org git fork</a> got updated, the <a href="http://ponce.cc/slackware/slackware64-current/packages/">x86_64 packages</a> and the <a href="http://ponce.cc/slackware/slackware-current/packages/">i486 ones</a> too.</p>
]]></content:encoded>
			<wfw:commentRss>http://slackware.ponce.cc/blog/2010/07/05/20100704-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slackbuilds.org got gitted!</title>
		<link>http://slackware.ponce.cc/blog/2010/05/30/slackbuilds-org-got-gitted/</link>
		<comments>http://slackware.ponce.cc/blog/2010/05/30/slackbuilds-org-got-gitted/#comments</comments>
		<pubDate>Sun, 30 May 2010 10:27:56 +0000</pubDate>
		<dc:creator>Matteo Bernardini</dc:creator>
				<category><![CDATA[alien bob]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[robby workman]]></category>
		<category><![CDATA[slackbuilds.org]]></category>

		<guid isPermaLink="false">http://slackware.ponce.cc/blog/?p=149</guid>
		<description><![CDATA[As Robby Workman has announced on the slackbuilds.org users mailing list, they started a git repository for managing their slackbuilds. This, besides being great news, has some implications: my SBo-git repository for -current has no sense to be continued anymore, as the logic (and Robby too ) tells me to rebase my work on their <a href='http://slackware.ponce.cc/blog/2010/05/30/slackbuilds-org-got-gitted/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>As Robby Workman <a href="http://lists.slackbuilds.org/pipermail/slackbuilds-users/2010-May/005627.html">has announced</a> on the slackbuilds.org users mailing list, they started a <a href="http://slackbuilds.org/gitweb/?p=slackbuilds.git;a=summary">git repository</a> for managing their slackbuilds. <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>This, besides being great news, has some implications: my <a href="http://github.com/Ponce/SBo-git">SBo-git repository for -current</a> has no sense to be continued anymore, as the logic (and Robby too <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ) tells me to rebase my work on their repository.<br />
It&#8217;s <em>was</em> also much cleaner and ordered, but I <a href="http://github.com/Ponce/slackbuilds">forked it on github</a> and I started playing on it to have a branch to use to build <a href="http://wiki.github.com/Ponce/slackbuilds/sbopkg-queue-used">my sbopkg queue</a>.</p>
<p>so, if you want to follow my mods, the new address is:</p>
<p><a href="http://github.com/Ponce/slackbuilds">http://github.com/Ponce/slackbuilds</a></p>
<pre>2ManDVD                multimedia/2ManDVD: updated to 1.3.3, miscellaneous cleanups
LiVES                  multimedia/LiVES: fixed link to lives-exe binary, miscellaneous cleanups
audacity               audio/audacity: updated to latest 1.3.12 beta, miscellaneous cleanups
avidemux               multimedia/avidemux: fixed md5sum, added alien bob's fix for x86_64 paths and plugins build code
cabextract             system/cabextract: miscellaneous cleanups
cherokee               network/cherokee: updated to 1.0.1, added some configure options, miscellaneous cleanups
cksfv                  misc/cksfv: miscellaneous cleanups
clamav                 system/clamav: updated to 0.96.1, rewritten clamd.conf.patch, miscellaneous cleanups
cryptopp               libraries/cryptopp: downgraded to 5.5.2 for aMule
darkstat               network/darkstat: miscellaneous cleanups
dvgrab                 multimedia/dvgrab: miscellaneous cleanups
encfs                  revert system/encfs removal and adds a patch for the new toolchain
ffmpeg                 multimedia/ffmpeg: updated to r23248, added a configure option, miscellaneous cleanups
ffmpegthumbnailer      desktop/ffmpegthumbnailer: updated to 2.0.2, miscellaneous cleanups
foremost               system/foremost: miscellaneous cleanups
gavl                   libraries/gavl: added.
gdk-pixbuf             libraries/gdk-pixbuf: miscellaneous cleanups
gpac                   revert multimedia/gpac removal, adds a patch for the new libpng and miscellaneous cleanups
gst-plugins-bad        multimedia/gst-plugins-bad: updated to 0.10.18, miscellaneous cleanups
gst-plugins-ugly       multimedia/gst-plugins-ugly: updated to 0.10.14, miscellaneous cleanups
gst-python             libraries/gst-plugins-python: updated to 0.10.18, miscellaneous cleanups
hping3                 network/hping3: miscellaneous cleanups
id3                    audio/id3: miscellaneous cleanups
kino                   multimedia/kino: updated to 1.3.4 for the new ffmpeg
kvirc                  network/kvirc: updated to 4.0rc3 for qt4 build, miscellaneous cleanups
libiconv               libraries/libiconv: added libiconv, a text conversion library
libnice                libraries/libnice: downgraded to 0.0.10 for farsight2
libunicap              libraries/libunicap: added libunicap, a video capture library
ltris                  games/ltris: miscellaneous cleanups
mjpegtools             multimedia/mjpegtools: miscellaneous cleanups
obconf                 desktop/obconf: miscellaneous cleanups
perl-Compress-Raw-Zlib libraries/perl-Compress-Raw-Zlib: added perl-Compress-Raw-Zlib, a Perl interface to the zlib compression library
perl-Compress-Zlib     libraries/perl-Compress-Zlib: added perl-Compress-Zlib, a Perl interface to the zlib compression library
perl-IO-Compress-Base  libraries/perl-IO-Compress-Base: added perl-IO-Compress-Base, the base class for all IO::Compress and IO::Uncompress Perl modules
perl-IO-Compress-Zlib  libraries/perl-IO-Compress-Zlib: added perl-IO-Compress-Zlib, a Perl interface to allow reading and writing of gzip and zip files/buffers
python-twisted         network/python-twisted: miscellaneous cleanups
python2-chardet        libraries/python2-chardet: miscellaneous cleanups
scummvm                revert games/scummvm removal, updated to 1.1.1
snack                  audio/snack: added snack, a sound toolkit
soundtouch             revert libraries/soundtouch removal, updated to 1.5.0, miscellaneous cleanups
vice                   system/vice: added patch to fix build, miscellaneous cleanups
wmCalClock             desktop/wmCalClock: miscellaneous cleanups
wmMoonClock            desktop/wmMoonClock: miscellaneous cleanups
wmSun                  desktop/wmSun: miscellaneous cleanups
wmakerconf             desktop/wmakerconf: miscellaneous cleanups
wminfo                 desktop/wminfo: miscellaneous cleanups
wmnet                  desktop/wmnet: miscellaneous cleanups
wmweather              desktop/wmweather: miscellaneous cleanups
wormux                 games/wormux: updated to 0.9.2.1, miscellaneous cleanups
wvdial                 revert network/wvdial removal, updated to 1.6.1, miscellaneous cleanups
wxcam                  multimedia/wxcam: miscellaneous cleanups
x264                   multimedia/x264: updated to 20100425, added configure option, miscellaneous cleanups
zisofs-tools           revert system/zisofs-tools removal, miscellaneous cleanups</pre>
<p>soon I&#8217;ll manage to build the queue on a fresh installed slackware 13.1 to try this new repository (<a href="http://ponce.cc/slackware/slackware64-current/packages/">last</a> <a href="http://ponce.cc/slackware/slackware-current/packages/">packages</a> was built using <a href="http://github.com/Ponce/SBo-git">SBo-git</a>) so stay tuned if you prefeer prebuilt fresh goodies <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>P.S. in the meantime I managed to do <a href="http://ponce.cc/slackware/testing/lxde/">lxde packages</a> for slackware 13.1 from <a href="http://connie.slackware.com/~alien/slackbuilds/lxde/build/">alien bob&#8217;s lxde build scripts</a> and some stuff from slackbuilds.org, to create a <a href="http://www.slax.org/forum.php?action=view&amp;parentID=60839">slax-remix</a> <a href="http://ponce.cc/slackware/testing/slax-remix/">module</a> to have an alternate desktop on that live distribution (it&#8217;s based on ex-current, now 13.1, too).<br />
if you want to try them and report back any problem, I&#8217;ll be glad to improve them (if I am able to). <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://slackware.ponce.cc/blog/2010/05/30/slackbuilds-org-got-gitted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slackware 13.1 is out!</title>
		<link>http://slackware.ponce.cc/blog/2010/05/25/slackware-13-1-is-out/</link>
		<comments>http://slackware.ponce.cc/blog/2010/05/25/slackware-13-1-is-out/#comments</comments>
		<pubDate>Tue, 25 May 2010 07:57:16 +0000</pubDate>
		<dc:creator>Matteo Bernardini</dc:creator>
				<category><![CDATA[alien bob]]></category>
		<category><![CDATA[current]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[slackbuilds.org]]></category>

		<guid isPermaLink="false">http://slackware.ponce.cc/blog/?p=144</guid>
		<description><![CDATA[as announced on slackware main site the 13.1 release of the oldest linux distribution is ready slackware confirm itself one of the most innovative distribution in the field, with software updates surpassing latest ubuntu The SBo-git repository is ready too to be used with sbopkg on this new slackware version. if you need fresh additional <a href='http://slackware.ponce.cc/blog/2010/05/25/slackware-13-1-is-out/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>as announced on <a href="http://slackware.com">slackware main site</a> the 13.1 release of the oldest linux distribution is ready <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>slackware confirm itself one of the most innovative distribution in the field, with software updates surpassing latest ubuntu <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>The <a href="http://github.com/Ponce/SBo-git">SBo-git repository</a> is ready too <a href="http://wiki.github.com/Ponce/SBo-git/configuring-sbo-git-with-sbopkg">to be used with sbopkg</a> on this new slackware version.</p>
<p>if you need fresh additional packages beside slackware standard full install, I built some (using sbopkg and SBo-git) for my personal use (<a href="http://wiki.github.com/Ponce/SBo-git/sbopkg-queue-used">the list</a>) that I gladly share:<br />
- <a href="http://ponce.cc/slackware/slackware64-current/packages/">x86_64</a><br />
- <a href="http://ponce.cc/slackware/slackware-current/packages/">i686</a></p>
<p>I massconverted now also the <a href="http://ponce.cc/slackware/slackware64-current/compat32/">compat32 packages</a> (waiting for official updates from <a href="http://connie.slackware.com/~alien/multilib/">alien bob</a>) for running 32 bit software on multilib slackware64: if you are using those in the past, remember to remove libv4l-compat32 (it has been superseded by v4l-utils) before doing</p>
<pre>upgradepkg --install-new --reinstall */*.txz</pre>
<p>while in compat32 folder.</p>
]]></content:encoded>
			<wfw:commentRss>http://slackware.ponce.cc/blog/2010/05/25/slackware-13-1-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SBo-git 20100518</title>
		<link>http://slackware.ponce.cc/blog/2010/05/19/sbo-git-201005/</link>
		<comments>http://slackware.ponce.cc/blog/2010/05/19/sbo-git-201005/#comments</comments>
		<pubDate>Wed, 19 May 2010 20:28:54 +0000</pubDate>
		<dc:creator>ponce</dc:creator>
				<category><![CDATA[current]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[slackbuilds.org]]></category>

		<guid isPermaLink="false">http://slackware.ponce.cc/blog/?p=137</guid>
		<description><![CDATA[updated SBo-git with some small fixes after the slackbuilds.org updates of 2 days ago: this is the repo at today. there&#8217;s also a new contributor, Greg Tourte! soon I&#8217;ll fix the individual branches to do a rebase and a merge in a new branch derived from master: after all, it looks cleaner to me than <a href='http://slackware.ponce.cc/blog/2010/05/19/sbo-git-201005/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>updated <a href="http://github.com/Ponce/SBo-git">SBo-git</a> with some small fixes after the <a href="http://slackbuilds.org/">slackbuilds.org</a> updates of 2 days ago: <a href="http://github.com/Ponce/SBo-git/tree/current-20100518">this is the repo at today</a>.<br />
there&#8217;s also a new contributor, <a href="http://github.com/ArTourter">Greg Tourte</a>! <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>soon I&#8217;ll fix the individual branches to do a rebase and a merge in a new branch derived from <a href="http://github.com/Ponce/SBo-git/tree/master">master</a>: after all, it looks cleaner to me than apply lot of fixes to <a href="http://github.com/Ponce/SBo-git/tree/master">current</a>. <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I also rebuilt my <a href="http://ponce.cc/slackware/slackware64-current/packages/">x86_64</a> packages (soon the i686 ones will follow).</p>
<p>then I&#8217;ll wait for the new 13.1 slackbuilds.org repository: alien bob <a href="http://alien.slackbook.org/blog/preparing-for-a-release-is-tedious/">hints about surprises</a> and that stimulated a lot my curiosity <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://slackware.ponce.cc/blog/2010/05/19/sbo-git-201005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SBo-git 20100508</title>
		<link>http://slackware.ponce.cc/blog/2010/05/08/sbo-git-20100508/</link>
		<comments>http://slackware.ponce.cc/blog/2010/05/08/sbo-git-20100508/#comments</comments>
		<pubDate>Sat, 08 May 2010 07:04:28 +0000</pubDate>
		<dc:creator>ponce</dc:creator>
				<category><![CDATA[current]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[slackbuilds.org]]></category>

		<guid isPermaLink="false">http://slackware.ponce.cc/blog/?p=135</guid>
		<description><![CDATA[updated all my -currents to latest status (13.1 beta1: as usual, if you want you can check the current commits/branches on SBo-git page) and rebuilt all my stuff (x86_64 and i686). I managed to set up also a redmine site to have a frontend for my projects. but the best thing is that SBo-git has <a href='http://slackware.ponce.cc/blog/2010/05/08/sbo-git-20100508/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>updated all my -currents to latest status (13.1 beta1: as usual, if you want you can check the current commits/branches on <a href="http://github.com/Ponce/SBo-git">SBo-git page</a>) and rebuilt all my stuff (<a href="http://ponce.cc/slackware/slackware64-current/packages/">x86_64</a> and <a href="http://ponce.cc/slackware/slackware-current/packages/">i686</a>).</p>
<p>I managed to set up also a <a href="http://redmine.ponce.cc/">redmine</a> site to have a frontend for my projects. <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>but the best thing is that <a href="http://github.com/Ponce/SBo-git">SBo-git</a> has a new contributor of patches/fixes: tnx a lot and welcome, <a href="http://github.com/grissiom/">grissiom</a>. <img src='http://slackware.ponce.cc/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://slackware.ponce.cc/blog/2010/05/08/sbo-git-20100508/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

