From 02dc6504a37ab8702fb508b9aae88f1e74f96e9fab5834ed5aec87021e899220 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismail=20D=C3=B6nmez?= Date: Fri, 25 Nov 2011 08:37:31 +0000 Subject: [PATCH] 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 --- .gitattributes | 23 ++++++++++++++ .gitignore | 1 + libntlm-1.3.tar.xz | 3 ++ libntlm.changes | 4 +++ libntlm.spec | 75 ++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 106 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 libntlm-1.3.tar.xz create mode 100644 libntlm.changes create mode 100644 libntlm.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/libntlm-1.3.tar.xz b/libntlm-1.3.tar.xz new file mode 100644 index 0000000..f96d0ea --- /dev/null +++ b/libntlm-1.3.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c8d2832daea795a2bcb183857ffb35f7de5419b4299d52576d393a13a498ce7 +size 345780 diff --git a/libntlm.changes b/libntlm.changes new file mode 100644 index 0000000..ac8c611 --- /dev/null +++ b/libntlm.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Fri Nov 25 01:04:06 UTC 2011 - jengelh@medozas.de + +- Initial package (1.3) for build.opensuse.org diff --git a/libntlm.spec b/libntlm.spec new file mode 100644 index 0000000..2597bb0 --- /dev/null +++ b/libntlm.spec @@ -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