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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
|
2008-02-19 07:50 pixel
* lib/Youri/Submit/Action/Unpack.pm: fix "grep_files" handling
2008-02-12 09:42 blino
* lib/Youri/Submit/Check/Rpmlint.pm: do not make rpmlint errors
fatal anymore (asked by fcrozat)
2008-02-08 17:49 blino
* lib/Youri/Submit/Check/Rpmlint.pm: remove results occurences and
update doc
2008-02-08 17:48 blino
* lib/Youri/Submit/Check/Rpmlint.pm: make all rpmlint errors fatal
2008-02-08 17:44 blino
* lib/Youri/Submit/Check/Rpmlint.pm: removed unneeded parentheses
2008-02-08 17:44 blino
* lib/Youri/Submit/Check/Rpmlint.pm: make clear
repository/target/define are unused
2008-02-08 17:43 blino
* lib/Youri/Submit/Check/Rpmlint.pm: use scalar for fd
2008-01-31 16:35 pixel
* lib/Youri/Submit/Action/Link.pm: also call ->set_arch_changed
when linking a noarch file to another arch
(this still doesn't explain media/media_info/MD5SUM not being
remade, but it
can help...)
2007-12-21 14:37 blino
* bin/youri-submit.in: merge youri-submit into youri-submit.in
2007-12-19 13:43 blino
* lib/Youri/Submit/Action/Archive.pm: only log main/updates
modifications, not contrib/updates or non-free/updates which are
legal
2007-12-19 13:37 blino
* lib/Youri/Submit/Action/Archive.pm: add spuk's debug code for bug
34999
2007-12-17 19:45 blino
* bin/youri-submit: add an "allow_omitting_packages" global option,
to be able to run youri even if no packages are specified on the
command line (useful if packages are fetched in pre action)
2007-12-17 19:34 blino
* bin/youri-submit: improve error messages for pres/posts actions
(patch from raoh's copy, probably from warly)
2007-12-17 19:33 blino
* bin/youri-submit: fix typo about posts actions (patch from raoh's
copy, probably from warly)
2007-12-13 15:01 pixel
* lib/Youri/Submit/Check/Version.pm: - empty {authorized_users}
doesn't imply every one is allowed to bypass freeze check!
- {authorized_users} should be checked more strictly
2007-12-07 18:26 spuk
* lib/Youri/Submit/Action/Sendcache.pm: - make Sendcache send debug
packages only if explicitly told to, to save space
2007-11-30 19:29 spuk
* lib/Youri/Submit/Action/UpdateMdvDb.pm: Youri action to update
the Mandriva maintainers database.
2007-10-04 20:07 blino
* lib/Youri/Submit/Check/Host.pm: make host reject message more
explicit by print arch (useful when VMware-player for x86_64
actually uses i386 as rpm arch...)
2007-09-26 11:21 blino
* lib/Youri/Submit/Action/Install.pm: improve log message
2007-09-26 11:19 blino
* lib/Youri/Submit/Action/Install.pm: fix installed filename (oops)
2007-09-26 09:58 blino
* lib/Youri/Submit/Action/Install.pm: throw exception on failure,
not to delete files that can be copied because of lack of space
(upstream commit 1398)
2007-09-25 10:49 pixel
* lib/Youri/Submit/Action/Unpack.pm: allow to unpack only some
files (for release-notes.txt in mandriva-release-common)
2007-09-22 13:11 blino
* lib/Youri/Submit/Check/Version.pm: allow authorized users to
upload everything even during full freeze
2007-08-31 12:51 pixel
* lib/Youri/Submit/Check/Rpmlint.pm: handle new rpmlint format
(not useful at the moment since we still use old rpmlint, but may
be useful in
the future)
2007-08-31 10:03 blino
* lib/Youri/Submit/Action/DkmsModuleInfo.pm: adapt to new
SOURCEPACKAGE value in prebuilt dkms kernel
2007-08-29 13:21 blino
* lib/Youri/Submit/Action/DkmsModuleInfo.pm: initial
Youri::Submit::Action::DkmsModuleInfo module
2007-08-07 12:50 pixel
* lib/Youri/Submit/Action/Link.pm: we need the same workaround as
done in Action::Install
2007-07-16 09:27 blino
* lib/Youri/Submit/Post/Genhdlist2.pm: remove unused variable
2007-07-08 02:44 spuk
* lib/Youri/Submit/Check/Recency.pm: - check for newer/current
revisions in default section when submitted to another section
(bug #30635)
2007-07-02 09:17 pixel
* lib/Youri/Submit/Action/CVS.pm: drop mdv specific stuff (mdv
doesn't use this action anymore)
2007-06-28 07:40 pixel
* lib/Youri/Submit/Action/Link.pm: do update hdlist for every arch
after linking noarch packages (#31638)
2007-06-28 07:37 pixel
* lib/Youri/Submit/Action/Install.pm: simplify ($arch is not used
by ->set_install_dir_changed)
2007-06-23 13:54 pixel
* lib/Youri/Submit/Action/Mail.pm, lib/Youri/Submit/Reject/Mail.pm:
keep raw changelogs to avoid changing the format (backport)
2007-06-23 08:10 spuk
* lib/Youri/Submit/Check/Recency.pm: - check for newer and same
existing revisions in a single pass
- use proper get_revisions() instead of get_install_file() hack,
as the
latter will use the current file name, and thus will fail to
check for an
existing package revision when submitting, because submitted
SRPMs have a
different name ("@rev:foobar-...") than what goes into the
repository
2007-06-22 13:51 pixel
* lib/Youri/Submit/Post/CleanRpmsrate.pm: ensure we don't do
anything if nothing changed
2007-06-22 13:41 pixel
* lib/Youri/Submit/Post/Genhdlist2.pm: more atomic generation of
MD5SUM
2007-06-22 13:35 pixel
* lib/Youri/Submit/Post/Genhdlist2.pm: - need to redo global
MD5SUM. This MD5SUM is mostly obsolete, but is still needed up to
2007.1
(and needed even on cooker for existing urpmi.cfg)
- don't use --blind. hopefully not needed
2007-06-22 06:45 pixel
* lib/Youri/Submit/Post/Genhdlist2.pm: call genhdlist2 with (new)
option --allow-empty-media
2007-06-21 10:13 blino
* lib/Youri/Submit/Post/CleanRpmsrate.pm: uniquify arch list
2007-06-21 08:16 pixel
* lib/Youri/Submit/Action/Install.pm,
lib/Youri/Submit/Post/Genhdlist2.pm: new action Genhdlist2
2007-06-14 18:23 mrl
* lib/Youri/Submit/Action/Sendcache.pm: - As this action is unique,
avoid too much flexibility and simplify the code.
- Use . for hidding temporary files instead of .new suffix.
2007-06-13 18:36 mrl
* lib/Youri/Submit/Action/Sendcache.pm: - Adapted for working with
iurt cache.
2007-06-13 01:48 spuk
* lib/Youri/Submit/Action/Link.pm: no such 'cd' function, 'chdir'
it is...
2007-05-08 06:22 spuk
* lib/Youri/Submit/Reject/Mail.pm: fixing the Big SVN Breakage:
reverting last commit, restoring state as of latest working
checkout in ken
2007-05-08 06:06 spuk
* lib/Youri/Submit/Post/Gendistrib.pm: fixing the Big SVN Breakage:
restoring state as of working checkout in ken
2007-05-08 06:00 spuk
* lib/Youri/Submit/Action/Scp.pm: fixing the Big SVN Breakage:
Scp.pm was changed into Send.pm
2007-05-05 06:16 spuk
* lib/Youri/Submit/Check/Section.pm: Check if package submission
was for the correct section.
2007-03-24 11:36 spuk
* lib/Youri/Submit/Action/Archive.pm: - moved hack for verbosity to
start of code, with a remark
- removed double $path from debug string
2007-03-15 12:36 mrl
* lib/Youri/Submit/Check/Version.pm: - Fixed version_freeze mode:
do not allow any upload with a different version
from what is already present on the repository.
- Added an ACL control for maintainers allowed to bypass this
restriction as option
authorized_users.
2007-03-15 12:32 mrl
* lib/Youri/Submit/Check/Version.pm: - Improved indentation.
- Added some comments regarding possible bugs in freeze modes.
2005-05-24 14:40 Sawyer
* lib/Youri/Submit/Reject/Mail.pm: LOST
2007-03-10 07:49 spuk
* lib/Youri/Submit/Action/Archive.pm: The extra '/' was causing the
string to not be matched by the regexp below
for getting $rep_section and $rep_main_section, in the end making
the SRPMs
of all other subsections be removed when a newer package was
uploaded for any
subsection. (#28719)
2007-02-26 10:56 blino
* lib/Youri/Submit/Post/CleanRpmsrate.pm: initial
Post::CleanRpmsrate module
2007-02-14 12:10 blino
* lib/Youri/Submit/Check/Rpmlint.pm: match rpmlint errors that have
no value (such as non-xdg-migrated-menu, the only one we
currently use...)
2007-02-09 22:11 blino
* bin/youri-submit: get -> get_arg
2007-02-09 22:09 blino
* bin/youri-submit: merge changes from ken/kenobi
2007-02-09 22:09 blino
* bin/youri-submit: create youri-submit from youri-submit.in
2007-02-09 19:39 blino
* lib/Youri/Submit/Check/ACL.pm: add section in acl error message
2007-02-09 19:34 blino
* lib/Youri/Submit/Reject/Mail.pm: do not use packager adress as
from, it may be invalid (non-free packages) or not subscribed to
maintainers
2007-02-09 18:51 blino
* lib/Youri/Submit/Reject/Mail.pm: fix changelog in reject mail
2007-02-09 18:50 blino
* lib/Youri/Submit/Reject/Mail.pm: fix reject mail
2007-02-08 17:28 pixel
* lib/Youri/Submit/Action/Unpack.pm: also give directories to "cpio
-pdu" to ensure directories are created with same rights
2007-02-08 14:09 pixel
* lib/Youri/Submit/Action/Unpack.pm: This action plugin unpack
package files somewhere.
When unpack_inside_distribution_root is set, dest_directory is
relative to the distribution root.
When the package is a noarch, the wanted files are unpacked in
distribution root of each archs.
eg:
unpack_installer_images:
class: Youri::Submit::Action::Unpack
options:
name: drakx-installer-images
source_subdir: /usr/lib*/drakx-installer-images
dest_directory: .
unpack_inside_distribution_root: 1
2007-01-30 10:02 pixel
* lib/Youri/Submit/Check/ACL.pm, lib/Youri/Submit/Check/Host.pm,
lib/Youri/Submit/Check/Queue_recency.pm,
lib/Youri/Submit/Check/Rpmlint.pm, lib/Youri/Submit/Check/SVN.pm,
lib/Youri/Submit/Check/Source.pm, lib/Youri/Submit/Check/Type.pm,
lib/Youri/Submit/Check/Version.pm, lib/Youri/Submit/Pre/Rsync.pm,
lib/Youri/Submit/Reject/Archive.pm,
lib/Youri/Submit/Reject/Clean.pm,
lib/Youri/Submit/Reject/Install.pm,
lib/Youri/Submit/Reject/Mail.pm: fix $Id$ expansion
2007-01-30 10:01 pixel
* lib/Youri/Submit/Plugin.pm, lib/Youri/Submit/Post.pm,
lib/Youri/Submit/Pre.pm, lib/Youri/Submit/Reject.pm: fix pod and
$Id$ expansion
2007-01-30 10:00 pixel
* lib/Youri/Submit/Post.pm: fix pod
2007-01-30 09:59 pixel
* lib/Youri/Submit/Action/Send.pm: fix pod
2007-01-30 09:58 pixel
* lib/Youri/Submit/Action/Markrelease.pm,
lib/Youri/Submit/Action/Scp.pm: fix pod
2007-01-30 09:49 pixel
* lib/Youri/Submit/Action/Clean.pm,
lib/Youri/Submit/Action/Link.pm,
lib/Youri/Submit/Action/Markrelease.pm,
lib/Youri/Submit/Action/Rpminfo.pm,
lib/Youri/Submit/Action/Scp.pm, lib/Youri/Submit/Action/Send.pm:
fix $Id$ expansion
2007-01-26 11:25 blino
* lib/Youri/Submit/Check/ACL.pm: really match section in ACL
2007-01-26 11:24 blino
* lib/Youri/Submit/Check/ACL.pm: fix arch ACL matching (and thus
allow ACLs to match again)
2006-12-24 10:31 mandrake
* lib/Youri/Submit/Post.pm, lib/Youri/Submit/Pre.pm,
lib/Youri/Submit/Reject.pm: Removing previous pristine/
directory.
2006-12-24 03:15 mandrake
* lib/Youri/Submit/Action.pm: %repsys markrelease
version: 1.0
release: 0.20061223.3mdv2007.1
revision: 101968
Copying 1.0-0.20061223.3mdv2007.1 to releases/ directory.
2006-10-16 16:05 warly
* lib/Youri/Submit/Check.pm: merging dev with upstream
2006-11-14 22:01 mrl
* lib/Youri/Submit/Action/Rpminfo.pm: - Renamed package name tag.
2006-11-14 16:38 mrl
* lib/Youri/Submit/Action/RpmInfo.pm,
lib/Youri/Submit/Action/Rpminfo.pm: - Renamed, due to some
enforcement (cfengine?).
2006-11-14 13:23 mrl
* lib/Youri/Submit/Action/RpmInfo.pm: - Added package summary to
.info files.
2006-11-13 12:40 mrl
* lib/Youri/Submit/Action/RpmInfo.pm: - First version of web
interface.
2006-10-31 11:40 mandrake
* lib/Youri/Submit/Action/Archive.pm: unlink file in Archive for
the moment (should be done in clean but the code to detect which
packages is obsoleted has to be moved
2006-10-26 11:26 mandrake
* lib/Youri/Submit/Action/CVS.pm: we perform CVS commit
asynchronously
2006-10-26 11:21 mandrake
* lib/Youri/Submit/Action/Install.pm: rename the rpm to remove the
prefix
2006-10-26 11:18 mandrake
* lib/Youri/Submit/Action/Mail.pm: fix double .
2006-10-26 11:16 mandrake
* lib/Youri/Submit/Post/Gendistrib.pm: add gendistrib command
directly into gendistrib module
2006-10-26 11:14 mandrake
* lib/Youri/Submit/Pre/Rsync.pm: return correct packages table for
groups
2006-10-26 11:10 mandrake
* lib/Youri/Submit/Reject/Install.pm: get_reject_path seems to be
the new name
2006-10-26 11:07 mandrake
* lib/Youri/Submit/Reject/Mail.pm: $last_change is sometime empty
2006-10-24 11:07 warly
* bin/youri-submit.in: exit with an error code if an error occured
in one group; s/Upload/Submit/; use new structure name from
upstream
2006-10-23 11:48 warly
* lib/Youri/Submit/Check/ACL.pm,
lib/Youri/Submit/Check/Queue_recency.pm,
lib/Youri/Submit/Check/Rpmlint.pm, lib/Youri/Submit/Check/SVN.pm,
lib/Youri/Submit/Check/Source.pm,
lib/Youri/Submit/Check/Version.pm: must return an empty value
2006-10-18 12:46 warly
* lib/Youri/Submit/Check/Rpmlint.pm: remove debug code
2006-10-17 16:10 warly
* lib/Youri/Submit/Check/ACL.pm: now checks must return the error
message
2006-10-17 16:04 warly
* lib/Youri/Submit/Check/ACL.pm, lib/Youri/Submit/Check/Host.pm,
lib/Youri/Submit/Check/Queue_recency.pm,
lib/Youri/Submit/Check/Rpmlint.pm, lib/Youri/Submit/Check/SVN.pm,
lib/Youri/Submit/Check/Source.pm,
lib/Youri/Submit/Check/Version.pm: now checks must return the
error message
2006-10-17 15:16 warly
* lib/Youri/Submit/Action/Clean.pm,
lib/Youri/Submit/Action/Link.pm, lib/Youri/Submit/Check/ACL.pm,
lib/Youri/Submit/Check/Host.pm,
lib/Youri/Submit/Check/Queue_recency.pm,
lib/Youri/Submit/Check/SVN.pm, lib/Youri/Submit/Check/Source.pm,
lib/Youri/Submit/Check/Type.pm,
lib/Youri/Submit/Check/Version.pm, lib/Youri/Submit/Post.pm,
lib/Youri/Submit/Pre.pm, lib/Youri/Submit/Reject.pm:
s/Upload/Submit/g
2006-10-17 13:53 warly
* ., ChangeLog, MANIFEST.SKIP, Makefile.PL, README, TODO,
bin/youri-submit-proxy.in, bin/youri-submit-restricted.in,
bin/youri-submit.in, etc, etc/bash_completion.d,
etc/bash_completion.d/youri-submit, etc/submit.conf,
lib/Youri/Submit/Plugin.pm, t, t/00distribution.t: merge with
upstream
2006-10-16 16:27 warly
* lib/Youri/Submit/Post/Gendistrib.pm,
lib/Youri/Submit/Pre/Rsync.pm,
lib/Youri/Submit/Reject/Archive.pm,
lib/Youri/Submit/Reject/Clean.pm,
lib/Youri/Submit/Reject/Install.pm,
lib/Youri/Submit/Reject/Mail.pm: Now the module is Submit and not
Upload
2006-10-16 16:26 warly
* lib/Youri/Submit/Check, lib/Youri/Submit/Check/History.pm,
lib/Youri/Submit/Check/Precedence.pm,
lib/Youri/Submit/Check/Recency.pm,
lib/Youri/Submit/Check/Rpmlint.pm, lib/Youri/Submit/Check/Tag.pm,
lib/Youri/Submit/Check/Type.pm: merging dev with upstream
2006-10-16 16:15 warly
* lib/Youri/Submit/Post.pm, lib/Youri/Submit/Pre.pm,
lib/Youri/Submit/Reject.pm: now plugins are complete abstract
classes
2006-10-16 16:08 warly
* lib/Youri/Submit/Action.pm: merging dev with upstream
2006-10-16 16:05 warly
* lib/Youri/Submit/Check.pm: merging dev with upstream
2006-10-16 13:03 warly
* lib/Youri/Submit/Action/Markrelease.pm,
lib/Youri/Submit/Action/Scp.pm, lib/Youri/Submit/Action/Send.pm:
Now the Module is Submit
2006-10-16 12:57 warly
* lib/Youri/Submit/Action, lib/Youri/Submit/Action/Archive.pm,
lib/Youri/Submit/Action/Bugzilla.pm,
lib/Youri/Submit/Action/CVS.pm, lib/Youri/Submit/Action/Clean.pm,
lib/Youri/Submit/Action/Install.pm,
lib/Youri/Submit/Action/Link.pm, lib/Youri/Submit/Action/Mail.pm,
lib/Youri/Submit/Action/RSS.pm, lib/Youri/Submit/Action/Sign.pm:
merging dev with upstream
2006-10-16 11:33 warly
* bin/youri-check.in: add new youri subsections (from upstream)
2006-10-16 11:30 warly
* lib/Youri/Submit: add new youri subsections (from upstream)
2006-10-16 11:30 warly
* lib/Youri: add new youri subsections (from upstream)
2006-10-16 11:30 warly
* lib: add new youri subsections (from upstream)
2006-10-16 11:22 warly
* bin/youri-submit.in: add new youri subsections (from upstream)
2006-10-16 11:18 warly
* bin: add new youri subsections (from upstream)
2006-10-16 11:18 warly
* .: add new youri subsections (from upstream)
2006-04-23 Guillaume Rousse <guillomovitch@zarb.org> 0.9
* initial release
|