rpms/voms/F-11 voms-db-method.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 import.log, 1.4, 1.5 sources, 1.5, 1.6 voms-portability.patch, 1.3, 1.4 voms.spec, 1.4, 1.5

Mattias Ellert ellert at fedoraproject.org
Sat Mar 20 14:32:59 UTC 2010


Author: ellert

Update of /cvs/pkgs/rpms/voms/F-11
In directory cvs01.phx2.fedoraproject.org:/tmp/cvs-serv16959/F-11

Modified Files:
	.cvsignore import.log sources voms-portability.patch voms.spec 
Added Files:
	voms-db-method.patch 
Log Message:
* Fri Mar 19 2010 Mattias Ellert <mattias.ellert at fysast.uu.se> - 1.9.16.1-1
- Upstream 1.9.16.1 (CVS tag glite-security-voms_R_1_9_16_1)
- Fix uninitialized variable in voms-proxy-init


voms-db-method.patch:
 client/vomsclient.cc |    2 ++
 utils/vomsfake.cc    |    2 ++
 2 files changed, 4 insertions(+)

--- NEW FILE voms-db-method.patch ---
diff -ur voms-1.9.16.1.orig/src/client/vomsclient.cc voms-1.9.16.1/src/client/vomsclient.cc
--- voms-1.9.16.1.orig/src/client/vomsclient.cc	2010-03-02 17:23:43.000000000 +0100
+++ voms-1.9.16.1/src/client/vomsclient.cc	2010-03-20 10:36:08.668498094 +0100
@@ -1194,6 +1194,8 @@
 	X509V3_CTX ctx;
 	X509V3_set_ctx(&ctx, NULL, NULL, NULL, NULL, 0L);
 	ctx.db = (void*)&ctx;
+	X509V3_CONF_METHOD method = { NULL, NULL, NULL, NULL };
+	ctx.db_meth = &method;
 	ex7 = X509V3_EXT_conf_nid(NULL, &ctx, OBJ_obj2nid(OBJ_txt2obj(PROXYCERTINFO_V4,1)), (char*)value);
 	free(value);
       }
diff -ur voms-1.9.16.1.orig/src/utils/vomsfake.cc voms-1.9.16.1/src/utils/vomsfake.cc
--- voms-1.9.16.1.orig/src/utils/vomsfake.cc	2010-03-02 17:23:43.000000000 +0100
+++ voms-1.9.16.1/src/utils/vomsfake.cc	2010-03-20 11:25:41.138497301 +0100
@@ -686,6 +686,8 @@
         X509V3_CTX ctx;
         X509V3_set_ctx(&ctx, NULL, NULL, NULL, NULL, 0L);
         ctx.db = (void*)&ctx;
+        X509V3_CONF_METHOD method = { NULL, NULL, NULL, NULL };
+        ctx.db_meth = &method;
         ex7 = X509V3_EXT_conf_nid(NULL, &ctx, OBJ_obj2nid(OBJ_txt2obj(PROXYCERTINFO_V4,1)), (char*)value);
         free(value);
       }


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/voms/F-11/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- .cvsignore	31 Dec 2009 14:12:53 -0000	1.5
+++ .cvsignore	20 Mar 2010 14:32:58 -0000	1.6
@@ -1 +1 @@
-voms-1.9.14.3.tar.gz
+voms-1.9.16.1.tar.gz


Index: import.log
===================================================================
RCS file: /cvs/pkgs/rpms/voms/F-11/import.log,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- import.log	31 Dec 2009 14:12:54 -0000	1.4
+++ import.log	20 Mar 2010 14:32:58 -0000	1.5
@@ -2,3 +2,4 @@ voms-1_9_11-4_fc11:F-11:voms-1.9.11-4.fc
 voms-1_9_12_1-1_fc11:F-11:voms-1.9.12.1-1.fc11.src.rpm:1253509138
 voms-1_9_14_2-1_fc11:F-11:voms-1.9.14.2-1.fc11.src.rpm:1256140773
 voms-1_9_14_3-1_fc12:F-11:voms-1.9.14.3-1.fc12.src.rpm:1262268706
+voms-1_9_16_1-1_fc12:F-11:voms-1.9.16.1-1.fc12.src.rpm:1269095559


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/voms/F-11/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- sources	31 Dec 2009 14:12:54 -0000	1.5
+++ sources	20 Mar 2010 14:32:59 -0000	1.6
@@ -1 +1 @@
-b80d8fc095632807513dab16ae1fe803  voms-1.9.14.3.tar.gz
+5216055233da4fa5ff3436b2262ef4fc  voms-1.9.16.1.tar.gz

