Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ibsim (0.9) unstable; urgency=low

* Switch to Github.

-- Tzafrir Cohen <mellanox@cohens.org.il> Sun, 12 Apr 2020 11:14:12 +0300

ibsim (0.6) unstable; urgency=low

* Initial release

-- Ilya Nelkenbaum <ilyan@mellanox.com> Mon, 11 Mar 2013 11:03:54 +0200
1 change: 1 addition & 0 deletions debian/compat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9
19 changes: 19 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Source: ibsim
Section: net
Priority: extra
Maintainer: Tzafrir Cohen <mellanox@cohens.org.il>
Build-Depends: debhelper (>= 9), libibumad-dev, libibmad-dev
Standards-Version: 4.13
Homepage: https://github.com/linux-rdma/ibsim

Package: ibsim
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: InfiniBand fabric simulator for management
ibsim provides simulation of infiniband fabric for using with OFA OpenSM,
diagnostic and management tools.

Package: ibsim-doc
Architecture: all
Description: documentation for ibsim
Documentation for ibsim
62 changes: 62 additions & 0 deletions debian/copyright
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: ibsim
Source: https://github.com/linux-rdma/ibsim/

Files: *
Copyright:
2004-2008, Voltaire, Inc.
2010-2017, Mellanox Technologies LTD.
License: BSD-2+GPL-2

Files: ibsim/sim_mad.c
Copyright: 2004-2008, Voltaire, Inc.
2009, HNR Consulting.
2011, Mellanox Technologies LTD.
License: BSD-2+GPL-2

Files: tests/mcast_storm.c
tests/query_many.c
tests/subnet_discover.c
Copyright: 2006-2008, Voltaire, Inc.
2009, Voltaire, Inc.
License: GPL-2+
This is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
.
on Debian system in the file /usr/share/common-licenses/GPL-2.
Comment:
Those are tests that are included in the source and built, but are not
currently included in any binary package.

License: BSD-2+GPL-2
ibsim is available to you under a choice of one of two licenses.
You may choose to be licensed under the terms of the GNU
General Public License (GPL) Version 2, available from the file
COPYING in the main directory of this source tree, or the
OpenIB.org BSD license below:
.
Redistribution and use in source and binary forms, with or
without modification, are permitted provided that the following
conditions are met:
.
- Redistributions of source code must retain the above
copyright notice, this list of conditions and the following
disclaimer.
.
- Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials
provided with the distribution.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
.
on Debian system in the file /usr/share/common-licenses/GPL-2.
4 changes: 4 additions & 0 deletions debian/docs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
README
TODO
net-examples
scripts
1 change: 1 addition & 0 deletions debian/ibsim-doc.docs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#DOCS#
1 change: 1 addition & 0 deletions debian/ibsim-doc.install
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#DOCS#
2 changes: 2 additions & 0 deletions debian/ibsim.install
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
usr/lib
usr/bin
21 changes: 21 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
#
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.
#
# Modified to make a template file for a multi-binary package with separated
# build-arch and build-indep targets by Bill Allombert 2001

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

# This has to be exported to make some magic below work.
export DH_OPTIONS


%:
dh $@
1 change: 1 addition & 0 deletions debian/source/format
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0 (native)
2 changes: 1 addition & 1 deletion dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ rm -rf $distdir
mkdir $distdir

files=`find . -name '*.[ch]' -o -name Makefile`
cp -a --parents $files \
cp -a --parents $files debian \
defs.mk README COPYING TODO net-examples scripts tests $distdir

cat ibsim.spec.in \
Expand Down