OBS User unknown 2006-12-18 23:16:55 +00:00 committed by Git OBS Bridge
commit 4583b3ccf2
6 changed files with 152 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

BIN
libnscd-2.0.2.tar.bz2 (Stored with Git LFS) Normal file

Binary file not shown.

35
libnscd.changes Normal file
View File

@ -0,0 +1,35 @@
-------------------------------------------------------------------
Wed Nov 29 17:36:02 CET 2006 - kukuk@suse.de
- Update to version 2.0.2 (fix memory leak)
-------------------------------------------------------------------
Thu Oct 5 14:35:11 CEST 2006 - kukuk@suse.de
- Update to version 2.0.1 (Makefile fixes)
-------------------------------------------------------------------
Sat Jun 3 20:59:22 CEST 2006 - kukuk@suse.de
- Update to version 2.0 (manual page, new nscd features)
-------------------------------------------------------------------
Wed Jan 25 21:30:25 CET 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
-------------------------------------------------------------------
Tue Feb 22 14:09:53 CET 2005 - kukuk@suse.de
- libtool is crap
-------------------------------------------------------------------
Tue Feb 22 13:58:41 CET 2005 - kukuk@suse.de
- Update to libnscd 1.1 (fix interface to nscd) [#65748]
-------------------------------------------------------------------
Tue Sep 14 11:01:42 CEST 2004 - kukuk@suse.de
- Initial release

90
libnscd.spec Normal file
View File

@ -0,0 +1,90 @@
#
# spec file for package libnscd (Version 2.0.2)
#
# Copyright (c) 2006 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: libnscd
License: GNU Library General Public License v. 2.0 and 2.1 (LGPL)
Group: System/Libraries
Autoreqprov: on
Version: 2.0.2
Release: 1
Summary: Library to Allow Applications to Communicate with nscd
Source: libnscd-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
This library provides an interface for applications to NSCD (Name
Service Cache Daemon) and allows those applications, if they have the
necessary permissions, to flush the cache for special services.
%package devel
Summary: Include Files and Libraries for Development.
Group: Development/Libraries/C and C++
Requires: libnscd = %{version}
Autoreqprov: on
%description devel
This package contains all necessary include files and libraries needed
to develop applications that needs to communicate with a running nscd.
%prep
%setup
%build
%configure
make
make check
%install
make install DESTDIR=$RPM_BUILD_ROOT
rm $RPM_BUILD_ROOT%{_libdir}/libnscd.la
mkdir -p $RPM_BUILD_ROOT/%{_lib}
mv -v $RPM_BUILD_ROOT%{_libdir}/libnscd.so.* $RPM_BUILD_ROOT/%{_lib}
ln -sf ../../%{_lib}/libnscd.so.1 $RPM_BUILD_ROOT%{_libdir}/libnscd.so
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%doc COPYING.LIB README NEWS
/%{_lib}/libnscd.so.*
%files devel
%defattr(-,root,root)
%{_prefix}/include/*.h
%{_libdir}/libnscd.a
%{_libdir}/libnscd.so
%{_mandir}/man3/nscd_flush_cache.3*
%changelog -n libnscd
* Wed Nov 29 2006 - kukuk@suse.de
- Update to version 2.0.2 (fix memory leak)
* Thu Oct 05 2006 - kukuk@suse.de
- Update to version 2.0.1 (Makefile fixes)
* Sat Jun 03 2006 - kukuk@suse.de
- Update to version 2.0 (manual page, new nscd features)
* Wed Jan 25 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
* Tue Feb 22 2005 - kukuk@suse.de
- libtool is crap
* Tue Feb 22 2005 - kukuk@suse.de
- Update to libnscd 1.1 (fix interface to nscd) [#65748]
* Tue Sep 14 2004 - kukuk@suse.de
- Initial release

0
ready Normal file
View File