This commit is contained in:
parent
12eadb6f08
commit
200876bda7
@ -1,20 +0,0 @@
|
|||||||
--- src/files.c
|
|
||||||
+++ src/files.c
|
|
||||||
@@ -1518,7 +1518,7 @@
|
|
||||||
}
|
|
||||||
|
|
||||||
if (f_open == NULL) {
|
|
||||||
- fd_source = open(realname, O_RDONLY | O_CREAT);
|
|
||||||
+ fd_source = open(realname, O_RDONLY);
|
|
||||||
|
|
||||||
if (fd_source != -1) {
|
|
||||||
f_source = fdopen(fd_source, "rb");
|
|
||||||
@@ -1637,7 +1637,7 @@
|
|
||||||
int fd_source;
|
|
||||||
FILE *f_source = NULL;
|
|
||||||
|
|
||||||
- fd_source = open(tempname, O_RDONLY | O_CREAT);
|
|
||||||
+ fd_source = open(tempname, O_RDONLY);
|
|
||||||
|
|
||||||
if (fd_source != -1) {
|
|
||||||
f_source = fdopen(fd_source, "rb");
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b326debdad5145365c898ea5d4a9cd1d1ebfdf005758fb30eb0c7056fcfbf7cb
|
|
||||||
size 926527
|
|
3
nano-2.0.8.tar.bz2
Normal file
3
nano-2.0.8.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0db18ddca1b714c9eda8f4311b27e25c780a988b6d46511ce0af5f94f58f770f
|
||||||
|
size 948708
|
11
nano.changes
11
nano.changes
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Aug 26 22:23:00 CEST 2008 - cthiel@suse.de
|
||||||
|
|
||||||
|
- update to version 2.0.8
|
||||||
|
* GNU nano 2.0.8 is what she said. This release contains fixes for
|
||||||
|
several long standing issues, including: crashing when starting with too
|
||||||
|
small a window size, compilation fixes for AIX curses, crashes in the
|
||||||
|
help menu using some locales, and a fun issue where nano mistalenly
|
||||||
|
reports a successful file write on filesystems which are almost
|
||||||
|
completely full. Have at it.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon May 5 02:01:05 CEST 2008 - crrodriguez@suse.de
|
Mon May 5 02:01:05 CEST 2008 - crrodriguez@suse.de
|
||||||
|
|
||||||
|
27
nano.spec
27
nano.spec
@ -1,10 +1,17 @@
|
|||||||
#
|
#
|
||||||
# spec file for package nano (Version 2.0.7)
|
# spec file for package nano (Version 2.0.8)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
|
||||||
# package are under the same license as the package itself.
|
|
||||||
#
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
@ -18,10 +25,9 @@ License: GPL v3 or later
|
|||||||
Group: Productivity/Editors/Other
|
Group: Productivity/Editors/Other
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Summary: Pico Editor Clone with Enhancements
|
Summary: Pico Editor Clone with Enhancements
|
||||||
Version: 2.0.7
|
Version: 2.0.8
|
||||||
Release: 27
|
Release: 1
|
||||||
Source: %{name}-%{version}.tar.bz2
|
Source: %{name}-%{version}.tar.bz2
|
||||||
Patch: %{name}-2.0.6.patch
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
PreReq: %install_info_prereq
|
PreReq: %install_info_prereq
|
||||||
|
|
||||||
@ -43,7 +49,6 @@ Authors:
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="%optflags $(ncursesw-config --cflags)"
|
export CFLAGS="%optflags $(ncursesw-config --cflags)"
|
||||||
@ -76,6 +81,14 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/nano
|
%{_datadir}/nano
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Aug 27 2008 cthiel@suse.de
|
||||||
|
- update to version 2.0.8
|
||||||
|
* GNU nano 2.0.8 is what she said. This release contains fixes for
|
||||||
|
several long standing issues, including: crashing when starting with too
|
||||||
|
small a window size, compilation fixes for AIX curses, crashes in the
|
||||||
|
help menu using some locales, and a fun issue where nano mistalenly
|
||||||
|
reports a successful file write on filesystems which are almost
|
||||||
|
completely full. Have at it.
|
||||||
* Mon May 05 2008 crrodriguez@suse.de
|
* Mon May 05 2008 crrodriguez@suse.de
|
||||||
- fix for Feature No 300498 , use RPM_OPT_FLAGS everywhere.
|
- fix for Feature No 300498 , use RPM_OPT_FLAGS everywhere.
|
||||||
* Thu Apr 10 2008 cthiel@suse.de
|
* Thu Apr 10 2008 cthiel@suse.de
|
||||||
|
Loading…
Reference in New Issue
Block a user