ncurses-vl.spec 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644
  1. %global revision 20210731
  2. %define includedirw %{_includedir}/ncursesw
  3. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  4. Summary: A screen handling and optimization package.
  5. Summary(ja): スクリーンの操作と最適化を行うパッケージ
  6. Name: ncurses
  7. Version: 6.2
  8. Release: 2%{?_dist_release}
  9. Group: system
  10. Vendor: Project Vine
  11. Distribution: Vine Linux
  12. Packager: daisuke
  13. License: distributable
  14. URL: https://invisible-island.net/ncurses/ncurses.html
  15. Source0: https://invisible-mirror.net/archives/ncurses/current/ncurses-%{version}-%{revision}.tgz
  16. Patch8: ncurses-config.patch
  17. Patch9: ncurses-libs.patch
  18. Patch11: ncurses-urxvt.patch
  19. Patch12: ncurses-kbs.patch
  20. Requires(post): /sbin/ldconfig
  21. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  22. BuildRequires: pkgconfig
  23. %description
  24. The curses library routines are a terminal-independent method of
  25. updating character screens with reasonable optimization. The ncurses
  26. (new curses) library is a freely distributable replacement for the
  27. discontinued 4.4 BSD classic curses library.
  28. %package devel
  29. Summary: The development files for applications which use ncurses.
  30. Summary(ja): ncurses を用いるアプリケーション開発用のファイル
  31. Group: programming
  32. Requires: %{name} = %{version}-%{release}
  33. Obsoletes: libtermcap-devel <= 2.0.8-46vl1
  34. Provides: libtermcap-devel = 2.0.8-47
  35. %description devel
  36. The header files and libraries for developing applications that use
  37. the ncurses CRT screen handling and optimization package.
  38. Install the ncurses-devel package if you want to develop applications
  39. which will use ncurses.
  40. Use the following compiler flags to build against the ncurses library:
  41. -lncurses
  42. (compile and link against the regular ncurses library)
  43. -I %{includedirw} -lncursesw
  44. (compile and link against the wide-character, UTF-8, library)
  45. %package c++-devel
  46. Summary: C++ bindings to ncurses
  47. Group: programming
  48. Requires: %{name} = %{version}-%{release}
  49. Requires: %{name}-devel = %{version}-%{release}
  50. %description c++-devel
  51. C++ bindings to ncurses
  52. %package -n compat32-%{name}
  53. Summary: A screen handling and optimization package.
  54. Summary(ja): スクリーンの操作と最適化を行うパッケージ
  55. Group: system
  56. Requires: %{name} = %{version}-%{release}
  57. %description -n compat32-%{name}
  58. The curses library routines are a terminal-independent method of
  59. updating character screens with reasonable optimization. The ncurses
  60. (new curses) library is a freely distributable replacement for the
  61. discontinued 4.4 BSD classic curses library.
  62. %package -n compat32-%{name}-devel
  63. Summary: The development files for applications which use ncurses.
  64. Summary(ja): ncurses を用いるアプリケーション開発用のファイル
  65. Group: programming
  66. Requires: compat32-%{name} = %{version}-%{release}
  67. Requires: %{name}-devel = %{version}-%{release}
  68. Obsoletes: compat32-libtermcap-devel <= 2.0.8-46vl1
  69. Provides: compat32-libtermcap-devel = 2.0.8-47
  70. %description -n compat32-%{name}-devel
  71. The header files and libraries for developing applications that use
  72. the ncurses CRT screen handling and optimization package.
  73. Install the ncurses-devel package if you want to develop applications
  74. which will use ncurses.
  75. Use the following compiler flags to build against the ncurses library:
  76. -lncurses
  77. (compile and link against the regular ncurses library)
  78. -I %{includedirw} -lncursesw
  79. (compile and link against the wide-character, UTF-8, library)
  80. %package -n compat32-%{name}-c++-devel
  81. Summary: C++ bindings to ncurses
  82. Group: programming
  83. Requires: compat32-%{name} = %{version}-%{release}
  84. Requires: compat32-%{name}-devel = %{version}-%{release}
  85. Requires: %{name}-c++-devel = %{version}-%{release}
  86. %description -n compat32-%{name}-c++-devel
  87. C++ bindings to ncurses
  88. %debug_package
  89. %prep
  90. %setup -q -n %{name}-%{version}-%{revision}
  91. #%patch8 -p1 -b .config
  92. %patch9 -p1 -b .libs
  93. %patch11 -p1 -b .urxvt
  94. %patch12 -p1 -b .kbs
  95. for f in ANNOUNCE; do
  96. iconv -f iso8859-1 -t utf8 -o ${f}{_,} &&
  97. touch -r ${f}{,_} && mv -f ${f}{_,}
  98. done
  99. %build
  100. %define rootdatadir /lib
  101. common_options=" \
  102. --enable-colorfgbg \
  103. --enable-hard-tabs \
  104. --enable-overwrite \
  105. --enable-pc-files \
  106. --enable-xmc-glitch \
  107. --disable-stripping \
  108. --disable-wattr-macros \
  109. --with-ospeed=unsigned \
  110. --with-pkg-config-libdir=%{_libdir}/pkgconfig \
  111. --with-shared \
  112. --with-terminfo-dirs=%{_sysconfdir}/terminfo:%{_datadir}/terminfo:%{rootdatadir}/terminfo \
  113. --with-termlib=tinfo \
  114. --with-ticlib=tic \
  115. --with-xterm-kbs=DEL \
  116. --without-ada"
  117. abi5_options="--with-chtype=long"
  118. for abi in 5 6; do
  119. for char in narrowc widec; do
  120. mkdir $char$abi
  121. pushd $char$abi
  122. ln -s ../configure .
  123. [ $abi = 6 -a $char = widec ] && progs=yes || progs=no
  124. %configure $(
  125. echo $common_options --with-abi-version=$abi
  126. [ $abi = 5 ] && echo $abi5_options
  127. [ $char = widec ] && echo --enable-widec
  128. [ $progs = yes ] || echo --without-progs
  129. )
  130. make %{?_smp_mflags} libs
  131. [ $progs = yes ] && make %{?_smp_mflags} -C progs
  132. popd
  133. done
  134. done
  135. %install
  136. rm -rf ${RPM_BUILD_ROOT}
  137. make -C narrowc5 DESTDIR=$RPM_BUILD_ROOT install.libs
  138. rm ${RPM_BUILD_ROOT}%{_libdir}/lib{tic,tinfo}.so.5*
  139. make -C widec5 DESTDIR=$RPM_BUILD_ROOT install.libs
  140. make -C narrowc6 DESTDIR=$RPM_BUILD_ROOT install.libs
  141. rm ${RPM_BUILD_ROOT}%{_libdir}/lib{tic,tinfo}.so.6*
  142. make -C widec6 DESTDIR=$RPM_BUILD_ROOT install.{libs,progs,data,includes,man}
  143. chmod 755 ${RPM_BUILD_ROOT}%{_libdir}/lib*.so.*.*
  144. chmod 644 ${RPM_BUILD_ROOT}%{_libdir}/lib*.a
  145. # move lib{ncurses{,w},tinfo}.so.* to /lib*
  146. mkdir $RPM_BUILD_ROOT/%{_lib}
  147. mv $RPM_BUILD_ROOT%{_libdir}/lib{ncurses{,w},tinfo}.so.* $RPM_BUILD_ROOT/%{_lib}
  148. for l in $RPM_BUILD_ROOT%{_libdir}/lib{ncurses{,w},tinfo}.so; do
  149. ln -sf $(echo %{_libdir} | \
  150. sed 's,\(^/\|\)[^/][^/]*,..,g')/%{_lib}/$(readlink $l) $l
  151. done
  152. mkdir -p $RPM_BUILD_ROOT{%{rootdatadir},%{_sysconfdir}}/terminfo
  153. # move few basic terminfo entries to /lib
  154. baseterms=
  155. for termname in \
  156. ansi dumb linux vt100 vt100-nav vt102 vt220 vt52
  157. do
  158. for t in $(find $RPM_BUILD_ROOT%{_datadir}/terminfo \
  159. -samefile $RPM_BUILD_ROOT%{_datadir}/terminfo/${termname::1}/$termname)
  160. do
  161. baseterms="$baseterms $(basename $t)"
  162. done
  163. done
  164. for termname in $baseterms; do
  165. termpath=terminfo/${termname::1}/$termname
  166. mkdir $RPM_BUILD_ROOT%{rootdatadir}/terminfo/${termname::1} &> /dev/null || :
  167. mv $RPM_BUILD_ROOT%{_datadir}/$termpath $RPM_BUILD_ROOT%{rootdatadir}/$termpath
  168. ln -s $(dirname %{_datadir}/$termpath | \
  169. sed 's,\(^/\|\)[^/][^/]*,..,g')%{rootdatadir}/$termpath \
  170. $RPM_BUILD_ROOT%{_datadir}/$termpath
  171. done
  172. # prepare -base and -term file lists
  173. for termname in \
  174. ansi dumb linux vt100 vt100-nav vt102 vt220 vt52 \
  175. Eterm\* aterm bterm cons25 cygwin eterm\* gnome gnome-256color hurd jfbterm \
  176. konsole konsole-256color mach\* mlterm mrxvt nsterm putty{,-256color} pcansi \
  177. rxvt{,-\*} screen{,-\*color,.[^mlp]\*,.linux,.mlterm\*,.putty{,-256color},.mrxvt} \
  178. st{,-\*color} sun teraterm teraterm2.3 tmux{,-\*} vte vte-256color vwmterm \
  179. wsvt25\* xfce xterm xterm-\*
  180. do
  181. for i in $RPM_BUILD_ROOT%{_datadir}/terminfo/?/$termname; do
  182. for t in $(find $RPM_BUILD_ROOT%{_datadir}/terminfo -samefile $i); do
  183. baseterms="$baseterms $(basename $t)"
  184. done
  185. done
  186. done 2> /dev/null
  187. for t in $baseterms; do
  188. echo "%dir %{_datadir}/terminfo/${t::1}"
  189. echo %{_datadir}/terminfo/${t::1}/$t
  190. done 2> /dev/null | sort -u > terms.base
  191. find $RPM_BUILD_ROOT%{_datadir}/terminfo \! -type d | \
  192. sed "s|^$RPM_BUILD_ROOT||" | while read t
  193. do
  194. echo "%dir $(dirname $t)"
  195. echo $t
  196. done 2> /dev/null | sort -u | comm -2 -3 - terms.base > terms.term
  197. cat terms.base terms.term |sort -u > terms.all
  198. # can't replace directory with symlink (rpm bug), symlink all headers
  199. mkdir $RPM_BUILD_ROOT%{_includedir}/ncurses{,w}
  200. for l in $RPM_BUILD_ROOT%{_includedir}/*.h; do
  201. ln -s ../$(basename $l) $RPM_BUILD_ROOT%{_includedir}/ncurses
  202. ln -s ../$(basename $l) $RPM_BUILD_ROOT%{_includedir}/ncursesw
  203. done
  204. # don't require -ltinfo when linking with --no-add-needed
  205. for l in $RPM_BUILD_ROOT%{_libdir}/libncurses{,w}.so; do
  206. soname=$(basename $(readlink $l))
  207. rm -f $l
  208. echo "INPUT($soname -ltinfo)" > $l
  209. done
  210. rm -f $RPM_BUILD_ROOT%{_libdir}/libcurses{,w}.so
  211. echo "INPUT(-lncurses)" > $RPM_BUILD_ROOT%{_libdir}/libcurses.so
  212. echo "INPUT(-lncursesw)" > $RPM_BUILD_ROOT%{_libdir}/libcursesw.so
  213. echo "INPUT(-ltinfo)" > $RPM_BUILD_ROOT%{_libdir}/libtermcap.so
  214. rm -f ${RPM_BUILD_ROOT}%{_libdir}/terminfo
  215. #rm -f $RPM_BUILD_ROOT%{_libdir}/pkgconfig/{*_g,ncurses++*}.pc
  216. %files -f terms.all
  217. %defattr(-,root,root)
  218. %license COPYING
  219. %doc ANNOUNCE AUTHORS README TO-DO
  220. %{_bindir}/[cirt]*
  221. %{_mandir}/man1/*
  222. %{_mandir}/man5/*
  223. %{_mandir}/man7/*
  224. /%{_lib}/lib*.so.*
  225. %{_libdir}/lib*.so.*
  226. %dir %{_sysconfdir}/terminfo
  227. %{rootdatadir}/terminfo
  228. %{_datadir}/tabset
  229. %dir %{_datadir}/terminfo
  230. %files devel
  231. %defattr(-,root,root)
  232. %doc test
  233. %doc doc/html/hackguide.html
  234. %doc doc/html/ncurses-intro.html
  235. %doc c++/README*
  236. %{_bindir}/ncurses*-config
  237. %{_libdir}/lib*.so
  238. %{_libdir}/lib*.a
  239. %dir %{_includedir}/ncurses
  240. %dir %{_includedir}/ncursesw
  241. %{_includedir}/ncurses/*.h
  242. %{_includedir}/ncursesw/*.h
  243. %{_includedir}/*.h
  244. %{_mandir}/man3/*
  245. %{_libdir}/pkgconfig/*.pc
  246. %exclude %{_libdir}/pkgconfig/ncurses++*.pc
  247. %files c++-devel
  248. %defattr(-,root,root)
  249. %doc c++/NEWS c++/PROBLEMS c++/README*
  250. %{_includedir}/ncurses/cursesapp.h
  251. %{_includedir}/ncurses/curses?.h
  252. %{_includedir}/ncurses/etip.h
  253. %{_libdir}/libncurses++.a
  254. %{_libdir}/libncurses++w.a
  255. %{_libdir}/pkgconfig/ncurses++*.pc
  256. %if %{build_compat32}
  257. %files -n compat32-%{name}
  258. %defattr(-,root,root)
  259. %attr(755,root,root) %{_libdir}/lib*.so.*
  260. /%{_lib}/lib*.so.*
  261. %{_libdir}/lib*.so.*
  262. %files -n compat32-%{name}-devel
  263. %defattr(-,root,root)
  264. %{_libdir}/lib*.so
  265. %{_libdir}/lib*.a
  266. %{_libdir}/pkgconfig/*.pc
  267. %exclude %{_libdir}/pkgconfig/ncurses++*.pc
  268. %files -n compat32-%{name}-c++-devel
  269. %defattr(-,root,root)
  270. %{_libdir}/libncurses++.a
  271. %{_libdir}/libncurses++w.a
  272. %{_libdir}/pkgconfig/ncurses++*.pc
  273. %endif
  274. %clean
  275. rm -rf $RPM_BUILD_ROOT
  276. %changelog
  277. * Thu Aug 05 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.2-2
  278. - updated to 6.2 + 20210731.
  279. - dropped ldconfig scriptlets.
  280. - updated Patch9, 11 and 12.
  281. * Mon Feb 15 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.2-1
  282. - updated to 6.2 + 20210213.
  283. - updated Patch9 and 12.
  284. * Sun Oct 27 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1-3
  285. - dropped Patch8.
  286. * Fri Oct 18 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1-2
  287. - updated to 6.1 + 20191015.
  288. - updated Patch8.
  289. * Fri Aug 30 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 6.1-1
  290. - updated to 6.1 + 20190824.
  291. * Mon Jan 13 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 5.9-3
  292. - rebuild with VineSeed environment
  293. * Wed Dec 14 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 5.9-2
  294. - don't require -ltinfo when linking with --no-add-needed
  295. * Fri Sep 09 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 5.9-1
  296. - update to 5.9 + 20110716
  297. - update all patches
  298. - add pkgconfig file
  299. * Sun Mar 27 2011 IWAI, Masaharu <iwai@alib.jp> 5.6-5
  300. - build with new toolchain
  301. * Fri Mar 5 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 5.6-4
  302. - rebuilt with new toolchain
  303. - add Requires(post,pre): /sbin/ldconfig
  304. * Sat Jun 27 2009 NAKAMURA Kenta <kenta@vinelinux.org> 5.6-3
  305. - updated %%files section on compat32-* packages
  306. * Sun Mar 22 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.6-2
  307. - changed c++-devel Group to Development/Libraries
  308. - changelog of 5.6-1 is missing... seemed to be updated on Aug 10 2008
  309. * Fri Oct 28 2005 NAKAMURA Kenta <kenta@c.csce.kyushu-u.ac.jp> 5.4-0vl3
  310. - added compat32- packages for x86_64 architecture support
  311. * Mon May 17 2004 Tomoya TAKA <taka@vinelinux.org> 5.4-0vl2
  312. - add patch10 taken from fedora's 5.4-4
  313. * Sun May 9 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 5.4-0vl1
  314. - new upstream release
  315. - remove obsolete patches
  316. * Mon Mar 22 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 5.3-9vl1
  317. - synced up with Fedora 5.3-9
  318. - Thu Sep 11 2003 Adrian Havill <havill@redhat.com> 5.3-9
  319. - remove not-so safe-sprintf configure option because the code does
  320. not appear to be stable enough for some apps. (#103790)
  321. - Wed Aug 20 2003 Adrian Havill <havill@redhat.com> 5.3-8.1
  322. - RHEL bump
  323. - Wed Aug 20 2003 Adrian Havill <havill@redhat.com> 5.3-8
  324. - multilib patch (#91211)
  325. - Mon Aug 11 2003 Adrian Havill <havill@redhat.com> 5.3-7
  326. - fixed the safe sprintf code that was enabled in the previous release
  327. by the configure parameter. (#101486)
  328. - Mon Jun 16 2003 Elliot Lee <sopwith@redhat.com> 5.3-6.1
  329. - Fix ac25 patch, make it easy to turn off GPM support
  330. - Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
  331. - rebuilt
  332. - Thu May 22 2003 Adrian Havill <havill@redhat.com> 5.3-5
  333. - added latest rollup patch with widec/UTF8 centric weekly (20030517)
  334. - added --enable-widec to configure (#86311)
  335. original work done by Mr. Sam <sam@email-scan.com>
  336. - require sharutils (#86605)
  337. - add gpm, xmc support
  338. - add debug syms back into package
  339. - updated autoconf/configure patch
  340. * Thu Mar 27 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 5.3-4vl1
  341. - synced Rawhide 5.3-4
  342. * Fri Feb 08 2002 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 5.2-16vl2
  343. - revert to patch13 from 14 for XF86-4
  344. * Wed Feb 06 2002 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 5.2-16vl1
  345. - synced Rawhide 5.2-16
  346. * Tue Aug 28 2001 Shoji Matsumoto <shom@vinelinux.org> 5.2-12vl2
  347. - patch 3 (xterm) disabled. this patch is for XF86-4???
  348. * Wed Aug 22 2001 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 5.2-12vl1
  349. - added kon patch for Vine
  350. * Fri Jul 20 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-12
  351. - Sync terminfo with termcap 11.0.1-10
  352. * Sun Jun 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.2-11
  353. - Update to patchlevel 20010623, fixes some lynx issues
  354. * Mon Jun 18 2001 Helge Deller <hdeller@redhat.de>
  355. - fixed tput -S segfaulting bug (#44669)
  356. - use _tmppath for BuildRoot:
  357. - Copyright -> License
  358. * Sun Apr 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  359. - Update to patchlevel 20010407
  360. * Tue Mar 6 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  361. - Fix up some terminfo entries containing includes to
  362. "/var/tmp/ncurses-root/something" (#30771)
  363. * Thu Feb 22 2001 Harald Hoyer <harald@redhat.de>
  364. - fixed rxvt backspace setting
  365. * Fri Feb 9 2001 Yukihiro Nakai <ynakai@redhat.com>
  366. - Update Japanese kterm patch
  367. * Mon Jan 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  368. - Update
  369. - Add japanese patch from termcap
  370. - Fix ospeed handling
  371. * Mon Jan 1 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  372. - Add libcurses.a -> libncurses.a symlink (RFE #23023)
  373. * Tue Dec 12 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  374. - Use --with-ospeed='unsigned int'
  375. * Fri Nov 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  376. - Fix alpha and ia64
  377. - Rebuild with gcc 2.96-64
  378. * Thu Nov 2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  379. - 5.2
  380. - Fix typo in man page (Bug #20205)
  381. - update the "screen" terminfo entries to the version supplied with
  382. screen 3.9.8
  383. * Mon Oct 9 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  384. - Update (fixes the "make menuconfig" bug introduced by the security fix)
  385. * Tue Oct 3 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  386. - Fix security problem (possible buffer overrun)
  387. * Fri Aug 4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  388. - Add the bugfix patches from the ncurses maintainer
  389. * Thu Jul 13 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  390. - 5.1
  391. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  392. - automatic rebuild
  393. * Mon Jun 5 2000 Matt Wilson <msw@redhat.com>
  394. - *don't ship symlinks from lib*.so.5 to lib*.so.4!
  395. - use FHS macros
  396. * Fri Jun 2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  397. - rebuild for 7.0
  398. - /usr/share/man
  399. - update URL for patches
  400. - misc. fixes to spec file
  401. * Mon Mar 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  402. - use the real library version number
  403. - update to 20000319
  404. * Tue Mar 7 2000 Jeff Johnson <jbj@redhat.com>
  405. - rebuild for sparc baud rates > 38400.
  406. * Fri Feb 18 2000 Preston Brown <pbrown@redhat.com>
  407. - xterm terminfo entries from XFree86 3.3.6
  408. - final round of xterm fixes, follow debian policy.
  409. * Sat Feb 5 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  410. - strip libraries
  411. * Thu Feb 3 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  412. - More xterm fixes (Bug #9087)
  413. * Thu Jan 27 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  414. - More xterm fixes from Hans de Goede (Bug #8633)
  415. * Sat Jan 15 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  416. - remove some broken symlinks (leftovers from libncurses.so.5)
  417. - Use %configure (Bug #8484)
  418. * Tue Jan 11 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  419. - Add xterm patch from Hans de Goede <hans@highrise.nl>
  420. - Patch 20000108, this fixes a problem with a header file.
  421. * Wed Jan 5 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  422. - Add 20000101 patch, hopefully finally fixing the xterm description
  423. * Wed Dec 22 1999 Cristian Gafton <gafton@redhat.com>
  424. - revert to the old major number - because the ABI is not changed (and we
  425. should be handling the changes via symbol versioning anyway)
  426. * Fri Nov 12 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  427. - Fix a typo in spec
  428. - Add the 19991006 patch, fixing some C++ STL compatibility problems.
  429. - get rid of profiling and debugging versions - we need to save space...
  430. * Thu Nov 4 1999 Bernhard Rosenkraenzer <bero@redhat.com>
  431. - 5.0
  432. - some spec cleanups to make updating easier
  433. - add links *.so.5 to *.so.4 - they are fully binary compatible.
  434. (Why did they change the invocation number???)
  435. * Wed Sep 22 1999 Cristian Gafton <gafton@redhat.com>
  436. - make clean in the test dir - don't ship any binaries at all.
  437. * Mon Sep 13 1999 Preston Brown <pbrown@redhat.com>
  438. - fixed stripping of test programs.
  439. * Sun Aug 29 1999 Preston Brown <pbrown@redhat.com>
  440. - removed 'flash' capability for xterm; see bug #2820 for details.
  441. * Fri Aug 27 1999 Cristian Gafton <gafton@redhat.com>
  442. - add the resetall script from Marc Merlin <marc@merlins.org>
  443. * Fri Aug 27 1999 Preston Brown <pbrown@redhat.com>
  444. - added iris-ansi-net as alias for iris-ansi (bug #2561)
  445. * Fri Jul 30 1999 Michael K. Johnson <johnsonm@redhat.com>
  446. - added ncurses-intro.hmtl and hackguide.html to -devel package [bug #3929]
  447. * Tue Apr 06 1999 Preston Brown <pbrown@redhat.com>
  448. - make sure ALL binaries are stripped (incl. test binaries)
  449. * Thu Mar 25 1999 Preston Brown <pbrown@redhat.com>
  450. - made xterm terminfo stuff MUCH better.
  451. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  452. - auto rebuild in the new build environment (release 16)
  453. * Sat Mar 13 1999 Cristian Gafton <gafton@redhat.com>
  454. - fixed header for C++ compiles
  455. * Fri Mar 12 1999 Jeff Johnson <jbj@redhat.com>
  456. - add terminfo entries for linux/linux-m on sparc (obsolete termfile_sparc).
  457. * Thu Feb 18 1999 Cristian Gafton <gafton@redhat.com>
  458. - updated patchset from original site
  459. * Thu Dec 03 1998 Cristian Gafton <gafton@redhat.com>
  460. - don't build the C++ demo code
  461. - update patch set to the current as of today (redid all the individual
  462. patches in a single one)
  463. * Wed Oct 14 1998 Cristian Gafton <gafton@redhat.com>
  464. - make sure to strip the binaries
  465. * Wed Sep 23 1998 Cristian Gafton <gafton@redhat.com>
  466. - added another zillion of patches. The spec file *is* ugly
  467. - defattr
  468. * Mon Jul 20 1998 Cristian Gafton <gafton@redhat.com>
  469. - added lots of patches. This spec file is starting to look ugly
  470. * Wed Jul 01 1998 Alan Cox <alan@redhat.com>
  471. - Fix setuid trusting. Open termcap/info files as the real user.
  472. * Wed May 06 1998 Cristian Gafton <gafton@redhat.com>
  473. - added terminfo entry for the poor guys using lat1 and/or lat-2 on their
  474. consoles... Enjoy linux-lat ! Thanks, Erik !
  475. * Tue Apr 21 1998 Cristian Gafton <gafton@redhat.com>
  476. - new patch to get xterm-color and nxterm terminfo entries
  477. - aliased them to rxvt, as that seems to satisfy everybody
  478. * Sun Apr 12 1998 Cristian Gafton <gafton@redhat.com>
  479. - added %clean section
  480. * Tue Apr 07 1998 Cristian Gafton <gafton@redhat.com>
  481. - removed /usr/lib/terminfo symlink - we shouldn't need that
  482. * Mon Apr 06 1998 Cristian Gafton <gafton@redhat.com>
  483. - updated to 4.2 + patches
  484. - added BuildRoot
  485. * Sat Apr 04 1998 Cristian Gafton <gafton@redhat.com>
  486. - rebuilt with egcs on alpha
  487. * Wed Dec 31 1997 Erik Troan <ewt@redhat.com>
  488. - version 7 didn't rebuild properly on the Alpha somehow -- no real changes
  489. are in this version
  490. * Tue Dec 09 1997 Erik Troan <ewt@redhat.com>
  491. - TIOCGWINSZ wasn't used properly
  492. * Tue Jul 08 1997 Erik Troan <ewt@redhat.com>
  493. - built against glibc, linked shared libs against -lc