diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f7f64c3 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/mc-4.8.7.tar.xz diff --git a/.mc.metadata b/.mc.metadata new file mode 100644 index 0000000..6957774 --- /dev/null +++ b/.mc.metadata @@ -0,0 +1 @@ +5f1b1881735911da3e8ea765de48bdc8226abead SOURCES/mc-4.8.7.tar.xz diff --git a/SOURCES/iso9660_dotfiles.patch b/SOURCES/iso9660_dotfiles.patch new file mode 100644 index 0000000..12bef20 --- /dev/null +++ b/SOURCES/iso9660_dotfiles.patch @@ -0,0 +1,13 @@ +diff -urpN mc-4.8.7.orig/src/vfs/extfs/helpers/iso9660.in mc-4.8.7/src/vfs/extfs/helpers/iso9660.in +--- mc-4.8.7.orig/src/vfs/extfs/helpers/iso9660.in 2011-11-27 15:11:03.000000000 +0100 ++++ mc-4.8.7/src/vfs/extfs/helpers/iso9660.in 2016-07-19 21:31:05.620161700 +0200 +@@ -72,7 +72,8 @@ BEGIN { + if (SEMICOLON = "YES") sub(";1$", "", name); + ## sub(";[0-9]+$", "", name) ## would break copyout + # skip . and .. +- if (name ~ /^\.\.?/) next; ++ if (name == ".") next; ++ if (name == "..") next; + printf "%s%s%s\n", attr, dir, name + }' + } diff --git a/SOURCES/mc-4.8.8.man_mcdiff.patch b/SOURCES/mc-4.8.8.man_mcdiff.patch new file mode 100644 index 0000000..59be9d1 --- /dev/null +++ b/SOURCES/mc-4.8.8.man_mcdiff.patch @@ -0,0 +1,154 @@ +diff -urpN mc-4.8.8.orig/doc/man/Makefile.am mc-4.8.8/doc/man/Makefile.am +--- mc-4.8.8.orig/doc/man/Makefile.am 2013-03-07 11:45:57.000000000 +0100 ++++ mc-4.8.8/doc/man/Makefile.am 2013-07-08 20:29:16.539574690 +0200 +@@ -3,7 +3,7 @@ if USE_NLS + SUBDIRS = $(DOC_LINGUAS) + endif + +-man_MANS = mc.1 mcedit.1 mcview.1 ++man_MANS = mc.1 mcedit.1 mcview.1 mcdiff.1 + + CLEANFILES = $(man_MANS) + +@@ -11,7 +11,8 @@ EXTRA_DIST = \ + date-of-man-include.am \ + mc.1.in \ + mcedit.1.in \ +- mcview.1.in ++ mcview.1.in \ ++ mcdiff.1.in + + DATE_LANG=en_US.UTF-8 + DATE_FORMAT=%B %Y +diff -urpN mc-4.8.8.orig/doc/man/Makefile.in mc-4.8.8/doc/man/Makefile.in +--- mc-4.8.8.orig/doc/man/Makefile.in 2013-04-02 11:41:12.000000000 +0200 ++++ mc-4.8.8/doc/man/Makefile.in 2013-07-08 20:30:33.407579744 +0200 +@@ -408,13 +408,14 @@ top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ + DIST_SUBDIRS = es hu it pl ru sr + @USE_NLS_TRUE@SUBDIRS = $(DOC_LINGUAS) +-man_MANS = mc.1 mcedit.1 mcview.1 ++man_MANS = mc.1 mcedit.1 mcview.1 mcdiff.1 + CLEANFILES = $(man_MANS) + EXTRA_DIST = \ + date-of-man-include.am \ + mc.1.in \ + mcedit.1.in \ +- mcview.1.in ++ mcview.1.in \ ++ mcdiff.1.in + + DATE_LANG = en_US.UTF-8 + DATE_FORMAT = %B %Y +@@ -855,6 +856,10 @@ mcview.1: $(srcdir)/mcview.1.in + MAN_FILE=$<; MAN_DATE=$$($(MAN_DATE_CMD)); \ + sed $(SED_PARAMETERS) $< > $@ + ++mcdiff.1: $(srcdir)/mcdiff.1.in ++ MAN_FILE=$<; MAN_DATE=$$($(MAN_DATE_CMD)); \ ++ sed $(SED_PARAMETERS) $< > $@ ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: +diff -urpN mc-4.8.8.orig/doc/man/mcdiff.1.in mc-4.8.8/doc/man/mcdiff.1.in +--- mc-4.8.8.orig/doc/man/mcdiff.1.in 1970-01-01 01:00:00.000000000 +0100 ++++ mc-4.8.8/doc/man/mcdiff.1.in 2013-07-08 21:03:19.474017497 +0200 +@@ -0,0 +1,97 @@ ++.TH MCDIFF 1 "%DATE_OF_MAN_PAGE%" "MC Version %DISTR_VERSION%" "GNU Midnight Commander" ++.SH NAME ++mcdiff \- Internal diff viewer of GNU Midnight Commander. ++.SH USAGE ++.B mcdiff ++[\-bcCdfhstVx?] file1 file2 ++.SH DESCRIPTION ++.LP ++mcdiff is a link to ++.BR mc , ++the main GNU Midnight Commander executable. Executing GNU Midnight ++Commander under this name requests starting the internal diff viewer ++which compares ++.I file1 ++and ++.I file2 ++specified on the command line. ++.SH OPTIONS ++.TP ++.I "\-b" ++Force black and white display. ++.TP ++.I "\-c" ++Force color mode on terminals where ++.B mcdiff ++defaults to black and white. ++.TP ++.I "\-C =,,:= ..." ++Specify a different color set. See the ++.B Colors ++section in mc(1) for more information. ++.TP ++.I "\-d" ++Disable mouse support. ++.TP ++.I "\-f" ++Display the compiled\-in search paths for Midnight Commander files. ++.TP ++.I "\-t" ++Used only if the code was compiled with S\-Lang and terminfo: it makes ++the Midnight Commander use the value of the ++.B TERMCAP ++variable for the terminal information instead of the information on ++the system wide terminal database ++.TP ++.I "\-V" ++Displays the version of the program. ++.TP ++.I "\-x" ++Forces xterm mode. Used when running on xterm\-capable terminals (two ++screen modes, and able to send mouse escape sequences). ++.PP ++.SH COLORS ++The default colors may be changed by appending to the ++.B MC_COLOR_TABLE ++environment variable. Foreground and background colors pairs may be ++specified for example with: ++.PP ++.nf ++MC_COLOR_TABLE="$MC_COLOR_TABLE:\\ ++normal=lightgray,black:\\ ++selected=black,green" ++.fi ++.PP ++.SH FILES ++.I %prefix%/share/mc/mc.hlp ++.IP ++The help file for the program. ++.PP ++.I %prefix%/share/mc/mc.ini ++.IP ++The default system\-wide setup for GNU Midnight Commander, used only if ++the user's own ~/.config/mc/ini file is missing. ++.PP ++.I %prefix%/share/mc/mc.lib ++.IP ++Global settings for the Midnight Commander. Settings in this file ++affect all users, whether they have ~/.config/mc/ini or not. ++.PP ++.I ~/.config/mc/ini ++.IP ++User's own setup. If this file is present, the setup is loaded from ++here instead of the system\-wide startup file. ++.PP ++.SH LICENSE ++This program is distributed under the terms of the GNU General Public ++License as published by the Free Software Foundation. See the built\-in ++help of the Midnight Commander for details on the License and the lack ++of warranty. ++.SH AVAILABILITY ++The latest version of this program can be found at ++ftp://ftp.gnu.org/gnu/mc/. ++.SH SEE ALSO ++mc(1), mcedit(1), mcview(1) ++.PP ++.SH BUGS ++Bugs should be reported to mc\-devel@gnome.org diff --git a/SOURCES/mc-4.8.8.man_typo.patch b/SOURCES/mc-4.8.8.man_typo.patch new file mode 100644 index 0000000..61b91e7 --- /dev/null +++ b/SOURCES/mc-4.8.8.man_typo.patch @@ -0,0 +1,212 @@ +diff -urpN mc-4.8.7.orig/doc/man/mc.1.in mc-4.8.7/doc/man/mc.1.in +--- mc-4.8.7.orig/doc/man/mc.1.in 2012-10-14 14:11:01.000000000 +0200 ++++ mc-4.8.7/doc/man/mc.1.in 2016-03-01 18:37:19.428983887 +0100 +@@ -93,7 +93,8 @@ as an alias to the appropriate shell scr + .I \-s, \-\-slow + Set alternative mode drawing of frameworks. + If the section [Lines] is not filled, the symbol for the pseudographics +-frame is a space, otherwise the frame characters are taken from follow params. ++frame is a space, otherwise the frame characters are taken from following ++parameters. + + .B You can redefine the following variables: + .TP +@@ -2090,8 +2091,8 @@ You can specify how the + .\"LINK2" + Quick search + .\"Quick search" +-mode should works: case insensitively, case sensitively or be matched +-to the the panel sort order: case sensitive or not. ++mode should work: case insensitively, case sensitively or be matched ++to the panel sort order: case sensitive or not. + .\"NODE " Confirmation" + .SH " Confirmation" + In this dialog you configure the confirmation options for file deletion, +@@ -3936,7 +3937,7 @@ list of extensions of files. Separated b + .TP + .I extensions_case + (make sense only with 'extensions' parameter) make 'extensions' +-rule case sentitive (true) or not (false). ++rule case sensitive (true) or not (false). + .PP + `type' key may have values: + .nf +diff -urpN mc-4.8.7.orig/doc/man/mcedit.1.in mc-4.8.7/doc/man/mcedit.1.in +--- mc-4.8.7.orig/doc/man/mcedit.1.in 2012-12-27 09:13:20.000000000 +0100 ++++ mc-4.8.7/doc/man/mcedit.1.in 2016-03-01 18:37:19.429983888 +0100 +@@ -12,7 +12,7 @@ mcedit \- Internal file editor of GNU Mi + mcedit is a link to + .BR mc , + the main GNU Midnight Commander executable. Executing GNU Midnight Commander +-under this name requests staring the internal editor and opening files ++under this name runs the internal editor and opens files + specified on the command line. The editor is based on the terminal version of + .B cooledit + \- standalone editor for X Window System. +@@ -21,8 +21,8 @@ specified on the command line. The edito + .I "+lineno" + Go to the line specified by number (do not put a space between the + .I "+" +-sign and the number). Several line numbers are allowed but the last one will be +-actual and it will be applied to the first file only. ++sign and the number). Several line numbers are allowed but only the last one ++will be used, and it will be applied to the first file only. + .TP + .I "\-b" + Force black and white display. +@@ -181,9 +181,7 @@ The currently tagged files. + .I %T + The tagged files in the unselected panel. + .TP +-.I %u +-and +-.I %U ++.IR %u " and " %U + Similar to the + .I %t + and +@@ -192,9 +190,7 @@ macros, but in addition the files are un + only once per menu file entry or extension file entry, because next time + there will be no tagged files. + .TP +-.I %s +-and +-.I %S ++.IR %s " and " %S + The selected files: The tagged files if there are any. Otherwise the + current file. + .PP +@@ -218,23 +214,23 @@ in the + menu. + .SH CODE NAVIGATION + .B mcedit +-can be used to navigation through code with tags files created by etags +-or ctags commands. If there is no file TAGS code navigation would not work. +-In example, in case of exuberant\-ctags for C language command will be: ++can be used for navigation through code with tags files created by etags ++or ctags commands. If there is no TAGS file code navigation will not work. ++For example, in case of exuberant\-ctags for C language command will be: + .PP + ctags \-e \-\-language\-force=C \-R ./ + .PP +-.B Meta\-Enter +-show list box to select item under cursor (cusor should stand at end of +-word). +-.PP +-.B Meta\-Minus +-where minus is symbol "\-" go to previous function in navigation list (like a browser +-Back). ++.B Meta\-Enter ++shows list box to select item under cursor (cursor should stand at the end ++of the word). ++.PP ++.B Meta\-Minus ++where minus is symbol "\-" goes to previous function in navigation list ++(like browser's Back button). + .PP + .B Meta\-Equal +-where equal is symbol "=" go to next function in navigation list (like a browser +-Forward). ++where equal is symbol "=" goes to next function in navigation list ++(like browser's Forward button). + .PP + .SH SYNTAX HIGHLIGHTING + .B mcedit +@@ -247,9 +243,9 @@ If this file is missing, system\-wide + is used. + The file + .B ~/.config/mc/mcedit/Syntax +-is rescanned on opening of a any new editor file. The file contains ++is rescanned on opening of every new editor file. The file contains + rules for highlighting, each of which is given on a separate line, and +-define which keywords will be highlighted to what color. ++define which keywords will be highlighted with what color. + .PP + The file is divided into sections, each beginning with a line with the + .B file +@@ -477,14 +473,13 @@ editbold=yellow,black:\\ + editmarked=black,cyan" + .fi + .SH OPTIONS +-Most options can now be set from the editors options dialog box. See +-the ++Most options can be set from Options dialog box. See the + .B Options + menu. The following options are defined in + .B ~/.config/mc/ini + and have obvious counterparts in the dialog box. You can modify them to + change the editor behavior, by editing the file. Unless specified, a 1 +-sets the option to on, and a 0 sets it to off, as is usual. ++sets the option to on, and a 0 sets it to off, as usual. + .TP + .I use_internal_edit + This option is ignored when invoking +@@ -499,7 +494,7 @@ assume a tab spacing of 8. Use + to simulate a smaller tab spacing. + .TP + .I editor_fill_tabs_with_spaces +-Never insert a tab space. Rather insert spaces (ascii 20h) to fill to the ++Never insert a tab character. Rather insert spaces (ascii 32) to fill to the + desired tab size. + .TP + .I editor_return_does_auto_indent +@@ -523,38 +518,38 @@ When editing anywhere else, a normal tab + .I editor_option_save_mode + Possible values 0, 1 and 2. The save mode (see the options menu also) + allows you to change the method of saving a file. Quick save (0) saves +-the file by immediately, truncating the disk file to zero length (i.e. +-erasing it) and the writing the editor contents to the file. This ++the file immediately, truncating the disk file to zero length (i.e. ++erasing it) and then writing the editor contents to the file. This + method is fast, but dangerous, since a system error during a file save + will leave the file only partially written, possibly rendering the data + irretrievable. When saving, the safe save (1) option enables creation + of a temporary file into which the file contents are first written. In +-the event of an problem, the original file is untouched. When the ++the event of a problem, the original file is untouched. When the + temporary file is successfully written, it is renamed to the name of the + original file, thus replacing it. The safest method is create backups +-(2). Where a backup file is created before any changes are made. You ++(2): a backup file is created before any changes are made. You + can specify your own backup file extension in the dialog. Note that + saving twice will replace your backup as well as your original file. + .TP + .I editor_word_wrap_line_length +-line length to wrap. 72 default. ++Line length to wrap at. Default is 72. + .TP + .I editor_backup_extension +-symbol for add extension to name of backup files. Default "~". ++Symbol to add to name of backup files. Default is "~". + .TP + .I editor_line_state +-show state line of editor now it show number of file line (in future it +-can show things like folding, breakpoints, etc.). M\-n toglle this option. ++Show state line of editor. Currently it shows current line number (in the future ++it might show things like folding, breakpoints, etc.). M\-n toggles this option. + .TP + .I editor_visible_spaces +-Toggle show visible trailing spaces (TWS), if editor_visible_spaces=1 TWS +-showed as '.' ++Toggle "show visible trailing spaces". If editor_visible_spaces=1, they are shown ++as '.' + .TP + .I editor_visible_tabs +-Toggle show visible tabs, if editor_visible_tabs=1 tabs showed as '<\-\-\-\->' ++Toggle "show visible tabs". If editor_visible_tabs=1, tabs are shown as '<\-\-\-\->' + .TP + .I editor_persistent_selections +-Do not remove block selection after moving the cursor. ++Do not remove block selection after cursor movement. + .TP + .I editor_cursor_beyond_eol + Allow moving cursor beyond the end of line. +@@ -566,7 +561,7 @@ Allow moving cursor after inserted block + enable syntax highlighting. + .TP + .I editor_edit_confirm_save +-show confirm dialog on save. ++Show confirmation dialog on save. + .TP + .I editor_option_typewriter_wrap + to be described diff --git a/SOURCES/mc-4.8.8.mcext_zip.patch b/SOURCES/mc-4.8.8.mcext_zip.patch new file mode 100644 index 0000000..ec328de --- /dev/null +++ b/SOURCES/mc-4.8.8.mcext_zip.patch @@ -0,0 +1,34 @@ +From 031ab1711cad6367497f37603cdb4eadfca7bab0 Mon Sep 17 00:00:00 2001 +From: Andrew Borodin +Date: Thu, 5 Dec 2013 09:57:48 +0400 +Subject: [PATCH] Ticket #2857: add handling .zip extension. + +Add 'shell/i/.zoo' to detect zip archive using .zip extension +in addition to 'type/i/^zip\ archive'. + +Thanks ctmp1 for the original patch. + +Signed-off-by: Andrew Borodin +--- + misc/mc.ext.in | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/misc/mc.ext.in b/misc/mc.ext.in +index d330685..68c6819 100644 +--- a/misc/mc.ext.in ++++ b/misc/mc.ext.in +@@ -681,6 +681,11 @@ shell/i/.arc + Extract (with flags)=I=%{Enter any Arc flags:}; if test -n "$I"; then arc x $I %f; fi + + # zip ++shell/i/.zip ++ Open=%cd %p/uzip:// ++ View=%view{ascii} @EXTHELPERSDIR@/archive.sh view zip ++ ++# zip + type/i/^zip\ archive + Open=%cd %p/uzip:// + View=%view{ascii} @EXTHELPERSDIR@/archive.sh view zip +-- +1.8.1.4 + diff --git a/SOURCES/mc-VFSsegfault.patch b/SOURCES/mc-VFSsegfault.patch new file mode 100644 index 0000000..0ef9d8b --- /dev/null +++ b/SOURCES/mc-VFSsegfault.patch @@ -0,0 +1,12 @@ +diff -up mc-4.8.7/lib/vfs/direntry.c.VFSsegfault mc-4.8.7/lib/vfs/direntry.c +--- mc-4.8.7/lib/vfs/direntry.c.VFSsegfault 2012-12-27 09:13:20.000000000 +0100 ++++ mc-4.8.7/lib/vfs/direntry.c 2013-03-21 10:54:15.344172569 +0100 +@@ -656,6 +656,8 @@ vfs_s_close (void *fh) + int res = 0; + struct vfs_class *me = FH_SUPER->me; + ++ if (!me) return -1; ++ + FH_SUPER->fd_usage--; + if (!FH_SUPER->fd_usage) + vfs_stamp_create (me, FH_SUPER); diff --git a/SOURCES/mc-cpiosegfault.patch b/SOURCES/mc-cpiosegfault.patch new file mode 100644 index 0000000..8627031 --- /dev/null +++ b/SOURCES/mc-cpiosegfault.patch @@ -0,0 +1,12 @@ +diff -up mc-4.8.7/src/vfs/cpio/cpio.c.cpiosegfault mc-4.8.7/src/vfs/cpio/cpio.c +--- mc-4.8.7/src/vfs/cpio/cpio.c.cpiosegfault 2012-12-27 09:13:20.000000000 +0100 ++++ mc-4.8.7/src/vfs/cpio/cpio.c 2013-03-14 11:55:50.660147302 +0100 +@@ -795,7 +795,7 @@ cpio_super_same (const vfs_path_element_ + g_free (archive_name); + + /* Has the cached archive been changed on the disk? */ +- if (((cpio_super_data_t *) parc->data)->st.st_mtime < archive_stat->st_mtime) ++ if (parc->data && ((cpio_super_data_t *) parc->data)->st.st_mtime < archive_stat->st_mtime) + { + /* Yes, reload! */ + (*vfs_cpiofs_ops.free) ((vfsid) parc); diff --git a/SOURCES/mc-signed_overflow_fix.patch b/SOURCES/mc-signed_overflow_fix.patch new file mode 100644 index 0000000..1405d39 --- /dev/null +++ b/SOURCES/mc-signed_overflow_fix.patch @@ -0,0 +1,21 @@ +--- mc-4.8.6.orig/src/vfs/smbfs/helpers/lib/time.c 2012-08-27 09:48:27.000000000 +0200 ++++ mc-4.8.6.orig/src/vfs/smbfs/helpers/lib/time.c 2013-02-19 18:38:53.592051702 +0100 +@@ -173,12 +173,14 @@ TimeZoneFaster (time_t t) + dst_table[i].start = dst_table[i].end = t; + + /* no entry will cover more than 6 months */ +- low = t - MAX_DST_WIDTH / 2; +- if (t < low) ++ if (t > TIME_T_MIN + MAX_DST_WIDTH / 2) ++ low = t - MAX_DST_WIDTH / 2; ++ else + low = TIME_T_MIN; + +- high = t + MAX_DST_WIDTH / 2; +- if (high < t) ++ if (t < TIME_T_MAX - MAX_DST_WIDTH / 2) ++ high = t + MAX_DST_WIDTH / 2; ++ else + high = TIME_T_MAX; + + /* widen the new entry using two bisection searches */ diff --git a/SOURCES/mc-widgetsegfault.patch b/SOURCES/mc-widgetsegfault.patch new file mode 100644 index 0000000..bcfb0bb --- /dev/null +++ b/SOURCES/mc-widgetsegfault.patch @@ -0,0 +1,12 @@ +diff -up mc-4.8.7/lib/widget/widget-common.h.widgetsegfault mc-4.8.7/lib/widget/widget-common.h +--- mc-4.8.7/lib/widget/widget-common.h.widgetsegfault 2012-12-10 22:04:32.000000000 +0100 ++++ mc-4.8.7/lib/widget/widget-common.h 2013-03-21 09:38:39.000000000 +0100 +@@ -153,7 +153,7 @@ gboolean mouse_global_in_widget (const G + static inline cb_ret_t + send_message (void *w, void *sender, widget_msg_t msg, int parm, void *data) + { +- return WIDGET (w)->callback (WIDGET (w), WIDGET (sender), msg, parm, data); ++ return w ? WIDGET (w)->callback (WIDGET (w), WIDGET (sender), msg, parm, data) : 1; + } + + #endif /* MC__WIDGET_INTERNAL_H */ diff --git a/SPECS/mc.spec b/SPECS/mc.spec new file mode 100644 index 0000000..814785c --- /dev/null +++ b/SPECS/mc.spec @@ -0,0 +1,1327 @@ +Summary: User-friendly text console file manager and visual shell +Name: mc +Version: 4.8.7 +Release: 11%{?dist} +Epoch: 1 +License: GPLv3+ +Group: System Environment/Shells +Source0: http://www.midnight-commander.org/downloads/mc-%{version}.tar.xz +URL: http://www.midnight-commander.org/ +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: glib2-devel e2fsprogs-devel slang-devel gpm-devel groff +BuildRequires: aspell-devel libssh2-devel >= 1.2.5 +Patch0: mc-cpiosegfault.patch +Patch1: mc-widgetsegfault.patch +Patch2: mc-VFSsegfault.patch +Patch3: mc-signed_overflow_fix.patch +Patch4: mc-4.8.8.man_mcdiff.patch +Patch5: mc-4.8.8.man_typo.patch +Patch6: mc-4.8.8.mcext_zip.patch +Patch7: iso9660_dotfiles.patch + +# mc-4.8.7 has just two python scripts: /usr/libexec/mc/extfs.d/{s3+,uc1541}. +# Build machinery automatically adds python dependency. +# But mc is very much usable without python too. +# Requiring python pulls in a ton of other stuff which isn't needed. +%global __requires_exclude ^/usr/bin/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. + +%prep +%setup -q +%patch0 -p1 -b .cpiosegfault +%patch1 -p1 -b .widgetsegfault +%patch2 -p1 -b .VFSsegfault +%patch3 -p1 -b .signed_overflow_fix +%patch4 -p1 -b .man_mcdiff +%patch5 -p1 -b .man_typo +%patch6 -p1 -b .mcext_zip +%patch7 -p1 -b .iso9660_dotfiles + +%build +export CFLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE $RPM_OPT_FLAGS -Wno-strict-aliasing" +%configure --with-screen=slang \ + --enable-charset \ + --without-x \ + --with-gpm-mouse \ + --disable-rpath \ + --enable-vfs-smb \ + --enable-vfs-sftp \ + --enable-aspell \ + --enable-vfs-mcfs +make %{?_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT + +make install DESTDIR="$RPM_BUILD_ROOT" + +install -d -m 755 $RPM_BUILD_ROOT%{_sysconfdir}/profile.d +install contrib/{mc.sh,mc.csh} $RPM_BUILD_ROOT%{_sysconfdir}/profile.d + +%find_lang %{name} --with-man + +%clean +rm -rf $RPM_BUILD_ROOT + +%files -f %{name}.lang +%defattr(-, root, root) +%doc doc/FAQ doc/COPYING doc/NEWS doc/README +%{_bindir}/mc +%{_bindir}/mcedit +%{_bindir}/mcview +%{_bindir}/mcdiff +%{_datadir}/mc/* +%attr(711, root, root) %{_libexecdir}/mc/cons.saver +%{_libexecdir}/mc/mc* +%{_libexecdir}/mc/extfs.d/* +%{_libexecdir}/mc/ext.d/* +%{_libexecdir}/mc/fish/* +%{_mandir}/man1/* +%{_sysconfdir}/profile.d/* +%config(noreplace) %{_sysconfdir}/mc/mc.ext +%config(noreplace) %{_sysconfdir}/mc/*edit* +%config(noreplace) %{_sysconfdir}/mc/mc.keymap* +%config(noreplace) %{_sysconfdir}/mc/mc.menu* +%config(noreplace) %{_sysconfdir}/mc/*.ini +%dir %{_datadir}/mc +%dir %{_sysconfdir}/mc +%dir %{_libexecdir}/mc +%dir %{_libexecdir}/mc/fish +%dir %{_libexecdir}/mc/extfs.d +%dir %{_libexecdir}/mc/ext.d + +%changelog +* Tue Jul 19 2016 Denys Vlasenko 4.8.7-11 +- Make ISO viewer show dotfiles too. Resolves rhbz#1346905 + +* Sun Jan 10 2016 Denys Vlasenko 4.8.7-10 +- Fix .zip handling. Resolves #1249642. + +* Sun Jan 10 2016 Denys Vlasenko 4.8.7-9 +- Fix typos in manpage. Resolves #1155006. + +* Fri Jan 24 2014 Daniel Mach - 1:4.8.7-8 +- Mass rebuild 2014-01-24 + +* Fri Dec 27 2013 Daniel Mach - 1:4.8.7-7 +- Mass rebuild 2013-12-27 + +* Tue Jul 9 2013 Denys Vlasenko 4.8.7-6 +- Suppress automatic python dependency. + +* Tue Jul 9 2013 Denys Vlasenko 4.8.7-5 +- Add mcdiff manpage. Resolves #948487. + +* Thu Apr 25 2013 Denys Vlasenko 4.8.7-4 +- stop using undefined C code (signed overflow) (#881207) + +* Thu Mar 21 2013 Jindrich Novy 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 4.8.7-2 +- fix segfault in cpio VFS while reading corrupted RPM (#921414) + +* Thu Feb 14 2013 Fedora Release Engineering - 1:4.8.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Jan 02 2013 Jindrich Novy 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 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 4.8.6-1 +- update to 4.8.6 (#857512) + +* Tue Sep 11 2012 Jindrich Novy 4.8.5-1 +- update to 4.8.5 (#815307) + +* Thu Aug 09 2012 Jindrich Novy 4.8.4-5 +- handle overlapping menus correctly (#844392) + (https://www.midnight-commander.org/ticket/2817) + +* Tue Jul 31 2012 Jindrich Novy 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 - 1:4.8.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Wed Jul 18 2012 Jindrich Novy 4.8.4-1 +- update to 4.8.4 + +* Mon Apr 23 2012 Jindrich Novy 1:4.8.3-1 +- update to 4.8.3 + +* Tue Mar 20 2012 Slava Zanko 1:4.8.2-1 +- update to 4.8.2 + +* Wed Feb 8 2012 Kay Sievers - 1:4.8.1-3 +- Drop dependency on 'dev' package; it is gone since many years + +* Fri Jan 13 2012 Fedora Release Engineering - 1:4.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Thu Dec 15 2011 Jindrich Novy 4.8.1-1 +- update to 4.8.1 (#767962) + +* Wed Nov 09 2011 Jindrich Novy 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 - 1:4.8.0-2 +- Rebuilt for glibc bug#747377 + +* Thu Oct 20 2011 Jindrich Novy 4.8.0-1 +- update to 4.8.0 +- update license to GPLv3+ + +* Thu Sep 29 2011 Jindrich Novy 4.7.5.5-1 +- update to 4.7.5.5 + +* Thu Sep 15 2011 Jindrich Novy 4.7.5.4-1 +- update to 4.7.5.4 + +* Wed Jul 27 2011 Jindrich Novy 4.7.5.3-1 +- update to 4.7.5.3 + +* Tue Apr 12 2011 Jindrich Novy 4.7.5.2-1 +- update to 4.7.5.2 + +* Tue Feb 08 2011 Fedora Release Engineering - 1:4.7.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Mon Feb 7 2011 Jindrich Novy 4.7.5.1-1 +- update to 4.7.5.1 + +* Tue Dec 28 2010 Jindrich Novy 4.7.5-1 +- update to mc-4.7.5 +- drop filegui and vfscrash patches - applied upstream + +* Thu Dec 9 2010 Jindrich Novy 4.7.5-0.3.pre1 +- fix crash in progress bar handling (#643256) + +* Wed Dec 8 2010 Jindrich Novy 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 4.7.5-0.1.pre1 +- update to 4.7.5 stable prerelease + +* Fri Oct 15 2010 Jindrich Novy 4.7.4-5 +- make cons.saver not suid root, it is no more needed (#640365) + +* Thu Oct 7 2010 Jindrich Novy 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 4.7.4-2 +- enable samba VFS (#637059) + +* Tue Sep 7 2010 Jindrich Novy 4.7.4-1 +- update to 4.7.4 (#630900) + +* Fri Sep 3 2010 Jindrich Novy 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 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 4.7.3-2 +- fix segfault in advanced chown dialog (#625801) + +* Wed Jul 7 2010 Jindrich Novy 4.7.3-1 +- update to 4.7.3 + +* Wed Jun 9 2010 Jindrich Novy 4.7.2-2 +- BR: groff (#602115) +- fix segfault in mcview (#602124) + +* Thu May 6 2010 Jindrich Novy 4.7.2-1 +- update to 4.7.2 +- remove patches applied upstream + +* Thu Mar 18 2010 Jindrich Novy 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 4.7.1-2 +- fix segfault when panelizing search results (#569823) + +* Mon Mar 1 2010 Jindrich Novy 4.7.1-1 +- update to 4.7.1 + +* Wed Feb 3 2010 Jindrich Novy 4.7.0.2-1 +- update to 4.7.0.2 + +* Sat Jan 2 2010 Jindrich Novy 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 4.7.0-1 +- update to official 4.7.0 + +* Mon Dec 21 2009 Jindrich Novy 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 4.7.0-0.8.pre4 +- fix rpmvfs empty directory handling (#529645) +- fix bindings (#532784) + +* Mon Nov 02 2009 Jindrich Novy 4.7.0-0.7.pre4 +- update to 4.7.0-pre4 + +* Mon Oct 12 2009 Jindrich Novy 4.7.0-0.6.pre3 +- fix segfault while browsing various archives via VFS (#528268) + +* Mon Oct 5 2009 Jindrich Novy 4.7.0-0.5.pre3 +- update to 4.7.0-pre3 +- add BR: gpm-devel + +* Tue Sep 1 2009 Jindrich Novy 4.7.0-0.4.pre2 +- update to 4.7.0-pre2 + +* Fri Aug 7 2009 Jindrich Novy 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 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 4.7.0-0.1.pre1 +- update to 4.7.0-pre1 (fixes #513757) + +* Fri Jul 31 2009 Jindrich Novy 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 - 1:4.6.2-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sun May 17 2009 Jindrich Novy 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 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 - 1:4.6.2-9.pre1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Dec 4 2008 Jindrich Novy 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 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 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 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 4.6.2-4.pre1 +- fix displaying of 7zip archive contents (#452090) - gvlat@pochta.ru + +* Thu Mar 27 2008 Jindrich Novy 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 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 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 - 1:4.6.1a-52.20070604cvs +- Autorebuild for GCC 4.3 + +* Tue Jan 8 2008 Jindrich Novy 4.6.1a-51 +- add -fgnu89-inline to let mc compile with gcc 4.3.0+ + +* Wed Nov 14 2007 Jindrich Novy 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 4.6.1a-49 +- update License +- rebuild for ppc32 + +* Wed Jun 20 2007 Jindrich Novy 4.6.1a-48 +- fix displaying of prompt in subshell (#244025) + +* Tue Jun 19 2007 Jindrich Novy 4.6.1a-47 +- refresh contents of terminal when resized during time + expensive I/O operations (#236502) + +* Tue Jun 12 2007 Jindrich Novy 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 4.6.1a-45 +- fix segmentation fault while editing non-UTF8 files (#229383) + +* Mon Apr 2 2007 Jindrich Novy 4.6.1a-44 +- fix unowned directories (#233880) + +* Thu Feb 15 2007 Jindrich Novy 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 4.6.1a-42 +- update to new CVS snapshot + +* Tue Feb 6 2007 Jindrich Novy 4.6.1a-41 +- merge review spec fixes (#226133) + +* Mon Jan 22 2007 Jindrich Novy 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 4.6.1a-39 +- update to new CVS snapshot (fixes #220828) +- update bindings again + +* Thu Dec 21 2006 Jindrich Novy 4.6.1a-38 +- rebuild because of the %%{_host} macro change (Related: #220273) + +* Mon Dec 4 2006 Jindrich Novy 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 4.6.1a-36 +- don't crash when temporary directory cannot be created (#217342) + +* Thu Nov 16 2006 Jindrich Novy 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 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 4.6.1a-33 +- display also conflicts in addition to provides/obsoletes/requires + while browsing RPM vfs + +* Fri Oct 27 2006 Jindrich Novy 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 4.6.1a-31 +- update to new CVS snapshot + +* Sun Oct 01 2006 Jesse Keating 4.6.1a-30 +- rebuilt for unwind info generation, broken in gcc-4.1.1-21 + +* Tue Sep 26 2006 Jindrich Novy 4.6.1a-29 +- add experimental IPv6 support for ftpfs (#198386), thanks to + Dan Kopecek for the patch + +* Wed Sep 13 2006 Jindrich Novy 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 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 4.6.1a-26.fc6 +- correctly highlight Requires(pre,post,preun,postun) in spec + +* Wed Aug 23 2006 Jindrich Novy 4.6.1a-25.fc6 +- highlight AMD64 registers properly when editing assembly sources + +* Mon Aug 21 2006 Jindrich Novy 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 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 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 - 1:4.6.1a-21.1 +- rebuild + +* Tue Jul 11 2006 Jindrich Novy 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 4.6.1a-20 +- correctly display free space on devices referred to by + symlinks (#197738) + +* Fri Jun 16 2006 Jindrich Novy 4.6.1a-19 +- fix segfault in wordproc.c (#194562) + +* Mon Jun 12 2006 Jindrich Novy 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 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 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 4.6.1a-15 +- update from CVS +- drop .fish-upload patch, applied upstream +- sync .showfree patch + +* Fri Apr 28 2006 Jindrich Novy 4.6.1a-14 +- don't reread panel contents while in panelized mode (#188438) + +* Thu Mar 30 2006 Jindrich Novy 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 4.6.1a-12 +- apply more robust version of FISH upload patch, + thanks to Dmitry Butskoy (#186456) + +* Thu Mar 16 2006 Jindrich Novy 4.6.1a-11 +- display the Layout dialog correctly on console (#185189) + +* Wed Mar 8 2006 Jindrich Novy 4.6.1a-10 +- fix typo in extensions patch so that C sources are + highlighted correctly (#184228) + +* Tue Feb 28 2006 Jindrich Novy 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 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 - 1:4.6.1a-7.2 +- bump again for double-long bug on ppc(64) + +* Tue Feb 07 2006 Jesse Keating - 1:4.6.1a-7.1 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Wed Feb 1 2006 Jindrich Novy 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 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 +- rebuilt + +* Tue Dec 6 2005 Jindrich Novy 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 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 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 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 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 4.6.1a-0.20 +- don't display UTF-8 characters as questionmarks in xterm title (#170971) + +* Sun Oct 16 2005 Jindrich Novy 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 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 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 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 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 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 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 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 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 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 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 4.6.1a-0.8 +- fix truncation to lower 32bits in statfs (src/mountlist.c) + +* Thu Mar 24 2005 Jindrich Novy 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 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 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 +- don't use acs_map with not UTF8-ized slang (#147559) + +* Mon Feb 7 2005 Jindrich Novy +- warning fix in .utf8 patch, missing inclusion of wchar.h in + view.c (#147168) + +* Wed Feb 2 2005 Jindrich Novy 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 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 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 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 +- 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 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 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 +- convert man pages to UTF-8 (#138871) + +* Mon Nov 8 2004 Jindrich Novy 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 +- 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 +- drop second part of the uglydir patch to display panel title + correctly in UTF8 (#136129) + +* Wed Oct 20 2004 Jindrich Novy 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 4.6.1-0.7 +- update from CVS +- sync strippwd patch with upstream +- merged hp48.in patch to extfs patch (from Leonard den Ottolander) +- rebuilt + +* Fri Oct 08 2004 Jindrich Novy 4.6.1-0.6 +- update from CVS +- drop upstreamed vcsa and xtermaliases patches +- sync the rest of the patches with upstream +- update strippwd patch to eliminate passwords from dir hotlist + and chdir error messages +- update perl scripts (Leonard den Ottolander, #127973, CAN-2004-0494) + +* Wed Sep 22 2004 Jindrich Novy 4.6.1-0.5 +- fixed password elimination when no '/' is present in URL + +* Tue Sep 21 2004 Jindrich Novy 4.6.1-0.4 +- fixed .strippwd patch to deal better with ':' and '@' in URL + +* Fri Sep 17 2004 Jindrich Novy 4.6.1-0.3 +- patch to prevent displaying passwords in ftp paths (#131088) + - also removes pswd from Delete/Copy/Error dialogs, etc. +- added patch to fix/add extensions in mc.ext.in (#124242) + +* Fri Sep 17 2004 Karel Zak +- patch to prevent hangs on directory with '\n' in name, (#127164) +- UTF8 hints support +- original hint files conversion to UTF8 in the spec file + +* Mon Sep 6 2004 Jakub Jelinek 4.6.1-0.2 +- update from CVS +- remove absoluterm and troff patches + +* Thu Sep 2 2004 Jakub Jelinek 4.6.1-0.1 +- update from CVS + - handle INFO/LICENSE and INFO/OBSOLETES in rpm vfs (#67341) +- remove mc-cvs-unzip (#85073) +- fix hotkey handling when not UTF-8 (Leonard den Ottolander, #120735) +- allow terminal aliases for keys in mc.lib and ~/mc/ini, + add gnome, xterm-new and rxvt aliases for xterm (#128163) + +* Sat Aug 21 2004 Jakub Jelinek 4.6.0-18 +- 3 more quoting omissions in a.in + +* Sat Aug 21 2004 Jakub Jelinek 4.6.0-17 +- fix shell quoting in extfs perl scripts + (Leonard den Ottolander, #127973, CAN-2004-0494) + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Fri Apr 16 2004 Jakub Jelinek 4.6.0-15 +- don't use mmap if st_size doesn't fit into size_t +- fix one missed match_normal -> match_regex + +* Fri Apr 16 2004 Jakub Jelinek 4.6.0-14 +- avoid buffer overflows in mcedit Replace function + +* Wed Apr 14 2004 Jakub Jelinek 4.6.0-13 +- perl scripting fix + +* Wed Apr 14 2004 Jakub Jelinek 4.6.0-12 +- fix a bug in complete.c introduced by last patch +- export MC_TMPDIR env variable +- avoid integer overflows in free diskspace % counting +- put temporary files into $MC_TMPDIR tree if possible, + use mktemp/mkdtemp + +* Mon Apr 5 2004 Jakub Jelinek 4.6.0-11 +- fix a bunch of buffer overflows and memory leaks (CAN-2004-0226) +- fix hardlink handling in cpio filesystem +- fix handling of filenames with single/double quotes and backslashes + in %%{_datadir}/mc/extfs/rpm +- update php.syntax file (#112645) +- fix crash with large syntax file (#112644) +- update CAN-2003-1023 fix to still make vfs symlinks relative, + but with bounds checking + +* Tue Mar 02 2004 Elliot Lee +- rebuilt + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Sat Jan 17 2004 Warren Togami 4.6.0-9 +- rebuild + +* Sat Jan 17 2004 Warren Togami 4.6.0-7 +- BuildRequires glib2-devel, slang-devel, XFree86-devel, + e2fsprogs-devel, gettext +- Copyright -> License +- PreReq -> Requires +- Explicit zero epoch in versioned dev dep +- /usr/share/mc directory ownership +- Improve summary +- (Seth Vidal QA) fix for CAN-2003-1023 (Security) + +* Tue Oct 28 2003 Jakub Jelinek 4.6.0-6 +- rebuilt to get correct PT_GNU_STACK setting + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Mon Feb 24 2003 Elliot Lee +- rebuilt + +* Sat Feb 22 2003 Jakub Jelinek 4.6.0-3 +- second part of UTF-8ization + +* Fri Feb 21 2003 Jakub Jelinek 4.6.0-2 +- kill unneeded patches, update the rest for 4.6.0 +- build with system slang +- first part of UTF-8ization + +* Fri Feb 14 2003 Havoc Pennington 4.6.0-1 +- 4.6.0 final +- epoch 1 to work around 4.6.0pre > 4.6.0 + +* Thu Feb 13 2003 Havoc Pennington 4.6.0pre3-3 +- drop our translations, they are surely out of date +- ugh, due to spec file weirdness hadn't actually used the new pre3 + tarball. disabled patches that no longer apply. +- patch for #78506 + +* Thu Feb 06 2003 Florian La Roche +- link also on mainframe against gpm-devel + +* Tue Feb 4 2003 Havoc Pennington 4.6.0pre3-1 +- pre3 + +* Tue Jan 28 2003 Havoc Pennington +- rebuild + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Fri Dec 6 2002 Havoc Pennington +- 4.6.0-pre1 +- comment out the patches that don't apply, + if someone wants to spend time fixing them + that'd be great + +* Mon Dec 02 2002 Elliot Lee +- Remove 'percent prep' in changelog +- Fix unpackaged files + +* Fri Aug 23 2002 Karsten Hopp +- fix german umlaut in menues (#68130) + +* Fri Jul 19 2002 Jakub Jelinek 4.5.55-11 +- removed trailing backslash for %%configure, which + caused mc to build with the buildroot prefix + +* Wed Jul 17 2002 Karsten Hopp 4.5.55-10 +- support large files (#65159, #65160) +- own /usr/lib/mc/extfs and /usr/lib/mc/syntax +- fix NL translation (#63495) + +* Thu Jul 4 2002 Jakub Jelinek +- fix regex usage + +* Fri Jun 21 2002 Tim Powers +- automated rebuild + +* Thu May 23 2002 Tim Powers +- automated rebuild + +* Fri Apr 12 2002 Havoc Pennington +- patch for trpm vfs, #62306 + +* Wed Apr 10 2002 Havoc Pennington +- don't build --with-included-slang on upstream recommendation +- add uzip method from cvs, fixes some sort of format string problem +- get fix for breaking zip files while browsing them from upstream + +* Tue Apr 9 2002 Havoc Pennington +- remove bash-specific export from mc.sh + +* Thu Mar 28 2002 Havoc Pennington +- cons.saver rewrite to use vcsa user from Jakub, #61149 +- make cons.saver attr(4711, vcsa, root) +- require new dev package + +* Thu Mar 7 2002 Havoc Pennington +- rebuild in new environment +- 4.5.55, with lots of patch-adapting to make it build + +* Fri Jan 25 2002 Havoc Pennington +- rebuild in rawhide +- fix prefix/share -> datadir +- comment out gmc/mcserv subpackages, place order for asbestos suit + +* Mon Aug 27 2001 Havoc Pennington +- Add po files from sources.redhat.com + +* Sun Jul 22 2001 Havoc Pennington +- build requires gnome-libs-devel, #49518 + +* Sun Jun 24 2001 Elliot Lee +- Bump release + rebuild. + +* Wed Apr 25 2001 Bill Nottingham +- fix mc-4.5.51-desktop.patch to work on ia64 + +* Mon Apr 2 2001 Preston Brown +- check return code of mount for failure (ewt) + +* Thu Mar 22 2001 Owen Taylor +- Fix problem where CORBA notification wasn't working since last change. + +* Fri Mar 16 2001 Owen Taylor +- Rescan devices on startup + +* Mon Mar 12 2001 +- remove man pages from mc.ext.in so that tgz and rpm browsing work in + non LANG=C locales + +* Wed Mar 7 2001 Owen Taylor +- Add patch to recognize kudzu's fstab entries +- Fix path to memstick icon + +* Fri Feb 23 2001 Trond Eivind Glomsrød +- use %%{_tmppath} +- langify + +* Wed Feb 21 2001 Akira TAGOH +- Fixed install some desktop icons for specific language. + +* Fri Feb 16 2001 Akira TAGOH +- Updated Red Hat JP desktop icons. + +* Wed Feb 14 2001 Jakub Jelinek +- include both sys/time.h and time.h on glibc 2.2.2 +- fix Japanese patch to include locale.h. + +* Tue Feb 6 2001 Trond Eivind Glomsrød +- i18nize initscript + +* Sat Jan 27 2001 Akira TAGOH +- Added Japanese patch(language specific desktop icons). + +* Fri Jan 19 2001 Akira TAGOH +- Updated Japanese translation. + +* Sun Jan 14 2001 Florian La Roche +- do not prereq %%{_sysconfdir}/init.d +- do not require gpm for s390 + +* Mon Aug 21 2000 Jonathan Blandford +- fixed bug 16467 + +* Thu Aug 17 2000 Tim Powers +- modified my patch (again) to free quoted + +* Thu Aug 17 2000 Nalin Dahyabhai +- run %%configure in the build phase, not the setup +- modify Tim's patch to always just edit one file + +* Thu Aug 17 2000 Than Ngo +- fix problems viewing the package (Bug #16378) + +* Thu Aug 17 2000 Tim Powers +- fixed bug #16269 + +* Fri Aug 4 2000 Tim Waugh +- make stdout/stderr writable before forking + +* Wed Aug 02 2000 Jonathan Blandford +- Updated desktop entries. + +* Thu Jul 20 2000 Bill Nottingham +- move initscript back + +* Wed Jul 19 2000 Jonathan Blandford +- make the togglebutton patch work correctly + +* Tue Jul 18 2000 Nalin Dahyabhai +- fix syntax error in mcserv.init that crept in with condrestart + +* Mon Jul 17 2000 Jonathan Blandford +- added a toggle button to let people turn off the "you are running + gmc as root" warning. + +* Wed Jul 12 2000 Prospector +- automatic rebuild + +* Mon Jul 10 2000 Preston Brown +- move initscript, add condrestart stuff + +* Mon Jul 10 2000 Florian La Roche +- remove execute bits from config/pam files + +* Mon Jul 3 2000 Jonathan Blandford +- Update to 4.5.51. Now there is a trashcan! + +* Thu Jun 15 2000 Owen Taylor +- Update to 4.5.49 + +* Fri Jun 2 2000 Nalin Dahyabhai +- modify PAM setup to use system-auth + +* Mon May 22 2000 Bill Nottingham +- hmmm, ia64 patches fell out. + +* Fri May 19 2000 Jonathan Blandford +- upgrade to new version of mc. +- removed builtincpio patch + +* Tue Mar 7 2000 Jeff Johnson +- rebuild for sparc baud rates > 38400. + +* Tue Feb 22 2000 Preston Brown +- fix mc.sh, function was not exported + +* Thu Feb 17 2000 Jakub Jelinek +- builtin cpio vfs, change rpm extfs to use it - + should speed up e.g. copyout from rpm by orders of magnitude + patch by Jan Hudec +- fix buglet in the patch + +* Mon Feb 14 2000 Preston Brown +- move redhat-logos depency to gmc (#9395) + +* Fri Feb 4 2000 Jonathan Blandford +- changed default rpm action to be upgrade. +- Changed locale to be in mc package, instead of gmc. + +* Thu Feb 3 2000 Jonathan Blandford +- use /bin/rm instead of rm so that aliases won't interfere with the + script + +* Sat Sep 25 1999 Bill Nottingham +- chkconfig --del in %%preun, not %postun + +* Wed Sep 22 1999 Michael Fulbright +- updated to 4.5.39-pre9 + +* Wed Aug 04 1999 Michael K. Johnson +- moved configure to setup +- buildrequires gpm-devel so mouse works in console + +* Thu Jul 22 1999 Michael Fulbright +- added ${prefix}/lib/mc/syntax to mc file list +- turned off samba support + +* Wed Jul 7 1999 Jonathan Blandford +- updated mc to work with mc 4.5.36. Thanks to Brian Ryner + for providing the patch. + +* Mon Apr 19 1999 Michael Fulbright +- removed rpm menu defs - we depend on gnorpm for these +- fixed bug that caused crash if group doesnt exist for file + +* Thu Apr 15 1999 Michael Fulbright +- cleanup several dialogs + +* Mon Apr 12 1999 Michael Fulbright +- true version 4.5.30 + +* Fri Apr 09 1999 Michael Fulbright +- version pre-4.5.30 with patch to make this link on alpha properly + Mark as version 0.7 to denote not the official 4.5.30 release + +* Tue Apr 06 1999 Preston Brown +- strip binaries + +* Wed Mar 31 1999 Michael Fulbright +- fixed errata support URL + +* Thu Mar 25 1999 Michael Fulbright +- version 4.5.29 +- added default desktop icons for Red Hat desktop +- added redhat-logos to requirements +- added README.desktop to doc list for gmc +- added locale data + +* Thu Mar 25 1999 Preston Brown +- patched so that TERM variable set to xterm produces color + +* Mon Mar 22 1999 Michael Fulbright +- made sure %%{_sysconfdir}/pam.d/mcserv has right permissions + +* Thu Mar 18 1999 Michael Fulbright +- version 4.5.27 + +* Tue Mar 16 1999 Michael Fulbright +- fix'd icon display problem + +* Sun Mar 14 1999 Michael Fulbright +- version 4.5.25 AND 4.5.26 + +* Wed Mar 10 1999 Michael Fulbright +- version 4.5.24 + +* Mon Feb 15 1999 Michael Fulbright +- version 4.5.16 +- removed mc.keys from mc file list + +* Fri Feb 12 1999 Michael Fulbright +- version 4.5.14 +- fixed file list + +* Sat Feb 06 1999 Michael Fulbright +- version 4.5.11 + +* Wed Feb 03 1999 Michael Fulbright +- version 4.5.10 + +* Fri Jan 22 1999 Michael Fulbright +- added metadata to gmc file list + +* Mon Jan 18 1999 Michael Fulbright +- version 4.5.9 + +* Wed Jan 06 1999 Michael Fulbright +- version 4.5.6 + +* Wed Dec 16 1998 Michael Fulbright +- updated for GNOME freeze + +* Thu Aug 20 1998 Michael Fulbright +- rebuilt against gnome-libs 0.27 and gtk+-1.1 + +* Thu Jul 09 1998 Michael Fulbright +- made cons.saver not setuid + +* Sun Apr 19 1998 Marc Ewing +- removed tkmc + +* Wed Apr 8 1998 Marc Ewing +- add %%{prefix}/lib/mc/layout to gmc + +* Tue Dec 23 1997 Tomasz Kłoczko +- added --without-debug to configure, +- modification in %%build and %%install and cosmetic modification in packages + headers, +- added %%{PACKAGE_VERSION} macro to Buildroot, +- removed "rm -rf $RPM_BUILD_ROOT" from prep section +- removed Packager field. + +* Thu Dec 18 1997 Michele Marziani +- Merged spec file with that from RedHat-5.0 distribution + (now a Hurricane-based distribution is needed) +- Added patch for RPM script (didn't always work with rpm-2.4.10) +- Corrected patch for mcserv init file (chkconfig init levels) +- Added more documentation files on termcap, terminfo, xterm + +* Thu Oct 30 1997 Michael K. Johnson + +- Added dependency on portmap + +* Wed Oct 29 1997 Michael K. Johnson + +- fixed spec file. +- Updated to 4.1.8 + +* Sun Oct 26 1997 Tomasz Kłoczko + +- updated to 4.1.6 +- added %%attr macros in %%files, +- a few simplification in %%install, +- removed glibc patch, +- fixed installing %%{_sysconfdir}/X11/wmconfig/tkmc. + +* Thu Oct 23 1997 Michael K. Johnson + +- updated to 4.1.5 +- added wmconfig + +* Wed Oct 15 1997 Erik Troan + +- chkconfig is for mcserv package, not mc one + +* Tue Oct 14 1997 Erik Troan + +- patched init script for chkconfig +- don't turn on the service by default + +* Fri Oct 10 1997 Michael K. Johnson + +- Converted to new PAM conventions. +- Updated to 4.1.3 +- No longer needs glibc patch. + +* Thu May 22 1997 Michele Marziani + +- added support for mc alias in %%{_sysconfdir}/profile.d/mc.csh (for csh and tcsh) +- lowered number of SysV init scripts in %%{_sysconfdir}/rc.d/rc[0,1,6].d + (mcserv needs to be killed before inet) +- removed all references to RPM_SOURCE_DIR +- restored $RPM_OPT_FLAGS when compiling +- minor cleanup of spec file: redundant directives and comments removed + +* Sun May 18 1997 Michele Marziani + +- removed all references to non-existent mc.rpmfs +- added mcedit.1 to the %%files section +- reverted to un-gzipped man pages (RedHat style) +- removed double install line for mcserv.pamd + +* Tue May 13 1997 Tomasz Kłoczko + +- added new rpmfs script, +- removed mcfn_install from mc (adding mc() to bash enviroment is in + %%{_sysconfdir}/profile.d/mc.sh), +- %%{_sysconfdir}/profile.d/mc.sh changed to %%config, +- removed %%{prefix}/lib/mc/bin/create_vcs, +- removed %%{prefix}/lib/mc/term. + +* Fri May 9 1997 Tomasz Kłoczko + +- changed source url, +- fixed link mcedit to mc, + +* Wed May 7 1997 Tomasz Kłoczko + +- new version 3.5.27, +- %%dir %%{prefix}/lib/mc/icons and icons removed from tkmc, +- added commented xmc part. + +* Tue Apr 22 1997 Tomasz Kłoczko + +- FIX spec: + - added URL field, + - in mc added missing %%{prefix}/lib/mc/mc.ext, %%{prefix}/lib/mc/mc.hint, + %%{prefix}/lib/mc/mc.hlp, %%{prefix}/lib/mc/mc.lib, %%{prefix}/lib/mc/mc.menu. + +* Fri Apr 18 1997 Tomasz Kłoczko + +- added making packages: tkmc, mcserv (xmc not work yet), +- gziped man pages, +- added %%{_sysconfdir}/pamd.d/mcserv PAM config file. +- added instaling icons, +- added %%{_sysconfdir}/profile.d/mc.sh, +- in %%doc added NEWS README, +- removed %%{prefix}/lib/mc/FAQ, +- added mcserv.init script for mcserv (start/stop on level 86).