<br><br><div class="gmail_quote">On Thu, Mar 31, 2011 at 7:10 PM, Sascha Silbe <span dir="ltr"><<a href="mailto:silbe@activitycentral.com">silbe@activitycentral.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<br>
Thanks for the patch! I'll take a closer look within the next few days<br>
(if I don't, feel free to ping me).</blockquote><div>ok thanks for all <br></div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"> Just one thing: You need to use<br>


lower case 'tuquito' in sysdeps.py because we force all names to lower<br>
case before usage (see _get_distribution() and _pipe_lower()).<br><br></blockquote><div>I made the corrections to the pacht, I send via git and attach to this mail to<br>From 233589ff2fdc1e862e2eb8b02c66525dd8c9ac5f Mon Sep 17 00:00:00 2001<br>

From: amaciel <<a href="mailto:alvar@tuquito.org.ar">alvar@tuquito.org.ar</a>><br>Date: Fri, 1 Apr 2011 12:06:00 -0300<br>Subject: [PATCH] Adding support for Tuquito GNU/Linux distribution<br><br>Tuquito is a Ubuntu based distribution - <a href="http://www.tuquito.org.ar">http://www.tuquito.org.ar</a> Made in Argentina our goal is to make an usable distribution whit support for educators from a collaborative learning  perspective.<br>

---<br> config/sysdeps/10tuquito-allversions.xml |    1 +<br> config/sysdeps/50tuquito-4.1.xml         |   25 +++++++++++++++++++++++++<br> config/sysdeps/50tuquito-allversions.xml |    5 +++++<br> sjhbuild/sysdeps.py                      |    3 ++-<br>

 4 files changed, 33 insertions(+), 1 deletions(-)<br> create mode 120000 config/sysdeps/10tuquito-allversions.xml<br> create mode 100644 config/sysdeps/50tuquito-4.1.xml<br> create mode 100644 config/sysdeps/50tuquito-allversions.xml<br>

<br>diff --git a/config/sysdeps/10tuquito-allversions.xml b/config/sysdeps/10tuquito-allversions.xml<br>new file mode 120000<br>index 0000000..ce85b51<br>--- /dev/null<br>+++ b/config/sysdeps/10tuquito-allversions.xml<br>

@@ -0,0 +1 @@<br>+debian-family.xml<br>\ No newline at end of file<br>diff --git a/config/sysdeps/50tuquito-4.1.xml b/config/sysdeps/50tuquito-4.1.xml<br>new file mode 100644<br>index 0000000..5ed0ce8<br>--- /dev/null<br>

+++ b/config/sysdeps/50tuquito-4.1.xml<br>@@ -0,0 +1,25 @@<br>+<?xml version="1.0"?><br>+<dependencies><br>+  <package name="abiword" source="abiword-plugins"/><br>+  <package name="espeak"/><br>

+  <package name="espeak-data"/><br>+  <package name="libabiword-2.8-dev" source="abiword"/><br>+  <package name="libtelepathy-glib0" source="telepathy-glib"/><br>

+  <package name="libdbus-glib-1-dev" source="dbus-glib"/><br>+  <package name="metacity" source="metacity"/><br>+  <package name="pep8" source="pep8"/><br>

+  <package name="pylint" source="pylint"/><br>+  <package name="python-abiword" source="pyabiword"/><br>+  <package name="python-evince" source="gnome-python-desktop"/><br>

+  <package name=" python-lxml" source=" python-lxml"/><br>+  <package name="python-beautifulsoup" source="python-beautifulsoup"/><br>+<!--  <package name="python-metacity" source="gnome-python-desktop"/> --><br>

+  <package name="python-rsvg" source="gnome-python-desktop"/><br>+  <package name="python-telepathy" source="telepathy-python"/><br>+  <package name="python-wnck" source="gnome-python-desktop"/><br>

+  <package name="python-xklavier" source="python-xklavier"/><br>+  <!-- python-xpcom still isn't packaged so hulahop won't work, but it builds --><br>+  <package name="telepathy-gabble" source="telepathy-gabble"/><br>

+  <package name="telepathy-salut" source="telepathy-salut"/><br>+  <package name="xulrunner-1.9.2" source="xulrunner"/><!-- for hulahop --><br>+</dependencies><br>

diff --git a/config/sysdeps/50tuquito-allversions.xml b/config/sysdeps/50tuquito-allversions.xml<br>new file mode 100644<br>index 0000000..e523b3a<br>--- /dev/null<br>+++ b/config/sysdeps/50tuquito-allversions.xml<br>@@ -0,0 +1,5 @@<br>

+<?xml version="1.0"?><br>+<dependencies><br>+  <!-- TODO: check whether we actually need these (commented out for Debian) --><br>+  <package name="libpoppler-dev"/><br>+</dependencies><br>

diff --git a/sjhbuild/sysdeps.py b/sjhbuild/sysdeps.py<br>index 7aeb026..cf851af 100644<br>--- a/sjhbuild/sysdeps.py<br>+++ b/sjhbuild/sysdeps.py<br>@@ -15,6 +15,7 @@ _UNSTABLE_NAMES = {<br>     'fedora': 'rawhide',<br>

     'mandrivalinux': 'cooker',<br>     'ubuntu': 'unstable',<br>+    'tuquito':'unstable',<br> }<br> <br> <br>@@ -49,7 +50,7 @@ def check_package(package):<br>     if name in ['fedora', 'mandrivalinux']:<br>

         ret = subprocess.call(['rpm', '--quiet', '-q', package])<br>         return ret == 0<br>-    elif name in ['ubuntu', 'debian']:<br>+    elif name in ['ubuntu', 'debian', 'tuquito']:<br>

         cmd = ["dpkg-query", "-f='${status}'", "-W", package]<br>         out, err_ = subprocess.Popen(cmd, stdout=subprocess.PIPE).communicate()<br>         return out.find('install ok installed') != -1<br>

-- <br>1.7.1 <br></div><br></div><br>