forked from pool/opensc
Accepting request 319752 from home:bhwachter:branches:security:chipcard
Update to version 0.15.0 OBS-URL: https://build.opensuse.org/request/show/319752 OBS-URL: https://build.opensuse.org/package/show/security:chipcard/opensc?expand=0&rev=35
This commit is contained in:
parent
458a93f4cb
commit
ba7af549cb
45
completion-template
Normal file
45
completion-template
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
# this was auto-generated by OpenSC/doc/tools/Makefile.am
|
||||||
|
_FUNCTION_NAME()
|
||||||
|
{
|
||||||
|
COMPREPLY=()
|
||||||
|
local cur prev split=false
|
||||||
|
_get_comp_words_by_ref cur prev
|
||||||
|
|
||||||
|
_split_longopt && split=true
|
||||||
|
|
||||||
|
opts="ALLOPTS"
|
||||||
|
|
||||||
|
if [ ${COMP_CWORD} -eq 1 ]; then
|
||||||
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "${prev}" in
|
||||||
|
OPTSWITHARGS)
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
$split && return 0
|
||||||
|
|
||||||
|
if [[ "$cur" == -* ]]; then
|
||||||
|
_longopt $1
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
_filedir
|
||||||
|
}
|
||||||
|
complete -F _FUNCTION_NAME PROGRAM_NAME
|
||||||
|
|
||||||
|
|
||||||
|
# Local variables:
|
||||||
|
# mode: shell-script
|
||||||
|
# sh-basic-offset: 4
|
||||||
|
# sh-indent-comment: t
|
||||||
|
# indent-tabs-mode: nil
|
||||||
|
# End:
|
||||||
|
# ex: ts=4 sw=4 et filetype=sh
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:facdca215f74d999b286ae246ada8d8fcb97ce58f0a6dd30d8b1c180101e9bf0
|
|
||||||
size 2039158
|
|
3
opensc-0.15.0.tar.gz
Normal file
3
opensc-0.15.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:399b2107a69e3f67e4e76dc2dbd951dbced8e534b1e0f919e176aea9b85970d7
|
||||||
|
size 2153075
|
@ -2,3 +2,4 @@
|
|||||||
addFilter("shlib-policy-missing-suffix")
|
addFilter("shlib-policy-missing-suffix")
|
||||||
# There is no devel package any more.
|
# There is no devel package any more.
|
||||||
addFilter("obsolete-not-provided")
|
addFilter("obsolete-not-provided")
|
||||||
|
addFilter("devel-file-in-non-devel-package")
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jul 30 16:16:19 EEST 2015 - bwachter-pkg@lart.info
|
||||||
|
|
||||||
|
- update to version 0.15.0
|
||||||
|
- register with p11-kit
|
||||||
|
(https://www.opensc-project.org/opensc/ticket/390)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 16 15:14:55 UTC 2015 - michael@stroeder.com
|
Mon Feb 16 15:14:55 UTC 2015 - michael@stroeder.com
|
||||||
|
|
||||||
|
8
opensc.module
Normal file
8
opensc.module
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# This file describes how to load the opensc module
|
||||||
|
# See: http://p11-glue.freedesktop.org/doc/p11-kit/config.html
|
||||||
|
|
||||||
|
# This is a relative path, which means it will be loaded from
|
||||||
|
# the p11-kit default path which is usually $(libdir)/pkcs11.
|
||||||
|
# Doing it this way allows for packagers to package opensc for
|
||||||
|
# 32-bit and 64-bit and make them parallel installable
|
||||||
|
module: onepin-opensc-pkcs11.so
|
13
opensc.spec
13
opensc.spec
@ -25,7 +25,7 @@ BuildRequires: pcsc-lite-devel
|
|||||||
BuildRequires: pkg-config
|
BuildRequires: pkg-config
|
||||||
BuildRequires: readline-devel
|
BuildRequires: readline-devel
|
||||||
Url: https://github.com/OpenSC/OpenSC/wiki
|
Url: https://github.com/OpenSC/OpenSC/wiki
|
||||||
Version: 0.14.0
|
Version: 0.15.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Smart Card Utilities
|
Summary: Smart Card Utilities
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1+
|
||||||
@ -33,6 +33,12 @@ Group: Productivity/Security
|
|||||||
Source: %{name}-%{version}.tar.gz
|
Source: %{name}-%{version}.tar.gz
|
||||||
Source1: %{name}-ADVISORIES
|
Source1: %{name}-ADVISORIES
|
||||||
Source2: %{name}-rpmlintrc
|
Source2: %{name}-rpmlintrc
|
||||||
|
# This is in git, but got stripped from the release tarball
|
||||||
|
# https://github.com/OpenSC/OpenSC/issues/505
|
||||||
|
Source3: completion-template
|
||||||
|
# Register with p11-kit
|
||||||
|
# https://www.opensc-project.org/opensc/ticket/390
|
||||||
|
Source4: opensc.module
|
||||||
Requires: pcsc-lite
|
Requires: pcsc-lite
|
||||||
# There is no more devel package.
|
# There is no more devel package.
|
||||||
Obsoletes: opensc-devel < %{version}
|
Obsoletes: opensc-devel < %{version}
|
||||||
@ -70,6 +76,7 @@ cp -a %{S:1} ADVISORIES
|
|||||||
%if %suse_version > 1100
|
%if %suse_version > 1100
|
||||||
autoreconf -f -i
|
autoreconf -f -i
|
||||||
%endif
|
%endif
|
||||||
|
cp %{SOURCE3} doc/tools/completion-template
|
||||||
%configure\
|
%configure\
|
||||||
--docdir=%{_docdir}/%{name}\
|
--docdir=%{_docdir}/%{name}\
|
||||||
--disable-static\
|
--disable-static\
|
||||||
@ -83,6 +90,7 @@ mkdir -p $RPM_BUILD_ROOT%{_libdir}/pkcs11
|
|||||||
cp COPYING ADVISORIES ChangeLog README $RPM_BUILD_ROOT%{_docdir}/%{name}
|
cp COPYING ADVISORIES ChangeLog README $RPM_BUILD_ROOT%{_docdir}/%{name}
|
||||||
# Private library.
|
# Private library.
|
||||||
rm $RPM_BUILD_ROOT%{_libdir}/libopensc.so
|
rm $RPM_BUILD_ROOT%{_libdir}/libopensc.so
|
||||||
|
install -D -m 644 %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/pkcs11/modules/opensc.module
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
@ -109,6 +117,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_libdir}/pkcs11/*.so
|
%{_libdir}/pkcs11/*.so
|
||||||
%doc %{_mandir}/man?/*.*
|
%doc %{_mandir}/man?/*.*
|
||||||
%config %{_sysconfdir}/opensc.conf
|
%config %{_sysconfdir}/opensc.conf
|
||||||
|
%dir %{_sysconfdir}/pkcs11
|
||||||
|
%config %{_sysconfdir}/pkcs11/modules/
|
||||||
|
%{_sysconfdir}/bash_completion.d/*
|
||||||
# This is a private library. There is no reason to split it to libopensc* package.
|
# This is a private library. There is no reason to split it to libopensc* package.
|
||||||
%{_libdir}/libopensc.so.*
|
%{_libdir}/libopensc.so.*
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user