1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
|
<!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=%3CCA%2BCX%2BbjHMV6YUnCoeg7JAvzcG6zeSvGf4dPRLwADSju7L%3DOxGQ%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="004886.html">
<LINK REL="Next" HREF="004889.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Mageia-sysadm] Mass rebuild</H1>
<B>Pascal Terjan</B>
<A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20Mass%20rebuild&In-Reply-To=%3CCA%2BCX%2BbjHMV6YUnCoeg7JAvzcG6zeSvGf4dPRLwADSju7L%3DOxGQ%40mail.gmail.com%3E"
TITLE="[Mageia-sysadm] Mass rebuild">pterjan at gmail.com
</A><BR>
<I>Thu Dec 6 14:26:29 CET 2012</I>
<P><UL>
<LI>Previous message: <A HREF="004886.html">[Mageia-sysadm] Mass rebuild
</A></li>
<LI>Next message: <A HREF="004889.html">[Mageia-sysadm] Mass rebuild
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#4888">[ date ]</a>
<a href="thread.html#4888">[ thread ]</a>
<a href="subject.html#4888">[ subject ]</a>
<a href="author.html#4888">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>On Thu, Dec 6, 2012 at 12:59 PM, nicolas vigier <<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">boklm at mars-attacks.org</A>> wrote:
><i> On Wed, 05 Dec 2012, Pascal Terjan wrote:
</I>><i>
</I>>><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>><i>
</I>><i> Most of them seems to have a release like this :
</I>><i>
</I>><i> Release: %mkrel 0.7.git%{git_commit_date}
</I>><i>
</I>><i> or :
</I>><i>
</I>><i> %define something %mkrel 7
</I>><i> Release: %something
</I>><i>
</I>><i> (with %something other than %release or %rel)
</I>><i>
</I>><i> Maybe we can change those packages to always have a %rel or %release
</I>><i> macro defined for the part that needs to be bumped in case of rebuild ?
</I>><i>
</I>><i> For b43-tools this would be :
</I>><i>
</I>><i> Index: SPECS/b43-tools.spec
</I>><i> ===================================================================
</I>><i> --- SPECS/b43-tools.spec (revision 40891)
</I>><i> +++ SPECS/b43-tools.spec (working copy)
</I>><i> @@ -3,10 +3,11 @@
</I>><i> %define git_commit 8dc01d7b658dc04c5c500640854c6dba547a3118
</I>><i> %define git_commit_date 20090125
</I>><i>
</I>><i> +%define rel 7
</I>><i>
</I>><i> Name: b43-tools
</I>><i> Version: 0
</I>><i> -Release: %mkrel 0.7.git%{git_commit_date}
</I>><i> +Release: %mkrel 0.%{rel}.git%{git_commit_date}
</I>><i> Summary: Tools for the Broadcom 43xx series WLAN chip
</I>><i> Group: System/Configuration/Networking
</I>><i> # assembler — GPLv2
</I>
Some have different Release scheme dependinf if it is a snapshot or not:
%if %beta
Release: %mkrel 0.%{pre}
%else
Release: %mkrel 1
%endif
But same thing seems to work:
[<A HREF="https://www.mageia.org/mailman/listinfo/mageia-sysadm">pterjan at chopin</A> cauldron-auto]$ svn diff alsa-oss/alsa-oss.spec
Index: alsa-oss/alsa-oss.spec
===================================================================
--- alsa-oss/alsa-oss.spec (revision 327057)
+++ alsa-oss/alsa-oss.spec (working copy)
@@ -4,6 +4,7 @@
%define lib_major 0
%define pre rc4
+%define rel 1
%define lib_name %mklibname %name %lib_major
%define develname %mklibname -d %name
@@ -17,9 +18,9 @@
Name: %name
Version: %version
%if %beta
-Release: %mkrel 0.%{pre}
+Release: %mkrel 0.%{pre}.%rel
%else
-Release: %mkrel 1
+Release: %mkrel %rel
%endif
Epoch: 1
Source0: <A HREF="ftp://ftp.alsa-project.org/pub/oss-lib/%fname.tar.bz2">ftp://ftp.alsa-project.org/pub/oss-lib/%fname.tar.bz2</A>
Was properly updated to have %define rel 2 but good news is that this
package is not on the mirrors :)
I will publish a (quite short) list of packages that can't be updated
and are on the mirrors
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="004886.html">[Mageia-sysadm] Mass rebuild
</A></li>
<LI>Next message: <A HREF="004889.html">[Mageia-sysadm] Mass rebuild
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#4888">[ date ]</a>
<a href="thread.html#4888">[ thread ]</a>
<a href="subject.html#4888">[ subject ]</a>
<a href="author.html#4888">[ 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>
|