summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-dev/2011-June/005992.html
diff options
context:
space:
mode:
Diffstat (limited to 'zarb-ml/mageia-dev/2011-June/005992.html')
-rw-r--r--zarb-ml/mageia-dev/2011-June/005992.html196
1 files changed, 196 insertions, 0 deletions
diff --git a/zarb-ml/mageia-dev/2011-June/005992.html b/zarb-ml/mageia-dev/2011-June/005992.html
new file mode 100644
index 000000000..e4b3dba61
--- /dev/null
+++ b/zarb-ml/mageia-dev/2011-June/005992.html
@@ -0,0 +1,196 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-dev] Update of backport, policy proposal
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20Update%20of%20backport%2C%20policy%20proposal&In-Reply-To=%3CBANLkTinzjz2ksMaKwHfv1sB%3D_po-VC284A%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="005990.html">
+ <LINK REL="Next" HREF="006000.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-dev] Update of backport, policy proposal</H1>
+ <B>Marianne Lombard</B>
+ <A HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20Update%20of%20backport%2C%20policy%20proposal&In-Reply-To=%3CBANLkTinzjz2ksMaKwHfv1sB%3D_po-VC284A%40mail.gmail.com%3E"
+ TITLE="[Mageia-dev] Update of backport, policy proposal">marianne at tuxette.fr
+ </A><BR>
+ <I>Fri Jun 24 15:41:13 CEST 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="005990.html">[Mageia-dev] Update of backport, policy proposal
+</A></li>
+ <LI>Next message: <A HREF="006000.html">[Mageia-dev] Update of backport, policy proposal
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#5992">[ date ]</a>
+ <a href="thread.html#5992">[ thread ]</a>
+ <a href="subject.html#5992">[ subject ]</a>
+ <a href="author.html#5992">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Le 24/06/2011 13:42, Wolfgang Bornath a &#233;crit :
+&gt;<i> 2011/6/24 Jos&#233; Jorge&lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">jjorge at free.fr</A>&gt;:
+</I>&gt;&gt;<i> Le vendredi 24 juin 2011 02:15:03, Michael Scherer a &#233;crit :
+</I>&gt;&gt;&gt;<i> Last solution, declare that cherry picking is not supported, or that
+</I>&gt;&gt;&gt;<i> people are on their own, and explain the reason. However, people have
+</I>&gt;&gt;&gt;<i> been asking this, and recommend this. This would also be against a goal
+</I>&gt;&gt;&gt;<i> of having confidence in the backports.
+</I>&gt;&gt;&gt;<i>
+</I>&gt;&gt;<i> I have always used backports in a total way : if I want latest software
+</I>&gt;&gt;<i> against stability, I take them all. Think about little dependencies that still
+</I>&gt;&gt;<i> exist (vlc + ffmpeg, etc).
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> So I would say Mageia has two update modes :
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> - end user (security) mode (updates)
+</I>&gt;&gt;<i> - power user (let's try everything) mode (updates+backports)
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> Each user will recognise himself in one of the two modes.la
+</I>&gt;<i> So, where do I find myself in this scenario?
+</I>&gt;<i>
+</I>&gt;<i> I do not use backports in general, they are disabled.
+</I>&gt;<i> A new version of foo is coming in in cauldron and I want to use it in Mageia 1.
+</I>&gt;<i> A friendly packager builds a backport of this new version of foo for Mageia 1.
+</I>&gt;<i> I enable backports, do &quot;urpmi foo&quot; and I get the version from
+</I>&gt;<i> backports including dependencies.
+</I>&gt;<i> After that I disable backports.
+</I>&gt;<i>
+</I>&gt;<i> This is the way backports have been used by many users in Mandriva.
+</I>&gt;<i> And (BTW) this is the exact meaning of the word, a version is
+</I>&gt;<i> backported from a newer distrib-version or cooker/cauldron to an older
+</I>&gt;<i> distrib-version or current stable version.
+</I>I use a few backported package on a Mdv install (please, don't lapidate
+me, I have 2 mageia cauldron at home). To easily update them, I have
+made a small and ugly bash script.
+It can propably being optimised, clean, etc. I run it manually times to
+times .
+
+Regards
+
+[<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">jehane at mdvbox</A>]$ cat update-backports.sh
+#!/bin/bash
+
+# Add here your package, for each repository
+# Main backports package
+pkge_main=&quot;firefox&quot;
+# Contrib backports package
+pkge_contrib=&quot;fusioninventory-agent&quot;;
+
+echo &quot;Script for updating package present in non-activated repositery&quot;
+echo &quot;Only for distribution using urpmi&quot;
+echo &quot;&quot;
+echo &quot;List of checked package&quot;
+echo $pkge_main
+echo $pkge_contrib
+echo &quot;&quot;
+
+
+# Must be launch as root
+if [ &quot;$UID&quot; -ne 0 ]; then
+ echo &quot;Need to be root&quot;
+ exit $E_NOTROOT
+fi
+
+# Updating repos
+echo &quot;Updating backports repository&quot;
+urpmi.update &quot;Main Backports&quot;
+urpmi.update &quot;Contrib Backports&quot;
+
+echo &quot;Updating package&quot;
+for package in `echo $pkge_main` ;
+ do urpmi --searchmedi &quot;Main Backports&quot; $package
+ done
+
+for package in `echo $pkge_contrib` ;
+ do urpmi --searchmedia &quot;Contrib Backports&quot; $package
+ done
+
+
+--
+Marianne Lombard (Jehane)
+Mageia User - Mageia french translation team
+Inside every fat girl, there is a thin girl waiting to get out (and a
+lot of chocolate) - Terry Pratchett
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="005990.html">[Mageia-dev] Update of backport, policy proposal
+</A></li>
+ <LI>Next message: <A HREF="006000.html">[Mageia-dev] Update of backport, policy proposal
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#5992">[ date ]</a>
+ <a href="thread.html#5992">[ thread ]</a>
+ <a href="subject.html#5992">[ subject ]</a>
+ <a href="author.html#5992">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-dev">More information about the Mageia-dev
+mailing list</a><br>
+</body></html>