File: changelog

package info (click to toggle)
debarchiver 0.11.5%2Bnmu1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 724 kB
  • sloc: perl: 1,599; sh: 109; makefile: 92
file content (930 lines) | stat: -rw-r--r-- 33,772 bytes parent folder | download
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
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
debarchiver (0.11.5+nmu1) unstable; urgency=medium

  * Non-maintainer upload.
  * Add Build-Depends on libpod-parser-perl. Closes: #961154.

 -- Dominic Hargreaves <dom@earth.li>  Tue, 10 Nov 2020 22:47:54 +0000

debarchiver (0.11.5) unstable; urgency=medium

  * Added source format "3.0 (native)".
  * Bumped standards version to 4.3.0.
  * Updated to debhelper compatibility level 12.
  * Changed to use getent instead of grep in postrm.
  * Changed to use which instead of testing exact path.
  * Added default-mta to recommends.
  * Updated French translation. Closes: #922193.
  * Updated German translation. Closes: #930000.

 -- Ola Lundqvist <opal@debian.org>  Sun, 03 May 2020 21:10:21 +0200

debarchiver (0.11.4) unstable; urgency=medium

  * GPG needs pinentry-mode option to run in batch mode, so this was
    added. Closes: #954340.
    Thanks to Jorgen Hagg for the patch proposal.

 -- Ola Lundqvist <opal@debian.org>  Sat, 04 Apr 2020 21:29:38 +0200

debarchiver (0.11.3) unstable; urgency=medium

  * Applied patch for examples section in manpage. Closes: #323615.
    Thanks to Jari Alto for the initial suggestion and Helge Kreutzmann
    for the patch.
  * Updated French translation. Thanks to Alban Vidal. Closes: #863618.
  * Updated German translation. Thanks to Helge Kreutzmann. Closes: #858851.

 -- Ola Lundqvist <opal@debian.org>  Fri, 28 Dec 2018 22:00:53 +0100

debarchiver (0.11.2) unstable; urgency=low

  * Updated language in manual page.

 -- Ola Lundqvist <opal@debian.org>  Fri, 22 Jun 2018 21:08:26 +0200

debarchiver (0.11.1) unstable; urgency=low

  * Updated German man page translation. Closes: #858851.

 -- Ola Lundqvist <opal@debian.org>  Tue, 28 Mar 2017 20:48:12 +0200

debarchiver (0.11.0) unstable; urgency=medium

  * Input directory is added to INC to allow input.conf to be read also
    after perl 5.26 is released.
  * Allow use of command line options to vrfycmd configuration option.
    Closes: #755447. The change is based on a patch from Ron Lee
    <ron@debian.org>.

 -- Ola Lundqvist <opal@debian.org>  Mon, 14 Nov 2016 21:34:42 +0100

debarchiver (0.10.7) unstable; urgency=low

  * Updated the package description according to the suggestion from
    Justin B Rye <jbr@edlug.org.uk>. Closes: #695379.
  * Updated the manual page to tell how to disable email sending
    altogether.
  * Email sending will be ignored if the receipient list is empty.
    Closes: #730775.
  * Updated to standards version 3.9.6.

 -- Ola Lundqvist <opal@debian.org>  Sat, 11 Jun 2016 20:37:40 +0200

debarchiver (0.10.6) unstable; urgency=low

  * Updated the package description to clarify the word 'potato'. Thanks
    to Fred Maranhão <fred.maranhao@gmail.com> for pointing out that it
    is not so obvious.

 -- Ola Lundqvist <opal@debian.org>  Mon, 01 Jun 2015 21:29:51 +0200

debarchiver (0.10.5) unstable; urgency=low

  * Build errors are no longer sliently ignored. Closes: #777014. Thanks
    to Chris Lamb <lamby@debian.org> for the patch.
  * Make sure the man pages are built correctly. Closes: #777015
    (again). Thanks to Mats Erik Andersson
    <mats.andersson@gisladisker.se> for the patch.
  * Correction to the Portuguese translation build config. This makes manual
    pages to be built for other languages too. Closes: #784193.
    It also makes the package build at all, see the first note.
    Thanks to Mats Erik Andersson for pointing out this problem.
  * Stepped standards version to 3.9.4.
  * Rewrote the rules file to use debhelper 7 functionality (simplified).

 -- Ola Lundqvist <opal@debian.org>  Thu, 14 May 2015 21:20:47 +0200

debarchiver (0.10.4) unstable; urgency=low

  * Made build reproducible as it removes timestamps from the build
    system. Closes: #777015. Thanks to Chris Lamb <lamby@debian.org> for
    the patch.

 -- Ola Lundqvist <opal@debian.org>  Mon, 13 Apr 2015 22:42:03 +0200

