forked from pool/ncurses
Update to 6.1-20191130
OBS-URL: https://build.opensuse.org/package/show/Base:System/ncurses?expand=0&rev=456
This commit is contained in:
parent
f2649c3913
commit
099e074d85
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8ee2ee0f06f6451c52134856dc66a08375150a95234937b420e4ed29e9f2103e
|
||||
size 1907702
|
||||
oid sha256:09709a8087e69e620acfaaa70d7e8e6299a8f36ed7a7c795e1670f50cbe5735e
|
||||
size 1932814
|
||||
|
@ -1,3 +1,31 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 2 08:39:17 UTC 2019 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Add ncurses patch 20191130
|
||||
+ add portability section to curs_getcchar manpage (prompted by
|
||||
discussion with Nick Black).
|
||||
+ improve portability discussion of ACS characters in curs_addch
|
||||
manpage.
|
||||
+ improve typography for double-quotes in manpages.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 25 09:47:00 UTC 2019 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Add ncurses patch 20191123
|
||||
+ fix typo for MinGW rpm test-package.
|
||||
+ workaround in rpm specs for NFS problems in Fedora 31.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 07:52:56 UTC 2019 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Add ncurses patch 20191116
|
||||
+ modify ncurses/Makefile.in to fix a case where Debian/testing changes
|
||||
to the ld --as-needed configuration broke ncurses-examples test
|
||||
packages.
|
||||
+ drop library-dependency on psapi for MinGW port, since win_driver.c
|
||||
defines PSAPI_VERSION to 2, making it use GetProcessImageFileName
|
||||
from kernel32.dll (prompted by patch by Simon Sobish, cf: 20140503).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 15 13:15:43 UTC 2019 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
|
18
ncurses.spec
18
ncurses.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package ncurses
|
||||
#
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2019 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -629,11 +629,13 @@ mv tack-* tack
|
||||
# Make the test suite for ncursesw6
|
||||
#
|
||||
pushd test
|
||||
CFLAGS="$CFLAGS -I%{root}%{_incdir}" LDFLAGS="$LDFLAGS -Wl,-rpath-link=%{root}%{_libdir} -L%{root}%{_libdir}" \
|
||||
CFLAGS="$CFLAGS -I%{root}%{_incdir}/ncursesw/ -I%{root}%{_incdir}/" \
|
||||
LDFLAGS="$LDFLAGS -Wl,-rpath-link=%{root}%{_libdir} -L%{root}%{_libdir}" \
|
||||
LIBS="$LDFLAGS" \
|
||||
./configure --with-ncursesw --enable-widec --prefix=$PWD
|
||||
LD_LIBRARY_PATH=%{root}%{_libdir} \
|
||||
make %{?_smp_mflags} TEST_ARGS='-lformw -lmenuw -lpanelw -lncursesw -lticw -l%{soname_tinfo} -Wl,--as-needed'
|
||||
make install TEST_ARGS='-lformw -lmenuw -lpanelw -lncursesw -lticw -l%{soname_tinfo} -Wl,--as-needed'
|
||||
make %{?_smp_mflags} TEST_ARGS='-lformw -lmenuw -lpanelw -lncursesw -lticw -l%{soname_tinfo} -Wl,--as-needed' TEST_LIBS='-lutil -lpthread'
|
||||
make install TEST_ARGS='-lformw -lmenuw -lpanelw -lncursesw -lticw -l%{soname_tinfo} -Wl,--as-needed' TEST_LIBS='-lutil -lpthread'
|
||||
mv bin binw
|
||||
make distclean
|
||||
popd
|
||||
@ -769,11 +771,13 @@ mv tack-* tack
|
||||
# Make the test suite for ncurses6
|
||||
#
|
||||
pushd test
|
||||
CFLAGS="$CFLAGS -I%{root}%{_incdir}" LDFLAGS="$LDFLAGS -Wl,-rpath-link=%{root}%{_libdir} -L%{root}%{_libdir}" \
|
||||
CFLAGS="$CFLAGS -I%{root}%{_incdir}ncurses/ -I%{root}%{_incdir}/" \
|
||||
LDFLAGS="$LDFLAGS -Wl,-rpath-link=%{root}%{_libdir} -L%{root}%{_libdir}" \
|
||||
LIBS="$LDFLAGS" \
|
||||
./configure --with-ncurses --disable-widec --prefix=$PWD
|
||||
LD_LIBRARY_PATH=%{root}%{_libdir} \
|
||||
make %{?_smp_mflags} TEST_ARGS='-lform -lmenu -lpanel -lncurses -ltic -ltinfo -Wl,--as-needed'
|
||||
make install TEST_ARGS='-lform -lmenu -lpanel -lncurses -ltic -ltinfo -Wl,--as-needed'
|
||||
make %{?_smp_mflags} TEST_ARGS='-lform -lmenu -lpanel -lncurses -ltic -ltinfo -Wl,--as-needed' TEST_LIBS='-lutil -lpthread'
|
||||
make install TEST_ARGS='-lform -lmenu -lpanel -lncurses -ltic -ltinfo -Wl,--as-needed' TEST_LIBS='-lutil -lpthread'
|
||||
make distclean
|
||||
popd
|
||||
%endif
|
||||
|
Loading…
Reference in New Issue
Block a user