X-Git-Url: http://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=package%2Fncurses.spec;h=7ad1c6baf8c4e307bf95667cc338edd5e56a6e51;hb=e762b1bf39c1080e4155e0a592f22452130bdfc6;hp=9aebd1c40baae9c2d77740cba73fdca6c45863e7;hpb=8890c8f28a1db5995ef17f52a7d8c0b9cf574210;p=ncurses.git diff --git a/package/ncurses.spec b/package/ncurses.spec index 9aebd1c4..7ad1c6ba 100644 --- a/package/ncurses.spec +++ b/package/ncurses.spec @@ -1,14 +1,11 @@ Summary: shared libraries for terminal handling Name: ncurses6 -Version: 6.1 -Release: 20191207 +Version: 6.4 +Release: 20230520 License: X11 Group: Development/Libraries -Source: ncurses-%{version}-%{release}.tgz -# URL: https://invisible-island.net/ncurses/ - -%define CC_NORMAL -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wconversion -%define CC_STRICT %{CC_NORMAL} -W -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wnested-externs -Wpointer-arith -Wwrite-strings -ansi -pedantic +URL: https://invisible-island.net/ncurses/ +Source: https://invisible-island.net/archives/ncurses/ncurses-%{version}-%{release}.tgz %global MY_ABI 6 @@ -30,11 +27,17 @@ This package is used for testing ABI %{MY_ABI}. %prep %global is_mandriva %(test -f /etc/mandriva-release && echo 1 || echo 0) +%global is_fedora %(test -f /usr/bin/dnf && echo 1 || echo 0) +%global is_centos %(test -f /etc/centos-release && echo 1 || echo 0) %global is_redhat %(test -f /etc/redhat-release && echo 1 || echo 0) +%global is_scilinux %(test -f /etc/sl-release && echo 1 || echo 0) %global is_suse %(test -f /etc/SuSE-release && echo 1 || echo 0) -# nor are debug-symbols +%if %{is_redhat} +# generate debug/debug-source packages. +%else %define debug_package %{nil} +%endif %if %{is_mandriva} %define _disable_ld_as_needed 1 @@ -44,7 +47,7 @@ This package is used for testing ABI %{MY_ABI}. %define _disable_ld_build_id 1 %endif -%if %{is_redhat} +%if %{is_fedora} || %{is_scilinux} || %{is_centos} # workaround for toolset breakage in Fedora 28 %define _test_relink --enable-relink %else @@ -66,15 +69,18 @@ This package is used for testing ABI %{MY_ABI}. --disable-leaks \\\ --disable-macros \\\ --disable-overwrite \\\ - %{_test_relink} \\\ + --disable-root-access \\\ + --disable-root-environ \\\ + --disable-rpath \\\ --disable-termcap \\\ + %{_test_relink} \\\ --enable-hard-tabs \\\ --enable-opaque-curses \\\ --enable-opaque-form \\\ --enable-opaque-menu \\\ --enable-opaque-panel \\\ --enable-pc-files \\\ - --enable-rpath \\\ + --enable-stdnoreturn \\\ --enable-warnings \\\ --enable-wgetch-events \\\ --enable-widec \\\ @@ -100,8 +106,6 @@ This package is used for testing ABI %{MY_ABI}. --without-debug \\\ --without-normal -CFLAGS="%{CC_NORMAL}" \ -RPATH_LIST=../lib:%{_libdir} \ %configure %{CFG_OPTS} make @@ -113,13 +117,14 @@ make install.libs install.progs rm -f test/ncurses ( cd test && make ncurses LOCAL_LIBDIR=%{_libdir} && mv ncurses $RPM_BUILD_ROOT/%{_bindir}/ncurses%{MY_ABI} ) -%clean -if rm -rf $RPM_BUILD_ROOT; then - echo OK -else - find $RPM_BUILD_ROOT -type f | grep -F -v /.nfs && exit 1 -fi -exit 0 +%if %{is_mandriva} +# check this first because Mageia has the /etc/redhat-release file... +%else +%if %{is_fedora} +%ldconfig_scriptlets libs +%ldconfig_scriptlets c++-libs +%endif +%endif %files %defattr(-,root,root,-) @@ -129,6 +134,17 @@ exit 0 %changelog +* Sat Feb 25 2023 Thomas Dickey +- amend URLs per rpmlint + +* Sat Oct 16 2021 Thomas Dickey +- disable rpath to address QA_RPATHS=1 warning. + +* Tue Dec 24 2019 Thomas Dickey +- drop custom CC_NORMAL warning flags because setting CFLAGS interferes with + matching Fedora's PIE/PIC configuration. Also, generate debug/debug-source + packages. + * Sat Nov 16 2019 Thomas Dickey - modify clean-rule to work around Fedora NFS bugs.