Accepting request 762877 from home:wrosenauer:devel

- Updated to version 1.8.26
  * Use poll() instead of select() to allow file descriptor higher
    than FD_SETSIZE
  * Enable reader filtering by default
  * pcsc-spy:
    - Do not read output buffer after error
    - Adjust code to handle autoallocated buffers
    - fix year-2038 issue by using long instead of int
  * Android: fix compilation
  * polkit: log the error message if polkit_authority_get_sync() fails
  * Exit with EXIT_SUCCESS on shutdown to please systemd
  * Fix a minor memory leak

OBS-URL: https://build.opensuse.org/request/show/762877
OBS-URL: https://build.opensuse.org/package/show/security:chipcard/pcsc-lite?expand=0&rev=155
This commit is contained in:
Wolfgang Rosenauer 2020-01-10 15:35:00 +00:00 committed by Git OBS Bridge
parent 668d738d2e
commit b53a527d05
6 changed files with 39 additions and 23 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d76d79edc31cf76e782b9f697420d3defbcc91778c3c650658086a1b748e8792
size 757099

View File

@ -1,16 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCAAdFiEE9eEbn/6REUb0HZU9eKG03+j5xX4FAlyZM0wACgkQeKG03+j5
xX6D2Q//UHi6YlRW0TK7lJXkVNoxyBU7SuA0mq0DUeWckhTACJ95KECv78z5QT77
Vsvi9bQquzri8UEEriguzc+R3DnQmqB9gqfQn12cD7f0QwiNbpJx/THHDRtA4afO
mEEorm06xL0iJmYE0AKTqo+YCtC5FXstHXMRzjzCGXUz+Mf9wn9/s7/jnNJGTPZ1
nIHBYk8IqA0Z5q9YgqsrQOkan4rCDSm+fdagfeByBPm3afnarKOKdWv/05RWaRYk
N1UQRmLElLZPOgJaTfyRMjWmkLS7dyu4HtYlCSJUcxG8fW9Q6wIt4bA4DE8dZOWx
JDUB6xFkrVQpC3Ot8yzd4MUiElEXoekLNQw815M0AchjJJ4tGsFcuIarbsqzM3iI
ivL8OlQPF24sMp+EUK3z/bg695o6B7C3YMHoG4qtJyX/QFsx2R1p3UyhCW4cvrQa
1JsmrY5q/s3hv16WTWhz2y08i96hzN/U1KxKZpPixFasPqmEEC5J/cFZTiiQMj0G
aGfcXfCxQH+a55YVuK9jWMUllf2BxGiMnqyr+2ohyonEtPB+2j+5TiJRnM63sc2v
o0KEw3UJZm2rIdNvXMFhyYaiWidvuWYWQAsjKTDklv9OtOj4X/g8xd9AqP7hnbH1
Tp53R2VKm/YefECQgSVa3T7vMlASVnLydq/ueYHqoc9kG4GFtzc=
=6q/t
-----END PGP SIGNATURE-----

3
pcsc-lite-1.8.26.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3eb7be7d6ef618c0a444316cf5c1f2f9d7227aedba7a192f389fe3e7c0dfbbd9
size 754838

View File

@ -0,0 +1,16 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCAAdFiEE9eEbn/6REUb0HZU9eKG03+j5xX4FAl4PbM4ACgkQeKG03+j5
xX6kqg/+Lkc7hZtGQ3qSjUW6nS58QI4VrOyOzHDyCQaC8MulWxiDe4g3OmtW4pVT
wD8xE3nnpqBV+3JkjGRYSAmunMIWZsPRSYwNc/UnGu15Ikzo4lnEuuMW5LlfqDOh
EyDyKGaq9HwP9H5maB7tQU1fiSXJHePeq76BfoN/q/Mwh46kRTTEaKp0cdku69B7
wJg9GAoD+QyKR3NXHFYPoAWvlk9ucw8/rF3Gpm5CM7JwU5XD4rN++lumMqUcnAby
tQBQKxi2O5k06xNyjN08eZVl9KHqeDo2CLzp7mMHhNdBr7lXk87H2NBS/B3FcQ/c
21t2qZFC2MNQa4qfB+n8UrsBj1fTQQFzIBnN/sRC3Kc5T5aELzTuhpIMSZ5HKf1S
BRFG+gh6ETlcDPl5VfgOTE29oCxp8Om+BOeAAZ0MvEKJzBhZijQGr3iD98gd5jmk
I9eyQJ2C3N86PYcTyUv8FJ5FRVLFNnwPA+PrXDpEhjSUWUfezGFMm6vg2miKHPED
carY07bAS+HPjJvll15yDVO1iAY15/xWevZ0Az79eBFN4gIMIn0eTkMrG5LMugZH
YdkEj0iLBQ4P6+V+SWqIbR/nHYOluvr5wBnPV7Vj7njoGIkcOChrHtPqnQq4tRsl
ThNpmDmCbncX/O4z4X78abBeU4fDqbI/XXy4tAdag1nf4kuYHG4=
=52L9
-----END PGP SIGNATURE-----

View File

@ -1,3 +1,19 @@
-------------------------------------------------------------------
Fri Jan 10 13:29:59 UTC 2020 - Wolfgang Rosenauer <wr@rosenauer.org>
- Updated to version 1.8.26
* Use poll() instead of select() to allow file descriptor higher
than FD_SETSIZE
* Enable reader filtering by default
* pcsc-spy:
- Do not read output buffer after error
- Adjust code to handle autoallocated buffers
- fix year-2038 issue by using long instead of int
* Android: fix compilation
* polkit: log the error message if polkit_authority_get_sync() fails
* Exit with EXIT_SUCCESS on shutdown to please systemd
* Fix a minor memory leak
-------------------------------------------------------------------
Fri Apr 26 11:17:53 UTC 2019 - mvetter@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package pcsc-lite
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
@ -26,12 +26,12 @@
%define PKG_USER scard
%define PKG_GROUP scard
Name: pcsc-lite
Version: 1.8.25
Version: 1.8.26
Release: 0
Summary: PC/SC Smart Cards Library
License: BSD-3-Clause AND GPL-3.0-or-later
Group: Productivity/Security
Url: https://pcsclite.apdu.fr/
URL: https://pcsclite.apdu.fr/
Source: %{name}-%{version}.tar.bz2
Source1: %{name}.sysconfig
Source2: README.SUSE