Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6ecf884764 |
4 changed files with 29 additions and 11 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -6,3 +6,4 @@ xca-0.8.1.tar.gz
|
|||
/xca-0.9.3.tar.gz
|
||||
/xca-1.0.0.tar.gz
|
||||
/xca-1.1.0.tar.gz
|
||||
/xca-1.3.2.tar.gz
|
||||
|
|
|
|||
3
sources
3
sources
|
|
@ -1,2 +1 @@
|
|||
645d3405938c97a3eb0450bbe20234c7 xca-1.1.0.tar.gz
|
||||
405ca7e03469736ca963407adf97f099 README.update
|
||||
f9528164f46a78c7a2373778bc019c48 xca-1.3.2.tar.gz
|
||||
|
|
|
|||
13
xca-1.3.2-oidfieldcursor.patch
Normal file
13
xca-1.3.2-oidfieldcursor.patch
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
diff -Naurp xca-1.3.2.orig/widgets/OidResolver.cpp xca-1.3.2.new/widgets/OidResolver.cpp
|
||||
--- xca-1.3.2.orig/widgets/OidResolver.cpp 2015-10-10 14:54:12.000000000 +0200
|
||||
+++ xca-1.3.2.new/widgets/OidResolver.cpp 2015-10-19 12:22:10.035130081 +0200
|
||||
@@ -23,7 +23,8 @@ void OidResolver::searchOid(QString s)
|
||||
bool ok;
|
||||
int n;
|
||||
|
||||
- input->setText(s);
|
||||
+ if (input->text() != s) // Avoid moving the cursor at end if unchanged.
|
||||
+ input->setText(s);
|
||||
s = s.trimmed();
|
||||
n = s.toUInt(&ok);
|
||||
if (!ok)
|
||||
23
xca.spec
23
xca.spec
|
|
@ -1,12 +1,12 @@
|
|||
Summary: Graphical X.509 certificate management tool
|
||||
Name: xca
|
||||
Version: 1.1.0
|
||||
Release: 3%{?dist}
|
||||
Version: 1.3.2
|
||||
Release: 1%{?dist}
|
||||
License: BSD
|
||||
Group: Applications/Productivity
|
||||
URL: http://xca.hohnstaedt.de/
|
||||
Source0: http://downloads.sourceforge.net/sourceforge/xca/%{name}-%{version}.tar.gz
|
||||
Source1: README.update
|
||||
Source0: http://downloads.sourceforge.net/sourceforge/xca/%{version}/%{name}-%{version}.tar.gz
|
||||
Patch1: xca-1.3.2-oidfieldcursor.patch
|
||||
BuildRequires: qt4-devel openssl-devel
|
||||
BuildRequires: xdg-utils
|
||||
BuildRequires: ImageMagick
|
||||
|
|
@ -35,8 +35,7 @@ format, portable across operating systems.
|
|||
#-------------------------------------------------------------------------------
|
||||
|
||||
%setup -q
|
||||
|
||||
install -p -m 644 "%{SOURCE1}" ./
|
||||
%patch1 -p 1 -b .oidfieldcursor
|
||||
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
|
|
@ -137,7 +136,7 @@ fi
|
|||
#-------------------------------------------------------------------------------
|
||||
|
||||
%defattr(-, root, root, -)
|
||||
%doc AUTHORS COPYRIGHT README.update
|
||||
%doc AUTHORS COPYRIGHT
|
||||
%doc doc/*.html
|
||||
%{_bindir}/*
|
||||
%exclude %{_bindir}/xca_db_stat
|
||||
|
|
@ -154,14 +153,20 @@ fi
|
|||
|
||||
#-------------------------------------------------------------------------------
|
||||
%changelog
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
* Mon Oct 26 2015 Patrick Monnerat <patrick.monnerat@dh.com> 1.3.2-1
|
||||
- New upstream release.
|
||||
- Patch "oidfieldcursor" to restore normal cursor behavior on OID resolver
|
||||
input field.
|
||||
- Drop README.update.
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.1.0-2
|
||||
- Rebuilt for GCC 5 C++11 ABI change
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
* Mon Nov 24 2014 Patrick Monnerat <pm@datasphere.ch> 1.1.0-1
|
||||
- New upstream release
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue