1 | %define name mkcd |
---|
2 | %define version 3.8.4 |
---|
3 | %define release 1mdk |
---|
4 | %define _requires_exceptions perl(strict) |
---|
5 | %define _provides_exceptions perl(install_any) |
---|
6 | |
---|
7 | Summary: Script to build Linux distributions installation discs |
---|
8 | Name: %{name} |
---|
9 | Version: %{version} |
---|
10 | Release: %{release} |
---|
11 | # get the source from our cvs repository (see |
---|
12 | # http://www.linuxmandrake.com/en/cvs.php3) |
---|
13 | Source0: %{name}-%{version}.tar.bz2 |
---|
14 | License: GPL |
---|
15 | url: http://people.mandrakesoft.com/~warly/files/mkcd/ |
---|
16 | Group: System/Configuration/Packaging |
---|
17 | BuildRoot: %{_tmppath}/%{name}-buildroot |
---|
18 | Prefix: %{_prefix} |
---|
19 | Requires: perl-File-NCopy perl-Image-Size perl-URPM |
---|
20 | BuildArch: noarch |
---|
21 | BuildRequires: libxslt-proc |
---|
22 | |
---|
23 | %description |
---|
24 | mkcd script eases the packages repartition over CDs, |
---|
25 | allows to order packages and to create discs of any |
---|
26 | given size (CDs, DVDs...) |
---|
27 | |
---|
28 | %prep |
---|
29 | %setup |
---|
30 | |
---|
31 | %build |
---|
32 | |
---|
33 | %install |
---|
34 | rm -rf $RPM_BUILD_ROOT |
---|
35 | make install PREFIX=$RPM_BUILD_ROOT |
---|
36 | |
---|
37 | %clean |
---|
38 | rm -rf $RPM_BUILD_ROOT |
---|
39 | |
---|
40 | %files |
---|
41 | %defattr(-,root,root) |
---|
42 | %doc README |
---|
43 | %{_bindir}/* |
---|
44 | %{perl_vendorlib}/Mkcd |
---|
45 | |
---|
46 | %changelog |
---|
47 | * Tue Mar 16 2004 Warly <warly@mandrakesoft.com> 3.8.4-1mdk |
---|
48 | - fix clean-rpmsrate (broken for locale dependent packages) |
---|
49 | - fix pkg list file generation on discs |
---|
50 | |
---|
51 | * Wed Mar 03 2004 Warly <warly@mandrakesoft.com> 3.8.3-1mdk |
---|
52 | - fix a annoying bug for packages ordering |
---|
53 | |
---|
54 | * Tue Mar 02 2004 Warly <warly@mandrakesoft.com> 3.8.2-1mdk |
---|
55 | - fix several bug in needed handling |
---|
56 | |
---|
57 | * Wed Feb 25 2004 Warly <warly@mandrakesoft.com> 3.8.1-1mdk |
---|
58 | - new checkdeps option to check the integrity of a list of rpms |
---|
59 | - now check strictly epoch and reject packages with broken requires |
---|
60 | - try to have a bit better needed packages handling |
---|
61 | - display and sort by package size in list of rpms present in each disc or rejected |
---|
62 | |
---|
63 | * Thu Jan 22 2004 Warly <warly@mandrakesoft.com> 3.8.0-1mdk |
---|
64 | - New dependencies checking code, more robust against multiple provides |
---|
65 | with different versions. |
---|
66 | |
---|
67 | * Thu Dec 11 2003 Warly <warly@mandrakesoft.com> 3.7.1-1mdk |
---|
68 | - minor fixes |
---|
69 | |
---|
70 | * Sat Oct 25 2003 Warly <warly@mandrakesoft.com> 3.7.0-1mdk |
---|
71 | - new noprovide option for fixed dir |
---|
72 | - various fixes for the verbose side effect problem |
---|
73 | - fix Optimization side-effect if the process fails |
---|
74 | - new sort feature |
---|
75 | - fix sequential mode |
---|
76 | |
---|
77 | * Wed Oct 22 2003 Warly <warly@mandrakesoft.com> 3.6.4-1mdk |
---|
78 | - fix hdlist based CD creation |
---|
79 | |
---|
80 | * Tue Sep 23 2003 Warly <warly@mandrakesoft.com> 3.6.3-1mdk |
---|
81 | - small fix in addRPMToList |
---|
82 | |
---|
83 | * Tue Sep 23 2003 Warly <warly@mandrakesoft.com> 3.6.2-1mdk |
---|
84 | - fix bad rpmfile initialisation in reverseDepslist |
---|
85 | |
---|
86 | * Thu Sep 18 2003 Warly <warly@mandrakesoft.com> 3.6.1-1mdk |
---|
87 | - add list in sep_arch mode for urpmi |
---|
88 | - fix small bug in cleanrpmsrate |
---|
89 | - move reverseDepslist call into build_list to handle correctly the individual |
---|
90 | nodeps flag for packages |
---|
91 | - change ordergroup not to loop in disc_prereq check when adding a group with a |
---|
92 | disc handle by another group and requirering another disc in another group. |
---|
93 | |
---|
94 | * Wed Sep 17 2003 Warly <warly@mandrakesoft.com> 3.6.0-1mdk |
---|
95 | - add separate arch mode for dir (mainly for amd64) |
---|
96 | - add --first option for rm and cp to access files with first flag |
---|
97 | |
---|
98 | * Thu Aug 28 2003 Warly <warly@mandrakesoft.com> 3.5.3-1mdk |
---|
99 | - add pubkey management in list. |
---|
100 | - add check_rpmsrate to check rpmsrate package against repositories |
---|
101 | - auto add pubkey in auto_mode |
---|
102 | - fix no-emul-boot usage boot images > 3000000 |
---|
103 | |
---|
104 | * Thu Jun 05 2003 Warly <warly@mandrakesoft.com> 3.5.2-1mdk |
---|
105 | - try to clean requires/provides |
---|
106 | |
---|
107 | * Wed May 28 2003 Warly <warly@mandrakesoft.com> 3.5.1-1mdk |
---|
108 | - remove perl-RPM require (use perl-URPM) |
---|
109 | |
---|
110 | * Tue Apr 01 2003 Warly <warly@mandrakesoft.com> 3.5.0-1mdk |
---|
111 | - allow now to buid installation disc based on existing hdlist |
---|
112 | - fix suxness in packaging (shame on me) |
---|
113 | |
---|
114 | * Sun Mar 16 2003 Warly <warly@mandrakesoft.com> 3.4.7-1mdk |
---|
115 | - minor fixes in List::check_version |
---|
116 | |
---|
117 | * Tue Mar 11 2003 Warly <warly@mandrakesoft.com> 3.4.6-1mdk |
---|
118 | - improve optimize_space function |
---|
119 | - fix bug un reverse depslist function |
---|
120 | - soften the locale check in cleanrpmsrate to match locales such as nn and nb |
---|
121 | |
---|
122 | * Tue Mar 04 2003 Warly <warly@mandrakesoft.com> 3.4.5-1mdk |
---|
123 | - fix cdcom problem |
---|
124 | |
---|
125 | * Mon Mar 03 2003 Warly <warly@mandrakesoft.com> 3.4.4-1mdk |
---|
126 | - fix cleanrpmsrate for kernel |
---|
127 | |
---|
128 | * Fri Feb 14 2003 Warly <warly@mandrakesoft.com> 3.4.2-1mdk |
---|
129 | - fix auto option broken by new packages structure |
---|
130 | - fix clean-rpmsrate |
---|
131 | |
---|
132 | * Fri Feb 07 2003 Warly <warly@mandrakesoft.com> 3.4.1-1mdk |
---|
133 | - new rpmlist function |
---|
134 | - allow multiple list per generic functions (to be tested) |
---|
135 | - add dynamic list (list based on other CDs rpms) |
---|
136 | |
---|
137 | * Fri Jan 24 2003 Warly <warly@mandrakesoft.com> 3.3.6-1mdk |
---|
138 | - new verbose mode |
---|
139 | - new parsecommandline auto help option |
---|
140 | - include Franck Bourdonnec fixes |
---|
141 | |
---|
142 | * Sat Sep 21 2002 Warly <warly@mandrakesoft.com> 3.3.5-1mdk |
---|
143 | - correct some misbehavior in needed code |
---|
144 | |
---|
145 | * Fri Sep 20 2002 Warly <warly@mandrakesoft.com> 3.3.4-1mdk |
---|
146 | - fix bad behaviour in auto mode |
---|
147 | |
---|
148 | * Sun Sep 15 2002 Warly <warly@mandrakesoft.com> 3.3.3-1mdk |
---|
149 | - new clone function |
---|
150 | - new rm function |
---|
151 | - add disc function to replace config file old DISC parsing |
---|
152 | - new package repository handling |
---|
153 | - add publisher tag in ISO |
---|
154 | - various fix/optimization in optimize_space |
---|
155 | - some more heuristic in optimize_space |
---|
156 | - allow --hdlist for generic function |
---|
157 | - use parsehdlist in current dir if it exists not to rely on installed /usr/bin/parsehdlist |
---|
158 | |
---|
159 | * Mon Aug 12 2002 Warly <warly@mandrakesoft.com> 3.0.4-1mdk |
---|
160 | - update/fix cleanrpmsrate |
---|
161 | |
---|
162 | * Fri Jul 26 2002 Warly <warly@mandrakesoft.com> 3.0.3-1mdk |
---|
163 | - oops, forgotten to upgrade clean-rpmsrate |
---|
164 | |
---|
165 | * Fri Jul 26 2002 Warly <warly@mandrakesoft.com> 3.0.2-1mdk |
---|
166 | - remove rpmtools deps and use perl-URPM to replace compare_versions |
---|
167 | |
---|
168 | * Tue Jul 9 2002 Pixel <pixel@mandrakesoft.com> 3.0.1-2mdk |
---|
169 | - rebuild for perl 5.8.0 |
---|
170 | |
---|
171 | * Sun Jul 7 2002 Frederic Lepied <flepied@mandrakesoft.com> 3.0.1-1mdk |
---|
172 | - reworked Makefile to follow standard rpm build rules |
---|
173 | |
---|
174 | * Mon Jun 17 2002 Warly <warly@mandrakesoft.com> 3.0.0-1mdk |
---|
175 | - new building method |
---|
176 | - new code for "needed" deps |
---|
177 | |
---|
178 | * Wed May 22 2002 Warly <warly@mandrakesoft.com> 2.9.3-1mdk |
---|
179 | - fix a pb in md5 sum computation file order |
---|
180 | |
---|
181 | * Mon May 13 2002 Warly <warly@mandrakesoft.com> 2.9.2-1mdk |
---|
182 | - fix fentry problem in List.pm (hashtable shared and not |
---|
183 | reinitialised for each packages) |
---|
184 | |
---|
185 | * Mon May 13 2002 Warly <warly@mandrakesoft.com> 2.9.1-1mdk |
---|
186 | - add md5sum check in CDs |
---|
187 | |
---|
188 | * Fri Mar 29 2002 Warly <warly@mandrakesoft.com> 2.8.5-1mdk |
---|
189 | - fix rpmsrate not added in nolive mode |
---|
190 | - cdcom has now normal list for cd building |
---|
191 | - getAlone the same for srpm and rpm |
---|
192 | - rpm empty size is not an error (link) |
---|
193 | - getList now knows prelist |
---|
194 | - buildInstallHdlist only includes srpm from the current install |
---|
195 | |
---|
196 | * Fri Mar 15 2002 Warly <warly@mandrakesoft.com> 2.8.1-1mdk |
---|
197 | - add new source handling method |
---|
198 | - fix all the related code |
---|
199 | |
---|
200 | * Wed Mar 13 2002 Warly <warly@mandrakesoft.com> 2.7.3-1mdk |
---|
201 | - fix a pb in multiple list interdeps pb |
---|
202 | |
---|
203 | * Sat Mar 09 2002 Warly <warly@mandrakesoft.com> 2.7.3-1mdk |
---|
204 | - fix cd addition in auto mode |
---|
205 | - add rpmsrate exceptions |
---|
206 | - add dir limit in generic (hard and soft) |
---|
207 | |
---|
208 | * Wed Feb 27 2002 Warly <warly@mandrakesoft.com> 2.7.2-1mdk |
---|
209 | - begin oem mode |
---|
210 | - change cleanrpmsrate regexp for kde-i18n-(localename)_extension |
---|
211 | |
---|
212 | * Sat Feb 16 2002 Warly <warly@mandrakesoft.com> 2.6.11-1mdk |
---|
213 | - add kde-i18n, man-pages and such automatic completion in cleanrpmsrate |
---|
214 | |
---|
215 | * Thu Jan 31 2002 Warly <warly@mandrakesoft.com> 2.6.10-1mdk |
---|
216 | - improved cd building functions for multiple lists config |
---|
217 | |
---|
218 | * Sun Jan 27 2002 Warly <warly@mandrakesoft.com> 2.6.9-1mdk |
---|
219 | - fix hdlist building in auto mode |
---|
220 | |
---|
221 | * Mon Jan 25 2002 Warly <warly@mandrakesoft.com> 2.6.8-1mdk |
---|
222 | - add version choosing for multiple library version |
---|
223 | - fix synthesis building |
---|
224 | |
---|
225 | * Mon Jan 25 2002 Warly <warly@mandrakesoft.com> 2.6.7-1mdk |
---|
226 | - fix clean-rpmsrate pb |
---|
227 | |
---|
228 | * Mon Jan 21 2002 Warly <warly@mandrakesoft.com> 2.6.6-1mdk |
---|
229 | - default to normal floppy boot images when isolinux image is not |
---|
230 | writable. |
---|
231 | - add new way of building synthesis files. |
---|
232 | - only use the nolive way to build hdlist. |
---|
233 | - improve cleanRpmsrate to add version to kernel. |
---|
234 | - add clean-rpmsrate |
---|
235 | |
---|
236 | * Sun Jan 06 2002 Warly <warly@mandrakesoft.com> 2.6.5-1mdk |
---|
237 | - fix a bug in auto mode |
---|
238 | - fix bug in boot function |
---|
239 | - fix a bu in cdcom function |
---|
240 | |
---|
241 | * Fri Jan 04 2002 Warly <warly@mandrakesoft.com> 2.6.4-1mdk |
---|
242 | - Package.pm is back |
---|
243 | |
---|
244 | * Thu Jan 03 2002 Warly <warly@mandrakesoft.com> 2.6.3-1mdk |
---|
245 | - fix pb in auto mode |
---|
246 | |
---|
247 | * Wed Jan 2 2002 Warly <warly@mandrakesoft.com> 2.6.2-1mdk |
---|
248 | - include Packages.pm |
---|
249 | |
---|
250 | * Fri Dec 28 2001 Warly <warly@mandrakesoft.com> 2.6.1-1mdk |
---|
251 | - new version |
---|
252 | |
---|
253 | * Wed Dec 26 2001 Warly <warly@mandrakesoft.com> 2.5.11-1mdk |
---|
254 | - first version |
---|