OBS User unknown 2007-01-15 23:24:03 +00:00 committed by Git OBS Bridge
commit bf78a3ac5a
7 changed files with 183 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,11 @@
diff -pur lksctp-tools-1.0.4.orig/src/lib/addrs.c lksctp-tools-1.0.4/src/lib/addrs.c
--- lksctp-tools-1.0.4.orig/src/lib/addrs.c 2005-10-28 18:04:18.000000000 +0000
+++ lksctp-tools-1.0.4/src/lib/addrs.c 2005-12-12 11:34:16.601449765 +0000
@@ -24,6 +24,7 @@
#include <malloc.h>
#include <netinet/in.h>
#include <netinet/sctp.h>
+#include <string.h>
#include <errno.h>
/*

View File

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

30
lksctp-tools.changes Normal file
View File

@ -0,0 +1,30 @@
-------------------------------------------------------------------
Wed Jan 25 21:37:58 CET 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
-------------------------------------------------------------------
Mon Dec 12 12:28:55 CET 2005 - okir@suse.de
- Updated to latest upstream version (1.0.4)
-------------------------------------------------------------------
Wed Nov 2 22:18:33 CET 2005 - dmueller@suse.de
- don't build as root
-------------------------------------------------------------------
Fri Jan 21 14:45:30 CET 2005 - okir@suse.de
- Updated to latest upstream version (1.0.2)
-------------------------------------------------------------------
Wed May 12 11:09:24 CEST 2004 - okir@suse.de
- Updated to lksctp-tools to 1.0.1 per request from IBM
-------------------------------------------------------------------
Tue Mar 16 10:47:03 CET 2004 - okir@suse.de
- Built initial package

115
lksctp-tools.spec Normal file
View File

@ -0,0 +1,115 @@
#
# spec file for package lksctp-tools (Version 1.0.4)
#
# 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: lksctp-tools
Summary: Utilities for SCTP (Stream Control Transmission Protocol)
Version: 1.0.4
Release: 1
License: LGPL
Group: Productivity/Networking/Other
URL: http://lksctp.sourceforge.net
Source0: %name-%version.tar.gz
Patch0: lksctp-tools-%{version}-warnings.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
This package contains the SCTP base run-time library and command line
tools.
SCTP (Stream Control Transmission Protocol) is a message oriented,
reliable transport protocol, with congestion control, support for
transparent multi-homing, and multiple ordered streams of messages.
Authors:
--------
La Monte H.P. Yarroll <piggy@acm.org>
Jon Grimm <jgrimm@us.ibm.com>
Sridhar Samudrala <sri@us.ibm.com>
%package devel
Summary: Development files for SCTP (Stream Control Transmission Protocol)
Group: Productivity/Networking/Other
Requires: %{name} = %{version}
%description devel
This package contains the SCTP development libraries and C header
files.
SCTP (Stream Control Transmission Protocol) is a message oriented,
reliable transport protocol, with congestion control, support for
transparent multi-homing, and multiple ordered streams of messages.
Authors:
--------
La Monte H.P. Yarroll <piggy@acm.org>
Jon Grimm <jgrimm@us.ibm.com>
Sridhar Samudrala <sri@us.ibm.com>
%prep
%setup -q -n %name-%version
%patch0 -p1
%build
autoreconf --force --install
CPPFLAGS="-I`pwd`/include" \
%configure --prefix=/usr \
--enable-shared \
--enable-static
make
%install
test -n "$RPM_BUILD_ROOT" && DESTDIR=$RPM_BUILD_ROOT && rm -rf $DESTDIR
make install DESTDIR=$DESTDIR
%post
%run_ldconfig
%postun
%run_ldconfig
%files
%defattr(444,root,root,755)
%doc AUTHORS COPYING ChangeLog COPYING.lib
%doc doc/*.txt
%attr(555,root,root) %{_bindir}/*
%attr(555,root,root) %{_libdir}/libsctp.so.*
%attr(755,root,root) %dir %{_libdir}/lksctp-tools
%attr(555,root,root) %{_libdir}/lksctp-tools/*
%attr(444,root,root) %{_mandir}/man7/*
%files devel
%defattr(444,root,root,755)
%attr(444,root,root) %{_includedir}/netinet/sctp.h
%attr(555,root,root) %{_libdir}/libsctp.so
%attr(444,root,root) %{_libdir}/libsctp.a
%attr(444,root,root) %{_libdir}/libsctp.la
%attr(755,root,root) %dir %{_datadir}/lksctp-tools
%attr(444,root,root) %{_datadir}/lksctp-tools/*
%attr(444,root,root) %{_mandir}/man3/*
%changelog -n lksctp-tools
* Wed Jan 25 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
* Mon Dec 12 2005 - okir@suse.de
- Updated to latest upstream version (1.0.4)
* Wed Nov 02 2005 - dmueller@suse.de
- don't build as root
* Fri Jan 21 2005 - okir@suse.de
- Updated to latest upstream version (1.0.2)
* Wed May 12 2004 - okir@suse.de
- Updated to lksctp-tools to 1.0.1 per request from IBM
* Tue Mar 16 2004 - okir@suse.de
- Built initial package

0
ready Normal file
View File