-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmc.spec
1520 lines (1156 loc) · 55.1 KB
/
mc.spec
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
%bcond_without slang
%global release_prefix 1000
Name: mc
Version: 4.8.28
Release: %{release_prefix}%{?dist}
Epoch: 1
Summary: User-friendly text console file manager and visual shell
License: GPLv3+
URL: https://www.midnight-commander.org
Source0: %{name}-%{version}.tar.xz
Patch1: %{name}-spec.syntax.patch
Patch3: %{name}-python3.patch
Patch4: %{name}-default_setup.patch
Patch5: %{name}-tmpdir.patch
# Deps for "autogen.sh".
BuildRequires: make
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: gettext-devel
BuildRequires: libtool
# Other build deps.
BuildRequires: e2fsprogs-devel
BuildRequires: gcc
BuildRequires: glib2-devel
BuildRequires: gpm-devel
BuildRequires: groff-base
# Disabled (needs to be ported to use "libssh" instead of "libssh2").
# BuildRequires: libssh2-devel >= 1.2.5
# (configure line was also changed from "--enable-vfs-sftp" to "--disable-vfs-sftp"
# - this is the only part of mc which uses "libssh2").
BuildRequires: %{?with_slang:slang-devel}%{!?with_slang:ncurses-devel}
BuildRequires: pkgconfig
BuildRequires: perl-generators
Suggests: mc-python
%description
Midnight Commander is a visual shell much like a file manager, only with
many more features. It is a text mode application, but it also includes
mouse support. Midnight Commander's best features are its ability to FTP,
view tar and zip files, and to poke into RPMs for specific files.
# -------------------------------------------------------------------------------------------------------------------- #
# Package: python
# -------------------------------------------------------------------------------------------------------------------- #
%package python
Summary: Midnight Commander s3+ and UC1541 EXTFS backend scripts
BuildArch: noarch
Requires: %{name} = %{epoch}:%{version}-%{release}
Requires: python3-boto
%description python
Midnight Commander s3+ and UC1541 EXTFS backend scripts.
# -------------------------------------------------------------------------------------------------------------------- #
# -----------------------------------------------------< SCRIPT >----------------------------------------------------- #
# -------------------------------------------------------------------------------------------------------------------- #
%prep
%autosetup -p1
%build
%{__sed} -i "s,PREV_MC_VERSION=\"unknown\",PREV_MC_VERSION=\"%{version}\"," version.sh
./autogen.sh
%configure \
PYTHON=%{__python3} \
--disable-rpath \
--enable-charset \
--enable-largefile \
--enable-vfs-cpio \
--enable-vfs-extfs \
--enable-vfs-fish \
--enable-vfs-ftp \
--enable-vfs-sfs \
--disable-vfs-sftp \
--disable-vfs-smb \
--enable-vfs-tar \
--with-x \
--with-gpm-mouse \
--with-screen=%{?with_slang:slang}%{!?with_slang:ncurses} \
%{nil}
%{make_build}
%install
%{make_install}
%{__install} contrib/mc.{sh,csh} -Dt %{buildroot}%{_sysconfdir}/profile.d
%{find_lang} %{name} --with-man
%files -f %{name}.lang
%license doc/COPYING
%doc doc/FAQ doc/NEWS doc/README
/etc/profile.d/*
%dir %{_sysconfdir}/mc
%{_sysconfdir}/mc/edit*
%config(noreplace) %{_sysconfdir}/mc/mc*
%config(noreplace) %{_sysconfdir}/mc/*.ini
%{_bindir}/*
%dir %{_libexecdir}/mc
%attr(755,root,root) %{_libexecdir}/mc/cons.saver
%{_libexecdir}/mc/mc*
%{_libexecdir}/mc/extfs.d
%{_libexecdir}/mc/ext.d
%{_libexecdir}/mc/fish
%{_datadir}/mc
%{_mandir}/man1/*
%exclude %{_libexecdir}/mc/extfs.d/{s3+,uc1541}
%files python
%{_libexecdir}/mc/extfs.d/{s3+,uc1541}
%changelog
* Thu Mar 31 2022 Package Store <[email protected]> - 1:4.8.28-1000
- UPD: Rebuild by Package Store.
- UPD: File "mc.spec".
* Wed Mar 30 2022 Package Store <[email protected]> - 1:4.8.28-100
- NEW: MC v4.8.28.
- UPD: Rebuild by Package Store.
* Thu Jan 20 2022 Fedora Release Engineering <[email protected]> - 1:4.8.27-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Sep 10 2021 Jindrich Novy <[email protected]> - 1:4.8.27-2
- disable samba VFS
- Related: #2002331
* Mon Aug 16 2021 Jindrich Novy <[email protected]> - 1:4.8.27-1
- update to https://github.com/MidnightCommander/mc/releases/tag/v4.8.27
- fix mc --version (#1858573)
* Thu Jul 22 2021 Fedora Release Engineering <[email protected]> - 1:4.8.26-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Tue Feb 02 2021 Denys Vlasenko <[email protected]> - 1:4.8.26-3
- Avoid usage of libssh2
* Tue Jan 26 2021 Fedora Release Engineering <[email protected]> - 1:4.8.26-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Thu Jan 21 2021 Jindrich Novy <[email protected]> - 1:4.8.26-1
- update to 4.8.26
* Tue Jul 28 2020 Fedora Release Engineering <[email protected]> - 1:4.8.25-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Fri Jul 17 2020 Jindrich Novy <[email protected]> - 1:4.8.25-2
- update BR
* Fri Jul 17 2020 Jindrich Novy <[email protected]> - 1:4.8.25-1
- update to 4.8.25
* Fri Jan 31 2020 Jindrich Novy <[email protected]> - 1:4.8.24-4
- fix gcc-10 build failure
* Wed Jan 29 2020 Fedora Release Engineering <[email protected]> - 1:4.8.24-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Mon Jan 27 2020 Jindrich Novy <[email protected]> - 1:4.8.24-2
- be sure to use /var/tmp instead of /tmp (#1795006)
* Mon Jan 20 2020 Jindrich Novy <[email protected]> - 1:4.8.24-1
- update to 4.8.24
- drop merged tmpdir patch
* Wed Oct 09 2019 Jindrich Novy <[email protected]> - 1:4.8.23-7
- disable aspell support until it is clear how to set up
aspell dependencies or avoiding annoying error message
when no dictionary is found every time a file is edited
* Mon Oct 07 2019 Jindrich Novy <[email protected]> - 1:4.8.23-6
- re-add BR: perl-generators, it is required for generating
rpm deps from the embedded VFS perl scriptlets
* Mon Oct 07 2019 Jindrich Novy <[email protected]> - 1:4.8.23-5
- just keep perl-interpreter BR because of man2hlp,
it is a perl script required by build
- require aspell-en, otherwise an annoying error prompt
is displayed while editing any file
* Mon Oct 07 2019 Jindrich Novy <[email protected]> - 1:4.8.23-4
- drop unneeded BR: perl-generators
* Sat Sep 28 2019 Tomasz Kłoczko <[email protected]> - 1:4.8.23-3
- add python3 patch: port to python3
- added python subpackage with s3+ and uc1541 extfs backend scrips to minimise
base package dependencies
- added python3-boto to python subpackage dependencies
- use -Wno-strict-aliasing in CFLAGS is no longer needed
- added spec.syntax patch: improve rpm spec files syntax colouring
- added default_setup patch: enable by default lynx navigate with arrows keys
and auto save setup
* Tue Sep 24 2019 Jindrich Novy <[email protected]> - 1:4.8.23-2
- fix rpmlint warnings and simplify filelist
* Thu Aug 22 2019 Jindrich Novy <[email protected]> - 1:4.8.23-1
- update to 4.8.23
- set the Python path properly as env var, don't sed the configure directly
* Thu Jul 25 2019 Fedora Release Engineering <[email protected]> - 1:4.8.21-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Fri Feb 01 2019 Fedora Release Engineering <[email protected]> - 1:4.8.21-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Jul 13 2018 Fedora Release Engineering <[email protected]> - 1:4.8.21-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Thu Jun 07 2018 Tomasz Kłoczko <[email protected]> - 1:4.8.21-1
- updated to 4.8.21
* Fri Feb 09 2018 Igor Gnatenko <[email protected]> - 1:4.8.20-3
- Escape macros in %%changelog
* Thu Feb 08 2018 Fedora Release Engineering <[email protected]> - 1:4.8.20-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Mon Jan 22 2018 Tomasz Kłoczko <[email protected]> - 1:4.8.20-1
- updated to 4.8.20
* Thu Aug 03 2017 Fedora Release Engineering <[email protected]> - 1:4.8.19-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <[email protected]> - 1:4.8.19-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Wed May 17 2017 Gwyn Ciesla <[email protected]> - 1:4.8.19-5
- Apply correct patch.
* Mon May 15 2017 Gwyn Ciesla <[email protected]> - 1:4.8.19-4
- Patch to fix tmpdir default, wrapper scripts.
* Fri May 05 2017 Gwyn Ciesla <[email protected]> - 1:4.8.19-3
- Fix conditional.
* Thu May 04 2017 Tomasz Kłoczko <[email protected]> - 1:4.8.19-2
- go back to slang as it is serious issue with shift-f6 when ncurses is used
displaying "Delete" instead "Move As" dialog (#1436394)
- added slang %%bcond to simplify experiments with switching to ncurses
- reformat %%description to 80 cols
- really remove Group
- %%defattr() is no longer needed
- simplifications in %%files
- use %%{buildroot} macro
- build --with-x (it does not add X11 libraries dependencies)
- cons.saver no longer need to be 711 (changed to 755)
* Mon Mar 27 2017 Tomasz Kłoczko <[email protected]> - 1:4.8.19-1
- updated to 4.8.19
- drop use slang and use ncurses. There are only few packages which are using
slang. As ncurses support is fully working now it makes more sense to
use it instead slang (Solaris 11.3 mc uses now ncurses)
- instead passing -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE to CFLAGS use
--enable-largefile autoconf param
- removed Group, BuildRoot and %%clear (new packaging policy)
- added pkgconfig to BuildRequires
- replaced groff by groff-base in BuildRequires (only nfroff is used)
- use %%autosetup in %%prep
- added using %%{make_build} and %%{make_build} macros
- "rm -rf $RPM_BUILD_ROOT" on beginning %%install is no longer needed
- mcfs is no longer supported (removed --enable-vfs-mcfs autoconf option)
- added explicit enabled other VFSesess to force necessary checks
* Fri Feb 10 2017 Fedora Release Engineering <[email protected]> - 1:4.8.18-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Fri Dec 09 2016 Richard W.M. Jones <[email protected]> - 1:4.8.18-3
- Downstream-only patch to make mc use /var/tmp for large temporary files
(RHBZ#895444).
* Wed Nov 09 2016 Jon Ciesla <[email protected]> - 1:4.8.18-1
- 4.8.18
* Wed Sep 21 2016 Jon Ciesla <[email protected]> - 1:4.8.17-1
- 4.8.17
* Thu Feb 04 2016 Fedora Release Engineering <[email protected]> - 1:4.8.15-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Tue Dec 01 2015 Jindrich Novy <[email protected]> 4.8.15
- update to 4.8.14
* Wed Jun 17 2015 Fedora Release Engineering <[email protected]> - 1:4.8.14-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Tue Mar 24 2015 Jindrich Novy <[email protected]> 4.8.14
- update to 4.8.14
* Sat Feb 21 2015 Till Maas <[email protected]> - 1:4.8.13-2
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
* Fri Sep 05 2014 Jindrich Novy <[email protected]> 4.8.13
- update to 4.8.13
* Sun Aug 17 2014 Fedora Release Engineering <[email protected]> - 1:4.8.12-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Mon Jun 09 2014 Jindrich Novy <[email protected]> 4.8.12
- update to 4.8.12
* Sat Jun 07 2014 Fedora Release Engineering <[email protected]> - 1:4.8.11-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Mon Dec 02 2013 Jindrich Novy <[email protected]> 4.8.11
- update to 4.8.11
* Sat Aug 03 2013 Jindrich Novy <[email protected]> 4.8.10
- update to 4.8.10 (#984540)
- sync patches
* Wed Jul 17 2013 Petr Pisar <[email protected]> - 1:4.8.8-2
- Perl 5.18 rebuild
* Thu Apr 04 2013 Jindrich Novy <[email protected]> 4.8.8-1
- update to 4.8.8
* Thu Mar 21 2013 Jindrich Novy <[email protected]> 4.8.7-3
- attempt to fix segfault while passing messages to widgets (#907045, #912033)
- fix possible segfault when freeing a VFS (#923415)
* Thu Mar 14 2013 Jindrich Novy <[email protected]> 4.8.7-2
- fix segfault in cpio VFS while reading corrupted RPM (#921414)
* Thu Feb 14 2013 Fedora Release Engineering <[email protected]> - 1:4.8.7-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Wed Jan 02 2013 Jindrich Novy <[email protected]> 4.8.7-1
- update to 4.8.7 (#890662)
- drop patch for CVE-2012-4463 - applied upstream
- fix chagelog dates
* Wed Nov 28 2012 Jindrich Novy <[email protected]> 4.8.6-2
- sanitize of MC_EXT_SELECTED variable when viewing
multiple files, CVE-2012-4463 (#862814)
https://www.midnight-commander.org/ticket/2913
* Thu Sep 20 2012 Jindrich Novy <[email protected]> 4.8.6-1
- update to 4.8.6 (#857512)
* Tue Sep 11 2012 Jindrich Novy <[email protected]> 4.8.5-1
- update to 4.8.5 (#815307)
* Thu Aug 09 2012 Jindrich Novy <[email protected]> 4.8.4-5
- handle overlapping menus correctly (#844392)
(https://www.midnight-commander.org/ticket/2817)
* Tue Jul 31 2012 Jindrich Novy <[email protected]> 4.8.4-4
- fix segfault if aspell dicts aren't present
- fix segfault in mcedit when pressing alt-minus
* Fri Jul 27 2012 Fedora Release Engineering <[email protected]> - 1:4.8.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Wed Jul 18 2012 Jindrich Novy <[email protected]> 4.8.4-1
- update to 4.8.4
* Mon Apr 23 2012 Jindrich Novy <[email protected]> 1:4.8.3-1
- update to 4.8.3
* Tue Mar 20 2012 Slava Zanko <[email protected]> 1:4.8.2-1
- update to 4.8.2
* Wed Feb 8 2012 Kay Sievers <[email protected]> - 1:4.8.1-3
- Drop dependency on 'dev' package; it is gone since many years
* Fri Jan 13 2012 Fedora Release Engineering <[email protected]> - 1:4.8.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Thu Dec 15 2011 Jindrich Novy <[email protected]> 4.8.1-1
- update to 4.8.1 (#767962)
* Wed Nov 09 2011 Jindrich Novy <[email protected]> 4.8.0-3
- run xdg-open for images and DjVu files (#532784)
- tell find-lang about localized man pages
* Wed Oct 26 2011 Fedora Release Engineering <[email protected]> - 1:4.8.0-2
- Rebuilt for glibc bug#747377
* Thu Oct 20 2011 Jindrich Novy <[email protected]> 4.8.0-1
- update to 4.8.0
- update license to GPLv3+
* Thu Sep 29 2011 Jindrich Novy <[email protected]> 4.7.5.5-1
- update to 4.7.5.5
* Thu Sep 15 2011 Jindrich Novy <[email protected]> 4.7.5.4-1
- update to 4.7.5.4
* Wed Jul 27 2011 Jindrich Novy <[email protected]> 4.7.5.3-1
- update to 4.7.5.3
* Tue Apr 12 2011 Jindrich Novy <[email protected]> 4.7.5.2-1
- update to 4.7.5.2
* Tue Feb 08 2011 Fedora Release Engineering <[email protected]> - 1:4.7.5.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Mon Feb 7 2011 Jindrich Novy <[email protected]> 4.7.5.1-1
- update to 4.7.5.1
* Tue Dec 28 2010 Jindrich Novy <[email protected]> 4.7.5-1
- update to mc-4.7.5
- drop filegui and vfscrash patches - applied upstream
* Thu Dec 9 2010 Jindrich Novy <[email protected]> 4.7.5-0.3.pre1
- fix crash in progress bar handling (#643256)
* Wed Dec 8 2010 Jindrich Novy <[email protected]> 4.7.5-0.2.pre1
- fix crash in opening mc VFS (#661290, #588795, #653156)
- fix crash while creating a VFS timestamp (#660308)
* Wed Dec 8 2010 Jindrich Novy <[email protected]> 4.7.5-0.1.pre1
- update to 4.7.5 stable prerelease
* Fri Oct 15 2010 Jindrich Novy <[email protected]> 4.7.4-5
- make cons.saver not suid root, it is no more needed (#640365)
* Thu Oct 7 2010 Jindrich Novy <[email protected]> 4.7.4-4
- fix globbing (#629679), thanks to Denys Vlasenko
- don't use vcsa for cons.saver (#640365)
* Wed Sep 29 2010 jkeating - 1:4.7.4-3
- Rebuilt for gcc bug 634757
* Fri Sep 24 2010 Jindrich Novy <[email protected]> 4.7.4-2
- enable samba VFS (#637059)
* Tue Sep 7 2010 Jindrich Novy <[email protected]> 4.7.4-1
- update to 4.7.4 (#630900)
* Fri Sep 3 2010 Jindrich Novy <[email protected]> 4.7.3-4
- fix segfault when pressing Cancel in Replace String dialog (#629847)
- show proper contents in history and fix memleak (ticket #2299)
* Thu Sep 2 2010 Jindrich Novy <[email protected]> 4.7.3-3
- fix broken directory copying, backport from upstream (#624973)
- backport patch fixing crash while copying files to directory
with '?' letters in its name (#576622)
* Wed Sep 1 2010 Jindrich Novy <[email protected]> 4.7.3-2
- fix segfault in advanced chown dialog (#625801)
* Wed Jul 7 2010 Jindrich Novy <[email protected]> 4.7.3-1
- update to 4.7.3
* Wed Jun 9 2010 Jindrich Novy <[email protected]> 4.7.2-2
- BR: groff (#602115)
- fix segfault in mcview (#602124)
* Thu May 6 2010 Jindrich Novy <[email protected]> 4.7.2-1
- update to 4.7.2
- remove patches applied upstream
* Thu Mar 18 2010 Jindrich Novy <[email protected]> 4.7.1-3
- patches from upstream:
- fix crash in mcedit ran stand-alone (#571570)
- fix segfault when trying to panelize find results (#569823)
* Tue Mar 2 2010 Jindrich Novy <[email protected]> 4.7.1-2
- fix segfault when panelizing search results (#569823)
* Mon Mar 1 2010 Jindrich Novy <[email protected]> 4.7.1-1
- update to 4.7.1
* Wed Feb 3 2010 Jindrich Novy <[email protected]> 4.7.0.2-1
- update to 4.7.0.2
* Sat Jan 2 2010 Jindrich Novy <[email protected]> 4.7.0.1-1
- update to 4.7.0.1
- update bindings to use xdg-open wherever possible
* Sat Dec 26 2009 Jindrich Novy <[email protected]> 4.7.0-1
- update to official 4.7.0
* Mon Dec 21 2009 Jindrich Novy <[email protected]> 4.7.0-0.9.pre4.20091221git
- provide yum-repo.syntax (#549014)
- avoid occasional crash while reading panels (#548987)
- remove duplicates from filelist
- enable mcvfs, disable rpath
* Tue Dec 15 2009 Jindrich Novy <[email protected]> 4.7.0-0.8.pre4
- fix rpmvfs empty directory handling (#529645)
- fix bindings (#532784)
* Mon Nov 02 2009 Jindrich Novy <[email protected]> 4.7.0-0.7.pre4
- update to 4.7.0-pre4
* Mon Oct 12 2009 Jindrich Novy <[email protected]> 4.7.0-0.6.pre3
- fix segfault while browsing various archives via VFS (#528268)
* Mon Oct 5 2009 Jindrich Novy <[email protected]> 4.7.0-0.5.pre3
- update to 4.7.0-pre3
- add BR: gpm-devel
* Tue Sep 1 2009 Jindrich Novy <[email protected]> 4.7.0-0.4.pre2
- update to 4.7.0-pre2
* Fri Aug 7 2009 Jindrich Novy <[email protected]> 4.7.0-0.3.pre1
- support shell patterns in copy dialog (#516180)
(http://www.midnight-commander.org/ticket/414)
* Wed Aug 5 2009 Jindrich Novy <[email protected]> 4.7.0-0.2.pre1
- update extension binding to be more Fedora-like
- update to upstream IPv6 patch
* Mon Aug 3 2009 Jindrich Novy <[email protected]> 4.7.0-0.1.pre1
- update to 4.7.0-pre1 (fixes #513757)
* Fri Jul 31 2009 Jindrich Novy <[email protected]> 4.6.99-0.20090731git
- update to latest GIT mc
- forwardport prompt fix and exit patch, keep IPv6 patch and drop the others
* Sat Jul 25 2009 Fedora Release Engineering <[email protected]> - 1:4.6.2-12
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Sun May 17 2009 Jindrich Novy <[email protected]> 4.6.2-11
- update to mc-4.6.2 release
- drop .8bit-hex, .preserveattrs, .cloexec, .7zip and part of
.utf8-look-and-feel patch, applied upstream
- sync the rest of patches, adopt upstream version of UTF8 patch
- update URL and source links
- add required BR
* Fri May 15 2009 Jindrich Novy <[email protected]> 4.6.2-10.pre1
- fix segfault in mc editor when pressing ctrl+right (skip one word)
in binary file (#500818)
- don't use dpkg tools for *.deb files (#495649), thanks to Dan Horak
* Wed Feb 25 2009 Fedora Release Engineering <[email protected]> - 1:4.6.2-9.pre1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Thu Dec 4 2008 Jindrich Novy <[email protected]> 4.6.2-8.pre1
- fix a couple of UTF-8 related display bugs (#464708),
thanks to Rafał Mużyło
* Thu Oct 23 2008 Jindrich Novy <[email protected]> 4.6.2-7.pre1
- allow switching of trailing spaces/tab highlighting with crtl-v,
patch from Jan Engelhardt (#464738)
- update the UTF-8 patch accordingly
* Tue Sep 2 2008 Jindrich Novy <[email protected]> 4.6.2-6.pre1
- do not change directory in panel to subshell directory
when switched back from subshell (#460633)
* Tue Aug 5 2008 Jindrich Novy <[email protected]> 4.6.2-5.pre1
- don't try to parse obsolete RPM tags in RPM VFS (#457912),
thanks to Milan Broz
- use correct extension for lzma and regenerate so that it applies
with fuzz==0
* Fri Jun 20 2008 Jindrich Novy <[email protected]> 4.6.2-4.pre1
- fix displaying of 7zip archive contents (#452090) - [email protected]
* Thu Mar 27 2008 Jindrich Novy <[email protected]> 4.6.2-3.pre1
- don't segfault when hint or help files are missing (#439025),
thanks to Tomas Heinrich
- fix displaying of 8bit encoded files in UTF-8 (#426756),
thanks to Andrew Zabolotny
- don't gzip man pages, leave it to brp-compress
* Fri Mar 7 2008 Jindrich Novy <[email protected]> 4.6.2-2.pre1
- add lzma vfs support by Lasse Collin
- update extensions patch to use xdg-open
* Mon Feb 25 2008 Jindrich Novy <[email protected]> 4.6.2-1.pre1
- update to 4.6.2-pre1
- forwardport the UTF-8 patch to 4.6.2-pre1 and convert new
functionality to support UTF-8
* Tue Feb 19 2008 Fedora Release Engineering <[email protected]> - 1:4.6.1a-52.20070604cvs
- Autorebuild for GCC 4.3
* Tue Jan 8 2008 Jindrich Novy <[email protected]> 4.6.1a-51
- add -fgnu89-inline to let mc compile with gcc 4.3.0+
* Wed Nov 14 2007 Jindrich Novy <[email protected]> 4.6.1a-50
- don't preserve attributes in copy/move while the option is
switched off (#195614)
- rebuild to fix iso9660 vfs because of missing gawk in
buildroot(#381751, #363611)
* Thu Aug 23 2007 Jindrich Novy <[email protected]> 4.6.1a-49
- update License
- rebuild for ppc32
* Wed Jun 20 2007 Jindrich Novy <[email protected]> 4.6.1a-48
- fix displaying of prompt in subshell (#244025)
* Tue Jun 19 2007 Jindrich Novy <[email protected]> 4.6.1a-47
- refresh contents of terminal when resized during time
expensive I/O operations (#236502)
* Tue Jun 12 2007 Jindrich Novy <[email protected]> 4.6.1a-46
- update to new upstream CVS snapshot (2007-06-04-22)
- don't print prompts multiple times when switching
between mc and subshell
* Mon Apr 16 2007 Jindrich Novy <[email protected]> 4.6.1a-45
- fix segmentation fault while editing non-UTF8 files (#229383)
* Mon Apr 2 2007 Jindrich Novy <[email protected]> 4.6.1a-44
- fix unowned directories (#233880)
* Thu Feb 15 2007 Jindrich Novy <[email protected]> 4.6.1a-43
- display free space correctly for multiple filesystems (#225153)
(thanks to Tomas Heinrich for patch)
- fix up configs
* Fri Feb 9 2007 Jindrich Novy <[email protected]> 4.6.1a-42
- update to new CVS snapshot
* Tue Feb 6 2007 Jindrich Novy <[email protected]> 4.6.1a-41
- merge review spec fixes (#226133)
* Mon Jan 22 2007 Jindrich Novy <[email protected]> 4.6.1a-40
- update to new upstream CVS snapshot
- drop upstreamed tmpcrash patch
- reenable gpm support as it is now fixed (#168076)
* Thu Jan 4 2007 Jindrich Novy <[email protected]> 4.6.1a-39
- update to new CVS snapshot (fixes #220828)
- update bindings again
* Thu Dec 21 2006 Jindrich Novy <[email protected]> 4.6.1a-38
- rebuild because of the %%{_host} macro change (Related: #220273)
* Mon Dec 4 2006 Jindrich Novy <[email protected]> 4.6.1a-37
- update bindings
- attempt to fcntl() descriptors appropriatelly so that subshell
doesn't leave them open while execve()ing commands (#217027)
- more general fix for #215909
* Mon Nov 27 2006 Jindrich Novy <[email protected]> 4.6.1a-36
- don't crash when temporary directory cannot be created (#217342)
* Thu Nov 16 2006 Jindrich Novy <[email protected]> 4.6.1a-35
- update to new CVS snapshot
- drop .fishfix, .rpmconf patches, applied upstream
- fix IPv6 patch (should fix #206234 and #213212)
- don't crash when directory ending with newline is listed (#215909),
disable support for directories with '\n' in name to avoid
further issues (remove .uglydir patch) and report chdir error
* Thu Nov 2 2006 Jindrich Novy <[email protected]> 4.6.1a-34
- fix #214255 - sh vfs disconnects with special character in filename
- drop fish-upload patch, applied upstream
* Tue Oct 31 2006 Jindrich Novy <[email protected]> 4.6.1a-33
- display also conflicts in addition to provides/obsoletes/requires
while browsing RPM vfs
* Fri Oct 27 2006 Jindrich Novy <[email protected]> 4.6.1a-32
- update to new CVS snapshot
- fix IPv6 FISH support
- use better UTF-8 characters for scrollbars
* Tue Oct 10 2006 Jindrich Novy <[email protected]> 4.6.1a-31
- update to new CVS snapshot
* Sun Oct 01 2006 Jesse Keating <[email protected]> 4.6.1a-30
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
* Tue Sep 26 2006 Jindrich Novy <[email protected]> 4.6.1a-29
- add experimental IPv6 support for ftpfs (#198386), thanks to
Dan Kopecek for the patch
* Wed Sep 13 2006 Jindrich Novy <[email protected]> 4.6.1a-28.fc6
- update to new CVS snapshot (09-12-21)
- drop .assembly, .spec patches -> applied upstream
* Tue Sep 5 2006 Jindrich Novy <[email protected]> 4.6.1a-27.fc6
- display hex values correctly even for non-UTF8 locales, thanks
to Egmont Koblinger
- fix BuildRoot
* Sat Sep 2 2006 Jindrich Novy <[email protected]> 4.6.1a-26.fc6
- correctly highlight Requires(pre,post,preun,postun) in spec
* Wed Aug 23 2006 Jindrich Novy <[email protected]> 4.6.1a-25.fc6
- highlight AMD64 registers properly when editing assembly sources
* Mon Aug 21 2006 Jindrich Novy <[email protected]> 4.6.1a-24.fc6
- fix segfault caused by improper parsing of ls output while
deleting files via shell link (#202623)
* Tue Aug 15 2006 Jindrich Novy <[email protected]> 4.6.1a-23.fc6
- update to new mc CVS snapshot
- drop .case, .rpmobsolete patches - applied upstream
- allow exit command even on non-local filesystems (#202440)
- use %%{?dist}
* Mon Jul 17 2006 Jindrich Novy <[email protected]> 4.6.1a-22
- use less ugly UTF-8 special characters for scrollbars
- properly highlight RPM tags that differ in case while
editing spec file
* Wed Jul 12 2006 Jesse Keating <[email protected]> - 1:4.6.1a-21.1
- rebuild
* Tue Jul 11 2006 Jindrich Novy <[email protected]> 4.6.1a-21
- update to new mc snapshot (fixes #195810)
- drop .segfault patch, applied upstream
- highlight "Serial:" and "Copyright:" obsolete RPM tags so that
everyone is aware it's obsolete
* Mon Jul 10 2006 Jindrich Novy <[email protected]> 4.6.1a-20
- correctly display free space on devices referred to by
symlinks (#197738)
* Fri Jun 16 2006 Jindrich Novy <[email protected]> 4.6.1a-19
- fix segfault in wordproc.c (#194562)
* Mon Jun 12 2006 Jindrich Novy <[email protected]> 4.6.1a-18
- apply 00-74, 00-78 patches from Egmont Koblinger with
UTF-8 fixes related to filename truncation and file search
* Wed Jun 7 2006 Jindrich Novy <[email protected]> 4.6.1a-17
- apply UTF-8 fixes from Vladimir Nadvornik
- move the free space widget to the bottom of the main panel
and don't use highlighting
* Mon May 29 2006 Jindrich Novy <[email protected]> 4.6.1a-16
- fix the free space widget patch: stat()s filesystem less
frequently, display correct info in all circumstances
* Wed May 17 2006 Jindrich Novy <[email protected]> 4.6.1a-15
- update from CVS
- drop .fish-upload patch, applied upstream
- sync .showfree patch
* Fri Apr 28 2006 Jindrich Novy <[email protected]> 4.6.1a-14
- don't reread panel contents while in panelized mode (#188438)
* Thu Mar 30 2006 Jindrich Novy <[email protected]> 4.6.1a-13
- comment fallback to use only dd in FISH upload patch
- drop .promptfix patch so that prompt is displayed only
once while in panels
* Tue Mar 28 2006 Jindrich Novy <[email protected]> 4.6.1a-12
- apply more robust version of FISH upload patch,
thanks to Dmitry Butskoy (#186456)
* Thu Mar 16 2006 Jindrich Novy <[email protected]> 4.6.1a-11
- display the Layout dialog correctly on console (#185189)
* Wed Mar 8 2006 Jindrich Novy <[email protected]> 4.6.1a-10
- fix typo in extensions patch so that C sources are
highlighted correctly (#184228)
* Tue Feb 28 2006 Jindrich Novy <[email protected]> 4.6.1a-9
- fix hotkey conflict in Layout options (#183282)
- move syntax configuration file from /usr/share/mc to /etc/mc
- save layout settings pernamently for showing free space, not
only for current session (#182127)
- fix audio bindings, make firefox default html binding
* Sat Feb 25 2006 Jindrich Novy <[email protected]> 4.6.1a-8
- make mc FHS compliant: store config files in /etc/mc and
extfs/*.ini files in /etc/mc/extfs instead of /usr/share/mc
(#2188) - the oldest open Red Hat bug is now gone ;)
- fix warnings
* Fri Feb 10 2006 Jesse Keating <[email protected]> - 1:4.6.1a-7.2
- bump again for double-long bug on ppc(64)
* Tue Feb 07 2006 Jesse Keating <[email protected]> - 1:4.6.1a-7.1
- rebuilt for new gcc4.1 snapshot and glibc changes
* Wed Feb 1 2006 Jindrich Novy <[email protected]> 4.6.1a-7
- update from CVS - fixes syntax file for PHP
- make displaying of free space configurable
- fix permission highlighting (#177100)
- redirect stdout and stderr of several apps run on background
to /dev/null to not to mess up mc interface (#178833)
- refresh directories to avoid errors caused by copying
files to non-existent directories (#177111)
- add an option to insert changelog entry in mcedit,
thanks to Radek Vokal
* Wed Dec 28 2005 Jindrich Novy <[email protected]> 4.6.1a-6
- display free space on a device assigned to current directory in
main panels
- correctly diplay characters in mcview for non-UTF-8 LANG set (#174007)
thanks to Dmitry Butskoy
* Fri Dec 09 2005 Jesse Keating <[email protected]>
- rebuilt
* Tue Dec 6 2005 Jindrich Novy <[email protected]> 4.6.1a-5
- correctly concatenate directory and file in concat_dir_and_file()
- highlight PHP files correctly (#174802)
- use evince instead of gv to view ps files
- align mini status bar with main panels
* Thu Dec 1 2005 Jindrich Novy <[email protected]> 4.6.1a-4
- don't segfault when LANG is not set, thanks to Andy Shevchenko (#174070)
- drop specsyntax patch, applied upstream
- sync NVRE with Fedoras
- depend on external slang [now updated to 2.0.5] (#174662)
* Wed Nov 16 2005 Jindrich Novy <[email protected]> 4.6.1a-0.23
- update from CVS to fix the usage of glibc private symbols
- don't try to display UTF8ized characters in hex viewing mode
and display the characters correctly (#173309)
* Mon Nov 14 2005 Jindrich Novy <[email protected]> 4.6.1a-0.22
- update from upstream CVS for the new slang support
- use internal slang-2.0.5 in mc for now
- temporarily drop slang-devel dependency
- don't use gpm to avoid hangs caused by it (#168076, #172921),
console mouse support works even without gpm
- display scrollbars correctly even if UTF-8 locale isn't set (#173014)
- add slang2 support to utf8 patch (Leonard den Ottolander)
- update %%description
* Sat Nov 5 2005 Jindrich Novy <[email protected]> 4.6.1a-0.21
- add vertical scrollbars to main panels and listboxes
- fix memleak in menu.c caused by UTF-8 patch
- display UTF-8 characters corectly in mcview (#172571)
- fix extensions patch
* Tue Oct 25 2005 Jindrich Novy <[email protected]> 4.6.1a-0.20
- don't display UTF-8 characters as questionmarks in xterm title (#170971)
* Sun Oct 16 2005 Jindrich Novy <[email protected]> 4.6.1a-0.19
- update from CVS
- convert spec to UTF-8
- sync utf8, promptfix, 64bit patches
- drop upstreamed gcc4, ftpcrash, find, symcrash, cstrans, searchfix patches
- drop ctrl-t patch
- update userhost patch to let the edited/viewed file name be displayed in
xterm title
* Tue Oct 4 2005 Jindrich Novy <[email protected]> 4.6.1a-0.18
- fix off-by-one highlighting when searching backwards in mcedit (#169823)
- fix yet another duplicates in menus for Czech locale
* Mon Oct 3 2005 Jindrich Novy <[email protected]> 4.6.1a-0.17
- fix duplicated keyboard shortcuts in menus for Czech locale (#169734)
- fix ctrl-t page code recoding for Russian locale, thanks to
Andy Shevchenko (#163594)
* Thu Sep 29 2005 Jindrich Novy <[email protected]> 4.6.1a-0.16
- fix memory leak in mc-utf8 patch, thanks to Marcin Garski (#169549)
- fix mc-find patch to support UTF-8, thanks to Victor Abramoff (#169531)
- remove bogus condition from mc-symcrash patch
* Tue Sep 13 2005 Jindrich Novy <[email protected]> 4.6.1a-0.15
- fix segfault when copying symlinks of a particular type and
fix creation of dangled symlinks (#168184)
* Mon Sep 5 2005 Jindrich Novy <[email protected]> 4.6.1a-0.14
- backport the new Find dialog from upstream (#167493)
- disable Xorg usage and drop the dependency
- enable samba vfs
- highlight "%%check" in spec files (Mike A. Harris)
* Mon Aug 29 2005 Jindrich Novy <[email protected]> 4.6.1a-0.13
- don't hang when ftpfs connection times out - Hans de Goede (#166976)
- fix extension file to better fit FC (xpdf->evince, lynx->links)
* Mon Jul 25 2005 Jindrich Novy <[email protected]> 4.6.1a-0.12
- new mc release 4.6.1
- sync extensions patch
- fix several gcc4 signedness warnings
* Fri Jul 08 2005 Jindrich Novy <[email protected]> 4.6.1a-0.11
- update to mc-4.6.1-pre5
- sync .utf8, .userhost patch
- drop upstreamed .fixes patch
* Mon Jun 06 2005 Jindrich Novy <[email protected]> 4.6.1a-0.10
- update from CVS
- sync with .utf8 patch and some minor gcc4 fixups
- add .fixes patch
- drop upstreamed .spaceprompt patch
- update .userhost, .64bit patch
- add mcview
* Wed May 04 2005 Jindrich Novy <[email protected]> 4.6.1a-0.9
- update from CVS
- sync with .utf8 patch
- fix broken charset conversion feature in the .utf8 patch,
Andrew V. Samoilov (#154516)
* Mon Apr 04 2005 Jindrich Novy <[email protected]> 4.6.1a-0.8
- fix truncation to lower 32bits in statfs (src/mountlist.c)
* Thu Mar 24 2005 Jindrich Novy <[email protected]> 4.6.1a-0.7
- update from CVS
- sync with .utf8 patch
- add displaying of username/hostname in xterm title
* Mon Mar 21 2005 Jindrich Novy <[email protected]> 4.6.1a-0.6
- fix refusal to chdir/start file action when spaces are typed in
command prompt and Enter is pressed (#151637)
- undefinition of umode_t for ppc64 is no more needed
* Thu Mar 3 2005 Jindrich Novy <[email protected]> 4.6.1a-0.5
- update from CVS
- sync the .utf8 patch with upstream
- fix infinite loop hang when copying/deleting some strangely
named files (#150569)
- drop BuildRequires to gettext, XFree86-devel -> xorg-x11-devel
- don't define umode_t on ppc64
* Wed Feb 9 2005 Jindrich Novy <[email protected]>
- don't use acs_map with not UTF8-ized slang (#147559)
* Mon Feb 7 2005 Jindrich Novy <[email protected]>
- warning fix in .utf8 patch, missing inclusion of wchar.h in
view.c (#147168)
* Wed Feb 2 2005 Jindrich Novy <[email protected]> 4.6.1a-0.4
- update from CVS (fixes #143586)
- merge all UTF-8 related patches to single .utf8 patch
- drop BuildRequires gettext-devel, autopoint no more needed
* Tue Dec 21 2004 Jindrich Novy <[email protected]> 4.6.1a-0.3
- rewrote mbstrlen() in utf8 patch, this fixes:
- dir name truncation in command prompt for ja_JP, ko_KR locales (#142706)
- localized texts will fit dialog windows and pull-down menus - tweak create_menu()
- dialog titles are centered correctly
- fix bad displaying of mc logo in help (#143415)
- merge msglen patch with utf8 patch
* Wed Dec 15 2004 Jindrich Novy <[email protected]> 4.6.1a-0.2
- update from CVS - problem in uzip.in fixed by upstream (#141844)
- fix msglen patch to deal with wide UTF-8 characters (#141875)
* Thu Dec 9 2004 Jindrich Novy <[email protected]> 4.6.1a-0.1
- update from CVS
- sync UTF-8 patches with upstream
- drop upstreamed badsize, growbuf patches
- faster FISH upload support (#140750) - from Dmitry Butskoj
* Mon Dec 6 2004 Jindrich Novy <[email protected]>
- add msglen patch to calculate message length correctly in UTF-8 (#141875)
(thanks to Nickolay V. Shmyrev)
- convert hints for ru, uk, zh, man page conversion fix
* Wed Dec 1 2004 Jindrich Novy <[email protected]> 4.6.1-0.11
- update from CVS
- fix #141095 - extraction of symlinks from tarfs is now fine
- add growbuf patch from Roland Illig #141422 to view files
in /proc and /sys properly
* Wed Nov 24 2004 Jindrich Novy <[email protected]> 4.6.1-0.10
- update from CVS
- update promptfix patch, drop upstreamed strippwd patch
- add badsize patch to fix displaying of filesizes >2GB
- sync UTF-8 patches with upstream
- replace autogen.sh style with configure
* Fri Nov 12 2004 Jindrich Novy <[email protected]>
- convert man pages to UTF-8 (#138871)
* Mon Nov 8 2004 Jindrich Novy <[email protected]> 4.6.1-0.9
- update from CVS
- convert help files in /doc to UTF-8
- add --enable-charset (#76486)
- drop upstreamed 8bitdefault, extfs patch
- update partially upstreamed strippwd and extension patches
- add UTF-8 help patch from Vladimir Nadvornik (#136826)
- add promptfix patch
* Wed Nov 3 2004 Jindrich Novy <[email protected]>
- drop upstreamed smallpatches patch
- install non-en man pages and fix encoding (#137036)
- fix possible mem leak in strippwd patch
* Fri Oct 22 2004 Jindrich Novy <[email protected]>
- drop second part of the uglydir patch to display panel title
correctly in UTF8 (#136129)
* Wed Oct 20 2004 Jindrich Novy <[email protected]> 4.6.1-0.8
- update from CVS
- drop mc-php.syntax, more recent version in upstream
- add utf8-input patch
- sync strippwd, uglydir, extensions patches with upstream
- add 8bitdefault patch to enable 8-bit input by default
* Fri Oct 15 2004 Jindrich Novy <[email protected]> 4.6.1-0.7
- update from CVS
- sync strippwd patch with upstream
- merged hp48.in patch to extfs patch (from Leonard den Ottolander)