- pinentry-0.7.5
This commit is contained in:
parent
caee1b1b05
commit
e9454cea70
@ -1,6 +1,2 @@
|
|||||||
pinentry-0.7.2.tar.gz
|
pinentry-0.7.5.tar.gz
|
||||||
pinentry-0.7.2.tar.gz.sig
|
pinentry-0.7.5.tar.gz.sig
|
||||||
pinentry-0.7.3.tar.gz
|
|
||||||
pinentry-0.7.3.tar.gz.sig
|
|
||||||
pinentry-0.7.4.tar.gz
|
|
||||||
pinentry-0.7.4.tar.gz.sig
|
|
||||||
|
@ -1,44 +0,0 @@
|
|||||||
diff -up pinentry-0.7.4/gtk+-2/gtksecentry.c.glib2 pinentry-0.7.4/gtk+-2/gtksecentry.c
|
|
||||||
--- pinentry-0.7.4/gtk+-2/gtksecentry.c.glib2 2007-11-28 16:57:55.000000000 -0600
|
|
||||||
+++ pinentry-0.7.4/gtk+-2/gtksecentry.c 2008-03-25 09:27:37.000000000 -0500
|
|
||||||
@@ -270,7 +270,7 @@ gboolean g_use_secure_mem = FALSE;
|
|
||||||
|
|
||||||
|
|
||||||
gpointer
|
|
||||||
-g_malloc(gulong size)
|
|
||||||
+g_malloc(gsize size)
|
|
||||||
{
|
|
||||||
gpointer p;
|
|
||||||
|
|
||||||
@@ -282,13 +282,13 @@ g_malloc(gulong size)
|
|
||||||
else
|
|
||||||
p = (gpointer) malloc(size);
|
|
||||||
if (!p)
|
|
||||||
- g_error("could not allocate %ld bytes", size);
|
|
||||||
+ g_error("could not allocate %ui bytes", size);
|
|
||||||
|
|
||||||
return p;
|
|
||||||
}
|
|
||||||
|
|
||||||
gpointer
|
|
||||||
-g_malloc0(gulong size)
|
|
||||||
+g_malloc0(gsize size)
|
|
||||||
{
|
|
||||||
gpointer p;
|
|
||||||
|
|
||||||
@@ -302,13 +302,13 @@ g_malloc0(gulong size)
|
|
||||||
} else
|
|
||||||
p = (gpointer) calloc(size, 1);
|
|
||||||
if (!p)
|
|
||||||
- g_error("could not allocate %ld bytes", size);
|
|
||||||
+ g_error("could not allocate %ui bytes", size);
|
|
||||||
|
|
||||||
return p;
|
|
||||||
}
|
|
||||||
|
|
||||||
gpointer
|
|
||||||
-g_realloc(gpointer mem, gulong size)
|
|
||||||
+g_realloc(gpointer mem, gsize size)
|
|
||||||
{
|
|
||||||
gpointer p;
|
|
||||||
|
|
@ -1,14 +1,20 @@
|
|||||||
|
|
||||||
|
%if 0%{?fedora} > 8
|
||||||
|
%define qt3 qt3
|
||||||
|
%else
|
||||||
|
%define qt3 qt
|
||||||
|
%endif
|
||||||
|
|
||||||
Name: pinentry
|
Name: pinentry
|
||||||
Version: 0.7.4
|
Version: 0.7.5
|
||||||
Release: 6%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Collection of simple PIN or passphrase entry dialogs
|
Summary: Collection of simple PIN or passphrase entry dialogs
|
||||||
|
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
URL: http://www.gnupg.org/aegypten/
|
URL: http://www.gnupg.org/aegypten/
|
||||||
Source0: http://ftp.gnupg.org/gcrypt/pinentry/%{name}-%{version}.tar.gz
|
Source0: ftp://ftp.gnupg.org/gcrypt/pinentry/%{name}-%{version}.tar.gz
|
||||||
Source1: http://ftp.gnupg.org/gcrypt/pinentry/%{name}-%{version}.tar.gz.sig
|
Source1: ftp://ftp.gnupg.org/gcrypt/pinentry/%{name}-%{version}.tar.gz.sig
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
Patch1: pinentry-0.7.4-glib2.patch
|
Patch1: pinentry-0.7.4-glib2.patch
|
||||||
@ -16,11 +22,7 @@ Patch1: pinentry-0.7.4-glib2.patch
|
|||||||
BuildRequires: gtk2-devel
|
BuildRequires: gtk2-devel
|
||||||
BuildRequires: libcap-devel
|
BuildRequires: libcap-devel
|
||||||
BuildRequires: ncurses-devel
|
BuildRequires: ncurses-devel
|
||||||
%if 0%{?fedora} > 8
|
BuildRequires: %{qt3}-devel
|
||||||
BuildRequires: qt3-devel
|
|
||||||
%else
|
|
||||||
BuildRequires: qt-devel
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Requires(post): %{_sbindir}/update-alternatives
|
Requires(post): %{_sbindir}/update-alternatives
|
||||||
Requires(post): /sbin/install-info
|
Requires(post): /sbin/install-info
|
||||||
@ -65,7 +67,7 @@ This package contains the Qt GUI based version of the PIN entry dialog.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%patch1 -p1 -b .glib2
|
#patch1 -p1 -b .glib2
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -153,6 +155,9 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Apr 25 2009 Rex Dieter <rdieter@fedoraproject.org> - 0.7.5-1
|
||||||
|
- pinentry-0.7.5
|
||||||
|
|
||||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.4-6
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.4-6
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user