diff options
Diffstat (limited to 'zarb-ml/mageia-sysadm/2012-December/004886.html')
-rw-r--r-- | zarb-ml/mageia-sysadm/2012-December/004886.html | 150 |
1 files changed, 150 insertions, 0 deletions
diff --git a/zarb-ml/mageia-sysadm/2012-December/004886.html b/zarb-ml/mageia-sysadm/2012-December/004886.html new file mode 100644 index 000000000..8b453dced --- /dev/null +++ b/zarb-ml/mageia-sysadm/2012-December/004886.html @@ -0,0 +1,150 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> +<HTML> + <HEAD> + <TITLE> [Mageia-sysadm] Mass rebuild + </TITLE> + <LINK REL="Index" HREF="index.html" > + <LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20Mass%20rebuild&In-Reply-To=%3C20121206125921.GJ21938%40mars-attacks.org%3E"> + <META NAME="robots" CONTENT="index,nofollow"> + <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> + <LINK REL="Previous" HREF="004884.html"> + <LINK REL="Next" HREF="004888.html"> + </HEAD> + <BODY BGCOLOR="#ffffff"> + <H1>[Mageia-sysadm] Mass rebuild</H1> + <B>nicolas vigier</B> + <A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20Mass%20rebuild&In-Reply-To=%3C20121206125921.GJ21938%40mars-attacks.org%3E" + TITLE="[Mageia-sysadm] Mass rebuild">boklm at mars-attacks.org + </A><BR> + <I>Thu Dec 6 13:59:21 CET 2012</I> + <P><UL> + <LI>Previous message: <A HREF="004884.html">[Mageia-sysadm] Mass rebuild +</A></li> + <LI>Next message: <A HREF="004888.html">[Mageia-sysadm] Mass rebuild +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#4886">[ date ]</a> + <a href="thread.html#4886">[ thread ]</a> + <a href="subject.html#4886">[ subject ]</a> + <a href="author.html#4886">[ author ]</a> + </LI> + </UL> + <HR> +<!--beginarticle--> +<PRE>On Wed, 05 Dec 2012, Pascal Terjan wrote: + +><i> +</I>><i> I am testing it, there are not that many failing but I guess that will +</I>><i> be over a hundred so it would be good to test in the code if it +</I>><i> succeeded +</I>><i> +</I>><i> Good news is that several of them does not seem to have ever been +</I>><i> uploaded so they don't matter +</I>><i> +</I>><i> Some of them have release %mkrel 0 and the code fails to handle that +</I>><i> but this should be easy to fix (Unable to extract release number from +</I>><i> value '0'), that would fix a lot of the ones in the list +</I>><i> +</I>><i> croak "Unable to extract release number from value '$value'" +</I>><i> unless $number; +</I>><i> +</I>><i> Changing it to unless defined($number); should do the trick +</I>><i> +</I>><i> Beginning of the list (until c) with unpatched code: +</I>><i> +</I>><i> [<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">pterjan at chopin</A> cauldron-auto]$ for s in */*.spec; do perl +</I>><i> -mYouri::Package::RPM::Updater -e +</I>><i> "Youri::Package::RPM::Updater->new()->update_from_spec('$s')" +</I>><i> >/dev/null 2>&1 ; svn diff $s | grep -q . || echo $s; done +</I>><i> CharLS/CharLS.spec +</I>><i> akonadi/akonadi.spec +</I>><i> alsa-oss/alsa-oss.spec +</I>><i> antlr3/antlr3.spec +</I>><i> avant-window-navigator/avant-window-navigator.spec +</I>><i> awn-extras-applets/awn-extras-applets.spec +</I>><i> axis14/axis14.spec +</I>><i> b43-tools/b43-tools.spec +</I>><i> barbecue/barbecue.spec +</I>><i> biew/biew.spec +</I>><i> cagibi/cagibi.spec +</I>><i> ceylon/ceylon.spec +</I>><i> cglib21/cglib21.spec +</I>><i> chmsee/chmsee.spec +</I>><i> cnetworkmanager/cnetworkmanager.spec +</I>><i> create/create.spec +</I>><i> cross-mipsel-gcc/cross-mipsel-gcc.spec +</I>><i> cross-ppc-binutils/cross-ppc-binutils.spec +</I>><i> +</I>><i> Same after adding defined(): +</I>><i> +</I>><i> [<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">pterjan at chopin</A> cauldron-auto]$ for s in */*.spec; do perl +</I>><i> -mYouri::Package::RPM::Updater -e +</I>><i> "Youri::Package::RPM::Updater->new()->update_from_spec('$s')" +</I>><i> >/dev/null 2>&1 ; svn diff $s | grep -q . || echo $s; done +</I>><i> alsa-oss/alsa-oss.spec +</I>><i> antlr3/antlr3.spec +</I>><i> axis14/axis14.spec +</I>><i> b43-tools/b43-tools.spec +</I>><i> biew/biew.spec +</I>><i> chmsee/chmsee.spec +</I>><i> cross-mipsel-gcc/cross-mipsel-gcc.spec +</I>><i> cross-ppc-binutils/cross-ppc-binutils.spec +</I> +Most of them seems to have a release like this : + + Release: %mkrel 0.7.git%{git_commit_date} + +or : + + %define something %mkrel 7 + Release: %something + +(with %something other than %release or %rel) + +Maybe we can change those packages to always have a %rel or %release +macro defined for the part that needs to be bumped in case of rebuild ? + +For b43-tools this would be : + +Index: SPECS/b43-tools.spec +=================================================================== +--- SPECS/b43-tools.spec (revision 40891) ++++ SPECS/b43-tools.spec (working copy) +@@ -3,10 +3,11 @@ + %define git_commit 8dc01d7b658dc04c5c500640854c6dba547a3118 + %define git_commit_date 20090125 + ++%define rel 7 + + Name: b43-tools + Version: 0 +-Release: %mkrel 0.7.git%{git_commit_date} ++Release: %mkrel 0.%{rel}.git%{git_commit_date} + Summary: Tools for the Broadcom 43xx series WLAN chip + Group: System/Configuration/Networking + # assembler — GPLv2 + + +</PRE> + + +<!--endarticle--> + <HR> + <P><UL> + <!--threads--> + <LI>Previous message: <A HREF="004884.html">[Mageia-sysadm] Mass rebuild +</A></li> + <LI>Next message: <A HREF="004888.html">[Mageia-sysadm] Mass rebuild +</A></li> + <LI> <B>Messages sorted by:</B> + <a href="date.html#4886">[ date ]</a> + <a href="thread.html#4886">[ thread ]</a> + <a href="subject.html#4886">[ subject ]</a> + <a href="author.html#4886">[ author ]</a> + </LI> + </UL> + +<hr> +<a href="https://www.mageia.org/mailman/listinfo/mageia-sysadm">More information about the Mageia-sysadm +mailing list</a><br> +</body></html> |