summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-discuss/20110115
diff options
context:
space:
mode:
authorNicolas Vigier <boklm@mageia.org>2013-04-14 13:46:12 +0000
committerNicolas Vigier <boklm@mageia.org>2013-04-14 13:46:12 +0000
commit1be510f9529cb082f802408b472a77d074b394c0 (patch)
treeb175f9d5fcb107576dabc768e7bd04d4a3e491a0 /zarb-ml/mageia-discuss/20110115
parentfa5098cf210b23ab4f419913e28af7b1b07dafb2 (diff)
downloadarchives-master.tar
archives-master.tar.gz
archives-master.tar.bz2
archives-master.tar.xz
archives-master.zip
Add zarb MLs html archivesHEADmaster
Diffstat (limited to 'zarb-ml/mageia-discuss/20110115')
-rw-r--r--zarb-ml/mageia-discuss/20110115/003405.html92
-rw-r--r--zarb-ml/mageia-discuss/20110115/003406.html72
-rw-r--r--zarb-ml/mageia-discuss/20110115/003407.html109
-rw-r--r--zarb-ml/mageia-discuss/20110115/author.html62
-rw-r--r--zarb-ml/mageia-discuss/20110115/date.html62
l---------zarb-ml/mageia-discuss/20110115/index.html1
-rw-r--r--zarb-ml/mageia-discuss/20110115/subject.html62
-rw-r--r--zarb-ml/mageia-discuss/20110115/thread.html65
8 files changed, 525 insertions, 0 deletions
diff --git a/zarb-ml/mageia-discuss/20110115/003405.html b/zarb-ml/mageia-discuss/20110115/003405.html
new file mode 100644
index 000000000..af06939ed
--- /dev/null
+++ b/zarb-ml/mageia-discuss/20110115/003405.html
@@ -0,0 +1,92 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-discuss] Trying to learn a little about packaging
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-discuss%40mageia.org?Subject=Re%3A%20%5BMageia-discuss%5D%20Trying%20to%20learn%20a%20little%20about%20packaging&In-Reply-To=%3CAANLkTi%3DqdOZXEJf1uFFtOmDN2Rz9mxt4Y9xWc2CpX4sZ%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+
+ <LINK REL="Next" HREF="003406.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-discuss] Trying to learn a little about packaging</H1>
+ <B>Hoyt Duff</B>
+ <A HREF="mailto:mageia-discuss%40mageia.org?Subject=Re%3A%20%5BMageia-discuss%5D%20Trying%20to%20learn%20a%20little%20about%20packaging&In-Reply-To=%3CAANLkTi%3DqdOZXEJf1uFFtOmDN2Rz9mxt4Y9xWc2CpX4sZ%40mail.gmail.com%3E"
+ TITLE="[Mageia-discuss] Trying to learn a little about packaging">hoytduff at gmail.com
+ </A><BR>
+ <I>Sat Jan 15 03:33:56 CET 2011</I>
+ <P><UL>
+
+ <LI>Next message: <A HREF="003406.html">[Mageia-discuss] Trying to learn a little about packaging
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#3405">[ date ]</a>
+ <a href="thread.html#3405">[ thread ]</a>
+ <a href="subject.html#3405">[ subject ]</a>
+ <a href="author.html#3405">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 1/14/11, Michael Scherer &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-discuss">misc at zarb.org</A>&gt; wrote:
+&gt;<i> Le vendredi 14 janvier 2011 &#224; 00:18 -0500, Hoyt Duff a &#233;crit :
+</I>&gt;&gt;<i> The .spec file as provided defines %define _prefix as /usr/local. Yes,
+</I>&gt;&gt;<i> I know that it should be /usr for a Mandriva-specific package, but I'd
+</I>&gt;&gt;<i> like to actually build the package first so I can understand what
+</I>&gt;&gt;<i> needs to be patched to build from the pristine sources on
+</I>&gt;&gt;<i> Madriva/Mageia, not start from scratch - that kind of defeats the
+</I>&gt;&gt;<i> purpose of RPM.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> In the %files section &quot;%{_libdir}/%{name}&quot; should pick up &quot;%_prefix&quot;,
+</I>&gt;&gt;<i> but it does not. As a result, some files don't get created in two
+</I>&gt;&gt;<i> directories and the build fails.
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> What I'm asking is if there is a difference in how Mandrake handles
+</I>&gt;&gt;<i> that substitution versus how Fedora handles that. I installed Fedora
+</I>&gt;&gt;<i> in a VM and the package builds fine on Fedora, but I get the error on
+</I>&gt;&gt;<i> Madriva. I've examined the .spec file and don't see where there is any
+</I>&gt;&gt;<i> obvious problem, so I'm seeking some guidance as to where to look
+</I>&gt;&gt;<i> deeper.
+</I>&gt;<i>
+</I>&gt;<i> That's quite simple.
+</I>&gt;<i> On fedora :
+</I>&gt;<i> ~ $ rpm --showrc | grep -i ' _libdir'
+</I>&gt;<i> -14: _libdir %{_prefix}/lib
+</I>&gt;<i>
+</I>&gt;<i> On mandriva :
+</I>&gt;<i> $ rpm --showrc | grep -i ' _libdir'
+</I>&gt;<i> -14: _libdir /usr/lib
+</I>&gt;<i>
+</I>&gt;<i> Mandriva hardcode the use of /usr/ in the rpm macros file, while Fedora
+</I>&gt;<i> doesn't, letting people override %_prefix.
+</I>&gt;<i>
+</I>
+Thanks, Michael. I can make those adjustments and will forward that
+info to the package maintainer.
+
+--
+Hoyt
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+
+ <LI>Next message: <A HREF="003406.html">[Mageia-discuss] Trying to learn a little about packaging
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#3405">[ date ]</a>
+ <a href="thread.html#3405">[ thread ]</a>
+ <a href="subject.html#3405">[ subject ]</a>
+ <a href="author.html#3405">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-discuss">More information about the Mageia-discuss
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-discuss/20110115/003406.html b/zarb-ml/mageia-discuss/20110115/003406.html
new file mode 100644
index 000000000..6c6c59063
--- /dev/null
+++ b/zarb-ml/mageia-discuss/20110115/003406.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-discuss] Trying to learn a little about packaging
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-discuss%40mageia.org?Subject=Re%3A%20%5BMageia-discuss%5D%20Trying%20to%20learn%20a%20little%20about%20packaging&In-Reply-To=%3CAANLkTikFt_KVMe-a0RPEUkwda79YHxyrPMgnbqHnJf5Y%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="003405.html">
+ <LINK REL="Next" HREF="003407.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-discuss] Trying to learn a little about packaging</H1>
+ <B>Hoyt Duff</B>
+ <A HREF="mailto:mageia-discuss%40mageia.org?Subject=Re%3A%20%5BMageia-discuss%5D%20Trying%20to%20learn%20a%20little%20about%20packaging&In-Reply-To=%3CAANLkTikFt_KVMe-a0RPEUkwda79YHxyrPMgnbqHnJf5Y%40mail.gmail.com%3E"
+ TITLE="[Mageia-discuss] Trying to learn a little about packaging">hoytduff at gmail.com
+ </A><BR>
+ <I>Sat Jan 15 03:35:58 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="003405.html">[Mageia-discuss] Trying to learn a little about packaging
+</A></li>
+ <LI>Next message: <A HREF="003407.html">[Mageia-discuss] Trying to learn a little about packaging
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#3406">[ date ]</a>
+ <a href="thread.html#3406">[ thread ]</a>
+ <a href="subject.html#3406">[ subject ]</a>
+ <a href="author.html#3406">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 1/14/11, Juan Luis Baptiste &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-discuss">juan.baptiste at gmail.com</A>&gt; wrote:
+&gt;<i>
+</I>&gt;<i> A search for &quot;mandriva rpm&quot; should have done the trick, see these howto's:
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://wiki.mandriva.com/en/Mandriva_RPM_HOWTO">http://wiki.mandriva.com/en/Mandriva_RPM_HOWTO</A>
+</I>&gt;<i>
+</I>&gt;<i> and then:
+</I>&gt;<i>
+</I>&gt;<i> <A HREF="http://wiki.mandriva.com/en/Development/Howto/RPM_Advanced">http://wiki.mandriva.com/en/Development/Howto/RPM_Advanced</A>
+</I>&gt;<i>
+</I>
+Thanks, Juancho. I was making the search too complicated. I've
+bookmarked those links.
+
+--
+Hoyt
+</PRE>
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="003405.html">[Mageia-discuss] Trying to learn a little about packaging
+</A></li>
+ <LI>Next message: <A HREF="003407.html">[Mageia-discuss] Trying to learn a little about packaging
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#3406">[ date ]</a>
+ <a href="thread.html#3406">[ thread ]</a>
+ <a href="subject.html#3406">[ subject ]</a>
+ <a href="author.html#3406">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-discuss">More information about the Mageia-discuss
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-discuss/20110115/003407.html b/zarb-ml/mageia-discuss/20110115/003407.html
new file mode 100644
index 000000000..64b10066e
--- /dev/null
+++ b/zarb-ml/mageia-discuss/20110115/003407.html
@@ -0,0 +1,109 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-discuss] Trying to learn a little about packaging
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-discuss%40mageia.org?Subject=Re%3A%20%5BMageia-discuss%5D%20Trying%20to%20learn%20a%20little%20about%20packaging&In-Reply-To=%3C20110115083050.GA4804%40shikamaru.fr%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="003406.html">
+
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-discuss] Trying to learn a little about packaging</H1>
+ <B>Remy CLOUARD</B>
+ <A HREF="mailto:mageia-discuss%40mageia.org?Subject=Re%3A%20%5BMageia-discuss%5D%20Trying%20to%20learn%20a%20little%20about%20packaging&In-Reply-To=%3C20110115083050.GA4804%40shikamaru.fr%3E"
+ TITLE="[Mageia-discuss] Trying to learn a little about packaging">shikamaru at mandriva.org
+ </A><BR>
+ <I>Sat Jan 15 09:30:50 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="003406.html">[Mageia-discuss] Trying to learn a little about packaging
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#3407">[ date ]</a>
+ <a href="thread.html#3407">[ thread ]</a>
+ <a href="subject.html#3407">[ subject ]</a>
+ <a href="author.html#3407">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On Fri, Jan 14, 2011 at 12:18:58AM -0500, Hoyt Duff wrote:
+&gt;<i> The .spec file as provided defines %define _prefix as /usr/local. Yes,
+</I>&gt;<i> I know that it should be /usr for a Mandriva-specific package, but I'd
+</I>&gt;<i> like to actually build the package first so I can understand what
+</I>&gt;<i> needs to be patched to build from the pristine sources on
+</I>&gt;<i> Madriva/Mageia, not start from scratch - that kind of defeats the
+</I>&gt;<i> purpose of RPM.
+</I>Well, the advice I gave you was a way to get the package build, don&#8217;t
+know what&#8217;s wrong with my explanation, macros such as %configure2_5x are
+also made to make your life easier like, not worry if the package is
+located in the right place, or has the correct CFLAGS ;)
+&gt;<i>
+</I>&gt;<i> In the %files section &quot;%{_libdir}/%{name}&quot; should pick up &quot;%_prefix&quot;,
+</I>&gt;<i> but it does not. As a result, some files don't get created in two
+</I>&gt;<i> directories and the build fails.
+</I>&gt;<i>
+</I>&gt;<i> What I'm asking is if there is a difference in how Mandrake handles
+</I>&gt;<i> that substitution versus how Fedora handles that. I installed Fedora
+</I>&gt;<i> in a VM and the package builds fine on Fedora, but I get the error on
+</I>&gt;<i> Madriva. I've examined the .spec file and don't see where there is any
+</I>&gt;<i> obvious problem, so I'm seeking some guidance as to where to look
+</I>&gt;<i> deeper.
+</I>That&#8217;s because some of our macros differ from fedora. I don&#8217;t know what
+macro they use, but assuming they also don&#8217;t diverge on their location,
+you could try to have a look at /etc/rpm/macros.d/.
+
+Also, as I said, rpm --eval could help you see the difference too :-)
+&gt;<i>
+</I>&gt;<i> While I can find lots of (mostly useless) info on RPM building through
+</I>&gt;<i> Google, I'm not sure where to look for any Mandriva docs for that, so
+</I>&gt;<i> a suggestion for that would be welcome as well.
+</I>&gt;<i>
+</I>I just imported <A HREF="http://mageia.org/wiki/doku.php?id=spec_syntax">http://mageia.org/wiki/doku.php?id=spec_syntax</A> if you
+want to take a look, the RPM Howto [1] hasn&#8217;t been imported yet, would
+you like to step up to help us ? :-) It could help you understand the
+different sections by reviewing them carefully. Also, since this howto
+is designed to help new packagers, it will also help us clarify some
+things that may not be as clear as we meant it.
+
+[1]
+<A HREF="http://wiki.mandriva.com/en/Development/Tasks/Packaging/Tools/RPM/Howto">http://wiki.mandriva.com/en/Development/Tasks/Packaging/Tools/RPM/Howto</A>
+
+Thanks in advance,
+
+Regards,
+--
+R&#233;my CLOUARD
+() ascii ribbon campaign - against html e-mail
+/\ www.asciiribbon.org - against proprietary attachments
+-------------- next part --------------
+A non-text attachment was scrubbed...
+Name: not available
+Type: application/pgp-signature
+Size: 230 bytes
+Desc: not available
+URL: &lt;/pipermail/mageia-discuss/attachments/20110115/6d83810a/attachment.asc&gt;
+</PRE>
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="003406.html">[Mageia-discuss] Trying to learn a little about packaging
+</A></li>
+
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#3407">[ date ]</a>
+ <a href="thread.html#3407">[ thread ]</a>
+ <a href="subject.html#3407">[ subject ]</a>
+ <a href="author.html#3407">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-discuss">More information about the Mageia-discuss
+mailing list</a><br>
+</body></html>
diff --git a/zarb-ml/mageia-discuss/20110115/author.html b/zarb-ml/mageia-discuss/20110115/author.html
new file mode 100644
index 000000000..26e05de30
--- /dev/null
+++ b/zarb-ml/mageia-discuss/20110115/author.html
@@ -0,0 +1,62 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-discuss 15 January 2011 Archive by author</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>15 January 2011 Archives by author</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+
+ <a href="date.html#start">[ date ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-discuss">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Sat Jan 15 03:33:56 CET 2011</i><br>
+ <b>Ending:</b> <i>Sat Jan 15 09:30:50 CET 2011</i><br>
+ <b>Messages:</b> 3<p>
+ <ul>
+
+<LI><A HREF="003407.html">[Mageia-discuss] Trying to learn a little about packaging
+</A><A NAME="3407">&nbsp;</A>
+<I>Remy CLOUARD
+</I>
+
+<LI><A HREF="003405.html">[Mageia-discuss] Trying to learn a little about packaging
+</A><A NAME="3405">&nbsp;</A>
+<I>Hoyt Duff
+</I>
+
+<LI><A HREF="003406.html">[Mageia-discuss] Trying to learn a little about packaging
+</A><A NAME="3406">&nbsp;</A>
+<I>Hoyt Duff
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Jan 15 09:30:50 CET 2011</i><br>
+ <b>Archived on:</b> <i>Sat Jan 15 09:30:21 CET 2011</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+
+ <a href="date.html#start">[ date ]</a>
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-discuss">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+
diff --git a/zarb-ml/mageia-discuss/20110115/date.html b/zarb-ml/mageia-discuss/20110115/date.html
new file mode 100644
index 000000000..1799b4d5c
--- /dev/null
+++ b/zarb-ml/mageia-discuss/20110115/date.html
@@ -0,0 +1,62 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-discuss 15 January 2011 Archive by date</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>15 January 2011 Archives by date</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-discuss">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Sat Jan 15 03:33:56 CET 2011</i><br>
+ <b>Ending:</b> <i>Sat Jan 15 09:30:50 CET 2011</i><br>
+ <b>Messages:</b> 3<p>
+ <ul>
+
+<LI><A HREF="003405.html">[Mageia-discuss] Trying to learn a little about packaging
+</A><A NAME="3405">&nbsp;</A>
+<I>Hoyt Duff
+</I>
+
+<LI><A HREF="003406.html">[Mageia-discuss] Trying to learn a little about packaging
+</A><A NAME="3406">&nbsp;</A>
+<I>Hoyt Duff
+</I>
+
+<LI><A HREF="003407.html">[Mageia-discuss] Trying to learn a little about packaging
+</A><A NAME="3407">&nbsp;</A>
+<I>Remy CLOUARD
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Jan 15 09:30:50 CET 2011</i><br>
+ <b>Archived on:</b> <i>Sat Jan 15 09:30:21 CET 2011</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-discuss">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+
diff --git a/zarb-ml/mageia-discuss/20110115/index.html b/zarb-ml/mageia-discuss/20110115/index.html
new file mode 120000
index 000000000..db4b46f72
--- /dev/null
+++ b/zarb-ml/mageia-discuss/20110115/index.html
@@ -0,0 +1 @@
+thread.html \ No newline at end of file
diff --git a/zarb-ml/mageia-discuss/20110115/subject.html b/zarb-ml/mageia-discuss/20110115/subject.html
new file mode 100644
index 000000000..36a39828e
--- /dev/null
+++ b/zarb-ml/mageia-discuss/20110115/subject.html
@@ -0,0 +1,62 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-discuss 15 January 2011 Archive by subject</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>15 January 2011 Archives by subject</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-discuss">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Sat Jan 15 03:33:56 CET 2011</i><br>
+ <b>Ending:</b> <i>Sat Jan 15 09:30:50 CET 2011</i><br>
+ <b>Messages:</b> 3<p>
+ <ul>
+
+<LI><A HREF="003405.html">[Mageia-discuss] Trying to learn a little about packaging
+</A><A NAME="3405">&nbsp;</A>
+<I>Hoyt Duff
+</I>
+
+<LI><A HREF="003406.html">[Mageia-discuss] Trying to learn a little about packaging
+</A><A NAME="3406">&nbsp;</A>
+<I>Hoyt Duff
+</I>
+
+<LI><A HREF="003407.html">[Mageia-discuss] Trying to learn a little about packaging
+</A><A NAME="3407">&nbsp;</A>
+<I>Remy CLOUARD
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Jan 15 09:30:50 CET 2011</i><br>
+ <b>Archived on:</b> <i>Sat Jan 15 09:30:21 CET 2011</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+ <a href="thread.html#start">[ thread ]</a>
+
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-discuss">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+
diff --git a/zarb-ml/mageia-discuss/20110115/thread.html b/zarb-ml/mageia-discuss/20110115/thread.html
new file mode 100644
index 000000000..714657bc2
--- /dev/null
+++ b/zarb-ml/mageia-discuss/20110115/thread.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <title>The Mageia-discuss 15 January 2011 Archive by thread</title>
+ <META NAME="robots" CONTENT="noindex,follow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <a name="start"></A>
+ <h1>15 January 2011 Archives by thread</h1>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-discuss">More info on this list...
+ </a></b></li>
+ </ul>
+ <p><b>Starting:</b> <i>Sat Jan 15 03:33:56 CET 2011</i><br>
+ <b>Ending:</b> <i>Sat Jan 15 09:30:50 CET 2011</i><br>
+ <b>Messages:</b> 3<p>
+ <ul>
+
+<!--0 01295058836- -->
+<LI><A HREF="003405.html">[Mageia-discuss] Trying to learn a little about packaging
+</A><A NAME="3405">&nbsp;</A>
+<I>Hoyt Duff
+</I>
+
+<!--0 01295058958- -->
+<LI><A HREF="003406.html">[Mageia-discuss] Trying to learn a little about packaging
+</A><A NAME="3406">&nbsp;</A>
+<I>Hoyt Duff
+</I>
+
+<!--0 01295080250- -->
+<LI><A HREF="003407.html">[Mageia-discuss] Trying to learn a little about packaging
+</A><A NAME="3407">&nbsp;</A>
+<I>Remy CLOUARD
+</I>
+
+ </ul>
+ <p>
+ <a name="end"><b>Last message date:</b></a>
+ <i>Sat Jan 15 09:30:50 CET 2011</i><br>
+ <b>Archived on:</b> <i>Sat Jan 15 09:30:21 CET 2011</i>
+ <p>
+ <ul>
+ <li> <b>Messages sorted by:</b>
+
+ <a href="subject.html#start">[ subject ]</a>
+ <a href="author.html#start">[ author ]</a>
+ <a href="date.html#start">[ date ]</a>
+ <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-discuss">More info on this list...
+ </a></b></li>
+ </ul>
+ <p>
+ <hr>
+ <i>This archive was generated by
+ Pipermail 0.09 (Mailman edition).</i>
+ </BODY>
+</HTML>
+