debarchiver (0.10.3) unstable; urgency=low

  * Added a check so that in case dpkg-deb -f can not parse the file,
    the file will be rejected. This is to ensure that packages are not
    sorted to wrong place when there is for example a disk outage.

 -- Ola Lundqvist <opal@debian.org>  Wed, 19 Nov 2014 22:01:44 +0100

debarchiver (0.10.2) unstable; urgency=low

  * Portuguese translation for debarchiver's manpage. Thanks to Américo
    Monteiro <a_monteiro@gmx.com> for the translation. Closes: #756346.

 -- Ola Lundqvist <opal@debian.org>  Wed, 20 Aug 2014 22:28:02 +0200

debarchiver (0.10.1) unstable; urgency=low

  * Added the option APT::FTPArchive::AlwaysStat = true to all calls to
    apt-ftparchive to make sure the correct Package files are always
    generated. This has been a problem in certain cases and is hard to
    find the reason for.

 -- Ola Lundqvist <opal@debian.org>  Sat, 15 Feb 2014 23:21:08 +0100

debarchiver (0.10.0) unstable; urgency=low

  * Support for mail sending when accepting or rejecting a deb only file.
  * Clarified that configuration strings shall be quoted.

 -- Ola Lundqvist <opal@debian.org>  Wed, 13 Nov 2013 22:18:29 +0100

debarchiver (0.9.13) unstable; urgency=low

  * Added verification of deb file completeness to make sure that it
    does not process incomplete deb files that is not part of a .changes
    file.

 -- Ola Lundqvist <opal@debian.org>  Wed, 06 Nov 2013 21:52:34 +0100

debarchiver (0.9.12) unstable; urgency=low

  * Applied fix from Uditha Atukorala <udi@geniusse.com> that solves a
    second error in the generated Release file. Closes: #724512.

 -- Ola Lundqvist <opal@debian.org>  Fri, 27 Sep 2013 08:21:50 +0200

debarchiver (0.9.11) unstable; urgency=low

  * Applied fix from Uditha Atukorala <udi@geniusse.com> that solves a
    release name conflict in the generated Release file.
    Closes: #724316. Thanks a lot for the patch.

 -- Ola Lundqvist <opal@debian.org>  Mon, 23 Sep 2013 19:02:08 +0200

debarchiver (0.9.10) unstable; urgency=low

  * Spelling correction in manual.

 -- Ola Lundqvist <opal@debian.org>  Sun, 06 Nov 2011 20:30:19 +0100

debarchiver (0.9.9) unstable; urgency=low

  * Updated French and German translation. Thanks to Valéry Perrin
    <valery.perrin.debian@free.fr> and Helge Kreutzmann
    <debian@helgefjell.de> for translation and support.

 -- Ola Lundqvist <opal@debian.org>  Sun, 06 Nov 2011 20:14:27 +0100

debarchiver (0.9.8) unstable; urgency=low

  * German translation included. Closes: #640236. Thanks to Helge
    Kreutzmann <debian@helgefjell.de> for the translation.

 -- Ola Lundqvist <opal@debian.org>  Thu, 03 Nov 2011 16:41:25 +0100

debarchiver (0.9.7) unstable; urgency=low

  * Improved english language in the documentation. Closes: #640235.
  * Updated to standards version 3.9.1 (from 3.8.0).
  * Using debhelper version 8.

 -- Ola Lundqvist <opal@debian.org>  Wed, 02 Nov 2011 22:15:14 +0100

debarchiver (0.9.6) unstable; urgency=low

  * Solved a misspelling of recomments to recommends in the control
    file. Closes: #604432.

 -- Ola Lundqvist <opal@debian.org>  Mon, 22 Nov 2010 18:04:56 +0100

debarchiver (0.9.5) unstable; urgency=low

  * Correction of debug for sendlist. Extended the suggestion from Mats
    to make sure the list is properly ordered.

 -- Ola Lundqvist <opal@debian.org>  Mon, 01 Nov 2010 21:39:44 +0100

debarchiver (0.9.4) unstable; urgency=low

  * Applied patch for french language translation. Closes: #601185.

 -- Ola Lundqvist <opal@debian.org>  Mon, 01 Nov 2010 21:38:35 +0100

debarchiver (0.9.3) unstable; urgency=low

  * Applied patch from Franck Joncourt to make sure that mailformat has
    proper backwards compatibility. Closes: #522227.

 -- Ola Lundqvist <opal@debian.org>  Fri, 03 Apr 2009 07:13:51 +0200

debarchiver (0.9.2) unstable; urgency=low

  * Changed dependency on mail functionality to a recommendation. Also
    added exim4 and mail-transport-agent to the list due to the recent
    patch from Franck Joncourt.

 -- Ola Lundqvist <opal@debian.org>  Fri, 27 Mar 2009 06:39:56 +0100

