- Add support for new features in YubiKey 2.2.

- Stricter argument parsing, to help user avoid configuration surprises.
- Ask kernel to detach USB HID driver with libusb 0.1 too.
- Properly reject keys (-a) with upper case hex, instead of just ignoring
  those bits.
- Really check Yubikey compatibility when setting options.
- Pretty-printer did not handle bit overloaded cfgflags.
  It is better now, but not perfect.
- Fixes to make it work under Windows.
epel9
Maxim Burgerhout 14 years ago
parent a9ce0a62cb
commit 5a4c6809d2

1
.gitignore vendored

@ -1,2 +1,3 @@
ykpers-1.3.3.tar.gz ykpers-1.3.3.tar.gz
/ykpers-1.3.4.tar.gz /ykpers-1.3.4.tar.gz
/ykpers-1.4.1.tar.gz

@ -1 +1 @@
a461b0d94588fbcb35979e6208e4eb8a ykpers-1.3.4.tar.gz d0e75bc020d8efefbf0cf18df23a7219 ykpers-1.4.1.tar.gz

@ -1,6 +1,6 @@
Name: ykpers Name: ykpers
Version: 1.3.4 Version: 1.4.1
Release: 2%{?dist} Release: 1%{?dist}
Summary: Yubikey personalization program Summary: Yubikey personalization program
Group: Applications/System Group: Applications/System
@ -44,7 +44,8 @@ use ykpers.
%{__make} %{?_smp_mflags} %{__make} %{?_smp_mflags}
%check %check
%{__make} check LD_LIBRARY_PATH=".libs" pwd
%{__make} check LD_LIBRARY_PATH="../.libs"
%install %install
%{__make} install DESTDIR=${RPM_BUILD_ROOT} INSTALL="%{__install} -p" %{__make} install DESTDIR=${RPM_BUILD_ROOT} INSTALL="%{__install} -p"
@ -59,21 +60,32 @@ use ykpers.
%files %files
%defattr(-,root,root,-) %defattr(-,root,root,-)
%doc AUTHORS COPYING README ChangeLog NEWS %doc AUTHORS COPYING README ChangeLog NEWS
%doc doc/ReadMe.wiki doc/Compatibility.wiki %doc doc/Read-Me.asciidoc doc/Compatibility.asciidoc
%{_bindir}/ykpersonalize %{_bindir}/ykpersonalize
%{_libdir}/libykpers-1.so.1 %{_libdir}/libykpers-1.so.1
%{_libdir}/libykpers-1.so.1.1.0 %{_libdir}/libykpers-1.so.1.3.0
%{_mandir}/man1/ykpersonalize.1.gz %{_mandir}/man1/ykpersonalize.1.gz
%files devel %files devel
%defattr(-,root,root,-) %defattr(-,root,root,-)
%doc doc/UsbhidIssue.wiki %doc doc/USB-Hid-Issue.asciidoc
%{_libdir}/pkgconfig/ykpers-1.pc %{_libdir}/pkgconfig/ykpers-1.pc
%{_libdir}/libykpers-1.so %{_libdir}/libykpers-1.so
%{_includedir}/ykpers-1/ %{_includedir}/ykpers-1/
%exclude %{_libdir}/libykpers-1.la %exclude %{_libdir}/libykpers-1.la
%changelog %changelog
* Tue Feb 6 2011 - Maxim Burgerhout <wzzrd@fedoraproject.org> - 1.4.1-1
- Add support for new features in YubiKey 2.2.
- Stricter argument parsing, to help user avoid configuration surprises.
- Ask kernel to detach USB HID driver with libusb 0.1 too.
- Properly reject keys (-a) with upper case hex, instead of just ignoring
those bits.
- Really check Yubikey compatibility when setting options.
- Pretty-printer did not handle bit overloaded cfgflags.
It is better now, but not perfect.
- Fixes to make it work under Windows.
* Mon Oct 18 2010 - Dan Horák <dan[at]danny.cz> - 1.3.4-2 * Mon Oct 18 2010 - Dan Horák <dan[at]danny.cz> - 1.3.4-2
- build with libusb on s390(x) - build with libusb on s390(x)

Loading…
Cancel
Save