debian/0000775000000000000000000000000012317063043007167 5ustar debian/copyright0000664000000000000000000000120612317061736011130 0ustar This package was debianized by Chuck Short on Thu, 03 Dec 2009 15:19:28 -0500. It was downloaded from Upstream Author(s): Intel Corporation Jouni Malinen Copyright: Copyright(c) 2007-2009 Intel Corporation Copyright(c) 2004-2007, Jouni Malinen License: "This software program is licensed subject to the GNU General Public License (GPL). Version 2, June 1991, available at " The Debian packaging is (C) 2009, Chuck Short and is licensed under the GPL, see '/usr/share/common-licenses/GPL' debian/README.Debian0000664000000000000000000000024512317061736011240 0ustar dcbd for Debian --------------- -- chuck Thu, 03 Dec 2009 15:19:28 -0500 debian/dcbd.upstart0000664000000000000000000000042012317061736011512 0ustar # dbcd - dbcd daemon # description "dcbd daemon" author "Chuck Short " start on runelvel [2345] stop on runlevel [06] expect fork respawn pre-start script modprobe -q dcbnl || true end script script exec /usr/sbin/dcbd -d $OPTIONS end script debian/info0000664000000000000000000000004312317061736010051 0ustar libconfig-1.3.1/doc/libconfig.info debian/dcbd.defaults0000664000000000000000000000004612317061736011623 0ustar # Options for dcbd daemon. OPTIONS="" debian/changelog0000664000000000000000000000060612317062520011042 0ustar dcbd (0.9.19-0ubuntu2) trusty; urgency=low * Use autotools-dev helper for newer arches, resolving FTBFS. * Fix missing format arguments. * Use dpkg-source 3.0 (quilt) format. -- Daniel T Chen Wed, 02 Apr 2014 15:25:21 -0400 dcbd (0.9.19-0ubuntu1) lucid; urgency=low * Initial release. -- Chuck Short Thu, 03 Dec 2009 15:19:28 -0500 debian/dirs0000664000000000000000000000002112317061736010053 0ustar usr/bin usr/sbin debian/docs0000664000000000000000000000000712317061736010046 0ustar README debian/patches/0000775000000000000000000000000012317063030010612 5ustar debian/patches/missing_format_arguments.patch0000664000000000000000000000213512317063030016742 0ustar Description: Add missing format arguments Author: Daniel T Chen Origin: Ubuntu Forwarded: no Last-Update: 2014-04-02 --- dcbd-0.9.19.orig/dcb_protocol.cpp +++ dcbd-0.9.19/dcb_protocol.cpp @@ -1249,7 +1249,7 @@ void remove_all_adapters() "Remove_all_adapters error: Bad device name: %.*s\n", MAX_DEVICE_NAME_LEN, it->first.c_str()); if (remove_adapter((char *) (it++->first.c_str())) == FALSE) - printf(sTmp); + printf("%s", sTmp); } /* the default attributes object needs to be removed last */ @@ -1257,7 +1257,7 @@ void remove_all_adapters() "Remove_all_adapters error: Bad device name: %.*s\n", MAX_DEVICE_NAME_LEN, DEF_CFG_STORE); if (remove_adapter(DEF_CFG_STORE) == FALSE) - printf(sTmp); + printf("%s", sTmp); return; } --- dcbd-0.9.19.orig/libconfig-1.3.1/samples/c/sample3.c +++ dcbd-0.9.19/libconfig-1.3.1/samples/c/sample3.c @@ -26,7 +26,7 @@ int print_path(config_setting_t *setting if(! name) printf("[%d]", config_setting_index(setting)); else - printf(name); + printf("%s", name); return(1); } debian/patches/series0000664000000000000000000000003712317062767012047 0ustar missing_format_arguments.patch debian/control0000664000000000000000000000105412317061736010601 0ustar Source: dcbd Section: admin Priority: extra XSBC-Original-Maintainer: Chuck Short Maintainer: Ubuntu Developers Build-Depends: debhelper (>= 7), autotools-dev, bison, flex Standards-Version: 3.8.3 Homepage: http://e1000.sourceforge.net Package: dcbd Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Intel Enhanced Ethernet for the Data Center. This package contains the Linux user space daemon and configuration tool for Intel Enhanced Ethernet for the Data Center software. debian/source/0000775000000000000000000000000012317062426010473 5ustar debian/source/format0000664000000000000000000000001412317062426011701 0ustar 3.0 (quilt) debian/compat0000664000000000000000000000000212317061736010374 0ustar 7 debian/rules0000775000000000000000000000424412317062037010255 0ustar #!/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. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # These are used for cross-compiling and for saving the configure script # from having to guess our platform (since we know it already) DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) else CROSS= --build $(DEB_BUILD_GNU_TYPE) endif config.status: configure dh_testdir dh_autotools-dev_updateconfig # Add here commands to configure the package. ./configure $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" build: build-stamp build-stamp: config.status dh_testdir # Add here commands to compile the package. $(MAKE) #docbook-to-man debian/dcbd.sgml > dcbd.1 touch $@ clean: dh_testdir dh_testroot rm -f build-stamp # Add here commands to clean up after the build process. [ ! -f Makefile ] || $(MAKE) distclean dh_autotools-dev_restoreconfig dh_clean install: build dh_testdir dh_testroot dh_prep dh_installdirs # Add here commands to install the package into debian/dcbd. $(MAKE) DESTDIR=$(CURDIR)/debian/dcbd install # Build architecture-independent files here. binary-indep: install # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: install dh_testdir dh_testroot dh_installchangelogs ChangeLog dh_installdocs dh_installexamples dh_installinit --upstart-only -R --name dcbd dh_installman dh_link dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install