rpms/conserver/devel conserver-manperms.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 conserver.spec, 1.5, 1.6 sources, 1.3, 1.4

Patrick Laughton (jima) fedora-extras-commits at redhat.com
Wed Apr 11 19:31:27 UTC 2007


Author: jima

Update of /cvs/extras/rpms/conserver/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv32720

Modified Files:
	.cvsignore conserver.spec sources 
Added Files:
	conserver-manperms.patch 
Log Message:

* Wed Apr 11 2007 Patrick "Jima" Laughton <jima at beer.tclug.org> 8.1.16-1
- New upstream release with "certainly important" bugfix
- Removed URLs from patch lines (it's all in CVS)
- Added patch to fix man page permissions (755 -> 644)
- rpmlint's "mixed-use-of-spaces-and-tabs" is mostly a false positive


conserver-manperms.patch:

--- NEW FILE conserver-manperms.patch ---
--- conserver-8.1.16/conserver.cf/Makefile.in.orig	2007-04-11 14:04:28.000000000 -0500
+++ conserver-8.1.16/conserver.cf/Makefile.in	2007-04-11 14:06:51.000000000 -0500
@@ -23,7 +23,7 @@
 
 install:
 	$(MKDIR) $(DESTDIR)$(mandir)/man5
-	$(INSTALL) conserver.cf.man $(DESTDIR)$(mandir)/man5/conserver.cf.5
-	$(INSTALL) conserver.passwd.man $(DESTDIR)$(mandir)/man5/conserver.passwd.5
+	$(INSTALL) -m 0644 conserver.cf.man $(DESTDIR)$(mandir)/man5/conserver.cf.5
+	$(INSTALL) -m 0644 conserver.passwd.man $(DESTDIR)$(mandir)/man5/conserver.passwd.5
 
 .PHONY: clean distclean install
--- conserver-8.1.16/conserver/Makefile.in.orig	2007-04-11 14:04:28.000000000 -0500
+++ conserver-8.1.16/conserver/Makefile.in	2007-04-11 14:05:27.000000000 -0500
@@ -61,7 +61,7 @@
 	$(MKDIR) $(DESTDIR)$(sbindir)
 	$(INSTALL_PROGRAM) conserver $(DESTDIR)$(sbindir)
 	$(MKDIR) $(DESTDIR)$(mandir)/man8
-	$(INSTALL) conserver.man $(DESTDIR)$(mandir)/man8/conserver.8
+	$(INSTALL) -m 0644 conserver.man $(DESTDIR)$(mandir)/man8/conserver.8
 	$(MKDIR) $(DESTDIR)$(pkglibdir)
 	$(INSTALL) convert $(DESTDIR)$(pkglibdir)/convert
 
--- conserver-8.1.16/console/Makefile.in.orig	2004-05-12 16:02:13.000000000 -0500
+++ conserver-8.1.16/console/Makefile.in	2007-04-11 14:05:13.000000000 -0500
@@ -56,6 +56,6 @@
 	$(MKDIR) $(DESTDIR)$(bindir)
 	$(INSTALL_PROGRAM) console $(DESTDIR)$(bindir)
 	$(MKDIR) $(DESTDIR)$(mandir)/man1
-	$(INSTALL) console.man $(DESTDIR)$(mandir)/man1/console.1
+	$(INSTALL) -m 0644 console.man $(DESTDIR)$(mandir)/man1/console.1
 
 .PHONY: clean distclean install


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/conserver/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore	10 Apr 2006 19:25:15 -0000	1.2
+++ .cvsignore	11 Apr 2007 19:30:51 -0000	1.3
@@ -1 +1 @@
-conserver-8.1.14.tar.gz
+conserver-8.1.16.tar.gz


Index: conserver.spec
===================================================================
RCS file: /cvs/extras/rpms/conserver/devel/conserver.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- conserver.spec	3 Jan 2007 14:53:49 -0000	1.5
+++ conserver.spec	11 Apr 2007 19:30:51 -0000	1.6
@@ -1,5 +1,5 @@
 Name:           conserver
-Version:        8.1.15
+Version:        8.1.16
 Release:        1%{?dist}
 Summary:        Serial console server daemon/client
 
@@ -7,9 +7,10 @@
 License:        Distributable
 URL:            http://www.conserver.com/
 Source0:        http://www.conserver.com/%{name}-%{version}.tar.gz
-Patch0:         http://beer.tclug.org/fedora-extras/%{name}/%{name}-8.1.14-no-exampledir.patch
-Patch1:         http://beer.tclug.org/fedora-extras/%{name}/%{name}-8.1.14-initscript.patch
-Patch2:         http://beer.tclug.org/fedora-extras/%{name}/%{name}-8.1.14-oldkrb.patch
+Patch0:         %{name}-8.1.14-no-exampledir.patch
+Patch1:         %{name}-8.1.14-initscript.patch
+Patch2:         %{name}-8.1.14-oldkrb.patch
+Patch3:         %{name}-manperms.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildRequires:  pam-devel, openssl-devel, tcp_wrappers
@@ -35,6 +36,7 @@
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 
 %build
@@ -115,6 +117,12 @@
 %{_mandir}/man1/console.1.gz
 
 %changelog
+* Wed Apr 11 2007 Patrick "Jima" Laughton <jima at beer.tclug.org> 8.1.16-1
+- New upstream release with "certainly important" bugfix
+- Removed URLs from patch lines (it's all in CVS)
+- Added patch to fix man page permissions (755 -> 644)
+- rpmlint's "mixed-use-of-spaces-and-tabs" is mostly a false positive
+
 * Wed Jan 03 2007 Patrick "Jima" Laughton <jima at beer.tclug.org> 8.1.15-1
 - New upstream release
 - Fix rpmlint warning about mixed spaces/tabs


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/conserver/devel/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources	3 Jan 2007 14:53:49 -0000	1.3
+++ sources	11 Apr 2007 19:30:51 -0000	1.4
@@ -1 +1 @@
-fba8bf42d32cf2119cd0f49b2043681c  conserver-8.1.15.tar.gz
+2364ba56f5201b07646bdfaefedd330b  conserver-8.1.16.tar.gz




More information about the scm-commits mailing list