-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathChangeLog
More file actions
2828 lines (1849 loc) · 91.3 KB
/
ChangeLog
File metadata and controls
2828 lines (1849 loc) · 91.3 KB
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
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
alien (8.95.9)
* Adopt package (Closes: #791522)
* Updated project type to quilt in d/source.
* Added d/watch and d/gbp.conf
* Update d/copyright
* Added package suggestion in d/control
* Updated to watch version 5
* Fix lintian warnings
* Bump Standards-Version to 4.7.2
-- Syed Shahrukh Hussain <syed.shahrukh@ossrevival.org> Wed, 8 Oct 2025 12:56:11 +0500
alien (8.95.8)
* QA upload.
* debian/salsa-ci.yml: Add to provide CI tests for Salsa.
* debian/tests/*: Create autopkgtest.
-- Daniel Alber Costa <danielrodrc@gmail.com> Sun, 24 Nov 2024 21:32:45 -0300
alien (8.95.7)
* QA upload.
* debian/copyright: use spaces rather than tabs to start continuation lines.
* Update standards version to 4.6.2, no changes needed.
[ Alois Klink ]
* Alien/Package/Rpm.pm: Map arm64 in deb to aarch64 in rpm.
This fixes conversion of arm64 deb packages.
-- Bastian Germann <bage@debian.org> Sat, 22 Jun 2024 19:41:24 +0000
alien (8.95.6)
* QA upload.
[ Debian Janitor ]
* Remove constraints unnecessary since buster:
+ alien: Drop versioned constraint on rpm in Depends.
-- Jelmer Vernooij <jelmer@debian.org> Wed, 25 May 2022 18:54:06 +0100
alien (8.95.5)
* QA upload.
* Alien/Package/Deb.pm: Do not fail when dh_usrlocal returns
with nonzero value. A warning (shown in --veryverbose)
is generated instead. (Closes: #992188)
-- Boyuan Yang <byang@debian.org> Sun, 22 Aug 2021 01:14:58 -0400
alien (8.95.4) unstable; urgency=high
* QA upload.
* Alien/Package/Deb.pm: Fix incorrect debian/rules template by
properly escaping special characters (dh \$\@ instead of dh $@).
Closes: #983492.
* Alien/Package/Deb.pm: Fix incorrect file installation path.
This fixes the bug in manual override_dh_auto_install that files
are placed under / instead of /usr/ (default prefix).
Closes: #985835.
* Alien/Package/Rpm.pm: Also map aarch64 in rpm to arm64 in deb.
This fixes conversion of aarch64 rpm packages.
Closes: #985808.
-- Boyuan Yang <byang@debian.org> Wed, 07 Apr 2021 12:15:06 -0400
alien (8.95.3)
* QA upload.
* Upload to unstable.
-- Adrian Bunk <bunk@debian.org> Thu, 11 Feb 2021 22:02:09 +0200
alien (8.95.2) experimental; urgency=medium
* QA upload.
* debian/control:
+ Bump debhelper compat to v13.
+ Included Rules-Requires-Root: no
* debian/changelog:
+ Removed trailing-whitespaces.
* alien.pl:
+ Fixed some misspelled words.
* Alien/Package.pm:
+ Fixed misspelled word.
* Alien/Package/Rpm.pm:
+ Fixed misspeled word.
* debian/rules:
+ Added a "nocheck" check on override_dh_auto_test.
-- Thiago da Silva Gracini <tsgracini@outlook.com> Sun, 01 Nov 2020 15:35:34 -0300
alien (8.95.1) experimental; urgency=medium
* QA upload.
* Rebuild source and binary package.
* debian/control:
+ Bump debhelper compat to v12.
+ Bump Standards-Version to 4.5.0.
+ Update Vcs-* fields to use git packaging repo under Salsa
Debian group.
* Rpm.pm: Do not ship conflicting dirs. (Closes: #759533)
* Deb.pm:
+ Use dh sequencer when generating deb packages.
+ Bump supported debhelper compatibility level to v10.
-- Boyuan Yang <byang@debian.org> Tue, 31 Mar 2020 10:52:19 -0400
alien (8.95)
* QA upload.
* debian/control:
- Bumped Standards-Version to 3.9.6.
- Removed duplicated section field.
* debian/copyright:
- Replaced protocol from http to https in the Format field.
- Included authors' e-mail addresses.
- Replaced GPL-2+ license reference by actual GPL-2+ license.
* debian/source/format: Created as 3.0 (native).
-- Fabiano Antunes <fabianoantunes@itgen.com.br> Thu, 10 Sep 2015 17:09:04 -0300
alien (8.94)
* QA upload.
* Fix "FTBFS with perl 5.22 in experimental (MakeMaker changes)":
remove override_dh_auto_install in debian/rules, and
use DESTDIR in Makefile.PL.
(Closes: #792371)
-- gregor herrmann <gregoa@debian.org> Sat, 25 Jul 2015 21:24:15 +0200
alien (8.93)
* Alien needs a new maintainer, both in Debian and upstream.
-- Joey Hess <joeyh@debian.org> Fri, 07 Nov 2014 17:25:47 -0400
alien (8.92)
* Remove suggests for lsb-rpm, which no longer exists.
Closes: #756873
-- Joey Hess <joeyh@debian.org> Sun, 31 Aug 2014 14:16:23 -0700
alien (8.91)
* Support other deb data.tar compression schemes in fallback code.
Closes: #718364
Thanks, Guillem Jover
-- Joey Hess <joeyh@debian.org> Fri, 13 Jun 2014 12:03:54 -0400
alien (8.90)
* Add --target=<arch> option for setting architecture. Closes: #260948
(Thanks, Teemu Ikonen)
* Add conversion from ppc64le (rpm) to ppc64el (deb).
* debhelper v9
-- Joey Hess <joeyh@debian.org> Thu, 27 Feb 2014 11:59:07 -0400
alien (8.89)
* Correct man page to say RPMBUILDOPT (not RPMBUILDOPTS). Closes: #701106
* Handle whitespace in path to RPMs. Closes: #719776
(Thanks, Christopher Huhn)
-- Joey Hess <joeyh@debian.org> Thu, 22 Aug 2013 21:53:44 -0400
alien (8.88)
* Ensure that version numbers begin with well, a number, when building a
deb, otherwise dpkg-deb will refuse to build it.
-- Joey Hess <joeyh@debian.org> Thu, 09 Aug 2012 14:44:49 -0400
alien (8.87)
* Use lsb-rpmbuild, not lsb-rpm. Closes: #667044
* Fix adding of postinst script to deb, containing rpm permissions
fixups code. Closes: #667651
-- Joey Hess <joeyh@debian.org> Thu, 05 Apr 2012 13:53:29 -0400
alien (8.86)
* Filter out illegal characters in version number when building a deb.
Closes: #648531
-- Joey Hess <joeyh@debian.org> Sat, 12 Nov 2011 13:12:35 -0400
alien (8.85)
* Avoid breaking on spaces in filenames. Closes: #618636
-- Joey Hess <joeyh@debian.org> Sun, 19 Jun 2011 15:43:49 -0400
alien (8.84)
* Silence error message when deleting build tree after making an rpm,
if rpmbuild has already deleted it. Closes: #622846
* Squash an uninitialized value when creating a deb.
-- Joey Hess <joeyh@debian.org> Fri, 15 Apr 2011 14:13:20 -0400
alien (8.83)
* Correct handling of arch all packages in deb arch check. Closes: #596209
-- Joey Hess <joeyh@debian.org> Thu, 09 Sep 2010 08:24:58 -0400
alien (8.82)
* Use debhelper compat level v7 when building packages. All changes
since v4 seem safe for alien's generated rules files.
* Use dh_prep instead of deprecated dh_clean -k.
* Print a nice error message when attempting to build a deb from a package
of an unsupported architecture. Closes: #592625
-- Joey Hess <joeyh@debian.org> Mon, 30 Aug 2010 17:04:24 -0400
alien (8.81)
* Avoid uninitialized value warning when debian/rules fails to run
due to alien being run in a noexec directory. Closes: #579216
* Prevent DESTROY stomping on alien's exit code sometimes.
* Support extracting lzma compressed RPMs.
(Patch by unnamed person on some bug tracking system I don't frequent.)
* Suggest lzma. If not installed, alien will still fail to decompress
RPMs using it, but will support most rpms, which are not.
* Fix precedence problem that prevented alien from preserving permissions
of suid/sgid binaries that are not owned by root.
(Patch by Duane Waddle, on a bug tracking system I don't frequent, that
was about the "expire" it 4 days from now. We got lucky Duane, but please
use the Debian BTS next time!)
* Support RPMs containing ghost files.
(Patch by Ben Webb, who would get his patches applied quicker if he
actually communicated them to the program's author.)
-- Joey Hess <joeyh@debian.org> Mon, 17 May 2010 20:56:59 -0400
alien (8.80)
* Support querying rpm LICENSE field. (Alexey Khoroshilov)
-- Joey Hess <joeyh@debian.org> Sun, 18 Apr 2010 15:44:52 -0400
alien (8.79)
* Typo. Closes: #554379
* Modify -g and -s to support running on multiple packages at once.
Closes: #554404
* Removed all built-in patches for converting specific packages
(j2sdk, jdk, lgtoclnt, motif) with alien. These were out of date,
and not maintained. Alien will not include such patches going forward.
* Depend on the new rpm2cpio package. Closes: #559061
-- Joey Hess <joeyh@debian.org> Tue, 01 Dec 2009 13:23:55 -0500
alien (8.78)
* Add support for rpm 4.7.0, which ignores the buildroot setting in the
spec file, by passing --buildroot. (Thanks, Pavel Roskin)
-- Joey Hess <joeyh@debian.org> Wed, 08 Jul 2009 13:53:05 -0400
alien (8.77)
* Don't allow whitespace in package version when parsing debian/changelog.
* In rpm permission fixup code, avoid processing symlinks since that
would result in the file the link points to being "fixed". Closes: #535586
-- Joey Hess <joeyh@debian.org> Mon, 06 Jul 2009 13:37:01 -0400
alien (8.76)
* Avoid using hostname -f for portability to unix systems,
such as Solaris, where any options _set_ the hostname.
* Fix bash shebang and recognise bash scripts as editable
shell scripts when converting to deb. Closes: #532330
(Thanks, Bruce Stephens)
-- Joey Hess <joeyh@debian.org> Mon, 08 Jun 2009 13:22:35 -0400
alien (8.75)
* Simplified rules file.
* Modify maintainer scripts from rpm files to use /bin/bash rather
than /bin/sh. Many such scripts are only tested on systems where /bin/sh
is bash, and contain bashisms, which can cause trouble when converting
the rpm to be used on eg, the Debian family of distributions, where
/bin/sh can legitimatly be dash. Closes: #495971
-- Joey Hess <joeyh@debian.org> Wed, 06 May 2009 17:22:02 -0400
alien (8.74)
* Support bzipped and uncompressed tar files, using tar's auto-compression
detection. (Requires gnu tar 1.14.91)
* pod fixes
-- Joey Hess <joeyh@debian.org> Sun, 15 Feb 2009 19:51:54 -0500
alien (8.73)
* Fix pkg generation to not include /prototype in all packages.
(Kim Bisgaard)
-- Joey Hess <joeyh@debian.org> Sun, 26 Oct 2008 23:43:47 -0400
alien (8.72)
* Use debhelper 7, rules file minimisation.
* Improve parsing of tgz filenames, to avoid confusion when the filename
includes the package type (ie, "noarch"). Patch from Andrej Ricnik-Bay.
* When generating a debian changelog file, work around bug #478925 by
including the alien changelog text inside the debian changelog entry.
-- Joey Hess <joeyh@debian.org> Thu, 01 May 2008 15:40:34 -0400
alien (8.71)
* Deal with rpms that relocate ie, /usr into /usr/local, and don't
try to move /usr into /usr/local in this case. Closes: #470905
-- Joey Hess <joeyh@debian.org> Fri, 14 Mar 2008 13:35:33 -0400
alien (8.70)
* Extract prefixes field before extracting scripts so that
RPM_INSTALL_PREFIX gets set.
-- Joey Hess <joeyh@debian.org> Wed, 12 Mar 2008 11:05:40 -0400
alien (8.69)
* Alien's repository has moved from subversion to git.
* Minor improvement to debian/rules clean.
* Improve the short description.
-- Joey Hess <joeyh@debian.org> Fri, 19 Oct 2007 20:27:53 -0400
alien (8.68)
* Show output of installation of package with -i, since some packages
install scripts may have important output or even be interactive.
Closes: #425732
-- Joey Hess <joeyh@debian.org> Thu, 24 May 2007 14:08:39 -0400
alien (8.67)
* Update the url to the web page, and remove several other broken urls from
the README.
* Correct a bug that caused alien to ignore failing commands. Closes: #424858
-- Joey Hess <joeyh@debian.org> Thu, 17 May 2007 13:34:36 -0400
alien (8.66)
* Use date -R as 822-date will soon be deprecated.
-- Joey Hess <joeyh@debian.org> Thu, 22 Mar 2007 17:45:24 -0400
alien (8.65)
* Fix alien's own spec file, s/Copyright/License/.
* Add support for rpm scripts that use RPM_INSTALL_PREFIX, by setting
RPM_INSTALL_PREFIX as part of the converted script. Closes: #400863
* When converting LSB packages, do not increment the release number.
* Use rpmbuild to build lsb packages, not rpm, if lsb-rpm is not available.
-- Joey Hess <joeyh@debian.org> Fri, 15 Dec 2006 13:46:38 -0500
alien (8.64)
* Minor improvement to usage message as reported in [some random blog
somewhere that I happened to read by accident].
-- Joey Hess <joeyh@debian.org> Thu, 30 Mar 2006 12:51:45 -0500
alien (8.63)
* Correct code to properly use RPMBUILDOPT (not RPMBUILDOPTS). Closes: #352816
* Corrected fix for bug #352810 to look at and chmod the right directories.
Closes: #352810
-- Joey Hess <joeyh@debian.org> Tue, 14 Feb 2006 13:28:22 -0500
alien (8.62)
* Fix a bug in conffile script extraction from tgz files (caused by return
from runpipe not defaulting to a scalar).
-- Joey Hess <joeyh@debian.org> Thu, 2 Feb 2006 15:12:51 -0500
alien (8.61)
* Add em64t as another alias for amd64.
* Makefile.PL fix for new make line wrapping.
-- Joey Hess <joeyh@debian.org> Sat, 7 Jan 2006 13:37:07 -0500
alien (8.60)
* Make cpio leading directory permission fixup code work with new cpio
default permissions too. Closes: #340588
-- Joey Hess <joeyh@debian.org> Sun, 27 Nov 2005 17:02:41 -0500
alien (8.59)
* Hmm, seems rpm renamed Copyright to License and fails w/o the new field.
Fix.
-- Joey Hess <joeyh@debian.org> Fri, 11 Nov 2005 11:26:35 -0500
alien (8.58)
* Remove Copyright: from generated alien spec file since for some reason
rpm has obsoleted and begun falling over on that line. (Inert profanity
here.) Closes: #337028
* debian/copyright verbosification patch from tbm. Closes: #337363
-- Joey Hess <joeyh@debian.org> Tue, 8 Nov 2005 16:06:39 -0500
alien (8.57)
* hppa <=> parisc conversion for rpm. Closes: #338187
-- Joey Hess <joeyh@debian.org> Tue, 8 Nov 2005 13:39:06 -0500
alien (8.56)
* Warn if a package contains maintainer scripts which are not converted,
since this can result in broken packages.
* Many small fixes.
-- Joey Hess <joeyh@debian.org> Tue, 19 Jul 2005 20:21:42 -0400
alien (8.55)
* Add lgtoclnt patch from Clint. Closes: #276365
* Remove old openmotif patches. It's in non-free now.
* Update other patches to use debhelper v4.
* Fix deb package postinst retreival, was broken by the permissions fixup
code. Closes: #304828
* Use postrm when generating a rpm spec file with scripts enabled.
Before this never worked.
-- Joey Hess <joeyh@debian.org> Tue, 19 Jul 2005 16:03:27 -0400
alien (8.54)
* Patch from Alexander Jolk adding a --bump option. Closes: #311681
-- Joey Hess <joeyh@debian.org> Tue, 19 Jul 2005 14:20:31 -0400
alien (8.53)
* Build packages using debhelper v4 mode.
-- Joey Hess <joeyh@debian.org> Mon, 13 Jun 2005 14:10:26 -0400
alien (8.52)
* Add a new parameter to runpipe to control whether it automatically
checks the return code of the command (and exits). Turn this on for many
runpipe calls that are not expected to fail in normal operation, but can
fail if the input file is empty, corrupt, or not readable. Previous
behavior for rpm files was a cascading failure that created weird
directories in cwd. Closes: #305592
-- Joey Hess <joeyh@debian.org> Thu, 21 Apr 2005 11:34:41 -0400
alien (8.51)
* In rpm unpack permission fixup code, do not call chmod on symlinks,
as it will follow the links.
-- Joey Hess <joeyh@debian.org> Wed, 9 Mar 2005 16:21:14 -0500
alien (8.50)
* Recognise udebs and treat them like debs. Closes: #284693
-- Joey Hess <joeyh@debian.org> Wed, 8 Dec 2004 16:20:42 -0500
alien (8.49)
* Add support for config files in relocatale directories. Relocate
filenames in the conffiles list. Closes: #283774
* Correct permissions fixup code for parent directories from rpms to
take the umask into account when searching for such directories. And
make such directories mode 755, not 700. Closes: #271903
-- Joey Hess <joeyh@debian.org> Mon, 6 Dec 2004 16:09:11 -0500
alien (8.48)
* Support cross-building rpms, output rpm should always be same arch as
input package now.
-- Joey Hess <joeyh@debian.org> Wed, 24 Nov 2004 17:35:28 -0500
alien (8.47)
* x86_64 rpms become amd64 debs
* Add new java 1.5.0 diffs from Gerald Turner.
* Clean out old j2sdk diffs.
-- Joey Hess <joeyh@debian.org> Sun, 3 Oct 2004 13:59:49 -0400
alien (8.46)
* Unset _unpackaged_files_terminate_build when building rpms, at least SuSE
sets this, which breaks alien due to its placement of the spec file in the
build directory.
-- Joey Hess <joeyh@debian.org> Sun, 1 Aug 2004 20:50:37 -0400
alien (8.45)
* Run dh_clean with -d to avoid cleaning up any oddly named files from rpms,
like .orig files. Closes: #261964
-- Joey Hess <joeyh@debian.org> Thu, 29 Jul 2004 13:14:39 -0400
alien (8.44)
* Don't add line about permissions fixup code to postinst if there is not
code to add.
* Don't assume that just because we know of a user or are root, that files
can go into the deb owned by that user, and come out right on install.
Instead, assume that any non-root user will not be on the target system
the rpm is installed on, and that it might be created in the preinst or
something, so add permissions fixup code for all such users.
-- Joey Hess <joeyh@debian.org> Wed, 24 Mar 2004 22:51:48 -0500
alien (8.43)
* Added a new j2sdk_1.4.2_03-1.diff from Gerald Turner.
-- Joey Hess <joeyh@debian.org> Mon, 19 Jan 2004 20:05:17 -0500
alien (8.42)
* Do not register conffiles in /etc when generating a deb; debhelper v3
takes care of that.
-- Joey Hess <joeyh@debian.org> Thu, 15 Jan 2004 22:25:48 -0500
alien (8.41)
* Generate a build tree on request even when the source and dest formats are
the same. Closes: #222311
-- Joey Hess <joeyh@debian.org> Sat, 29 Nov 2003 18:29:29 -0500
alien (8.40)
* Include the version of alien that generated a deb or rpm in the
description. Closes: #220763
* Also put it in the changelog of debian packages.
-- Joey Hess <joeyh@debian.org> Mon, 17 Nov 2003 20:57:44 -0500
alien (8.39)
* Fix a couple more mistakes in the code added in 8.36.
-- Joey Hess <joeyh@debian.org> Tue, 11 Nov 2003 21:53:36 -0500
alien (8.38)
* Fix a couple of typos in the code added in 8.36; it should actually work
now.
-- Joey Hess <joeyh@debian.org> Mon, 3 Nov 2003 16:21:40 -0500
alien (8.37)
* Make sure the working directory's subdirs have sane modes before trying
to delete it, in case it has unwritable dirs and alien is not running
as root. Closes: #217330
-- Joey Hess <joeyh@debian.org> Tue, 28 Oct 2003 15:45:31 -0500
alien (8.36)
* Patch from aj to fix permissions of setuid files that have their owners
created in the preinst.
* Alien's repository has moved from CVS to subversion.
-- Joey Hess <joeyh@debian.org> Wed, 15 Oct 2003 16:04:17 -0400
alien (8.35)
* Move from build-depends-indep to build-depends, to meet current policy.
-- Joey Hess <joeyh@debian.org> Wed, 3 Sep 2003 12:14:58 -0400
alien (8.34)
* Fixed changelog parsing regexp. Noticed by Gerald Turner who is sure
turning up in this changelog a lot.
* Updated j2sdk patch fixes some ControlPanel shell script
incompatabilities. Closes: #200731
-- Joey Hess <joeyh@debian.org> Sat, 12 Jul 2003 20:35:09 +0200
alien (8.33)
* Added a new j2sdk patch that does not rename the package.
-- Joey Hess <joeyh@debian.org> Sun, 6 Jul 2003 19:49:25 -0400
alien (8.32)
* Removed the two newest j2sdk patches, which both rename the package,
breaking alien -i. Closes: #199992
-- Joey Hess <joeyh@debian.org> Sun, 6 Jul 2003 19:44:45 -0400
alien (8.31)
* Updated the j2sdk patch for version 1.4.2. (From Gerald Turner.)
-- Joey Hess <joeyh@debian.org> Mon, 30 Jun 2003 20:55:10 -0400
alien (8.30)
* Added -v to enable verbose mode, which lists each shell command
as it is run. Also added --veryverbose for verbose with command
output too.
* Use -V for version. (-v used to be documented, but never worked)
-- Joey Hess <joeyh@debian.org> Wed, 14 May 2003 00:12:00 -0400
alien (8.26)
* alien.spec: pass PREFIX to Makefile.PL so it works on systems
(such as red hat 8) where the generated Makefile does not use
$PREFIX in all paths.
-- Joey Hess <joeyh@debian.org> Tue, 29 Apr 2003 23:12:32 -0400
alien (8.25)
* Support rpms that contain no files. Closes: #184714
-- Joey Hess <joeyh@debian.org> Sat, 15 Mar 2003 21:34:33 -0800
alien (8.24)
* Corrected precidence problem that made alien not catch mkdir of the work
directory failing if the directory already existed (and let it delete the
existing directory). Closes: #181061
* Fixed several other instances of the same precidence problem in the code.
-- Joey Hess <joeyh@debian.org> Sat, 15 Feb 2003 14:18:44 -0500
alien (8.23)
* Updated j2sdk patch again.
-- Joey Hess <joeyh@debian.org> Mon, 3 Feb 2003 22:51:11 -0500
alien (8.22)
* Use rpmbuild -bb instead of rpm -bb, as it seems that rpm -bb has stopped
working in recent versions of rpm, as shipped by red hat (Debian's rpm,
confusingly, continues to support rpm -bb, possibly because of how I hack
its popt stuff up for debian.) This may fail with older, pre-rpmbuild
rpm's; if so you should upgrade to a more current version I guess.
* Updated js2k patch from Gerald Turner.
-- Joey Hess <joeyh@debian.org> Mon, 3 Feb 2003 14:35:40 -0500
alien (8.21)
* Pach from Erwan MAS <erwan@mas.nom.fr> that allows specification of the
version of a tgz file, for files that don't have a parseable version
number. For consistency with --description, I made the otpino be called
--version -- if no argument is specified to this option, it retains its
old behavior of displaying alien's version, but it is now overloaded
if given an argument. Closes: #165584
-- Joey Hess <joeyh@debian.org> Sun, 20 Oct 2002 20:51:51 -0400
alien (8.20)
* Added support inspired by aj for converted rpm packages that create
users/groups in their preinst, and which alien therefore cannot ship the
files with proper ownerships in the .deb. In this case alien will now
insert appropriate chown commands into the postinst script of the
converted package.
* That only works when converting rpm to deb, not the other way around,
for now.
* Removed the cpio directory permissions fixup code, which was probably
broken, and is obsolete since I get directory perms from the rpm now.
-- Joey Hess <joeyh@debian.org> Sun, 25 Aug 2002 15:17:57 -0400
alien (8.19)
* Added upsated jdk patches from Gerald Turner.
* Allow fallback to different debian revisions w/o --anypatch.
* Add a changelog parser so I can work out the built version of a package.
Ugh. Closes: #157971
-- Joey Hess <joeyh@debian.org> Fri, 23 Aug 2002 19:58:36 -0400
alien (8.18)
* Be stricter about which patch files to apply by default. For old behavior
use --anypatch.
* Minor perl 5.8 fix.
-- Joey Hess <joeyh@debian.org> Thu, 22 Aug 2002 12:10:39 -0400
alien (8.17)
* When converting from rpm, do parent directory 755 chmods first, then
known permissions setting from rpm --queryformat, so that it can override
any directories that do indeed have a permission set.
* Fixed MakeFile.PL to work with perl 5.8.
-- Joey Hess <joeyh@debian.org> Mon, 19 Aug 2002 12:49:04 -0400
alien (8.16)
* Fixed rpm unpacking.
-- Joey Hess <joeyh@debian.org> Fri, 12 Jul 2002 19:35:06 -0400
alien (8.15)
* Fix a longstanding bug I was only recently told about: When converting
from rpm, ignore the icky file owners and perms from the cpio archive,
and query rpm for the real set that it overrides in the control data
structure. Closes: #151546
-- Joey Hess <joeyh@debian.org> Mon, 8 Jul 2002 21:03:16 -0400
alien (8.14)
* Enabled Getopt::Long Bundling, see comment in alien.pl. Closes: #152148
-- Joey Hess <joeyh@debian.org> Sun, 7 Jul 2002 16:40:07 -0400
alien (8.13)
* Made tgz version parsing greedier so it will match sub-versions.
-- Joey Hess <joeyh@debian.org> Sat, 6 Jul 2002 08:05:45 -0400
alien (8.12)
* Fixed slp conversion to not use uninitialized value. Closes: #150840
-- Joey Hess <joeyh@debian.org> Mon, 24 Jun 2002 13:20:51 -0400
alien (8.11)
* Fix for extracting control files from debs on systems w/o dpkg-deb.
Don't try to extract "file", just "./file".
-- Joey Hess <joeyh@debian.org> Wed, 12 Jun 2002 13:34:09 -0400
alien (8.10)
* Build alien with debhelper v4.
-- Joey Hess <joeyh@debian.org> Sat, 1 Jun 2002 17:56:52 -0400
alien (8.09)
* Deal with packages with strange characters in their filenames.
Closes: #146017
-- Joey Hess <joeyh@debian.org> Thu, 23 May 2002 22:35:25 -0400
alien (8.08)
* Gerald Turner <gturner@newedgenetworks.com> contributed a .diff file for
conversion of the j2sdk (Java 2 Software Development Kit)
-- Joey Hess <joeyh@debian.org> Wed, 22 May 2002 20:07:41 -0400
alien (8.07)
* Added --test parameter, Closes: #145520
-- Joey Hess <joeyh@debian.org> Thu, 2 May 2002 20:03:21 -0400
alien (8.06)
* Added --fixperms option. Closes: #142850
-- Joey Hess <joeyh@debian.org> Sun, 21 Apr 2002 22:19:12 -0400
alien (8.05)
* Support rpms with a description consisting of just blank lines.
-- Joey Hess <joey@kitenet.net> Mon, 1 Apr 2002 13:36:45 -0500
alien (8.04)
* Fixed an unfortunate typo in Rpm.pm, Closes: #140742
-- Joey Hess <joey@kitenet.net> Sun, 31 Mar 2002 23:05:30 -0500
alien (8.03)
* Should avoid warning message, Closes: #140286
* README and description updates.
-- Joey Hess <joey@kitenet.net> Thu, 28 Mar 2002 14:27:10 -0500
alien (8.02)
* Made more robust in the face of empty rpms. Closes: #138969
-- Joey Hess <joeyh@debian.org> Tue, 19 Mar 2002 11:29:23 -0500
alien (8.01)
* The "vmware and dpkg on drugs" release.
* If a preinstall script in a rpm starts like this:
# BEGINNING_OF_POST_DOT_SH
#!/bin/sh
Add anther hashbang at the top, so dpkg doesn't croak on it.
Closes: #137032
-- Joey Hess <joeyh@debian.org> Wed, 6 Mar 2002 12:57:06 -0500
alien (8.00)
* LSB package support. It can generate LSB packages (not guarenteed
fully conformant with the LSB), and it can take LSB packages and convert
them into other formats. Unlike all the other conversions, lsb packages's
dependancy (on lsb) and their package scripts are preserved in the
generated packages (when allowed by the target package format). This means
your distribution will need to have a package named 'lsb' for the result
to be installable. (Debian will have one soon..)
* Suggest rpm-lsb, which is the preferred rpm to build lsb packages with.
Use it if it's present, plain old rpm otherwise.
-- Joey Hess <joeyh@debian.org> Mon, 11 Feb 2002 12:55:42 -0500
alien (7.32)
* Support ancient (bo-era) debs with upper-case field names. Closes: #130736
-- Joey Hess <joeyh@debian.org> Thu, 24 Jan 2002 23:38:57 -0500
alien (7.31)
* Use --target noarch instead of --target=noarch when building rpms.
The latter used to work, but no longer does, due to some change in rpm or
popt. It also has to come after the -bb.
* Trap stderr of rpm and debian/rules building packages, and only display if
the build fails.
-- Joey Hess <joeyh@debian.org> Fri, 4 Jan 2002 13:53:04 -0500
alien (7.30)
* Thanks to the excellent work of Mark A. Hershberger <mah@everybody.org>,
alien now supports converting to and from Solaris "pkg" packages (which
are really SysV packages). You probably need to run it on Solaris for this
to work, though. This brings the number of possible conversions alien can
do up from 12 to a monstrous 20!
* Mark also had to patch Deb.pm a bit so the by-hand deb extraction could
work with solaris's ar and tar.
* Documented the EMAIL environment variable. Closes: #116754
* Threw out a lot of old patches, circa 1999. Probably useless today.
* When converting to debs, move files as follows, if possible, for better
FHS compliance:
/usr/man => /usr/share/man
/usr/info => /usr/share/info
/usr/doc' => /usr/share/doc
* Also moves files as follows, to avoid possibly confusing dpkg with
installing over symlinks (?). Closes: #40012
/usr/bin/X11 should be /usr/X11R6/bin
/usr/lib/X11 should be /usr/X11R6/lib/X11
/usr/include/X11 should be /usr/X11R6/include/X11
* Reverse these moves in the cleantree stage.
* Debian users who have installed alien packages in the past may want to
re-convert and reinstall them, to take advantage of the new FHS
conversions.
-- Joey Hess <joeyh@debian.org> Thu, 25 Oct 2001 20:53:33 -0400
alien (7.27)
* Moved as many system calls as I can over to shellless execution.
There are still a lot that use shell tricks. Should deal with screwey
rpms and file names better though. Closes: #105283
* Display build logs after build failures.
-- Joey Hess <joeyh@debian.org> Sun, 15 Jul 2001 10:16:20 -0400
alien (7.25)
* Treat 'armv4l' arch rpm's as arm architecture.
-- Joey Hess <joeyh@debian.org> Mon, 18 Jun 2001 13:40:20 -0400
alien (7.24)
* Patch from Raul Miller <moth@debian.org> to make it use gzip -dc | tar
everywhere it used to use tar zxvf. The problem with the latter is
that, on Red Hat anyway, when tar is reading from stdin, tar or gzip
seems to be broken, and tar does not see an end-of-file marker, causing
alien to hang when converting rpms to debs. Closes: #96200
-- Joey Hess <joeyh@debian.org> Wed, 9 May 2001 11:09:16 -0400
alien (7.23)
* Moved files out of perl privlib, Closes: #95512
-- Joey Hess <joeyh@debian.org> Sat, 28 Apr 2001 23:15:18 -0400
alien (7.22)
* Modification to match changes in rpm 4's parser; need to use
--target=noarch, rather than --target noarch.
-- Joey Hess <joeyh@debian.org> Tue, 10 Apr 2001 13:43:56 -0700
alien (7.21)
* Deal with empty /etc/mailname, Closes: #90727
-- Joey Hess <joeyh@debian.org> Sat, 24 Mar 2001 14:19:17 -0800
alien (7.20)
* Updated to use debhelper v3 when converting packages. This
automatically should make it start adding ldconfig calls
as appropriate to maintainer scripts. Closes: #86088
* It does mean you need debhelper 3.x for alien to convert to
deb now, so alien-extra will need an update.
* Rebuilt with newer perl, so it will work with newer perl (bug filed;
this should not have been necessary).
-- Joey Hess <joeyh@debian.org> Thu, 15 Feb 2001 15:33:07 -0800
alien (7.18)
* Build with debhelper v3.
-- Joey Hess <joeyh@debian.org> Fri, 9 Feb 2001 17:58:55 -0800
alien (7.17)
* Munge in #!/bin/sh entries at the top of rpm maintainer
scripts that appear to be shell scripts. Closes: #76124
-- Joey Hess <joeyh@debian.org> Wed, 7 Feb 2001 18:58:56 -0800
alien (7.16)
* Updated motif patches again.
-- Joey Hess <joeyh@debian.org> Wed, 17 Jan 2001 11:18:20 -0800
alien (7.15)
* Removed dh_suidregister call -- bitten my by own program! :-)
Closes: #82230
-- Joey Hess <joeyh@debian.org> Sun, 14 Jan 2001 14:12:49 -0800
alien (7.14)
* Added rpm spec file fix.
-- Joey Hess <joeyh@debian.org> Wed, 10 Jan 2001 12:31:54 -0800
alien (7.13)
* Patch from Pavel Roskin <proski@gnu.org> for misc specfile issues,
including nastly comppressed man page munging.
* Updaed motif patches from Andreas Voegele <andreas.voegele@gmx.de>.
-- Joey Hess <joeyh@debian.org> Mon, 11 Dec 2000 15:15:41 -0800
alien (7.12)
* Modified Rpm.pm to not bother with the scripts stanzas if there are
no scripts.