public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Jakub Jelen <jjelen@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/pcsc-lite-ccid] rawhide: New upstream release 1.8.1
Date: Wed, 10 Jun 2026 21:37:17 GMT	[thread overview]
Message-ID: <178112743740.1.8688678407091640921.rpms-pcsc-lite-ccid-20ac032579fe@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/pcsc-lite-ccid
Branch : rawhide
Commit : 20ac032579fee32c59ab14de70b214723e754a64
Author : Jakub Jelen <jjelen@redhat.com>
Date   : 2026-06-10T23:37:02+02:00
Stats  : +10/-8 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/pcsc-lite-ccid/c/20ac032579fee32c59ab14de70b214723e754a64?branch=rawhide

Log:
New upstream release 1.8.1

---
diff --git a/.gitignore b/.gitignore
index 36e6b6e..52b7b3c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -37,3 +37,5 @@
 /ccid-1.7.1.tar.xz.asc
 /ccid-1.8.0.tar.xz
 /ccid-1.8.0.tar.xz.asc
+/ccid-1.8.1.tar.xz
+/ccid-1.8.1.tar.xz.asc

diff --git a/ccid-1.4.26-omnikey-3121.patch b/ccid-1.4.26-omnikey-3121.patch
index cf801d5..b10a2eb 100644
--- a/ccid-1.4.26-omnikey-3121.patch
+++ b/ccid-1.4.26-omnikey-3121.patch
@@ -102,10 +102,10 @@ diff -up ccid-1.4.26/src/commands.c.omnikey ccid-1.4.26/src/commands.c
  RESPONSECODE CCID_Receive(CcidDesc * ccid_reader, 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 char cmd[CCID_HEADER_SIZE + CMD_BUF_SIZE];	/* CCID + APDU buffer */
++	unsigned char cmd[CCID_HEADER_SIZE+1+CMD_BUF_SIZE];	/* CCID + APDU buffer */
  	unsigned int length;
-+	unsigned char *rx_ptr = cmd+10;
++	unsigned char *rx_ptr = cmd + CCID_HEADER_SIZE;
  	RESPONSECODE return_value = IFD_SUCCESS;
  	status_t ret;
  	_ccid_descriptor *ccid_descriptor = &ccid_reader->device.ccid;
@@ -118,7 +118,7 @@ diff -up ccid-1.4.26/src/commands.c.omnikey ccid-1.4.26/src/commands.c
 +	  (ccid_descriptor->dwNonStandardFlags & CCID_NON_STAND_OMK_3121_T1) &&
 +	  (ccid_descriptor->cardProtocol == SCARD_PROTOCOL_T1)) {
 +		length--;
-+		rx_ptr = cmd+11;
++		rx_ptr = cmd + CCID_HEADER_SIZE + 1;
 +	}
 +
  	if (length <= *rx_length)
@@ -128,7 +128,7 @@ diff -up ccid-1.4.26/src/commands.c.omnikey ccid-1.4.26/src/commands.c
  	}
  	else
 		if (length)
--			memcpy(rx_buffer, cmd+10, length);
+-			memcpy(rx_buffer, cmd + CCID_HEADER_SIZE, length);
 +			memcpy(rx_buffer, rx_ptr, length);
  
  	/* Extended case?

diff --git a/pcsc-lite-ccid.spec b/pcsc-lite-ccid.spec
index 7cef710..478d797 100644
--- a/pcsc-lite-ccid.spec
+++ b/pcsc-lite-ccid.spec
@@ -2,7 +2,7 @@
 %global pcsc_lite_ver 1.8.9
 
 Name:           pcsc-lite-ccid
-Version:        1.8.0
+Version:        1.8.1
 Release:        %{autorelease}
 Summary:        Generic USB CCID smart card reader driver
 

diff --git a/sources b/sources
index 2a08a85..45c1fc2 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (ccid-1.8.0.tar.xz) = bf5c1d52561b35edd65cecc94f413d9bdcd17b154ec0c43e8caf4c65f8d8168a05a632f5469c097501902e6a4740c7839c909d881feb157424c3339fc1e1826b
-SHA512 (ccid-1.8.0.tar.xz.asc) = f6210bc96d362fe21ac2a87f7ec28d3602e7bb618f305114239d51d53fe9b8a1491bc42f02d7282eddb7cf0065b538db6ca3f4739004bb71d8f467239a5ec2ca
+SHA512 (ccid-1.8.1.tar.xz) = 0539b3bac1d4f795e5a7ae8f2d2496c746c9c3a4245d0d59aa0a23ea0890fb363622cefc69e1ed39f85978d632b98d7072cd6e0ba292464e61120f2a5460d702
+SHA512 (ccid-1.8.1.tar.xz.asc) = 2774a327afa8cf954ae9c00a907f78844f745538fc2a9ae98de0423cd21f51edfb17f673e6dbbe5e44c539c87923ebc6012405de0a83c4588c5d26e5f0674fae

                 reply	other threads:[~2026-06-10 21:37 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178112743740.1.8688678407091640921.rpms-pcsc-lite-ccid-20ac032579fe@fedoraproject.org \
    --to=jjelen@redhat.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox