OBS User unknown 2008-09-08 02:46:10 +00:00 committed by Git OBS Bridge
commit c876201441
6 changed files with 138 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

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5fff1d21d0afe2ad69600ff362e38ab0229e42e8d88abfb6f1f7a3cc4d15ea3e
size 227944

View File

@ -0,0 +1,5 @@
-------------------------------------------------------------------
Thu Aug 28 21:48:47 CDT 2008 - hpj@suse.de
- Initial package.

106
nss-shared-helper.spec Normal file
View File

@ -0,0 +1,106 @@
#
# spec file for package nss-shared-helper (Version 1.0.0)
#
# Copyright (c) 2008 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: nss-shared-helper
BuildRequires: mozilla-nspr-devel mozilla-nss-devel pkg-config
Version: 1.0.0
Release: 2
Summary: Helper functions for sharing NSS database
Group: Development/Libraries/C and C++
License: LGPL v2.0 or later
Source0: nss-shared-helper-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
AutoReqProv: on
%description
This library provides helper functions for programs that want to share
an NSS crypto database.
Authors:
--------
Hans Petter Jansson <hpj@copyleft.no>
%define debug_package_requires libnsssharedhelper0 = %{version}-%{release}
%package -n libnsssharedhelper0
License: GPL v2 or later
Summary: Helper functions for sharing NSS database
Group: Development/Libraries/C and C++
%description -n libnsssharedhelper0
This library provides helper functions for programs that want to share
an NSS crypto database.
Authors:
--------
Hans Petter Jansson <hpj@copyleft.no>
%package devel
License: GPL v2 or later
Summary: Development libraries for nss-shared-helper
Group: Development/Libraries/C and C++
Requires: libnsssharedhelper0 = %{version}
%description devel
Header and library files for helpers meant to enable sharing of NSS
crypto database.
Authors:
--------
Hans Petter Jansson <hpj@copyleft.no>
%prep
%setup -n nss-shared-helper-%{version}
%build
%configure
%__make
%install
%makeinstall
# We don't want to ship the .a and .la files
%{__rm} $RPM_BUILD_ROOT/%{_libdir}/*.*a
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files -n libnsssharedhelper0
%defattr(-, root, root, -)
%{_libdir}/libnsssharedhelper.so.*
%doc README COPYING
%files devel
%defattr(-,root,root,-)
%{_includedir}/nss-shared-helper
%{_libdir}/libnsssharedhelper.so
%{_libdir}/pkgconfig/nss-shared-helper.pc
%post -n libnsssharedhelper0 -p /sbin/ldconfig
%postun -n libnsssharedhelper0 -p /sbin/ldconfig
%changelog
* Thu Aug 28 2008 hpj@suse.de
- Initial package.

0
ready Normal file
View File