auto-import libksba-0.9.9-1 on branch devel from libksba-0.9.9-1.src.rpm
This commit is contained in:
parent
ea3a5d3051
commit
a6a6572fa9
@ -1 +1 @@
|
|||||||
libksba-0.4.7.tar.gz
|
libksba-0.9.9.tar.gz
|
||||||
|
12
libksba-0.9.9-underquoted.patch
Normal file
12
libksba-0.9.9-underquoted.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
diff -Nur libksba-0.9.9-orig/src/ksba.m4 libksba-0.9.9/src/ksba.m4
|
||||||
|
--- libksba-0.9.9-orig/src/ksba.m4 2002-08-23 20:53:24.000000000 +0200
|
||||||
|
+++ libksba-0.9.9/src/ksba.m4 2005-02-01 20:15:20.041030328 +0100
|
||||||
|
@@ -14,7 +14,7 @@
|
||||||
|
dnl [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND ]]])
|
||||||
|
dnl Test for libksba and define KSBA_CFLAGS and KSBA_LIBS
|
||||||
|
dnl
|
||||||
|
-AC_DEFUN(AM_PATH_KSBA,
|
||||||
|
+AC_DEFUN([AM_PATH_KSBA],
|
||||||
|
[ AC_ARG_WITH(ksba-prefix,
|
||||||
|
AC_HELP_STRING([--with-ksba-prefix=PFX],
|
||||||
|
[prefix where KSBA is installed (optional)]),
|
BIN
libksba-0.9.9.tar.gz.sig
Normal file
BIN
libksba-0.9.9.tar.gz.sig
Normal file
Binary file not shown.
44
libksba.spec
44
libksba.spec
@ -1,13 +1,19 @@
|
|||||||
|
|
||||||
Summary: X.509 library
|
Summary: X.509 library
|
||||||
Name: libksba
|
Name: libksba
|
||||||
Version: 0.4.7
|
Epoch: 0
|
||||||
Release: 1
|
Version: 0.9.9
|
||||||
|
Release: 1%{?dist_tag}
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
|
||||||
URL: http://www.gnupg.org/
|
URL: http://www.gnupg.org/
|
||||||
Source0: http://ftp.gnupg.org/gcrypt/alpha/aegypten/libksba-0.4.7.tar.gz
|
Source0: ftp://ftp.gnupg.org/gcrypt/alpha/libksba/libksba-0.9.9.tar.gz
|
||||||
Epoch: 0
|
Source1: ftp://ftp.gnupg.org/gcrypt/alpha/libksba/libksba-0.9.9.tar.gz.sig
|
||||||
|
Patch0: libksba-0.9.9-underquoted.patch
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
||||||
|
|
||||||
|
BuildRequires: libgpg-error >= 0:0.7
|
||||||
|
BuildRequires: libgcrypt-devel >= 0:1.2.0
|
||||||
|
|
||||||
%description
|
%description
|
||||||
KSBA is a library designed to build software based on the X.509 and
|
KSBA is a library designed to build software based on the X.509 and
|
||||||
@ -16,25 +22,32 @@ CMS protocols.
|
|||||||
%package devel
|
%package devel
|
||||||
Summary: Development headers and libraries for %{name}
|
Summary: Development headers and libraries for %{name}
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
||||||
|
Requires(post): /sbin/install-info
|
||||||
|
Requires(preun): /sbin/install-info
|
||||||
%description devel
|
%description devel
|
||||||
Development headers and libraries for %{name}.
|
Development headers and libraries for %{name}.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
%patch -p1 -b .underquoted
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%configure
|
||||||
make %{?_smp_mflags}
|
|
||||||
|
# not smp safe
|
||||||
|
make
|
||||||
|
|
||||||
make check
|
make check
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
%makeinstall
|
|
||||||
|
make install DESTDIR=$RPM_BUILD_ROOT
|
||||||
|
|
||||||
rm -f $RPM_BUILD_ROOT{%{_infodir}/dir,%{_libdir}/*.la}
|
rm -f $RPM_BUILD_ROOT{%{_infodir}/dir,%{_libdir}/*.la}
|
||||||
|
|
||||||
|
|
||||||
@ -43,15 +56,14 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
%post devel
|
%post devel
|
||||||
install-info %{_infodir}/ksba.info.gz %{_infodir}/dir
|
install-info %{_infodir}/ksba.info.gz %{_infodir}/dir ||:
|
||||||
|
|
||||||
%postun devel
|
%postun devel
|
||||||
if [ "$1" = "0" ]; then
|
if [ $1 -eq 0 ]; then
|
||||||
install-info --delete %{_infodir}/ksba.info.gz %{_infodir}/dir
|
install-info --delete %{_infodir}/ksba.info.gz %{_infodir}/dir ||:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
@ -71,6 +83,12 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Feb 1 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0:0.9.9-1
|
||||||
|
- Minus BR libtool, add epoch to -devel req, fix underquoted ksba.m4.
|
||||||
|
|
||||||
|
* Tue Oct 19 2004 Rex Dieter <rexdieter[AT]users.sf.net> 0:0.9.9-0.fdr.1
|
||||||
|
- 0.9.9
|
||||||
|
|
||||||
* Thu Mar 20 2003 Ville Skyttä <ville.skytta at iki.fi> - 0.4.7-0.fdr.1
|
* Thu Mar 20 2003 Ville Skyttä <ville.skytta at iki.fi> - 0.4.7-0.fdr.1
|
||||||
- Update to 0.4.7, and to current Fedora guidelines.
|
- Update to 0.4.7, and to current Fedora guidelines.
|
||||||
- Exclude %%{_libdir}/*.la.
|
- Exclude %%{_libdir}/*.la.
|
||||||
|
Loading…
Reference in New Issue
Block a user