rpms/ncurses/devel ncurses-5.7-20100123-headerdeps.patch, NONE, 1.1 .cvsignore, 1.34, 1.35 ncurses.spec, 1.94, 1.95 sources, 1.34, 1.35 ncurses-5.7-20100116-transformdeps.patch, 1.1, NONE ncurses-5.7-20100116-wattrsetunused.patch, 1.1, NONE ncurses-5.7-20100116-windowlist.patch, 1.1, NONE

Miroslav Lichvar mlichvar at fedoraproject.org
Mon Jan 25 10:44:14 UTC 2010


Author: mlichvar

Update of /cvs/pkgs/rpms/ncurses/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv17259

Modified Files:
	.cvsignore ncurses.spec sources 
Added Files:
	ncurses-5.7-20100123-headerdeps.patch 
Removed Files:
	ncurses-5.7-20100116-transformdeps.patch 
	ncurses-5.7-20100116-wattrsetunused.patch 
	ncurses-5.7-20100116-windowlist.patch 
Log Message:
- update to patch 20100123
- remove AS_NEEDED from linker scripts


ncurses-5.7-20100123-headerdeps.patch:
 Makefile.in |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

--- NEW FILE ncurses-5.7-20100123-headerdeps.patch ---
diff -up ncurses-5.7/ncurses/Makefile.in.headerdeps ncurses-5.7/ncurses/Makefile.in
--- ncurses-5.7/ncurses/Makefile.in.headerdeps	2010-01-25 10:58:59.000000000 +0100
+++ ncurses-5.7/ncurses/Makefile.in	2010-01-25 11:06:59.000000000 +0100
@@ -157,10 +157,10 @@ AUTO_SRC = \
 HEADER_DEPS	= \
 	$(srcdir)/curses.priv.h \
 	$(INCDIR)/ncurses_dll.h \
-	$(INCDIR)/ncurses_cfg.h \
-	$(INCDIR)/curses.h \
+	../include/ncurses_cfg.h \
+	../include/curses.h \
 	$(INCDIR)/nc_panel.h \
-	$(INCDIR)/term.h \
+	../include/term.h \
 	$(INCDIR)/term_entry.h \
 	$(INCDIR)/nc_tparm.h \
 	$(INCDIR)/nc_alloc.h \


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/ncurses/devel/.cvsignore,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -p -r1.34 -r1.35
--- .cvsignore	18 Jan 2010 15:44:52 -0000	1.34
+++ .cvsignore	25 Jan 2010 10:44:14 -0000	1.35
@@ -1,3 +1,3 @@
 ncurses-5.7.tar.gz
 ncurses-5.7-20091107-patch.sh.bz2
-ncurses-5.7-20091114-20100116.patch.bz2
+ncurses-5.7-20091114-20100123.patch.bz2


Index: ncurses.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ncurses/devel/ncurses.spec,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -p -r1.94 -r1.95
--- ncurses.spec	20 Jan 2010 12:19:23 -0000	1.94
+++ ncurses.spec	25 Jan 2010 10:44:14 -0000	1.95
@@ -1,22 +1,20 @@
 Summary: Ncurses support utilities
 Name: ncurses
 Version: 5.7
-Release: 5.20100116%{?dist}
+Release: 6.20100123%{?dist}
 License: MIT
 Group: System Environment/Base
 URL: http://invisible-island.net/ncurses/ncurses.html
 Source0: ftp://invisible-island.net/ncurses/ncurses-%{version}.tar.gz
 
 Patch1: ncurses-5.7-20091107-patch.sh.bz2
-Patch2: ncurses-5.7-20091114-20100116.patch.bz2
+Patch2: ncurses-5.7-20091114-20100123.patch.bz2
 
 Patch8: ncurses-5.7-20100116-config.patch
 Patch9: ncurses-5.6-20070612-libs.patch
 Patch11: ncurses-5.6-20080112-urxvt.patch
 Patch12: ncurses-5.6-20080628-kbs.patch
-Patch13: ncurses-5.7-20100116-transformdeps.patch
-Patch14: ncurses-5.7-20100116-wattrsetunused.patch
-Patch15: ncurses-5.7-20100116-windowlist.patch
+Patch13: ncurses-5.7-20100123-headerdeps.patch
 BuildRequires: gpm-devel pkgconfig
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
@@ -100,9 +98,7 @@ The ncurses-static package includes stat
 %patch9 -p1 -b .libs
 %patch11 -p1 -b .urxvt
 %patch12 -p1 -b .kbs
-%patch13 -p1 -b .transformdeps
-%patch14 -p1 -b .wattrsetunused
-%patch15 -p1 -b .windowlist
+%patch13 -p1 -b .headerdeps
 
 # this will be in documentation, drop executable bits
 cp -p install-sh test
@@ -214,7 +210,7 @@ done
 for l in $RPM_BUILD_ROOT%{_libdir}/libncurses{,w}.so; do
     soname=$(basename $(readlink $l))
     rm -f $l
-    echo "INPUT(AS_NEEDED($soname -ltinfo))" > $l
+    echo "INPUT($soname -ltinfo)" > $l
 done
 
 rm -f $RPM_BUILD_ROOT%{_libdir}/libcurses{,w}.so
@@ -280,6 +276,10 @@ bzip2 NEWS
 rm -rf ${RPM_BUILD_ROOT}
 
 %changelog
+* Mon Jan 25 2010 Miroslav Lichvar <mlichvar at redhat.com> 5.7-6.20100123
+- update to patch 20100123
+- remove AS_NEEDED from linker scripts
+
 * Wed Jan 20 2010 Miroslav Lichvar <mlichvar at redhat.com> 5.7-5.20100116
 - fix narrow/wide libtinfo compatibility
 - fix wattrset macro to not produce warning with current gcc (#556645)


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/ncurses/devel/sources,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -p -r1.34 -r1.35
--- sources	18 Jan 2010 15:44:53 -0000	1.34
+++ sources	25 Jan 2010 10:44:14 -0000	1.35
@@ -1,3 +1,3 @@
 cce05daf61a64501ef6cd8da1f727ec6  ncurses-5.7.tar.gz
 7c840a1fa324d4e971414ae647600fc9  ncurses-5.7-20091107-patch.sh.bz2
-24d23995697e43d8a8429a7cd2bda7f6  ncurses-5.7-20091114-20100116.patch.bz2
+a1aaf2d921e6c0acae3866b5c535884a  ncurses-5.7-20091114-20100123.patch.bz2


--- ncurses-5.7-20100116-transformdeps.patch DELETED ---


--- ncurses-5.7-20100116-wattrsetunused.patch DELETED ---


--- ncurses-5.7-20100116-windowlist.patch DELETED ---



More information about the scm-commits mailing list