debarchiver (0.9.1) unstable; urgency=low

  * Correction of syntax error. Closes: #520145.

 -- Ola Lundqvist <opal@debian.org>  Tue, 17 Mar 2009 22:19:19 +0100

debarchiver (0.9.0) unstable; urgency=low

  * Applied patch from Franck Joncourt for sendmail support instead of
    mail support. Closes: #517689.
  * Updated manpage for debarchiver to print out the default instead
    of erroneously printing the variable name. Closes: #447843.
  * Clarified error messages. Closes: #437147.
  * Corrected spelling debian to Debian in package description.
  * Copyright file is now UTF-8 encoded instead of ISO-8859-1 coded.
  * Postinst file now use user:group syntax for chown operation instead of
    previous user.group syntax.
  * Now uses compat file instead of setting DH_COMPAT variable in rules file.
  * Use standards version 3.8.0.
  * Added 5 override exceptions for lintian warnings. They are intentional.

 -- Ola Lundqvist <opal@debian.org>  Mon, 16 Mar 2009 21:00:44 +0100

debarchiver (0.8.4) unstable; urgency=low

  * Corrected path error in README.gnupg, closes: #502060. Thanks for
    the clarification from Per Eric Rosen <per@rosnix.net>

 -- Ola Lundqvist <opal@debian.org>  Sat, 18 Oct 2008 15:21:35 +0200

debarchiver (0.8.3) unstable; urgency=high

  * Updated to show that lenny is stable and squeeze is testing as it
    will be after the release.

 -- Ola Lundqvist <opal@debian.org>  Thu,  4 Sep 2008 08:01:33 +0200

debarchiver (0.8.2) unstable; urgency=low

  * Changed upstream address from opalsys.net to inguza.com.

 -- Ola Lundqvist <opal@debian.org>  Mon,  7 Apr 2008 19:22:28 +0200

debarchiver (0.8.1) unstable; urgency=low

  * Added dependency on mailutils | bsd-mailx | mailx as that software
    is needed for full functionality, closes: #472491.

 -- Ola Lundqvist <opal@debian.org>  Mon, 24 Mar 2008 18:31:08 +0100

debarchiver (0.8.0) unstable; urgency=low

  * Applied patch from Turbo Fredriksson <turbo@bayour.com> to:
      - correct reject message.
      - only stat existing files.
      - allow distmapping for files as well.
      - ignore files already installed with correct MD5 hash.
  * End configuration file with 1;
  * Now check changes file for already installed files.
  * Instead of always rejecting (as suggested by Turbo) incomplete files,
    the time is now configurable (minor version number bump).
  * Configuration files need to return a true value is now documented.
    Closes: #443405.
  * Documented when a file can be rejected, closes: #323614.
  * Added option to specify mail sender, closes: #425936.
  * Applied some more patches from Turbo Fredriksson <turbo@bayour.com> to:
      - correct getMD5HashForFile function
      - change so that foreach use my variables
      - check incomplete time only once
      - allow forcing an install of an upload (i.e., ignore existing files in
        destdir)
      - Create reject log code.
  * Cleanup and documentation after patches from Turbo and
    changed "force" option to "ignoredestcheck" option.
  * This new option is now in the configuration file as well.

 -- Ola Lundqvist <opal@debian.org>  Tue,  9 Oct 2007 22:38:52 +0200

debarchiver (0.7.4) unstable; urgency=low

  * Changed severity level for configuration file problems from info to
    warning, so that it is displayed in the normal case.
  * Changed official homepage.

 -- Ola Lundqvist <opal@debian.org>  Tue, 14 Aug 2007 08:52:48 +0200

debarchiver (0.7.3) unstable; urgency=medium

  * Correction of French translation for index option, closes: #409301.

 -- Ola Lundqvist <opal@debian.org>  Fri,  2 Feb 2007 07:25:12 +0100

