forked from MidnightCommander/mc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ticket 1551: Update GPL version from 2 to 3
Signed-off-by: Slava Zanko <[email protected]>
- Loading branch information
Showing
243 changed files
with
5,911 additions
and
8,485 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ Name: mc | |
Version: %{mc_version} | ||
Release: %{mc_release}%{?dist} | ||
Epoch: 3 | ||
License: GPLv2 | ||
License: GPL3+ | ||
Group: System Environment/Shells | ||
Source0: %{name}-%{mc_tarball}.tar.gz | ||
|
||
|
@@ -154,6 +154,10 @@ rm -rf $RPM_BUILD_ROOT | |
%{_datadir}/mc/* | ||
|
||
%changelog | ||
|
||
* Fri Oct 14 2011 Slava Zanko <[email protected]> | ||
- Changed License version | ||
|
||
* Thu Jul 14 2011 Slava Zanko <[email protected]> | ||
- Added %{_libexecdir}/mc/fish directory to spec file | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,26 @@ | ||
/* Text conversion from one charset to another. | ||
/* | ||
Text conversion from one charset to another. | ||
Copyright (C) 2001, 2011 | ||
The Free Software Foundation, Inc. | ||
Written by: | ||
Walery Studennikov <[email protected]> | ||
Copyright (C) 2001 Walery Studennikov <[email protected]> | ||
This file is part of the Midnight Commander. | ||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation; either version 2 of the License, or | ||
(at your option) any later version. | ||
The Midnight Commander is free software: you can redistribute it | ||
and/or modify it under the terms of the GNU General Public License as | ||
published by the Free Software Foundation, either version 3 of the License, | ||
or (at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
The Midnight Commander is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
/** \file charsets.c | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,27 +2,26 @@ | |
Handle events in application. | ||
Interface functions: init/deinit; start/stop | ||
Copyright (C) 2011 The Free Software Foundation, Inc. | ||
Copyright (C) 2011 | ||
The Free Software Foundation, Inc. | ||
Written by: | ||
Slava Zanko <[email protected]>, 2011. | ||
This file is part of the Midnight Commander. | ||
The Midnight Commander is free software; you can redistribute it | ||
The Midnight Commander is free software: you can redistribute it | ||
and/or modify it under the terms of the GNU General Public License as | ||
published by the Free Software Foundation; either version 2 of the | ||
License, or (at your option) any later version. | ||
published by the Free Software Foundation, either version 3 of the License, | ||
or (at your option) any later version. | ||
The Midnight Commander is distributed in the hope that it will be | ||
useful, but WITHOUT ANY WARRANTY; without even the implied warranty | ||
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
General Public License for more details. | ||
The Midnight Commander is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
MA 02110-1301, USA. | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <config.h> | ||
|
@@ -53,8 +52,7 @@ mc_event_init (GError ** mcerror) | |
if (mc_event_grouplist != NULL) | ||
{ | ||
g_propagate_error (mcerror, | ||
g_error_new (MC_ERROR, 1, | ||
_("Event system already initialized"))); | ||
g_error_new (MC_ERROR, 1, _("Event system already initialized"))); | ||
return FALSE; | ||
} | ||
|
||
|
@@ -65,8 +63,7 @@ mc_event_init (GError ** mcerror) | |
if (mc_event_grouplist == NULL) | ||
{ | ||
g_propagate_error (mcerror, | ||
g_error_new (MC_ERROR, 2, | ||
_("Failed to initialize event system"))); | ||
g_error_new (MC_ERROR, 2, _("Failed to initialize event system"))); | ||
return FALSE; | ||
} | ||
|
||
|
@@ -80,9 +77,7 @@ mc_event_deinit (GError ** mcerror) | |
{ | ||
if (mc_event_grouplist == NULL) | ||
{ | ||
g_propagate_error (mcerror, | ||
g_error_new (MC_ERROR, 1, | ||
_("Event system not initialized"))); | ||
g_propagate_error (mcerror, g_error_new (MC_ERROR, 1, _("Event system not initialized"))); | ||
return FALSE; | ||
} | ||
|
||
|
@@ -113,7 +108,7 @@ mc_event_mass_add (event_init_t * events, GError ** mcerror) | |
/* --------------------------------------------------------------------------------------------- */ | ||
|
||
gboolean | ||
mc_event_present (const gchar *event_group_name, const gchar *event_name) | ||
mc_event_present (const gchar * event_group_name, const gchar * event_name) | ||
{ | ||
GTree *event_group; | ||
GPtrArray *callbacks; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,27 +2,26 @@ | |
Handle any events in application. | ||
Manage events: add, delete, destroy, search | ||
Copyright (C) 2011 The Free Software Foundation, Inc. | ||
Copyright (C) 2011 | ||
The Free Software Foundation, Inc. | ||
Written by: | ||
Slava Zanko <[email protected]>, 2011. | ||
This file is part of the Midnight Commander. | ||
The Midnight Commander is free software; you can redistribute it | ||
The Midnight Commander is free software: you can redistribute it | ||
and/or modify it under the terms of the GNU General Public License as | ||
published by the Free Software Foundation; either version 2 of the | ||
License, or (at your option) any later version. | ||
published by the Free Software Foundation, either version 3 of the License, | ||
or (at your option) any later version. | ||
The Midnight Commander is distributed in the hope that it will be | ||
useful, but WITHOUT ANY WARRANTY; without even the implied warranty | ||
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
General Public License for more details. | ||
The Midnight Commander is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
MA 02110-1301, USA. | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <config.h> | ||
|
@@ -208,7 +207,8 @@ mc_event_get_event_by_name (GTree * event_group, const gchar * event_name, gbool | |
/* --------------------------------------------------------------------------------------------- */ | ||
|
||
mc_event_callback_t * | ||
mc_event_is_callback_in_array (GPtrArray * callbacks, mc_event_callback_func_t event_callback, gpointer event_init_data) | ||
mc_event_is_callback_in_array (GPtrArray * callbacks, mc_event_callback_func_t event_callback, | ||
gpointer event_init_data) | ||
{ | ||
guint array_index; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,27 +2,26 @@ | |
Handle any events in application. | ||
Raise events. | ||
Copyright (C) 2011 The Free Software Foundation, Inc. | ||
Copyright (C) 2011 | ||
The Free Software Foundation, Inc. | ||
Written by: | ||
Slava Zanko <[email protected]>, 2011. | ||
This file is part of the Midnight Commander. | ||
The Midnight Commander is free software; you can redistribute it | ||
The Midnight Commander is free software: you can redistribute it | ||
and/or modify it under the terms of the GNU General Public License as | ||
published by the Free Software Foundation; either version 2 of the | ||
License, or (at your option) any later version. | ||
published by the Free Software Foundation, either version 3 of the License, | ||
or (at your option) any later version. | ||
The Midnight Commander is distributed in the hope that it will be | ||
useful, but WITHOUT ANY WARRANTY; without even the implied warranty | ||
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
General Public License for more details. | ||
The Midnight Commander is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
MA 02110-1301, USA. | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <config.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,27 +2,26 @@ | |
File highlight plugin. | ||
Interface functions | ||
Copyright (C) 2009 The Free Software Foundation, Inc. | ||
Copyright (C) 2009, 2011 | ||
The Free Software Foundation, Inc. | ||
Written by: | ||
Slava Zanko <[email protected]>, 2009. | ||
This file is part of the Midnight Commander. | ||
The Midnight Commander is free software; you can redistribute it | ||
The Midnight Commander is free software: you can redistribute it | ||
and/or modify it under the terms of the GNU General Public License as | ||
published by the Free Software Foundation; either version 2 of the | ||
License, or (at your option) any later version. | ||
published by the Free Software Foundation, either version 3 of the License, | ||
or (at your option) any later version. | ||
The Midnight Commander is distributed in the hope that it will be | ||
useful, but WITHOUT ANY WARRANTY; without even the implied warranty | ||
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
General Public License for more details. | ||
The Midnight Commander is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
MA 02110-1301, USA. | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <config.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,27 +2,26 @@ | |
File highlight plugin. | ||
Interface functions. get color pair index for highlighted file. | ||
Copyright (C) 2009 The Free Software Foundation, Inc. | ||
Copyright (C) 2009, 2011 | ||
The Free Software Foundation, Inc. | ||
Written by: | ||
Slava Zanko <[email protected]>, 2009. | ||
This file is part of the Midnight Commander. | ||
The Midnight Commander is free software; you can redistribute it | ||
The Midnight Commander is free software: you can redistribute it | ||
and/or modify it under the terms of the GNU General Public License as | ||
published by the Free Software Foundation; either version 2 of the | ||
License, or (at your option) any later version. | ||
published by the Free Software Foundation, either version 3 of the License, | ||
or (at your option) any later version. | ||
The Midnight Commander is distributed in the hope that it will be | ||
useful, but WITHOUT ANY WARRANTY; without even the implied warranty | ||
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
General Public License for more details. | ||
The Midnight Commander is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
MA 02110-1301, USA. | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <config.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,27 +2,26 @@ | |
File highlight plugin. | ||
Reading and parse rules from ini-files | ||
Copyright (C) 2009 The Free Software Foundation, Inc. | ||
Copyright (C) 2009, 2011 | ||
The Free Software Foundation, Inc. | ||
Written by: | ||
Slava Zanko <[email protected]>, 2009. | ||
This file is part of the Midnight Commander. | ||
The Midnight Commander is free software; you can redistribute it | ||
The Midnight Commander is free software: you can redistribute it | ||
and/or modify it under the terms of the GNU General Public License as | ||
published by the Free Software Foundation; either version 2 of the | ||
License, or (at your option) any later version. | ||
published by the Free Software Foundation, either version 3 of the License, | ||
or (at your option) any later version. | ||
The Midnight Commander is distributed in the hope that it will be | ||
useful, but WITHOUT ANY WARRANTY; without even the implied warranty | ||
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
General Public License for more details. | ||
The Midnight Commander is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
MA 02110-1301, USA. | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <config.h> | ||
|
Oops, something went wrong.