voms-portability.patch:
 configure.ac              |    2 -
 project/acinclude.m4      |    8 +++++--
 src/api/ccapi/Makefile.am |   42 ++++++++++++++++++++---------------------
 src/socklib/Makefile.am   |   47 +++++++++++++++++++++++++++-------------------
 4 files changed, 56 insertions(+), 43 deletions(-)

Index: voms-portability.patch
===================================================================
RCS file: /cvs/pkgs/rpms/voms/F-11/voms-portability.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- voms-portability.patch	21 Oct 2009 15:59:58 -0000	1.3
+++ voms-portability.patch	20 Mar 2010 14:32:59 -0000	1.4
@@ -2,7 +2,7 @@ diff -ur voms-1.9.11.orig/configure.ac v
 --- voms-1.9.11.orig/configure.ac	2009-07-16 15:10:39.000000000 +0200
 +++ voms-1.9.11/configure.ac	2009-09-08 14:13:33.244334250 +0200
 @@ -0,5 +0,5 @@
- AC_INIT([GLite Security VOMS], [1.9.14])
+ AC_INIT([GLite Security VOMS], [1.9.16])
 -AC_PREREQ(2.59)
 +AC_PREREQ(2.57)
  AC_CONFIG_AUX_DIR([./project])


Index: voms.spec
===================================================================
RCS file: /cvs/pkgs/rpms/voms/F-11/voms.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- voms.spec	31 Dec 2009 14:12:54 -0000	1.4
+++ voms.spec	20 Mar 2010 14:32:59 -0000	1.5
@@ -1,7 +1,7 @@
 %global with_gcj %{!?_without_gcj:1}%{?_without_gcj:0}
 
 Name:		voms
-Version:	1.9.14.3
+Version:	1.9.16.1
 Release:	1%{?dist}
 Summary:	Virtual Organization Membership Service
 
@@ -10,9 +10,9 @@ License:	ASL 2.0
 URL:		http://glite.web.cern.ch/glite/
 #		The source tarball is created from a CVS checkout:
 #		cvs -d:pserver:anonymous:@glite.cvs.cern.ch:/cvs/glite co \
-#		  -r glite-security-voms_R_1_9_14_3 \
-#		  -d voms-1.9.14.3 org.glite.security.voms
-#		tar -z -c --exclude CVS -f voms-1.9.14.3.tar.gz voms-1.9.14.3
+#		  -r glite-security-voms_R_1_9_16_1 \
+#		  -d voms-1.9.16.1 org.glite.security.voms
+#		tar -z -c --exclude CVS -f voms-1.9.16.1.tar.gz voms-1.9.16.1
 Source:		%{name}-%{version}.tar.gz
 #		Post-install setup instructions:
 Source1:	%{name}.INSTALL
@@ -67,6 +67,9 @@ Patch15:	%{name}-expat.patch
 #		Add missing dependencies for stricter binutils
 #		https://savannah.cern.ch/bugs/?60979
 Patch16:	%{name}-deps.patch
+#		Fix uninitialized variable in voms-proxy-init
+#		https://savannah.cern.ch/bugs/?64632
+Patch17:	%{name}-db-method.patch
 BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildRequires:	globus-gssapi-gsi-devel%{?_isa}
@@ -225,6 +228,7 @@ Virtual Organization Membership Service 
 %patch14 -p1
 %patch15 -p1
 %patch16 -p1
+%patch17 -p1
 
 # Fix bad permissions (which otherwise end up in the debuginfo package)
 find . '(' -name '*.h' -o -name '*.c' -o -name '*.cpp' -o \
@@ -464,8 +468,13 @@ fi
 %doc %{_javadocdir}/vomsjapi-%{version}
 
 %changelog
+* Fri Mar 19 2010 Mattias Ellert <mattias.ellert at fysast.uu.se> - 1.9.16.1-1
+- Upstream 1.9.16.1 (CVS tag glite-security-voms_R_1_9_16_1)
+- Fix uninitialized variable in voms-proxy-init
+
 * Mon Dec 28 2009 Mattias Ellert <mattias.ellert at fysast.uu.se> - 1.9.14.3-1
 - Upstream 1.9.14.3 (CVS tag glite-security-voms_R_1_9_14_3)
+- Add missing dependencies for stricter binutils
 
 * Tue Oct 20 2009 Mattias Ellert <mattias.ellert at fysast.uu.se> - 1.9.14.2-1
 - Upstream 1.9.14.2 (CVS tag glite-security-voms_R_1_9_14_2)



More information about the scm-commits mailing list