Accepting request 93564 from home:jengelh:dev

gsoap can use this

OBS-URL: https://build.opensuse.org/request/show/93564
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libntlm?expand=0&rev=1
This commit is contained in:
Ismail Dönmez 2011-11-25 08:37:31 +00:00 committed by Git OBS Bridge
commit 02dc6504a3
5 changed files with 106 additions and 0 deletions

23
.gitattributes vendored Normal file
View 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
View File

@ -0,0 +1 @@
.osc

3
libntlm-1.3.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6c8d2832daea795a2bcb183857ffb35f7de5419b4299d52576d393a13a498ce7
size 345780

4
libntlm.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Fri Nov 25 01:04:06 UTC 2011 - jengelh@medozas.de
- Initial package (1.3) for build.opensuse.org

75
libntlm.spec Normal file
View File

@ -0,0 +1,75 @@
#
# spec file for package libntlm
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: libntlm
%define lname libntlm0
Version: 1.3
Release: 0
License: LGPL-2.1+
Summary: Implementation of Microsoft's NTLM authentication
URL: http://www.nongnu.org/libntlm/
Group: Development/Libraries/C and C++
#DL-URL: http://www.nongnu.org/libntlm/releases/
Source: %name-%version.tar.xz
BuildRequires: pkgconfig, xz
BuildRoot: %_tmppath/%name-%version-build
%description
Libntlm is a library that implements Microsoft's NTLM authentication.
%package -n %lname
Summary: Implementation of Microsoft's NTLM authentication
Group: System/Libraries
%description -n %lname
Libntlm is a library that implements Microsoft's NTLM authentication.
%package devel
Summary: Development files for Libntlm
Group: Development/Libraries/C and C++
Requires: %lname = %version
%description devel
Libntlm is a library that implements Microsoft's NTLM authentication.
%prep
%setup -q
%build
%configure --disable-static
make %{?_smp_mflags};
%install
%make_install
rm -f "%buildroot/%_libdir"/*.la;
%post -n %lname -p /sbin/ldconfig
%postun -n %lname -p /sbin/ldconfig
%files -n %lname
%defattr(-,root,root)
%doc AUTHORS ChangeLog COPYING THANKS
%{_libdir}/*.so.*
%files devel
%defattr(-,root,root)
%doc NEWS README
%_includedir/ntlm.h
%_libdir/*.so
%_libdir/pkgconfig/*.pc