Compare commits
No commits in common. "c8s" and "c10s" have entirely different histories.
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1 @@
|
||||
SOURCES/mc-4.8.19.tar.xz
|
||||
/mc-4.8.19.tar.xz
|
||||
/*.tar.gz
|
||||
|
@ -1,20 +0,0 @@
|
||||
--- contrib/mc-wrapper.csh.in~ 2017-02-24 14:25:57.000000000 -0600
|
||||
+++ contrib/mc-wrapper.csh.in 2017-05-17 07:39:06.830108548 -0500
|
||||
@@ -3,7 +3,7 @@
|
||||
if ($?TMPDIR) then
|
||||
setenv MC_PWD_FILE $TMPDIR/mc-$MC_USER/mc.pwd.$$
|
||||
else
|
||||
- setenv MC_PWD_FILE /tmp/mc-$MC_USER/mc.pwd.$$
|
||||
+ setenv MC_PWD_FILE /var/tmp/mc-$MC_USER/mc.pwd.$$
|
||||
endif
|
||||
|
||||
@bindir@/mc -P "$MC_PWD_FILE" $*
|
||||
--- contrib/mc-wrapper.sh.in~ 2017-02-24 14:25:57.000000000 -0600
|
||||
+++ contrib/mc-wrapper.sh.in 2017-05-17 07:38:48.348215251 -0500
|
||||
@@ -1,5 +1,5 @@
|
||||
MC_USER=`id | sed 's/[^(]*(//;s/).*//'`
|
||||
-MC_PWD_FILE="${TMPDIR-/tmp}/mc-$MC_USER/mc.pwd.$$"
|
||||
+MC_PWD_FILE="${TMPDIR-/var/tmp}/mc-$MC_USER/mc.pwd.$$"
|
||||
@bindir@/mc -P "$MC_PWD_FILE" "$@"
|
||||
|
||||
if test -r "$MC_PWD_FILE"; then
|
@ -1,6 +0,0 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-8
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
31
mc-Ticket-4374-fix-file-sort-by-version.patch
Normal file
31
mc-Ticket-4374-fix-file-sort-by-version.patch
Normal file
@ -0,0 +1,31 @@
|
||||
From db109be8a28f1556495979ee7d1967e982cca6fd Mon Sep 17 00:00:00 2001
|
||||
From: Andrew Borodin <aborodin@vmail.ru>
|
||||
Date: Mon, 23 May 2022 20:52:30 +0300
|
||||
Subject: [PATCH] Ticket #4374: fix file sort by version.
|
||||
|
||||
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
|
||||
---
|
||||
src/filemanager/dir.c | 10 +++++++++-
|
||||
1 file changed, 9 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/filemanager/dir.c b/src/filemanager/dir.c
|
||||
index 5862da6f9c..65a80cf12f 100644
|
||||
--- a/src/filemanager/dir.c
|
||||
+++ b/src/filemanager/dir.c
|
||||
@@ -358,7 +358,15 @@ sort_vers (file_entry_t * a, file_entry_t * b)
|
||||
int bd = MY_ISDIR (b);
|
||||
|
||||
if (ad == bd || panels_options.mix_all_files)
|
||||
- return filevercmp (a->fname->str, b->fname->str) * reverse;
|
||||
+ {
|
||||
+ int result;
|
||||
+
|
||||
+ result = filevercmp (a->fname->str, b->fname->str);
|
||||
+ if (result != 0)
|
||||
+ return result * reverse;
|
||||
+
|
||||
+ return sort_name (a, b);
|
||||
+ }
|
||||
|
||||
return bd - ad;
|
||||
}
|
13
mc-default_setup.patch
Normal file
13
mc-default_setup.patch
Normal file
@ -0,0 +1,13 @@
|
||||
--- a/src/setup.c
|
||||
+++ b/src/setup.c
|
||||
@@ -138,8 +138,8 @@
|
||||
.fast_reload_msg_shown = FALSE,
|
||||
.mark_moves_down = TRUE,
|
||||
.reverse_files_only = TRUE,
|
||||
- .auto_save_setup = FALSE,
|
||||
- .navigate_with_arrows = FALSE,
|
||||
+ .auto_save_setup = TRUE,
|
||||
+ .navigate_with_arrows = TRUE,
|
||||
.scroll_pages = TRUE,
|
||||
.scroll_center = FALSE,
|
||||
.mouse_move_pages = TRUE,
|
54
mc-spec.syntax.patch
Normal file
54
mc-spec.syntax.patch
Normal file
@ -0,0 +1,54 @@
|
||||
--- a/misc/syntax/spec.syntax
|
||||
+++ b/misc/syntax/spec.syntax
|
||||
@@ -5,25 +5,24 @@
|
||||
keyword whole Build\{Aa\}rch: green
|
||||
keyword whole Build\{Cc\}onflicts: green
|
||||
keyword whole Build\{Pp\}re\{Rr\}eq: green
|
||||
- keyword whole Build\{Rr\}oot: green
|
||||
+ keyword whole Build\{Rr\}oot: blue
|
||||
keyword whole Build\{Rr\}equires: green
|
||||
keyword whole Conflicts: green
|
||||
- keyword whole Copyright: white
|
||||
+ keyword whole Copyright: blue
|
||||
keyword whole Description: green
|
||||
- keyword whole Distribution: green
|
||||
- keyword whole Doc\{Dd\}ir: green
|
||||
+ keyword whole Distribution: blue
|
||||
+ keyword whole Doc\{Dd\}ir: blue
|
||||
keyword whole Epoch: green
|
||||
- keyword whole Enhances: green
|
||||
keyword whole Exclude\{Aa\}rch: green
|
||||
keyword whole Exclusive\{Aa\}rch: green
|
||||
keyword whole Exclusive\{Oo\}\{Ss\}: green
|
||||
- keyword whole Group: green
|
||||
+ keyword whole Group: blue
|
||||
keyword whole Icon: green
|
||||
keyword whole License: green
|
||||
keyword whole Name: green
|
||||
keyword whole NoSource\[0123456789\]: green
|
||||
keyword whole Obsoletes: green
|
||||
- keyword whole Packager: green
|
||||
+ keyword whole Packager: blue
|
||||
keyword whole Patch\[0123456789\]: green
|
||||
keyword whole Prefix: green
|
||||
keyword whole Pre\{Rr\}eq: green
|
||||
@@ -37,8 +36,8 @@
|
||||
keyword whole Source\[0123456789\]: green
|
||||
keyword whole Suggests: green
|
||||
keyword whole Summary: green
|
||||
- keyword whole Supplements: green
|
||||
- keyword whole Vendor: green
|
||||
+ keyword whole VCS: green
|
||||
+ keyword whole Vendor: blue
|
||||
keyword whole Version: green
|
||||
keyword whole U\{Rr\}\{Ll\}: green
|
||||
|
||||
@@ -92,7 +91,7 @@
|
||||
keyword whole PATCH\[0123456789\] cyan
|
||||
keyword whole SOURCE\[0123456789\] cyan
|
||||
|
||||
-context Group( ): green
|
||||
+context Group( ): blue
|
||||
keyword whole af yellow
|
||||
keyword whole az yellow
|
||||
keyword whole bg yellow
|
@ -1,6 +1,15 @@
|
||||
--- lib/global.h~ 2016-09-22 20:24:12.000000000 +0200
|
||||
+++ lib/global.h 2016-12-09 11:34:47.376367101 +0100
|
||||
@@ -125,7 +125,7 @@
|
||||
--- a/contrib/mc-wrapper.sh.in
|
||||
+++ b/contrib/mc-wrapper.sh.in
|
||||
@@ -1,5 +1,5 @@
|
||||
MC_USER=`whoami`
|
||||
-MC_PWD_FILE="${TMPDIR-/tmp}/mc-$MC_USER/mc.pwd.$$"
|
||||
+MC_PWD_FILE="${TMPDIR-/var/tmp}/mc-$MC_USER/mc.pwd.$$"
|
||||
@bindir@/mc -P "$MC_PWD_FILE" "$@"
|
||||
|
||||
if test -r "$MC_PWD_FILE"; then
|
||||
--- mc-4.8.21/lib/global.h~
|
||||
+++ mc-4.8.21/lib/global.h
|
||||
@@ -131,7 +131,7 @@
|
||||
#define PATH_SEP_STR "/"
|
||||
#define IS_PATH_SEP(c) ((c) == PATH_SEP)
|
||||
#define PATH_ENV_SEP ':'
|
||||
@ -8,4 +17,15 @@
|
||||
+#define TMPDIR_DEFAULT "/var/tmp"
|
||||
#define SCRIPT_SUFFIX ""
|
||||
#define get_default_editor() "vi"
|
||||
#define OS_SORT_CASE_SENSITIVE_DEFAULT 1
|
||||
#define OS_SORT_CASE_SENSITIVE_DEFAULT TRUE
|
||||
--- a/contrib/mc-wrapper.csh.in
|
||||
+++ b/contrib/mc-wrapper.csh.in
|
||||
@@ -3,7 +3,7 @@
|
||||
if ($?TMPDIR) then
|
||||
setenv MC_PWD_FILE $TMPDIR/mc-$MC_USER/mc.pwd.$$
|
||||
else
|
||||
- setenv MC_PWD_FILE /tmp/mc-$MC_USER/mc.pwd.$$
|
||||
+ setenv MC_PWD_FILE /var/tmp/mc-$MC_USER/mc.pwd.$$
|
||||
endif
|
||||
|
||||
@bindir@/mc -P "$MC_PWD_FILE" $*
|
||||
|
260
mc.spec
260
mc.spec
@ -1,27 +1,37 @@
|
||||
%bcond_without slang
|
||||
# NOTE: disabled sftp (needs to be ported to use libssh instead of libssh2)
|
||||
%bcond gpm %[!(0%{?rhel} >= 10)]
|
||||
%bcond slang 1
|
||||
|
||||
Summary: User-friendly text console file manager and visual shell
|
||||
Name: mc
|
||||
Version: 4.8.19
|
||||
Release: 9%{?dist}
|
||||
Epoch: 1
|
||||
License: GPLv3+
|
||||
URL: http://www.midnight-commander.org/
|
||||
Source0: http://www.midnight-commander.org/downloads/mc-%{version}.tar.xz
|
||||
# Downstream-only patch to make mc use /var/tmp for large temporary
|
||||
# files. See also: https://bugzilla.redhat.com/show_bug.cgi?id=895444
|
||||
Patch0: %{name}-tmpdir.patch
|
||||
Patch1: Extends-TMPDIR_DEFAULT-to-mc-wrapper-scripts.patch
|
||||
BuildRequires: aspell-devel
|
||||
BuildRequires: e2fsprogs-devel
|
||||
BuildRequires: glib2-devel
|
||||
Version: 4.8.31
|
||||
Release: 3%{?dist}
|
||||
License: GPL-3.0-or-later
|
||||
URL: https://midnight-commander.org/
|
||||
VCS: https://github.com/MidnightCommander/mc/
|
||||
Source: %{VCS}/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
Patch: %{name}-spec.syntax.patch
|
||||
Patch: %{name}-default_setup.patch
|
||||
Patch: %{name}-tmpdir.patch
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gettext-devel
|
||||
%if %{with gpm}
|
||||
BuildRequires: gpm-devel
|
||||
%endif
|
||||
BuildRequires: groff-base
|
||||
#Disabled for rhel8 (need to be ported to use libssh instead of libssh2)
|
||||
#BuildRequires: libssh2-devel >= 1.2.5
|
||||
BuildRequires: %{?with_slang:slang-devel}%{!?with_slang:ncurses-devel}
|
||||
BuildRequires: libtool
|
||||
BuildRequires: make
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: pkgconfig(ext2fs)
|
||||
BuildRequires: pkgconfig(glib-2.0)
|
||||
BuildRequires: pkgconfig(gmodule-2.0) >= 2.30
|
||||
#BuildRequires: pkgconfig(libssh2) >= 1.2.8
|
||||
BuildRequires: %[%{?with_slang}?"pkgconfig(slang) >= 2.0":"ncurses-devel"]
|
||||
Suggests: mc-python
|
||||
|
||||
%description
|
||||
Midnight Commander is a visual shell much like a file manager, only with
|
||||
@ -29,41 +39,43 @@ 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
|
||||
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.
|
||||
|
||||
%prep
|
||||
%autosetup -p0
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%__sed -i "s,PREV_MC_VERSION=\"unknown\",PREV_MC_VERSION=\"%{version}\"," version.sh
|
||||
./autogen.sh
|
||||
%configure \
|
||||
CFLAGS="%{optflags} -Wno-strict-aliasing" \
|
||||
PYTHON=%__python3 \
|
||||
--disable-rpath \
|
||||
--enable-aspell \
|
||||
--disable-vfs-sftp \
|
||||
--enable-charset \
|
||||
--enable-largefile \
|
||||
--enable-vfs-cpio \
|
||||
--enable-vfs-extfs \
|
||||
--enable-vfs-fish \
|
||||
--enable-vfs-shell \
|
||||
--enable-vfs-ftp \
|
||||
--enable-vfs-sfs \
|
||||
--disable-vfs-sftp \
|
||||
--enable-vfs-smb \
|
||||
--enable-vfs-tar \
|
||||
--with%{!?with_gpm:out}-gpm-mouse \
|
||||
--with-screen=%[%{?with_slang}?"slang":"ncurses"] \
|
||||
--with-x \
|
||||
--with-gpm-mouse \
|
||||
--with-screen=%{?with_slang:slang}%{!?with_slang:ncurses} \
|
||||
%{nil}
|
||||
%{make_build}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
install -d %{buildroot}%{_sysconfdir}/profile.d
|
||||
%make_install
|
||||
|
||||
%{make_install}
|
||||
|
||||
install contrib/mc.{sh,csh} %{buildroot}%{_sysconfdir}/profile.d
|
||||
|
||||
# These scripts do not support Python 3
|
||||
%if 0%{?rhel} > 7
|
||||
rm -f %{buildroot}%{_libexecdir}/mc/extfs.d/{s3+,uc1541}
|
||||
%endif
|
||||
%__install contrib/mc.{sh,csh} -Dt %{buildroot}%{_sysconfdir}/profile.d
|
||||
|
||||
%find_lang %{name} --with-man
|
||||
|
||||
@ -72,10 +84,8 @@ rm -f %{buildroot}%{_libexecdir}/mc/extfs.d/{s3+,uc1541}
|
||||
%doc doc/FAQ doc/NEWS doc/README
|
||||
/etc/profile.d/*
|
||||
%dir %{_sysconfdir}/mc
|
||||
%config(noreplace) %{_sysconfdir}/mc/mc.ext
|
||||
%config(noreplace) %{_sysconfdir}/mc/*edit*
|
||||
%config(noreplace) %{_sysconfdir}/mc/mc*.keymap
|
||||
%config(noreplace) %{_sysconfdir}/mc/mc.menu*
|
||||
%{_sysconfdir}/mc/edit*
|
||||
%config(noreplace) %{_sysconfdir}/mc/mc*
|
||||
%config(noreplace) %{_sysconfdir}/mc/*.ini
|
||||
%{_bindir}/*
|
||||
%dir %{_libexecdir}/mc
|
||||
@ -83,17 +93,165 @@ rm -f %{buildroot}%{_libexecdir}/mc/extfs.d/{s3+,uc1541}
|
||||
%{_libexecdir}/mc/mc*
|
||||
%{_libexecdir}/mc/extfs.d
|
||||
%{_libexecdir}/mc/ext.d
|
||||
%{_libexecdir}/mc/fish
|
||||
%{_libexecdir}/mc/shell
|
||||
%{_datadir}/mc
|
||||
%{_mandir}/man1/*
|
||||
%exclude %{_libexecdir}/mc/extfs.d/{s3+,uc1541}
|
||||
|
||||
%files python
|
||||
%{_libexecdir}/mc/extfs.d/{s3+,uc1541}
|
||||
|
||||
%changelog
|
||||
* Tue May 22 2018 Tomáš Mráz <tmraz@redhat.com> - 1:4.8.19-9
|
||||
- Avoid shipping extfs scripts requiring Python 2
|
||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1:4.8.31-3
|
||||
- Bump release for October 2024 mass rebuild:
|
||||
Resolves: RHEL-64018
|
||||
|
||||
* Thu Apr 05 2018 Denys Vlasenko <dvlasenk@redhat.com> - 1:4.8.19-8
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1:4.8.31-2
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Mon Feb 12 2024 Jindrich Novy <jnovy@redhat.com> - 1:4.8.31-1
|
||||
- update to 4.8.31
|
||||
- drop upstreamed python3 patch
|
||||
- rename fish -> shell
|
||||
- drop obsolete smb option
|
||||
|
||||
* Tue Feb 06 2024 Yaakov Selkowitz <yselkowi@redhat.com> - 1:4.8.30-4
|
||||
- Disable gpm on ELN
|
||||
|
||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.8.30-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.8.30-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Mon Aug 28 2023 Jindrich Novy <jnovy@redhat.com> - 1:4.8.30-1
|
||||
- update to 4.8.30
|
||||
- remove upstreamed mc-configure-c99.patch
|
||||
|
||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.8.29-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Tue Apr 04 2023 Jindrich Novy <jnovy@redhat.com> - 1:4.8.29-1
|
||||
- update to 4.8.29
|
||||
|
||||
* Sun Feb 05 2023 Florian Weimer <fweimer@redhat.com> - 1:4.8.28-5
|
||||
- Port configure script to C99
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.8.28-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.8.28-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Mon May 30 2022 Jindrich Novy <jnovy@redhat.com> - 1:4.8.28-2
|
||||
- fix file sort by version
|
||||
- Resolves: #2091504
|
||||
|
||||
* Fri Apr 29 2022 Jindrich Novy <jnovy@redhat.com> - 1:4.8.28-1
|
||||
- update to https://github.com/MidnightCommander/mc/releases/tag/v4.8.28
|
||||
- Related: #1993686
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.8.27-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Sep 10 2021 Jindrich Novy <jnovy@redhat.com> - 1:4.8.27-2
|
||||
- disable samba VFS
|
||||
- Related: #2002331
|
||||
|
||||
* Mon Aug 16 2021 Jindrich Novy <jnovy@redhat.com> - 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 <releng@fedoraproject.org> - 1:4.8.26-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Tue Feb 02 2021 Denys Vlasenko <dvlasenk@redhat.com> - 1:4.8.26-3
|
||||
- Avoid usage of libssh2
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.8.26-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Thu Jan 21 2021 Jindrich Novy <jnovy@redhat.com> - 1:4.8.26-1
|
||||
- update to 4.8.26
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.8.25-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jul 17 2020 Jindrich Novy <jnovy@redhat.com> - 1:4.8.25-2
|
||||
- update BR
|
||||
|
||||
* Fri Jul 17 2020 Jindrich Novy <jnovy@redhat.com> - 1:4.8.25-1
|
||||
- update to 4.8.25
|
||||
|
||||
* Fri Jan 31 2020 Jindrich Novy <jnovy@redhat.com> - 1:4.8.24-4
|
||||
- fix gcc-10 build failure
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.8.24-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Mon Jan 27 2020 Jindrich Novy <jnovy@redhat.com> - 1:4.8.24-2
|
||||
- be sure to use /var/tmp instead of /tmp (#1795006)
|
||||
|
||||
* Mon Jan 20 2020 Jindrich Novy <jnovy@redhat.com> - 1:4.8.24-1
|
||||
- update to 4.8.24
|
||||
- drop merged tmpdir patch
|
||||
|
||||
* Wed Oct 09 2019 Jindrich Novy <jnovy@redhat.com> - 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 <jnovy@redhat.com> - 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 <jnovy@redhat.com> - 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 <jnovy@redhat.com> - 1:4.8.23-4
|
||||
- drop unneeded BR: perl-generators
|
||||
|
||||
* Sat Sep 28 2019 Tomasz Kłoczko <kloczek@fedoraproject.org> - 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 <jnovy@redhat.com> - 1:4.8.23-2
|
||||
- fix rpmlint warnings and simplify filelist
|
||||
|
||||
* Thu Aug 22 2019 Jindrich Novy <jnovy@redhat.com> - 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 <releng@fedoraproject.org> - 1:4.8.21-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.8.21-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.8.21-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Jun 07 2018 Tomasz Kłoczko <kloczek@fedoraproject.org> - 1:4.8.21-1
|
||||
- updated to 4.8.21
|
||||
|
||||
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:4.8.20-3
|
||||
- Escape macros in %%changelog
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.8.20-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Mon Jan 22 2018 Tomasz Kłoczko <kloczek@fedoraproject.org> - 1:4.8.20-1
|
||||
- updated to 4.8.20
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.8.19-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
@ -611,7 +769,7 @@ rm -f %{buildroot}%{_libexecdir}/mc/extfs.d/{s3+,uc1541}
|
||||
* Thu Mar 30 2006 Jindrich Novy <jnovy@redhat.com> 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
|
||||
once while in panels
|
||||
|
||||
* Tue Mar 28 2006 Jindrich Novy <jnovy@redhat.com> 4.6.1a-12
|
||||
- apply more robust version of FISH upload patch,
|
||||
@ -1190,7 +1348,7 @@ rm -f %{buildroot}%{_libexecdir}/mc/extfs.d/{s3+,uc1541}
|
||||
script
|
||||
|
||||
* Sat Sep 25 1999 Bill Nottingham <notting@redhat.com>
|
||||
- chkconfig --del in %%preun, not %postun
|
||||
- chkconfig --del in %%preun, not %%postun
|
||||
|
||||
* Wed Sep 22 1999 Michael Fulbright <drmike@redhat.com>
|
||||
- updated to 4.5.39-pre9
|
||||
@ -1306,16 +1464,13 @@ rm -f %{buildroot}%{_libexecdir}/mc/extfs.d/{s3+,uc1541}
|
||||
- Added more documentation files on termcap, terminfo, xterm
|
||||
|
||||
* Thu Oct 30 1997 Michael K. Johnson <johnsonm@redhat.com>
|
||||
|
||||
- Added dependency on portmap
|
||||
|
||||
* Wed Oct 29 1997 Michael K. Johnson <johnsonm@redhat.com>
|
||||
|
||||
- fixed spec file.
|
||||
- Updated to 4.1.8
|
||||
|
||||
* Sun Oct 26 1997 Tomasz Kłoczko <kloczek@rudy.mif.pg.gda.pl>
|
||||
|
||||
- updated to 4.1.6
|
||||
- added %%attr macros in %%files,
|
||||
- a few simplification in %%install,
|
||||
@ -1323,27 +1478,22 @@ rm -f %{buildroot}%{_libexecdir}/mc/extfs.d/{s3+,uc1541}
|
||||
- fixed installing %%{_sysconfdir}/X11/wmconfig/tkmc.
|
||||
|
||||
* Thu Oct 23 1997 Michael K. Johnson <johnsonm@redhat.com>
|
||||
|
||||
- updated to 4.1.5
|
||||
- added wmconfig
|
||||
|
||||
* Wed Oct 15 1997 Erik Troan <ewt@redhat.com>
|
||||
|
||||
- chkconfig is for mcserv package, not mc one
|
||||
|
||||
* Tue Oct 14 1997 Erik Troan <ewt@redhat.com>
|
||||
|
||||
- patched init script for chkconfig
|
||||
- don't turn on the service by default
|
||||
|
||||
* Fri Oct 10 1997 Michael K. Johnson <johnsonm@redhat.com>
|
||||
|
||||
- Converted to new PAM conventions.
|
||||
- Updated to 4.1.3
|
||||
- No longer needs glibc patch.
|
||||
|
||||
* Thu May 22 1997 Michele Marziani <marziani@fe.infn.it>
|
||||
|
||||
- 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)
|
||||
@ -1352,14 +1502,12 @@ rm -f %{buildroot}%{_libexecdir}/mc/extfs.d/{s3+,uc1541}
|
||||
- minor cleanup of spec file: redundant directives and comments removed
|
||||
|
||||
* Sun May 18 1997 Michele Marziani <marziani@fe.infn.it>
|
||||
|
||||
- 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 <kloczek@rudy.mif.pg.gda.pl>
|
||||
|
||||
- added new rpmfs script,
|
||||
- removed mcfn_install from mc (adding mc() to bash enviroment is in
|
||||
%%{_sysconfdir}/profile.d/mc.sh),
|
||||
@ -1368,25 +1516,21 @@ rm -f %{buildroot}%{_libexecdir}/mc/extfs.d/{s3+,uc1541}
|
||||
- removed %%{prefix}/lib/mc/term.
|
||||
|
||||
* Fri May 9 1997 Tomasz Kłoczko <kloczek@rudy.mif.pg.gda.pl>
|
||||
|
||||
- changed source url,
|
||||
- fixed link mcedit to mc,
|
||||
|
||||
* Wed May 7 1997 Tomasz Kłoczko <kloczek@rudy.mif.pg.gda.pl>
|
||||
|
||||
- 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 <kloczek@rudy.mif.pg.gda.pl>
|
||||
|
||||
- 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 <kloczek@rudy.mif.pg.gda.pl>
|
||||
|
||||
- added making packages: tkmc, mcserv (xmc not work yet),
|
||||
- gziped man pages,
|
||||
- added %%{_sysconfdir}/pamd.d/mcserv PAM config file.
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (mc-4.8.19.tar.xz) = aec49f0da1fc69099ce9b0f71926d1e9ee6df0be12f53da94a8f5f4266612515031cd02f328a458bf78260c5efb1c8ca2c34c89e20a77567c8b987e43d446531
|
||||
SHA512 (mc-4.8.31.tar.gz) = 94a8fc12654c42d2fb89749f436155d5e4815181dd9ecd85b1585e5a259a658c17376c4bdaf24b619397ff3727ab65a1b87e04a8b60d8778dc0de14b4ad327ed
|
||||
|
Loading…
Reference in New Issue
Block a user