This commit is contained in:
commit
b480c8dedc
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
libassuan-0.6.10.tar.bz2
Normal file
3
libassuan-0.6.10.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7a124d77bd39f08e211b6cc890d10d34f38fcc6eb6d75f61a842fb9873cec9a4
|
||||||
|
size 214128
|
25
libassuan.changes
Normal file
25
libassuan.changes
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 25 21:37:23 CET 2006 - mls@suse.de
|
||||||
|
|
||||||
|
- converted neededforbuild to BuildRequires
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 8 14:26:22 CET 2005 - dmueller@suse.de
|
||||||
|
|
||||||
|
- don't build as root
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jul 12 16:09:54 CEST 2005 - postadal@suse.cz
|
||||||
|
|
||||||
|
- updated to version 0.6.10
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 12 13:24:14 CET 2005 - adrian@suse.de
|
||||||
|
|
||||||
|
- update to version 0.6.9
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 12 16:07:17 CEST 2004 - adrian@suse.de
|
||||||
|
|
||||||
|
- initial package of version 0.6.6
|
||||||
|
|
78
libassuan.spec
Normal file
78
libassuan.spec
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
#
|
||||||
|
# spec file for package libassuan (Version 0.6.10)
|
||||||
|
#
|
||||||
|
# Copyright (c) 2005 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
|
# This file and all modifications and additions to the pristine
|
||||||
|
# package are under the same license as the package itself.
|
||||||
|
#
|
||||||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org
|
||||||
|
#
|
||||||
|
|
||||||
|
# norootforbuild
|
||||||
|
|
||||||
|
Name: libassuan
|
||||||
|
URL: http://www.gnupg.org/aegypten2/index.html
|
||||||
|
Version: 0.6.10
|
||||||
|
Release: 3
|
||||||
|
Summary: IPC Library Used by GnuPG 1.9 and GPGME
|
||||||
|
License: GPL, LGPL
|
||||||
|
Group: Development/Libraries/C and C++
|
||||||
|
Autoreqprov: on
|
||||||
|
Source: libassuan-%{version}.tar.bz2
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
PreReq: %install_info_prereq
|
||||||
|
|
||||||
|
%description
|
||||||
|
This is the IPC library used by GnuPG 1.9 and GPGME.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
--------
|
||||||
|
Werner Koch <wk@gnupg.org>
|
||||||
|
Neal H. Walfield <neal@g10code.de>
|
||||||
|
Marcus Brinkmann <marcus@g10code.de>
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
CFLAGS="$RPM_OPT_FLAGS" ./configure \
|
||||||
|
--prefix=%{_prefix} \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--infodir=%{_infodir} \
|
||||||
|
--libdir=%{_libdir}
|
||||||
|
make
|
||||||
|
|
||||||
|
%install
|
||||||
|
make DESTDIR=$RPM_BUILD_ROOT install
|
||||||
|
|
||||||
|
%post
|
||||||
|
%install_info --info-dir=%{_infodir} %{_infodir}/assuan.info.gz
|
||||||
|
|
||||||
|
%postun
|
||||||
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/assuan.info.gz
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc AUTHORS COPYING ChangeLog NEWS README THANKS
|
||||||
|
%doc %_infodir/assuan*
|
||||||
|
%{_libdir}/*
|
||||||
|
/usr/include/*
|
||||||
|
/usr/bin/*
|
||||||
|
/usr/share/aclocal/*
|
||||||
|
|
||||||
|
%changelog -n libassuan
|
||||||
|
* Wed Jan 25 2006 - mls@suse.de
|
||||||
|
- converted neededforbuild to BuildRequires
|
||||||
|
* Tue Nov 08 2005 - dmueller@suse.de
|
||||||
|
- don't build as root
|
||||||
|
* Tue Jul 12 2005 - postadal@suse.cz
|
||||||
|
- updated to version 0.6.10
|
||||||
|
* Wed Jan 12 2005 - adrian@suse.de
|
||||||
|
- update to version 0.6.9
|
||||||
|
* Mon Jul 12 2004 - adrian@suse.de
|
||||||
|
- initial package of version 0.6.6
|
Loading…
x
Reference in New Issue
Block a user