forked from pool/ncurses
This commit is contained in:
parent
0365379eec
commit
d3986eed94
@ -3,3 +3,5 @@ libncurses5
|
|||||||
provides "ncurses-<targettype> = <version>"
|
provides "ncurses-<targettype> = <version>"
|
||||||
obsoletes "ncurses-<targettype> <= <version>"
|
obsoletes "ncurses-<targettype> <= <version>"
|
||||||
ncurses-devel
|
ncurses-devel
|
||||||
|
requires -ncurses-<targettype>
|
||||||
|
requires "libncurses5-<targettype> = <version>"
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 22 16:57:32 CEST 2008 - werner@suse.de
|
||||||
|
|
||||||
|
- Split ncurses into two separate packages ncurses-utils and
|
||||||
|
terminfo-base to get the resolvers happy (bnc#381293)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Apr 16 18:09:47 CEST 2008 - ro@suse.de
|
Wed Apr 16 18:09:47 CEST 2008 - ro@suse.de
|
||||||
|
|
||||||
|
64
ncurses.spec
64
ncurses.spec
@ -20,7 +20,7 @@ License: X11/MIT
|
|||||||
Group: System/Base
|
Group: System/Base
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 5.6
|
Version: 5.6
|
||||||
Release: 79
|
Release: 82
|
||||||
Summary: New curses Libraries
|
Summary: New curses Libraries
|
||||||
Source0: ncurses-5.6.tar.bz2
|
Source0: ncurses-5.6.tar.bz2
|
||||||
Url: http://invisible-island.net/ncurses/ncurses.html
|
Url: http://invisible-island.net/ncurses/ncurses.html
|
||||||
@ -50,6 +50,54 @@ characters, and panels.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
--------
|
||||||
|
Zeyd M. Ben-Halim <zmbenhal@netcom.com>
|
||||||
|
Eric S. Raymond <esr@thyrsus.com>
|
||||||
|
Thomas E. Dickey <dickey@invisible-island.net>
|
||||||
|
Juergen Pfeifer <Juergen.Pfeifer@t-online.de>
|
||||||
|
Pavel Curtis
|
||||||
|
|
||||||
|
%package -n ncurses-utils
|
||||||
|
License: X11/MIT
|
||||||
|
Summary: New curses Libraries
|
||||||
|
Group: System/Base
|
||||||
|
Provides: ncurses:%{_bindir}/tput
|
||||||
|
AutoReqProv: on
|
||||||
|
|
||||||
|
%description -n ncurses-utils
|
||||||
|
As soon as a text application needs to directly control its output to
|
||||||
|
the screen (if it wants to place the cursor at location (x,y) then
|
||||||
|
write text), ncurses is used. The panel and the forms libraries are
|
||||||
|
included in this package. These new libraries support color, special
|
||||||
|
characters, and panels.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
--------
|
||||||
|
Zeyd M. Ben-Halim <zmbenhal@netcom.com>
|
||||||
|
Eric S. Raymond <esr@thyrsus.com>
|
||||||
|
Thomas E. Dickey <dickey@invisible-island.net>
|
||||||
|
Juergen Pfeifer <Juergen.Pfeifer@t-online.de>
|
||||||
|
Pavel Curtis
|
||||||
|
|
||||||
|
%package -n terminfo-base
|
||||||
|
License: X11/MIT
|
||||||
|
Summary: New curses Libraries
|
||||||
|
Group: System/Base
|
||||||
|
Provides: ncurses:%{_datadir}/tabset
|
||||||
|
AutoReqProv: on
|
||||||
|
|
||||||
|
%description -n terminfo-base
|
||||||
|
As soon as a text application needs to directly control its output to
|
||||||
|
the screen (if it wants to place the cursor at location (x,y) then
|
||||||
|
write text), ncurses is used. The panel and the forms libraries are
|
||||||
|
included in this package. These new libraries support color, special
|
||||||
|
characters, and panels.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Authors:
|
Authors:
|
||||||
--------
|
--------
|
||||||
Zeyd M. Ben-Halim <zmbenhal@netcom.com>
|
Zeyd M. Ben-Halim <zmbenhal@netcom.com>
|
||||||
@ -62,8 +110,10 @@ Authors:
|
|||||||
License: X11/MIT
|
License: X11/MIT
|
||||||
Summary: The New curses Libraries
|
Summary: The New curses Libraries
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Provides: ncurses:/%{_lib}/libncurses.so.5
|
Requires: terminfo-base
|
||||||
Requires: ncurses
|
Provides: ncurses = %{version}
|
||||||
|
Obsoletes: ncurses < %{version}
|
||||||
|
Recommends: ncurses-utils = %{version}
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
|
|
||||||
%description -n libncurses5
|
%description -n libncurses5
|
||||||
@ -386,13 +436,16 @@ tar Oxfj %{SOURCE1} | patch -p1 -s
|
|||||||
|
|
||||||
%postun -n libncurses5 -p /sbin/ldconfig
|
%postun -n libncurses5 -p /sbin/ldconfig
|
||||||
|
|
||||||
%files -f default.list
|
%files -n terminfo-base -f default.list
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_sysconfdir}/termcap
|
%{_sysconfdir}/termcap
|
||||||
%config %{_miscdir}/termcap
|
%config %{_miscdir}/termcap
|
||||||
%dir %{_datadir}/tabset/
|
%dir %{_datadir}/tabset/
|
||||||
%dir %{_datadir}/terminfo/
|
%dir %{_datadir}/terminfo/
|
||||||
%dir %{_datadir}/terminfo/*/
|
%dir %{_datadir}/terminfo/*/
|
||||||
|
|
||||||
|
%files -n ncurses-utils
|
||||||
|
%defattr(-,root,root)
|
||||||
%{_bindir}/clear
|
%{_bindir}/clear
|
||||||
%{_bindir}/reset
|
%{_bindir}/reset
|
||||||
%{_bindir}/toe
|
%{_bindir}/toe
|
||||||
@ -441,6 +494,9 @@ tar Oxfj %{SOURCE1} | patch -p1 -s
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Apr 22 2008 werner@suse.de
|
||||||
|
- Split ncurses into two separate packages ncurses-utils and
|
||||||
|
terminfo-base to get the resolvers happy (bnc#381293)
|
||||||
* Wed Apr 16 2008 ro@suse.de
|
* Wed Apr 16 2008 ro@suse.de
|
||||||
- update baselibs.conf (for package rename)
|
- update baselibs.conf (for package rename)
|
||||||
* Fri Apr 11 2008 werner@suse.de
|
* Fri Apr 11 2008 werner@suse.de
|
||||||
|
Loading…
Reference in New Issue
Block a user