commit
02241d8a9b
@ -0,0 +1,2 @@
|
|||||||
|
SOURCES/ccid-1.6.0.tar.xz
|
||||||
|
SOURCES/gpgkey-F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E.gpg
|
@ -0,0 +1,2 @@
|
|||||||
|
3f1a3919c996e9d7434b03b3037a110e5e5af253 SOURCES/ccid-1.6.0.tar.xz
|
||||||
|
13df650b9548b4ef1b24ad11ef6b573af4d48011 SOURCES/gpgkey-F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E.gpg
|
@ -0,0 +1,133 @@
|
|||||||
|
diff -up ccid-1.4.26/src/ccid.c.omnikey ccid-1.4.26/src/ccid.c
|
||||||
|
--- ccid-1.4.26/src/ccid.c.omnikey 2017-02-24 10:04:25.742132234 +0100
|
||||||
|
+++ ccid-1.4.26/src/ccid.c 2017-02-24 10:07:26.145976335 +0100
|
||||||
|
@@ -55,8 +55,16 @@ int ccid_open_hack_pre(unsigned int read
|
||||||
|
{
|
||||||
|
_ccid_descriptor *ccid_descriptor = get_ccid_descriptor(reader_index);
|
||||||
|
|
||||||
|
+ ccid_descriptor->dwNonStandardFlags = 0;
|
||||||
|
+
|
||||||
|
switch (ccid_descriptor->readerID)
|
||||||
|
{
|
||||||
|
+ case CARDMAN3121:
|
||||||
|
+ ccid_descriptor->dwNonStandardFlags = CCID_NON_STAND_OMK_3121_T1;
|
||||||
|
+ ccid_descriptor->dwFeatures &= ~CCID_CLASS_EXCHANGE_MASK;
|
||||||
|
+ ccid_descriptor->dwFeatures |= CCID_CLASS_TPDU;
|
||||||
|
+ break;
|
||||||
|
+
|
||||||
|
case MYSMARTPAD:
|
||||||
|
ccid_descriptor->dwMaxIFSD = 254;
|
||||||
|
break;
|
||||||
|
diff -up ccid-1.4.26/src/ccid.h.omnikey ccid-1.4.26/src/ccid.h
|
||||||
|
--- ccid-1.4.26/src/ccid.h.omnikey 2017-01-07 15:50:47.000000000 +0100
|
||||||
|
+++ ccid-1.4.26/src/ccid.h 2017-02-24 10:04:25.742132234 +0100
|
||||||
|
@@ -137,6 +137,7 @@ typedef struct
|
||||||
|
*/
|
||||||
|
bool zlp;
|
||||||
|
#endif
|
||||||
|
+ unsigned int dwNonStandardFlags;
|
||||||
|
} _ccid_descriptor;
|
||||||
|
|
||||||
|
/* Features from dwFeatures */
|
||||||
|
@@ -153,6 +154,9 @@ typedef struct
|
||||||
|
#define CCID_CLASS_EXTENDED_APDU 0x00040000
|
||||||
|
#define CCID_CLASS_EXCHANGE_MASK 0x00070000
|
||||||
|
|
||||||
|
+/* Features from the swNonStandardFlags */
|
||||||
|
+#define CCID_NON_STAND_OMK_3121_T1 0x00000001
|
||||||
|
+
|
||||||
|
/* Features from bPINSupport */
|
||||||
|
#define CCID_CLASS_PIN_VERIFY 0x01
|
||||||
|
#define CCID_CLASS_PIN_MODIFY 0x02
|
||||||
|
diff -up ccid-1.4.26/src/commands.c.omnikey ccid-1.4.26/src/commands.c
|
||||||
|
--- ccid-1.4.26/src/commands.c.omnikey 2017-01-07 15:50:47.000000000 +0100
|
||||||
|
+++ ccid-1.4.26/src/commands.c 2017-02-24 10:11:21.297778870 +0100
|
||||||
|
@@ -1292,6 +1292,39 @@ RESPONSECODE CmdXfrBlock(unsigned int re
|
||||||
|
return return_value;
|
||||||
|
} /* CmdXfrBlock */
|
||||||
|
|
||||||
|
+static RESPONSECODE omnikey_transmit_tpdu(unsigned int reader_index,
|
||||||
|
+ _ccid_descriptor *ccid_descriptor, unsigned int tx_length,
|
||||||
|
+ const unsigned char *tx_buffer)
|
||||||
|
+{
|
||||||
|
+ unsigned char cmd[11+CMD_BUF_SIZE]; /* CCID + APDU buffer */
|
||||||
|
+ status_t ret;
|
||||||
|
+
|
||||||
|
+ cmd[0] = 0x6B; /* 3121 escape */
|
||||||
|
+ i2dw(tx_length+1, cmd+1); /* APDU length */
|
||||||
|
+ cmd[5] = ccid_descriptor->bCurrentSlotIndex; /* slot number */
|
||||||
|
+ cmd[6] = (*ccid_descriptor->pbSeq)++;
|
||||||
|
+ cmd[7] = 0;
|
||||||
|
+ cmd[8] = 0;
|
||||||
|
+ cmd[9] = 0;
|
||||||
|
+ cmd[10] = 0x1A;
|
||||||
|
+
|
||||||
|
+ /* check that the command is not too large */
|
||||||
|
+ if (tx_length > CMD_BUF_SIZE)
|
||||||
|
+ {
|
||||||
|
+ DEBUG_CRITICAL2("TX Length too big: %d", tx_length);
|
||||||
|
+ return IFD_NOT_SUPPORTED;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ memcpy(cmd+11, tx_buffer, tx_length);
|
||||||
|
+
|
||||||
|
+ ret = WritePort(reader_index, 11+tx_length, cmd);
|
||||||
|
+ if (STATUS_NO_SUCH_DEVICE == ret)
|
||||||
|
+ return IFD_NO_SUCH_DEVICE;
|
||||||
|
+ if (ret != STATUS_SUCCESS)
|
||||||
|
+ return IFD_COMMUNICATION_ERROR;
|
||||||
|
+
|
||||||
|
+ return IFD_SUCCESS;
|
||||||
|
+} /* omnikey_transmit_tpdu */
|
||||||
|
|
||||||
|
/*****************************************************************************
|
||||||
|
*
|
||||||
|
@@ -1348,6 +1381,13 @@ RESPONSECODE CCID_Transmit(unsigned int
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
+ /* hack for Onmikey 3121 */
|
||||||
|
+ if ((ccid_descriptor->dwNonStandardFlags & CCID_NON_STAND_OMK_3121_T1) &&
|
||||||
|
+ (ccid_descriptor->cardProtocol == SCARD_PROTOCOL_T1)) {
|
||||||
|
+ return omnikey_transmit_tpdu(reader_index, ccid_descriptor, tx_length,
|
||||||
|
+ tx_buffer);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
cmd[0] = 0x6F; /* XfrBlock */
|
||||||
|
i2dw(tx_length, cmd+1); /* APDU length */
|
||||||
|
cmd[5] = ccid_descriptor->bCurrentSlotIndex; /* slot number */
|
||||||
|
@@ -1373,8 +1413,9 @@ RESPONSECODE CCID_Transmit(unsigned int
|
||||||
|
RESPONSECODE CCID_Receive(unsigned int reader_index, unsigned int *rx_length,
|
||||||
|
unsigned char rx_buffer[], unsigned char *chain_parameter)
|
||||||
|
{
|
||||||
|
- unsigned char cmd[10+CMD_BUF_SIZE]; /* CCID + APDU buffer */
|
||||||
|
+ unsigned char cmd[11+CMD_BUF_SIZE]; /* CCID + APDU buffer */
|
||||||
|
unsigned int length;
|
||||||
|
+ unsigned char *rx_ptr = cmd+10;
|
||||||
|
RESPONSECODE return_value = IFD_SUCCESS;
|
||||||
|
status_t ret;
|
||||||
|
_ccid_descriptor *ccid_descriptor = get_ccid_descriptor(reader_index);
|
||||||
|
@@ -1565,6 +1606,14 @@ time_request:
|
||||||
|
}
|
||||||
|
|
||||||
|
length = dw2i(cmd, 1);
|
||||||
|
+
|
||||||
|
+ if (length &&
|
||||||
|
+ (ccid_descriptor->dwNonStandardFlags & CCID_NON_STAND_OMK_3121_T1) &&
|
||||||
|
+ (ccid_descriptor->cardProtocol == SCARD_PROTOCOL_T1)) {
|
||||||
|
+ length--;
|
||||||
|
+ rx_ptr = cmd+11;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
if (length <= *rx_length)
|
||||||
|
*rx_length = length;
|
||||||
|
else
|
||||||
|
@@ -1581,7 +1630,7 @@ time_request:
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if (length)
|
||||||
|
- memcpy(rx_buffer, cmd+10, length);
|
||||||
|
+ memcpy(rx_buffer, rx_ptr, length);
|
||||||
|
|
||||||
|
/* Extended case?
|
||||||
|
* Only valid for RDR_to_PC_DataBlock frames */
|
@ -0,0 +1,16 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iQIzBAABCAAdFiEE9eEbn/6REUb0HZU9eKG03+j5xX4FAmZbHPkACgkQeKG03+j5
|
||||||
|
xX6T0Q//a7PvBi5EYrt0TnjG3h1nf+mlaJnJEr1lQ5wWunt316v7U/PlpPC3xm4t
|
||||||
|
es7cDOB1G5Q5eTNHhjPakGmtlFOVMvDmjs5nuQCA++JdYVICs/NGtBBzCEj7tKlb
|
||||||
|
xCtgInsw3PcMJHHIOPVCN4h5v78Bt7XZJPQqOMS6NdtcLmDxOxYKfKecVUaZLxh3
|
||||||
|
dypkxzbKdKK0uVP7v6pqpnej3lcEYuIew7jwQpn1+NAqUrbALhKiVToDcgHQT//C
|
||||||
|
d/X+fZGqxzmuEYPd5OgEDQSMw/iCJZb5HDkwcfWsVg7tbIq9hj5K0wlq9hLcKSO4
|
||||||
|
pRVz9baXtzBhbDuBhiD3Zl0bPkg45C5UnO1CGesvnb2Lv6rI+Nz8WmQIPbsfIx8C
|
||||||
|
WyhB8Mla3zn17i8+tyQtZQKyynMqQgcZ8ITekQ4mYcWutG5G5JxYXueCwRfuIMia
|
||||||
|
MCIExd7Gkvt22yBsGmaY1ucyRo8KM1AX0Taik4u8+SeGmBo2K3wNp8xpN/0PiGnQ
|
||||||
|
rqt2IpyjnjcE/w2k++sy8vPvhQg3MEVFhz2b4H2PY7qUTaUrffhkXZ5zsOiD23qD
|
||||||
|
IAGB2/8KDCTmWG7DYirBbCU4nc4HdXPg2VUb5t4rBxR8GbdsqwqKSM5u6z1yLMKT
|
||||||
|
aTxhjwvq4xNfacgX/tsVEZPlJqPy0rXs7VyFnTFAGWsa2EN/X+0=
|
||||||
|
=icou
|
||||||
|
-----END PGP SIGNATURE-----
|
@ -0,0 +1,414 @@
|
|||||||
|
%global dropdir %(pkg-config libpcsclite --variable usbdropdir 2>/dev/null)
|
||||||
|
%global pcsc_lite_ver 1.8.9
|
||||||
|
|
||||||
|
Name: pcsc-lite-ccid
|
||||||
|
Version: 1.6.0
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: Generic USB CCID smart card reader driver
|
||||||
|
|
||||||
|
License: BSD-3-Clause AND GPL-2.0-or-later AND LGPL-2.1-or-later
|
||||||
|
URL: https://ccid.apdu.fr/files
|
||||||
|
Source0: https://ccid.apdu.fr/files/ccid-%{version}.tar.xz
|
||||||
|
Source1: https://ccid.apdu.fr/files/ccid-%{version}.tar.xz.asc
|
||||||
|
Source2: gpgkey-F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E.gpg
|
||||||
|
Patch0: ccid-1.4.26-omnikey-3121.patch
|
||||||
|
|
||||||
|
BuildRequires: meson
|
||||||
|
BuildRequires: gcc
|
||||||
|
BuildRequires: perl-interpreter
|
||||||
|
BuildRequires: perl-Getopt-Long
|
||||||
|
BuildRequires: libusb1-devel
|
||||||
|
BuildRequires: pcsc-lite-devel >= %{pcsc_lite_ver}
|
||||||
|
BuildRequires: gnupg2
|
||||||
|
BuildRequires: flex
|
||||||
|
BuildRequires: zlib-devel
|
||||||
|
Requires(post): systemd
|
||||||
|
Requires(postun): systemd
|
||||||
|
Requires: pcsc-lite%{?_isa} >= %{pcsc_lite_ver}
|
||||||
|
Provides: pcsc-ifd-handler
|
||||||
|
# Provide upgrade path from 'ccid' package
|
||||||
|
Obsoletes: ccid < 1.4.0-3
|
||||||
|
Provides: ccid = %{version}-%{release}
|
||||||
|
# This is bundled from pcsc-lite upstream
|
||||||
|
Provides: bundled(simclist) = 1.6
|
||||||
|
|
||||||
|
%description
|
||||||
|
Generic USB CCID (Chip/Smart Card Interface Devices) driver for use with the
|
||||||
|
PC/SC Lite daemon.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
gpgv2 --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0}
|
||||||
|
%setup -q -n ccid-%{version}
|
||||||
|
%patch 0 -p1 -b .omnikey
|
||||||
|
|
||||||
|
%build
|
||||||
|
%meson -Dserial=true
|
||||||
|
|
||||||
|
%meson_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%meson_install
|
||||||
|
cp -p src/openct/LICENSE LICENSE.openct
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
/bin/systemctl try-restart pcscd.service >/dev/null 2>&1 || :
|
||||||
|
|
||||||
|
%postun
|
||||||
|
/bin/systemctl try-restart pcscd.service >/dev/null 2>&1 || :
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%doc AUTHORS README.md
|
||||||
|
%license COPYING LICENSE.openct
|
||||||
|
%{dropdir}/ifd-ccid.bundle/
|
||||||
|
%{dropdir}/serial/
|
||||||
|
%config(noreplace) %{_sysconfdir}/reader.conf.d/libccidtwin
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Nov 26 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 1.6.0-1
|
||||||
|
- Rebuilt for MSVSphere 10
|
||||||
|
|
||||||
|
* Tue Jul 02 2024 Jakub Jelen <jjelen@redhat.com> - 1.6.0-1
|
||||||
|
- New upstream release with meson build system (#2284336)
|
||||||
|
|
||||||
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.5.5-4
|
||||||
|
- Bump release for June 2024 mass rebuild
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.5-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 08 2024 Jakub Jelen <jjelen@redhat.com> - 1.5.5-1
|
||||||
|
- New upstream release (#2257041)
|
||||||
|
|
||||||
|
* Mon Oct 30 2023 Jakub Jelen <jjelen@redhat.com> - 1.5.4-1
|
||||||
|
- New upstream release fixing regression in previous (#2246459)
|
||||||
|
|
||||||
|
* Fri Oct 27 2023 Jakub Jelen <jjelen@redhat.com> - 1.5.3-1
|
||||||
|
- New upstream release (#2246459)
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 01 2023 Jakub Jelen <jjelen@redhat.com> - 1.5.2-1
|
||||||
|
- New upstream release (#2166005)
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Nov 16 2022 Jakub Jelen <jjelen@redhat.com> - 1.5.1-1
|
||||||
|
- New upstream release (#2142976)
|
||||||
|
|
||||||
|
* Tue Nov 01 2022 Jakub Jelen <jjelen@redhat.com> - 1.5.0-3
|
||||||
|
- Remove downstream patch breaking flatpak (#2054826)
|
||||||
|
|
||||||
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 28 2022 Jakub Jelen <jjelen@redhat.com> - 1.5.0-1
|
||||||
|
- New upstream release (#2047569)
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.36-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Oct 15 2021 Jakub Jelen <jjelen@redhat.com> - 1.4.36-2
|
||||||
|
- Fix eToken support (#2014312)
|
||||||
|
|
||||||
|
* Tue Aug 31 2021 Jakub Jelen <jjelen@redhat.com> - 1.4.36-1
|
||||||
|
- New upstream release (#1999233)
|
||||||
|
|
||||||
|
* Tue Aug 03 2021 Jakub Jelen <jjelen@redhat.com> - 1.4.35-1
|
||||||
|
- New upstream release (#1985861)
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.34-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 25 2021 Jakub Jelen <jjelen@redhat.com> - 1.4.34-2
|
||||||
|
- Add support for more readers
|
||||||
|
|
||||||
|
* Fri Feb 05 2021 Jakub Jelen <jjelen@redhat.com> - 1.4.34-1
|
||||||
|
- New upstream release
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.33-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.33-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 25 2020 Jakub Jelen <jjelen@redhat.com> - 1.4.33-1
|
||||||
|
- New upstream release (#1851217)
|
||||||
|
|
||||||
|
* Wed Apr 22 2020 Jakub Jelen <jjelen@redhat.com> - 1.4.32-1
|
||||||
|
- New upstream release (#1826675)
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.31-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Aug 19 2019 Jakub Jelen <jjelen@redhat.com> - 1.4.31-1
|
||||||
|
- New upstream release (#1742657)
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.30-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.30-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 20 2018 Jakub Jelen <jjelen@redhat.com> - 1.4.30-1
|
||||||
|
- New upstream release (#1651350)
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.29-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 21 2018 Jakub Jelen <jjelen@redhat.com> - 1.4.29-1
|
||||||
|
- New upstream release (#1547482)
|
||||||
|
|
||||||
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.28-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Oct 20 2017 Jakub Jelen <jjelen@redhat.com> - 1.4.28-1
|
||||||
|
- New upstream release (#1504404)
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.27-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.27-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 22 2017 Jakub Jelen <jjelen@redhat.com> - 1.4.27-1
|
||||||
|
- New upstream release (#1453026)
|
||||||
|
|
||||||
|
* Thu Mar 02 2017 Jakub Jelen <jjelen@redhat.com> - 1.4.26-3
|
||||||
|
- Return support for OMNIKEY CardMan 3121 long writes (#1420024)
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.26-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 9 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.4.26-1
|
||||||
|
- Updated to 1.4.26
|
||||||
|
|
||||||
|
* Mon Nov 21 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.4.25-1
|
||||||
|
- Updated to 1.4.25
|
||||||
|
|
||||||
|
* Tue Jun 21 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.4.24-1
|
||||||
|
- Updated to 1.4.24
|
||||||
|
|
||||||
|
* Mon Apr 25 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.4.23-1
|
||||||
|
- Updated to 1.4.23 (#1328849, #1330087)
|
||||||
|
- Added gpg verification of package as part of build process
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.22-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 11 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.4.22-1
|
||||||
|
- Updated to 1.4.22
|
||||||
|
|
||||||
|
* Thu Nov 12 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.4.21-1
|
||||||
|
- Updated to 1.4.21
|
||||||
|
|
||||||
|
* Wed Aug 5 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.4.20-1
|
||||||
|
- Updated to 1.4.20
|
||||||
|
|
||||||
|
* Fri Jul 10 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.4.19-1
|
||||||
|
- Updated to 1.4.19 (#1241842)
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.18-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Sep 18 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.4.18-1
|
||||||
|
- Update to 1.4.18
|
||||||
|
|
||||||
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.17-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 12 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 1.4.17-1
|
||||||
|
- Update to 1.4.17
|
||||||
|
|
||||||
|
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.13-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Oct 20 2013 Kalev Lember <kalevlember@gmail.com> - 1.4.13-1
|
||||||
|
- Update to 1.4.13
|
||||||
|
- Tighten pcsc-lite deps with %%{?_isa}
|
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.11-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 12 2013 Kalev Lember <kalevlember@gmail.com> - 1.4.11-1
|
||||||
|
- Update to 1.4.11
|
||||||
|
|
||||||
|
* Wed Apr 17 2013 Kalev Lember <kalevlember@gmail.com> - 1.4.10-1
|
||||||
|
- Update to 1.4.10
|
||||||
|
|
||||||
|
* Thu Feb 28 2013 Kalev Lember <kalevlember@gmail.com> - 1.4.9-1
|
||||||
|
- Update to 1.4.9
|
||||||
|
|
||||||
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Oct 07 2012 Kalev Lember <kalevlember@gmail.com> - 1.4.8-1
|
||||||
|
- Update to 1.4.8
|
||||||
|
|
||||||
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.7-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 26 2012 Kalev Lember <kalevlember@gmail.com> - 1.4.7-1
|
||||||
|
- Update to 1.4.7
|
||||||
|
|
||||||
|
* Sat Apr 07 2012 Kalev Lember <kalevlember@gmail.com> - 1.4.6-1
|
||||||
|
- Update to 1.4.6
|
||||||
|
|
||||||
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Oct 14 2011 Kalev Lember <kalevlember@gmail.com> - 1.4.5-1
|
||||||
|
- Update to 1.4.5
|
||||||
|
- Switch to systemctl for restarting pcscd after upgrade now that it is using
|
||||||
|
native systemd unit files.
|
||||||
|
|
||||||
|
* Fri May 27 2011 Kalev Lember <kalev@smartlink.ee> - 1.4.4-1
|
||||||
|
- Update to 1.4.4
|
||||||
|
- Clean up the spec file for modern rpmbuild
|
||||||
|
|
||||||
|
* Sat Apr 02 2011 Kalev Lember <kalev@smartlink.ee> - 1.4.3-1
|
||||||
|
- Update to 1.4.3
|
||||||
|
- GPLv2+ licensed RSA_SecurID no longer gets installed, which changes
|
||||||
|
the license of the binary RPM from 'LGPLv2+ and GPLv2+' to 'LGPLv2+'.
|
||||||
|
|
||||||
|
* Tue Mar 29 2011 Kalev Lember <kalev@smartlink.ee> - 1.4.2-2
|
||||||
|
- Don't install the udev rules
|
||||||
|
|
||||||
|
* Fri Feb 25 2011 Kalev Lember <kalev@smartlink.ee> - 1.4.2-1
|
||||||
|
- Update to 1.4.2
|
||||||
|
|
||||||
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Dec 13 2010 Kalev Lember <kalev@smartlink.ee> - 1.4.1-1
|
||||||
|
- Update to 1.4.1
|
||||||
|
|
||||||
|
* Thu Dec 09 2010 Kalev Lember <kalev@smartlink.ee> - 1.4.0-4
|
||||||
|
- Install src/openct/LICENSE file as LICENSE.openct in docs (#660600)
|
||||||
|
- Added 'and GPLv2+' to license tag to cover RSA_SecurID (#660600)
|
||||||
|
|
||||||
|
* Tue Dec 07 2010 Kalev Lember <kalev@smartlink.ee> - 1.4.0-3
|
||||||
|
- Renamed ccid package to pcsc-lite-ccid (#654377)
|
||||||
|
- Mark files under reader.conf.d as config(noreplace)
|
||||||
|
- Don't mark udev rules as config
|
||||||
|
|
||||||
|
* Tue Dec 07 2010 Kalev Lember <kalev@smartlink.ee> - 1.4.0-2
|
||||||
|
- Removed ExcludeArch: s390 s390x as these arches now have libusb1
|
||||||
|
- Updated description
|
||||||
|
|
||||||
|
* Wed Aug 04 2010 Kalev Lember <kalev@smartlink.ee> - 1.4.0-1
|
||||||
|
- Update to 1.4.0
|
||||||
|
- Build against libusb1 instead of libusb 0.1
|
||||||
|
- Install libccidtwin configuration file
|
||||||
|
- Spec file clean up
|
||||||
|
|
||||||
|
* Sun Jul 04 2010 Kalev Lember <kalev@smartlink.ee> - 1.3.13-1
|
||||||
|
- Update to 1.3.13
|
||||||
|
|
||||||
|
* Thu Nov 19 2009 Kalev Lember <kalev@smartlink.ee> - 1.3.11-1
|
||||||
|
- Updated to ccid 1.3.11
|
||||||
|
- Removed iso-8859-1 to utf-8 conversion as the files are in utf-8 now
|
||||||
|
|
||||||
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.9-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Feb 24 2009 Bob Relyea <rrelyea@redhat.com> - 1.3.9-1
|
||||||
|
- update to ccid 1.3.9
|
||||||
|
|
||||||
|
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.8-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Aug 26 2008 Bob Relyea <rrelyea@redhat.com> - 1.3.8-1
|
||||||
|
- update to ccid 1.3.8
|
||||||
|
|
||||||
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.2.1-4
|
||||||
|
- Autorebuild for GCC 4.3
|
||||||
|
|
||||||
|
* Mon Aug 20 2007 Bob Relyea <rrelyea@redhat.com> - 1.2.1-3
|
||||||
|
- Update License description to the new Fedora standard
|
||||||
|
|
||||||
|
* Mon Apr 30 2007 Bob Relyea <rrelyea@redhat.com> - 1.2.1-2
|
||||||
|
- Fix the missed use of the version macro
|
||||||
|
|
||||||
|
* Tue Feb 06 2007 Bob Relyea <rrelyea@redhat.com> - 1.2.1-1
|
||||||
|
- Pick up ccid 1.2.1
|
||||||
|
- use pcscd 'hotplug' feature instead of restarting the daemon
|
||||||
|
- add enable_udev
|
||||||
|
|
||||||
|
* Mon Nov 06 2006 Bob Relyea <rrelyea@redhat.com> - 1.1.0-2
|
||||||
|
- Fix version macro to remove '-'
|
||||||
|
|
||||||
|
* Thu Nov 02 2006 Bob Relyea <rrelyea@redhat.com> - 1.1.0-1
|
||||||
|
- Pickup ccid 1.1.0
|
||||||
|
|
||||||
|
* Thu Jul 20 2006 Florian La Roche <laroche@redhat.com> - 1.0.1-5
|
||||||
|
- require initscripts for post/postun
|
||||||
|
|
||||||
|
* Sun Jul 16 2006 Florian La Roche <laroche@redhat.com> - 1.0.1-4
|
||||||
|
- fix excludearch line
|
||||||
|
|
||||||
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.0.1-3.1
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Mon Jul 10 2006 Bob Relyea <rrelyea@redhat.com> - 1.0.1-3
|
||||||
|
- remove s390 from the build
|
||||||
|
|
||||||
|
* Mon Jun 5 2006 Bob Relyea <rrelyea@redhat.com> - 1.0.1-2
|
||||||
|
- Move to Fedora Core, removed %%{_dist}.
|
||||||
|
|
||||||
|
* Sat Apr 22 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.0.1-1
|
||||||
|
- 1.0.1.
|
||||||
|
|
||||||
|
* Mon Mar 6 2006 Ville Skyttä <ville.skytta at iki.fi> - 1.0.0-1
|
||||||
|
- 1.0.0, license changed to LGPL.
|
||||||
|
|
||||||
|
* Wed Feb 15 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.4.1-7
|
||||||
|
- Rebuild.
|
||||||
|
|
||||||
|
* Thu Nov 3 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.4.1-6
|
||||||
|
- Clean up build dependencies.
|
||||||
|
- Convert docs to UTF-8.
|
||||||
|
|
||||||
|
* Thu Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.4.1-5
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Fri Feb 25 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.4.1-4
|
||||||
|
- Drop Epoch: 0.
|
||||||
|
- Improve summary.
|
||||||
|
- Build with dependency tracking disabled.
|
||||||
|
|
||||||
|
* Thu Jul 1 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.1-0.fdr.3
|
||||||
|
- Restart pcscd in post(un)install phase if it's available and running.
|
||||||
|
|
||||||
|
* Thu May 13 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.1-0.fdr.2
|
||||||
|
- Provide pcsc-ifd-handler (idea from Debian).
|
||||||
|
|
||||||
|
* Sat Feb 14 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.1-0.fdr.1
|
||||||
|
- Update to 0.4.1.
|
||||||
|
|
||||||
|
* Fri Feb 13 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.0-0.fdr.1
|
||||||
|
- Update to 0.4.0.
|
||||||
|
|
||||||
|
* Wed Nov 5 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.3.2-0.fdr.1
|
||||||
|
- Update to 0.3.2.
|
||||||
|
- Update URL.
|
||||||
|
|
||||||
|
* Thu Oct 16 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.3.1-0.fdr.1
|
||||||
|
- Update to 0.3.1.
|
||||||
|
|
||||||
|
* Wed Sep 10 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.3.0-0.fdr.1
|
||||||
|
- Update to 0.3.0.
|
||||||
|
|
||||||
|
* Wed Aug 27 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.2.0-0.fdr.1
|
||||||
|
- Update to 0.2.0.
|
||||||
|
|
||||||
|
* Tue Aug 19 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.1.0-0.fdr.1
|
||||||
|
- First build.
|
Loading…
Reference in new issue