debarchiver (0.7.2) unstable; urgency=low

  * Upgrade code to handle moved logcheck configuration file.
    This avoids an error text during the upgrade as well.
    (It can be seen as a correction of #408483).

 -- Ola Lundqvist <opal@debian.org>  Sun, 28 Jan 2007 18:29:32 +0100

debarchiver (0.7.1) unstable; urgency=low

  * Correction of logcheck location issue, closes: #408483.

 -- Ola Lundqvist <opal@debian.org>  Fri, 26 Jan 2007 21:04:19 +0100

debarchiver (0.7.0) unstable; urgency=medium

  * Updated to match that etch will be stable.

 -- Ola Lundqvist <opal@debian.org>  Fri,  8 Dec 2006 21:53:09 +0100

debarchiver (0.6.6) unstable; urgency=low

  * Applied a correction from Hakon Stordahl <haastord@online.no> that
    correct problems with incoming, closes: #400691, #375932.
  * Sorted options in alphabetical order, closes: #323612.

 -- Ola Lundqvist <opal@debian.org>  Tue, 28 Nov 2006 08:50:40 +0100

debarchiver (0.6.5) unstable; urgency=low

  * Check the existance of userdel and groupdel before using that
    command in purge phaes, closes: #390187.

 -- Ola Lundqvist <opal@debian.org>  Fri, 29 Sep 2006 20:50:05 +0200

debarchiver (0.6.4) unstable; urgency=low

  * Updated french translation and french addendum with files provided
    by Valery Perrin <valery.perrin.debian@free.fr>, closes: #386047.
  * Added logcheck configuration for workstation, closes: #372298.
    Thanks to Martin F Krafft <madduck@debian.org> for the config file.

 -- Ola Lundqvist <opal@debian.org>  Tue,  5 Sep 2006 07:38:36 +0200

debarchiver (0.6.3) unstable; urgency=low

  * Applied a patch from Michael Hanke <michael.hanke@gmail.com> to make
    it possible to upload files to two dists sharing the same orig file,
    closes: #372130.

 -- Ola Lundqvist <opal@debian.org>  Thu, 20 Jul 2006 10:04:22 +0200

debarchiver (0.6.2) unstable; urgency=low

  * Documented default configuration options, closes: #373840.
  * Corrected version number, closes: #374298.
  * Corrected unknown character problem, closes: #374297.
  * Corrected so that debhelper is now build depends instead of build
    depends indep.
  * Updated to standards version 3.7.2.

 -- Ola Lundqvist <opal@debian.org>  Thu,  6 Jul 2006 00:11:53 +0200

debarchiver (0.6.1) unstable; urgency=low

  * Small fix for udeb support, closes: #358144.
    Thanks to Jeremy Bobbio <jeremy.bobbio@etu.upmc.fr> for the fix.

 -- Ola Lundqvist <opal@debian.org>  Sat, 25 Mar 2006 17:45:45 +0100

debarchiver (0.6.0) unstable; urgency=low

  * Applied patch from Yaroslav Halchenko <debian@onerussian.com> that
    add a new feature called --majordefault to make it possible to
    define another major target instead of main if it is not defined in
    the source, closes: #354430.
  * Changed the patch described above so it is fully documented and renamed
    it so it integrate better with the other functions.

 -- Ola Lundqvist <opal@debian.org>  Sun, 26 Feb 2006 13:56:43 +0100

debarchiver (0.5.5) unstable; urgency=low

  * Applied patch from Geoff Crompton
    <geoff.crompton@strategicdata.com.au> to avoid duplicated emails,
    closes: #339696.
  * Documented a feature that I was not aware of myself, closes: #335830.
  * Updated french documentation, closes: #338510.
  * Updated to standards version 3.6.2.
  * Updated to debhelper compatibility 4.
  * Removed debian/debarchiver.conffiles because of higher debhelper
    compatibility.

 -- Ola Lundqvist <opal@debian.org>  Sat, 28 Jan 2006 22:24:35 +0100

debarchiver (0.5.4) unstable; urgency=low

  * Applied fix from Russ Allbery <rra@stanford.edu> that reallow
    interactive gpg signing of Release files, closes: #338012.

 -- Ola Lundqvist <opal@debian.org>  Mon,  7 Nov 2005 21:48:55 +0100

debarchiver (0.5.3) unstable; urgency=low

  * Applied patch from Daniel Leidert <daniel.leidert.spam@gmx.net> that
    make the signhelper script obsolete. Also correct signing so it work
    from a cron-job and not just from a tty.
  * Made sure that the signhelper command is not installed, and removed
    from the source tree.

 -- Ola Lundqvist <opal@debian.org>  Fri, 14 Oct 2005 08:34:17 +0200

debarchiver (0.5.2) unstable; urgency=low

  * Applied patch from Daniel Leidert that correct the following issues:
    - fix for the $signcmd-issues
    - fix for debarchiver.conf (signcmd default and gpgpassfile info)
    - updates to all old FSF addresses
    - fix to include README.gnupg instead of README.dscverify

 -- Ola Lundqvist <opal@debian.org>  Thu, 13 Oct 2005 11:20:20 +0200

debarchiver (0.5.1) unstable; urgency=low

  * Applied patch from Daniel Leidert <daniel.leidert.spam@gmx.net> that
    fix the last (hopefully) issues with signed release files, closes:
    #333182.

 -- Ola Lundqvist <opal@debian.org>  Tue, 11 Oct 2005 21:01:02 +0200

debarchiver (0.5.0) unstable; urgency=low

  * Added a new command line option --configfile, inspired by patch from
    Alexander Wirt <formorer@debian.org>, closes: #331425.
  * Added a helper script to sign release files. It could be implemented using
    some perl cpan module but I decided not to do so, closes: #328883.
  * Updated copyright information in README and source files.
  * Updated French translation. Thanks to Valery Perrin
    <valery.perrin.debian@free.fr> for that valuable help, closes:
    #329254.

 -- Ola Lundqvist <opal@debian.org>  Sat,  8 Oct 2005 16:51:08 +0200

debarchiver (0.4.2) unstable; urgency=low

  * Fix from Daniel Leidert <daniel.leidert.spam@gmx.net> regarding
    a bug in generateRelease, closes: #328449.

 -- Ola Lundqvist <opal@debian.org>  Fri, 16 Sep 2005 22:46:59 +0200

debarchiver (0.4.1) unstable; urgency=low

  * Fix for signed release file support, closes: #326195.
    Thanks to Joergen Haegg <jorgen.hagg@axis.com> for the fix.
  * Made it possible to read gpg password from file and added options
    to manage gpg support, closes: #324191, #317472.

 -- Ola Lundqvist <opal@debian.org>  Fri,  9 Sep 2005 22:10:14 +0200

debarchiver (0.4.0) unstable; urgency=low

  * Applied patch from Russ Allbery <rra@stanford.edu> to allow signed
    release files, closes: #324191.

 -- Ola Lundqvist <opal@debian.org>  Sun, 21 Aug 2005 21:11:05 +0200

debarchiver (0.3.2) unstable; urgency=low

  * Improved argument handling to make debugging easier.
  * Minor typo fix in debarchiver.conf, closes: #309940.

 -- Ola Lundqvist <opal@debian.org>  Mon,  4 Jul 2005 18:00:21 +0200

debarchiver (0.3.1) unstable; urgency=low

  * Updated French manpage translation, thanks to
    Valery Perrin <valery.perrin.debian@free.fr>.

 -- Ola Lundqvist <opal@debian.org>  Tue, 10 May 2005 21:58:56 +0200

debarchiver (0.3.0) unstable; urgency=low

  * Applied a patch from Daniel Leidert <daniel.leidert@wgdd.de> that
    add support for optional verification of signatures in
    distinputputdirs, with README updates.

 -- Ola Lundqvist <opal@debian.org>  Sat,  7 May 2005 10:03:41 +0200

debarchiver (0.2.1) unstable; urgency=low

  * Bugfix for bzip2 support.

 -- Ola Lundqvist <opal@debian.org>  Mon,  2 May 2005 17:49:11 +0200

debarchiver (0.2.0) unstable; urgency=low

  * Applied patch from Bob Proulx <bob@proulx.com> that add .changes
    file support to dist input directories.
  * Make sure that .changes files are processed before any .deb files
    to avoid a race condition.
  * Applied patch from Daniel Leidert <daniel.leidert.spam@gmx.net> to
    support bzip2 file generation and also fix so that contents-all
    files is generated too, closes: #304532, #307004.
  * Added a README file from Daniel Leidert <daniel.leidert@wgdd.de>
    that document how to publish the repository.
  * Verification of chages files are now much more complete. Owner
    size and that all files exist is checked before handling.

 -- Ola Lundqvist <opal@debian.org>  Sun,  1 May 2005 13:09:49 +0200

debarchiver (0.1.8) unstable; urgency=low

  * Rewrote install structure to use makefiles instead of just the
    debian/rules file. At the same time a file permission problem was
    fixed, closes: #292174.

 -- Ola Lundqvist <opal@debian.org>  Wed, 13 Apr 2005 22:28:20 +0200

debarchiver (0.1.7) unstable; urgency=low

  * Added README.dscverify contributed by Daniel Leidert
    <daniel.leidert@wgdd.de>.

 -- Ola Lundqvist <opal@debian.org>  Wed, 13 Apr 2005 21:47:16 +0200

debarchiver (0.1.6) unstable; urgency=low

  * Applied patch from Valery Perrin <valery.perrin@free.fr> that add a
    French translation and support for po4a translations, closes:
    #297049.

 -- Ola Lundqvist <opal@debian.org>  Sun, 27 Feb 2005 15:53:10 +0100

debarchiver (0.1.5) unstable; urgency=low

  * Fix default group write permissions in incoming subdirectories,
    closes: #292174.

 -- Ola Lundqvist <opal@debian.org>  Wed, 26 Jan 2005 10:36:57 +0100

debarchiver (0.1.4) unstable; urgency=low

  * Added a notice that /var/lib/debarchiver is intentionally not
    removed on purge, closes: #287149.

 -- Ola Lundqvist <opal@debian.org>  Mon, 10 Jan 2005 21:57:09 +0100

debarchiver (0.1.3) unstable; urgency=low

  * Applied a patch from Tommaso Moroni <moronito@debian.org> that fix a
    number of typo errors, closes: #289618.

 -- Ola Lundqvist <opal@debian.org>  Mon, 10 Jan 2005 21:53:37 +0100

debarchiver (0.1.2) unstable; urgency=low

  * Applied patch from Valery Perrin <valery.perrin.debian@free.fr> that
    makes the manpage more readable, closes: #288108.

 -- Ola Lundqvist <opal@debian.org>  Sat,  1 Jan 2005 20:10:25 +0100

debarchiver (0.1.1) unstable; urgency=low

  * Fixed debarchiver path example in configuration, closes: #276347.

 -- Ola Lundqvist <opal@debian.org>  Mon, 18 Oct 2004 22:29:08 +0200

debarchiver (0.1.0) unstable; urgency=medium

  * Now it will remove /var/cache/debarchiver on purge.
  * Updated minor version number because of the distribution remapping.
    Also decided to use a more common version numbering system.

 -- Ola Lundqvist <opal@debian.org>  Sun, 12 Sep 2004 10:30:37 +0200

debarchiver (0.0.40) unstable; urgency=high

  * Remapping of distribution releases. Needed for sarge release.
    In this release sarge is considered stable and etch is testing.

 -- Ola Lundqvist <opal@debian.org>  Wed,  8 Sep 2004 15:03:01 +0200

debarchiver (0.0.39) unstable; urgency=low

  * Fixed spelling with distinputcriteria, closes: #182408.
  * Added testing to distinput dirs. Also documented this better in source
    and config.
  * Documented a bit more clear so that it is not so easy to misunderstand
    the distributions and distributionmappings.

 -- Ola Lundqvist <opal@debian.org>  Thu, 12 Aug 2004 09:23:50 +0200

debarchiver (0.0.38) unstable; urgency=low

  * Applied patch from Russ Allbery <rra@stanford.edu> that add support
    for automatic generation of apt-ftparchive config files and more...
   - The --index option no longer takes a configuration file.  Instead, the
   configuration file is always automatically generated from the
   debarchiver configuration.
   - Only the changed distribution is reindexed, if there are multiple
   distributions.  apt-ftparchive has to index a distribution at a time,
   in order to generate accurate Contents files, so there's no way to be
   more granular with the --index option unfortunately.
   - apt-ftparchive is automatically configured to use a cache for package
   information.  By default, that cache is stored in
   /var/cache/debarchiver, and the debian control files are updated below
   to create and deal with that directory like the other /var/lib
   directories that are created.
   - A new --cachedir command-line option and a new $cachedir configuration
   variable have been added to configure where the apt-ftparchive cache
   will be stored.  I updated the sample configuration file to mention it.
   - Release files are no longer generated in directories where one of the
   components of the directory (up to the root of the archive) is a
   symlink.  This is to keep Release files from being constantly
   regenerated when there's a testing -> unstable symlink, going back and
   forth between testing and unstable.  I generalized this check, just in
   case someone is crazy enough to link non-free to main or binary-i386
   to binary-alpha or something bizarre like that.
   - $release changed to $contents per previous discussion.
   - I noticed that override.src was getting touched only if override didn't
   exist, rather than checking for override.src, resulting in override.src
   not being created when the directory archive structure was being fixed.
   That's been fixed.
   - Some minor formatting fixes in the --help and POD documentation.
  * Created AUTHORS file to accnowledge the people helping with this package.
  * Added option -x as an alias for --index.
  * Fixed documentation so that '--index config' is replaced with '--index'.
    Also added a not about that apt-ftparchive is not fully tested.
  * Added option --scandetect or -s that probe for apt-ftparchive or
    dpkg-scan* and use the installed one. Apt-ftparchive is the preferred
    method.
  * Changed from suggest of apt-utils to depend on apt-utils or dpkg-dev.

 -- Ola Lundqvist <opal@debian.org>  Wed, 11 Aug 2004 10:08:59 +0200

debarchiver (0.0.37) unstable; urgency=low

  * Better support for apt-ftparchive. Patch is from Russ Allbery
    <rra@stanford.edu>.
  * Applied patch from from Russ Allbery <rra@stanford.edu>, that add
    support for Release file creation. Closes: #143155.
  * Added suggest on apt-utils.
  * Added release hash to config file too.

 -- Ola Lundqvist <opal@debian.org>  Tue, 10 Aug 2004 17:08:24 +0200

debarchiver (0.0.36) unstable; urgency=low

  * Applied patch from Russ Allbery <rra@stanford.edu>, that add support
    for using apt-ftparchive instead of dpkg-scanpackages and dpkg-
    scansources. Closes: #262206. It is really a great move in the right
    direction as some problems with debarchiver will be solved this way.
    The best thing with this option is that it will be a lot faster.
    Later this should be the default.
  * Removed emacs variables in the end of this changelog.
  * Updated standards version to 3.6.1.

 -- Ola Lundqvist <opal@debian.org>  Fri,  6 Aug 2004 12:05:13 +0200

debarchiver (0.0.35) unstable; urgency=low

  * Option -i should override etcconfig and userconfig but not inputdir
    option, closes: #207051.
  * Applied patch from Achim Derigs <achim.derigs@innovidata.com> that
    fixes an Packages file not found error, closes: #192433.
  * Updated standards version to 3.5.10.

 -- Ola Lundqvist <opal@debian.org>  Thu, 28 Aug 2003 11:37:55 +0200

debarchiver (0.0.34) unstable; urgency=low

  * Added dependency on adduser.

 -- Ola Lundqvist <opal@debian.org>  Mon,  4 Aug 2003 14:35:37 +0200

debarchiver (0.0.33) unstable; urgency=low

  * Fixed a bug in the email code. The changesfile was removed before it
    was checked for owner, closes: #196922.

 -- Ola Lundqvist <opal@debian.org>  Tue, 10 Jun 2003 21:39:21 +0200

debarchiver (0.0.32) unstable; urgency=low

  * Fixing option error, closes: #193791.
  * Added -t to logger in default cron-job.

 -- Ola Lundqvist <opal@debian.org>  Mon, 19 May 2003 08:41:08 +0200

debarchiver (0.0.31) unstable; urgency=low

  * Added shortcut options for common operations.

 -- Ola Lundqvist <opal@debian.org>  Tue, 13 May 2003 07:26:23 +0200

debarchiver (0.0.30) unstable; urgency=low

  * Fixed postinst so that is uses getend instead of directly grep for
    user in passwd file.

 -- Ola Lundqvist <opal@debian.org>  Mon, 12 May 2003 21:26:21 +0200

debarchiver (0.0.29) unstable; urgency=low

  * Fixed cron documentation in cron file.
  * Now the cron-script will log messages instead of sending email.
    Little modification in the source was needed.
  * Changed so that correct home directory will be created for new
    debarchiver account. Old ones still have to be corrected manually.
  * Added support for the debarchiver tool to send email about
    successful and rejected packages. This code is experimental but seems
    to be working fine.
  * Updated license information.

 -- Ola Lundqvist <opal@debian.org>  Wed, 12 Feb 2003 07:00:26 +0100

debarchiver (0.0.28) unstable; urgency=low

  * Updated debarchiver config so that it matches the current release
    state.

 -- Ola Lundqvist <opal@debian.org>  Sat, 15 Feb 2003 22:08:58 +0100

debarchiver (0.0.27) unstable; urgency=low

  * Added gpg verification code using patch from Joel Baker
    <lucifer@lightbearer.com>, closes: #143095.

 -- Ola Lundqvist <opal@debian.org>  Fri,  7 Feb 2003 09:07:06 +0100

debarchiver (0.0.26) unstable; urgency=low

  * Enforce working opalmod version.
  * Fixed manpage, using suggestion from
    Tomas Pospisek <tpo_deb@sourcepole.ch>, closes: #142392.

 -- Ola Lundqvist <opal@debian.org>  Wed,  5 Feb 2003 18:29:18 +0100

debarchiver (0.0.25) unstable; urgency=low

  * Updated standards version from 3.5.2 to 3.5.8 (no other changes).
  * Removed full stop from package description.

 -- Ola Lundqvist <opal@debian.org>  Fri, 10 Jan 2003 17:48:42 +0100

debarchiver (0.0.24) unstable; urgency=low

  * Some fixes so it run nicely, thanks to Stephen Peters
    <portnoy@portnoy.org> for the patch.

 -- Ola Lundqvist <opal@debian.org>  Fri, 22 Nov 2002 06:54:00 +0100

debarchiver (0.0.23) unstable; urgency=low

  * Fixed compile error, closes: #169538, #169388.

 -- Ola Lundqvist <opal@debian.org>  Wed, 20 Nov 2002 09:55:42 +0100

debarchiver (0.0.22) unstable; urgency=low

  * Fixed override creation problem on new distributions.

 -- Ola Lundqvist <opal@debian.org>  Fri, 15 Nov 2002 09:46:58 +0100

debarchiver (0.0.21) unstable; urgency=low

  * Bugfix, typo error in debarchiver.pl, closes: #169093, #169094,
    #169127.

 -- Ola Lundqvist <opal@debian.org>  Fri, 15 Nov 2002 06:56:25 +0100

debarchiver (0.0.20) unstable; urgency=low

  * Minor security check.

 -- Ola Lundqvist <opal@debian.org>  Thu,  7 Nov 2002 07:09:18 +0100

debarchiver (0.0.19) unstable; urgency=low

  * Fixed bug with patch from Werner Fleck <wf@flexoft.net>, closes:
    #14920.

 -- Ola Lundqvist <opal@debian.org>  Fri,  9 Aug 2002 22:56:35 +0200

debarchiver (0.0.18) unstable; urgency=low

  * Added binary arch target, closes: #131559.

 -- Ola Lundqvist <opal@debian.org>  Mon,  4 Feb 2002 09:28:12 +0100

debarchiver (0.0.17) unstable; urgency=low

  * Fixed lock file issues, closes: #130813.

 -- Ola Lundqvist <opal@debian.org>  Sun, 27 Jan 2002 00:59:38 +0100

debarchiver (0.0.16) unstable; urgency=low

  * Better lockfile handling, closes: #113627.
  * Error handling when changing directory, closes: #111010.
  * Documented how non-US is handled, closes: #120474.

 -- Ola Lundqvist <opal@debian.org>  Wed, 23 Jan 2002 11:33:37 +0100

debarchiver (0.0.15) unstable; urgency=low

  * Fixed the policy violation of alias handling, closes: #127397.
  * Fixed missing dpkg-dev dependency, closes: #119494.

 -- Ola Lundqvist <opal@debian.org>  Tue, 15 Jan 2002 22:00:58 +0100

debarchiver (0.0.14) unstable; urgency=low

  * Fix postinst typo, closes: #115075.

 -- Ola Lundqvist <opal@debian.org>  Wed, 10 Oct 2001 14:14:11 +0200

debarchiver (0.0.13) unstable; urgency=low

  * Documented the use of a cronjob, closes: #110587.
  * Fixed removal scripts, closes: #112063.
  * Sets up an alias, closes: #110587.
  * Fixed --scanll to --scanall.
  * Made the README file more clear.

 -- Ola Lundqvist <opal@debian.org>  Thu, 13 Sep 2001 23:26:06 +0200

debarchiver (0.0.12) unstable; urgency=low

  * Change distr -> dists.
  * Fixed postrm problem, closes: #109105.
  * Fixed lockfile problem, closes: #109104.

 -- Ola Lundqvist <opal@debian.org>  Mon, 20 Aug 2001 15:09:02 +0200

debarchiver (0.0.11) unstable; urgency=low

  * Added user and group debarchiver for archive opertations.
  * Fixed so that the user config is really used.
  * Updated the readme file.
  * Fixed and updated the manpage, closes: #108148.
  * Changed so that it will be runned every 5 minutes instead of one
    every hour.
  * Added todo item.
  * Fixed so that the input.conf file will really be loaded.

 -- Ola Lundqvist <opal@debian.org>  Fri, 16 Aug 2001 11:38:48 +0200

debarchiver (0.0.10) unstable; urgency=low

  * Fixed installation problem with .changes file when installing to
    multiple distrs.

 -- Ola Lundqvist <opal@debian.org>  Thu,  2 Aug 2001 15:52:38 +0200

debarchiver (0.0.9) unstable; urgency=low

  * Fixed bug with sorting to several distributions.

 -- Ola Lundqvist <opal@debian.org>  Thu,  2 Aug 2001 15:30:25 +0200

debarchiver (0.0.8) unstable; urgency=low

  * Can now sort packages to more than one destination archive. For
    example to both unstable and stable.
  * Option --instcmd is now obsolete. Replaced by a copycmd, movecmd and
    rmcmd option.

 -- Ola Lundqvist <opal@debian.org>  Thu, 26 Jul 2001 19:05:44 +0200

debarchiver (0.0.7) unstable; urgency=low

  * Added regenerate all option.
  * Can scan only, or fix structure only too, with some more options.

 -- Ola Lundqvist <opal@debian.org>  Mon, 23 Jul 2001 10:42:13 +0200

debarchiver (0.0.6) unstable; urgency=low

  * Fixed concatenation problem.

 -- Ola Lundqvist <opal@debian.org>  Wed, 18 Jul 2001 09:11:36 +0200

debarchiver (0.0.5) unstable; urgency=low

  * Fixed 404 error.

 -- Ola Lundqvist <opal@debian.org>  Tue, 17 Jul 2001 10:14:51 +0200

debarchiver (0.0.4) unstable; urgency=low

  * Fixed link error.

 -- Ola Lundqvist <opal@debian.org>  Mon, 16 Jul 2001 11:23:21 +0200

debarchiver (0.0.3) unstable; urgency=low

  * Added automatic creation of the directory structure.

 -- Ola Lundqvist <opal@debian.org>  Sat, 14 Jul 2001 20:06:21 +0200

debarchiver (0.0.2) unstable; urgency=low

  * Fixed problems with Package file generation. It did not regenerate
    the Packages files properly. Now the scanpackages are relative to the
    destdir and nothing else.
  * Added test to cron.
  * Fixed strange output and unexpected exit.

 -- Ola Lundqvist <opal@debian.org>  Fri, 13 Jul 2001 17:56:52 +0200

debarchiver (0.0.1) unstable; urgency=low

  * Initial Release.

 -- Ola Lundqvist <opal@debian.org>  Wed, 27 Jun 2001 16:15:47 +0200