Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:msalle:extras
voms
voms.spec
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File voms.spec of Package voms
# # spec file for package voms # # Copyright (c) 2023 SUSE LLC # Copyright (c) 2015 mischa.salle@gmail.com # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via https://bugs.opensuse.org/ # Name: voms Version: 2.1.0 %define upstream_version 2.1.0 Release: lp155.1.0 Summary: The Virtual Organisation Membership Service License: Apache-2.0 URL: https://wiki.italiangrid.it/VOMS Source: https://github.com/italiangrid/voms/archive/v%{upstream_version}.tar.gz#/%{name}-%{upstream_version}.tar.gz %description The Virtual Organization Membership Service (VOMS) is an attribute authority which serves as central repository for VO user authorization information, providing support for sorting users into group hierarchies, keeping track of their roles and other attributes in order to issue trusted attribute certificates and SAML assertions used in the Grid environment for authorization purposes. %package -n libvomsapi1 Summary: The Virtual Organisation Membership Service C++ APIs Group: System/Libraries BuildRequires: gcc-c++ BuildRequires: bison BuildRequires: docbook-xsl-stylesheets BuildRequires: doxygen BuildRequires: libexpat-devel BuildRequires: libopenssl-devel BuildRequires: libtool BuildRequires: libxslt BuildRequires: pkgconfig # Needed for macro fdupes BuildRequires: fdupes %description -n libvomsapi1 The Virtual Organization Membership Service (VOMS) is an attribute authority which serves as central repository for VO user authorization information, providing support for sorting users into group hierarchies, keeping track of their roles and other attributes in order to issue trusted attribute certificates and SAML assertions used in the Grid environment for authorization purposes. This package provides libraries that applications using the VOMS functionality will bind to. %package devel Summary: Virtual Organization Membership Service Development Files Group: Development/Libraries/C and C++ Requires: automake Requires: libopenssl-devel Requires: libvomsapi1%{?_isa} = %{version}-%{release} %description devel The Virtual Organization Membership Service (VOMS) is an attribute authority which serves as central repository for VO user authorization information, providing support for sorting users into group hierarchies, keeping track of their roles and other attributes in order to issue trusted attribute certificates and SAML assertions used in the Grid environment for authorization purposes. This package provides header files for programming with the VOMS libraries. %package doc Summary: Virtual Organization Membership Service Documentation Group: Documentation BuildArch: noarch %description doc Documentation for the Virtual Organization Membership Service APIs. %package clients Summary: Virtual Organization Membership Service Clients Group: Applications/Internet Requires: libvomsapi1%{?_isa} = %{version}-%{release} Requires(post): update-alternatives Requires(postun):update-alternatives %description clients The Virtual Organization Membership Service (VOMS) is an attribute authority which serves as central repository for VO user authorization information, providing support for sorting users into group hierarchies, keeping track of their roles and other attributes in order to issue trusted attribute certificates and SAML assertions used in the Grid environment for authorization purposes. This package provides command line applications to access the VOMS services. %prep %autosetup -p1 -n voms-%{upstream_version} # Fix bad permissions (which otherwise end up in the debuginfo package) find . '(' -name '*.h' -o -name '*.c' -o -name '*.cpp' -o \ -name '*.cc' -o -name '*.java' ')' -exec chmod a-x {} + ./autogen.sh %build %configure --without-server --disable-static --enable-docs --disable-parser-gen %make_build %install %make_install # Remove la files rm %{buildroot}%{_libdir}/*.la # Remove server specific files rm \ %{buildroot}%{_datadir}/%{name}/mysql2oracle \ %{buildroot}%{_datadir}/%{name}/upgrade1to2 \ %{buildroot}%{_datadir}/%{name}/voms.data \ %{buildroot}%{_datadir}/%{name}/voms_install_db \ %{buildroot}%{_datadir}/%{name}/voms-ping # Create custom dirs mkdir -p %{buildroot}%{_sysconfdir}/grid-security/vomsdir mkdir -p %{buildroot}%{_sysconfdir}/grid-security/%{name} mkdir -p %{buildroot}%{_localstatedir}/log/%{name} mkdir -p %{buildroot}%{_sysconfdir}/%{name} # Create documentation directory mkdir -p %{buildroot}%{_docdir}/%{name}-%{version} install -m 644 -p LICENSE AUTHORS %{buildroot}%{_docdir}/%{name}-%{version} # move vomses.template to doc mv %{buildroot}%{_datadir}/%{name}/vomses.template \ %{buildroot}%{_docdir}/%{name}-%{version} ## C API documentation mkdir -p %{buildroot}%{_docdir}/%{name}-%{version}/VOMS_C_API cp -pr doc/apidoc/api/VOMS_C_API/html \ %{buildroot}%{_docdir}/%{name}-%{version}/VOMS_C_API rm -f %{buildroot}%{_docdir}/%{name}-%{version}/VOMS_C_API/html/installdox mkdir -p %{buildroot}%{_docdir}/%{name}-%{version}/VOMS_CC_API cp -pr doc/apidoc/api/VOMS_CC_API/html \ %{buildroot}%{_docdir}/%{name}-%{version}/VOMS_CC_API rm -f %{buildroot}%{_docdir}/%{name}-%{version}/VOMS_CC_API/html/installdox # Handle duplicate files %fdupes %{buildroot}%{_docdir} # create a dummy target for /etc/alternatives/voms-proxy-* mkdir -p %{buildroot}%{_sysconfdir}/alternatives ## Rename client binaries and man pages and create symlinks for b in voms-proxy-init voms-proxy-info voms-proxy-destroy; do # rename existing ones mv %{buildroot}%{_bindir}/${b} %{buildroot}%{_bindir}/${b}2 mv %{buildroot}%{_mandir}/man1/${b}.1 %{buildroot}%{_mandir}/man1/${b}2.1 # Create symlinks ln -s -f %{_sysconfdir}/alternatives/${b} %{buildroot}/%{_bindir}/${b} ln -s -f %{_sysconfdir}/alternatives/${b}.1.gz %{buildroot}/%{_mandir}/man1/${b}.1.gz done %post -n libvomsapi1 -p /sbin/ldconfig %postun -n libvomsapi1 -p /sbin/ldconfig %posttrans # Recover /etc/vomses... if [ -r %{_sysconfdir}/vomses.rpmsave -a ! -r %{_sysconfdir}/vomses ] ; then mv %{_sysconfdir}/vomses.rpmsave %{_sysconfdir}/vomses fi %pre clients if [ $1 -eq 2 ]; then for c in voms-proxy-init voms-proxy-info voms-proxy-destroy; do if [[ -x %{_bindir}/$c && ! -L %{_bindir}/$c ]]; then rm -f %{_bindir}/$c fi done fi %post clients %{_sbindir}/update-alternatives \ --install %{_bindir}/voms-proxy-init voms-proxy-init \ %{_bindir}/voms-proxy-init2 50 \ --slave %{_mandir}/man1/voms-proxy-init.1.gz voms-proxy-init-man \ %{_mandir}/man1/voms-proxy-init2.1.gz %{_sbindir}/update-alternatives \ --install %{_bindir}/voms-proxy-info voms-proxy-info \ %{_bindir}/voms-proxy-info2 50 \ --slave %{_mandir}/man1/voms-proxy-info.1.gz voms-proxy-info-man \ %{_mandir}/man1/voms-proxy-info2.1.gz %{_sbindir}/update-alternatives \ --install %{_bindir}/voms-proxy-destroy voms-proxy-destroy \ %{_bindir}/voms-proxy-destroy2 50 \ --slave %{_mandir}/man1/voms-proxy-destroy.1.gz voms-proxy-destroy-man \ %{_mandir}/man1/voms-proxy-destroy2.1.gz %postun clients if [ $1 -eq 0 ] ; then %{_sbindir}/update-alternatives --remove voms-proxy-init %{_bindir}/voms-proxy-init2 %{_sbindir}/update-alternatives --remove voms-proxy-info %{_bindir}/voms-proxy-info2 %{_sbindir}/update-alternatives --remove voms-proxy-destroy %{_bindir}/voms-proxy-destroy2 fi %files -n libvomsapi1 %{_libdir}/libvomsapi.so.1* %dir %{_sysconfdir}/grid-security %dir %{_sysconfdir}/grid-security/vomsdir %doc %dir %{_docdir}/%{name}-%{version} %doc %{_docdir}/%{name}-%{version}/vomses.template %doc %{_docdir}/%{name}-%{version}/AUTHORS %doc %{_docdir}/%{name}-%{version}/LICENSE %files devel %{_libdir}/libvomsapi.so %{_includedir}/%{name} %{_libdir}/pkgconfig/%{name}-2.0.pc %{_datadir}/aclocal/%{name}.m4 %{_mandir}/man3/* %files doc %doc %{_docdir}/%{name}-%{version}/VOMS_C_API %doc %{_docdir}/%{name}-%{version}/VOMS_CC_API %files clients %{_bindir}/voms-proxy-destroy %{_bindir}/voms-proxy-info %{_bindir}/voms-proxy-init %{_bindir}/voms-verify %{_bindir}/voms-proxy-destroy2 %{_bindir}/voms-proxy-info2 %{_bindir}/voms-proxy-init2 %{_bindir}/voms-proxy-fake %{_bindir}/voms-proxy-list %{_mandir}/man1/voms-proxy-destroy.1.gz %{_mandir}/man1/voms-proxy-info.1.gz %{_mandir}/man1/voms-proxy-init.1.gz %{_mandir}/man1/voms-proxy-destroy2.1.gz %{_mandir}/man1/voms-proxy-info2.1.gz %{_mandir}/man1/voms-proxy-init2.1.gz %{_mandir}/man1/voms-proxy-fake.1.gz %{_mandir}/man1/voms-proxy-list.1.gz %ghost %{_sysconfdir}/alternatives/voms-proxy-destroy %ghost %{_sysconfdir}/alternatives/voms-proxy-info %ghost %{_sysconfdir}/alternatives/voms-proxy-init %ghost %{_sysconfdir}/alternatives/voms-proxy-destroy.1.gz %ghost %{_sysconfdir}/alternatives/voms-proxy-info.1.gz %ghost %{_sysconfdir}/alternatives/voms-proxy-init.1.gz %changelog * Mon Jul 15 2024 Mischa Salle <msalle@nikhef.nl> - 2.1.0-1 - Update version * Thu Jun 20 2024 Mischa Salle <msalle@nikhef.nl> - 2.1.0-rc5 - Update version * Mon May 6 2024 Mischa Salle <msalle@nikhef.nl> - 2.1.0-rc4 - Update version * Mon Dec 25 2023 Mischa Salle <msalle@nikhef.nl> - 2.1.0-rc3 Update and sync with version in devel:libraries:c_c++ * Sun Sep 11 2016 Mischa Salle <msalle@nikhef.nl> - 2.0.14-1 - Update version - add voms-verify - add patch for missing return in ERR_load_proxy_error_strings * Fri Feb 26 2016 Mischa Salle <msalle@nikhef.nl> - 2.0.13-1 - Update version * Sat Nov 21 2015 Mischa Salle <msalle@nikhef.nl> - 2.0.12-2 - Package (without server) for OpenSUSE and fixing changelog entry. Disable alternatives support. * Mon May 12 2014 Andrea Ceccanti <andrea.ceccanti at cnaf.infn.it> - 2.0.12-2 - Added missing dependency on gsoap. * Mon May 12 2014 Andrea Ceccanti <andrea.ceccanti at cnaf.infn.it> - 2.0.12-1 - New packaging of the clients. https://issues.infn.it/jira/browse/VOMS-495 * Wed Aug 21 2013 Andrea Ceccanti <andrea.ceccanti at cnaf.infn.it> - 2.0.11-1 - Fix for https://issues.infn.it/browse/VOMS-379 * Tue Jan 8 2013 Andrea Ceccanti <andrea.ceccanti at cnaf.infn.it> - 2.0.10-1 - Fix for https://issues.infn.it/browse/VOMS-196 * Sat Oct 27 2012 Andrea Ceccanti <andrea.ceccanti at cnaf.infn.it> - 2.0.9-1 - Fix for https://savannah.cern.ch/bugs/?91183 - Fix for http://issues.cnaf.infn.it/browse/VOMS-128 * Tue Apr 10 2012 Andrea Ceccanti <andrea.ceccanti at cnaf.infn.it> - 2.0.8-1 - EMI 2 release. * Thu Dec 15 2011 Andrea Ceccanti <andrea.ceccanti at cnaf.infn.it> - 2.0.7-1 - Restructured EMI build to leverage EPEL spec files by Mattias Ellert - Removed voms-java-apis from the main c-based source tree
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor