debian/0000755000000000000000000000000011512255371007170 5ustar debian/watch0000644000000000000000000000016711512131023010210 0ustar version=3 http://www.audiomulch.com/~rossb/code/oscpack http://www.audiomulch.com/~rossb/code/oscpack/oscpack_(.*).zip debian/docs0000644000000000000000000000001411512224045010030 0ustar README TODO debian/liboscpack-dev.install0000644000000000000000000000010711512131023013427 0ustar usr/include/oscpack/ip/*.h usr/include/oscpack/osc/*.h usr/lib/lib*.so debian/copyright0000644000000000000000000000342111512131023011106 0ustar Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 Name: rtaudio Maintainer: Monty Taylor Source: http://www.audiomulch.com/~rossb/code/oscpack/ Debianized-Date: Sat, 08 Jan 2011 10:23:56 -0800 Files: debian/* Copyright: 2011, Monty Taylor License: GPL-2 Files: * Copyright: Copyright (c) 2004-2005 Ross Bencina License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . Any person wishing to distribute modifications to the Software is requested to send the modifications to the original developer so that they can be incorporated into the canonical version. . 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 GNU/Linux systems, the complete text of the GNU General Public License v2 can be found in `/usr/share/common-licenses/GPL-2'. debian/changelog0000644000000000000000000000023311512131023011023 0ustar oscpack (1.0.2-1) unstable; urgency=low * Initial release (Closes: #609341) -- Monty Taylor Thu, 26 Aug 2010 23:00:35 -0700 debian/control0000644000000000000000000000762311512131023010566 0ustar Source: oscpack Priority: optional Maintainer: Monty Taylor Build-Depends: debhelper (>= 7.0.50) Standards-Version: 3.9.1 Section: libs Homepage: http://www.audiomulch.com/~rossb/code/oscpack/ Vcs-Browser: http://bazaar.launchpad.net/~mordred/debian/sid/oscpack/trunk/files Vcs-Bzr: http://bazaar.launchpad.net/~mordred/debian/sid/oscpack/trunk Package: liboscpack-dev Section: libdevel Architecture: any Depends: liboscpack1 (= ${binary:Version}), libasound2-dev, ${misc:Depends} Description: A C++ library for packing and unpacking OSC packets - dev files Oscpack is simply a set of C++ classes for packing and unpacking OSC packets. Oscpack includes a minimal set of UDP networking classes for Windows and POSIX which are sufficient for writing many OSC applications and servers, but you are encouraged to use another networking framework if it better suits your needs. Oscpack is not an OSC application framework, it doesn't include infrastructure for constructing or routing OSC namespaces, just classes for easily constructing, sending, receiving and parsing OSC packets. The library should also be easy to use for other transport methods (eg serial). . The key goals of the oscpack library are: . - to be a simple and complete implementation of OSC - to be portable to a wide variety of platforms - to allow easy development of robust OSC applications (for example it should be impossible to crash a server by sending it malformed packets, and difficult to create malformed packets.) . This package contains files needed for development. Package: liboscpack-dbg Section: debug Architecture: any Priority: extra Depends: liboscpack1 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} Description: A C++ library for packing and unpacking OSC packets - debug symbols Oscpack is simply a set of C++ classes for packing and unpacking OSC packets. Oscpack includes a minimal set of UDP networking classes for Windows and POSIX which are sufficient for writing many OSC applications and servers, but you are encouraged to use another networking framework if it better suits your needs. Oscpack is not an OSC application framework, it doesn't include infrastructure for constructing or routing OSC namespaces, just classes for easily constructing, sending, receiving and parsing OSC packets. The library should also be easy to use for other transport methods (eg serial). . The key goals of the oscpack library are: . - to be a simple and complete implementation of OSC - to be portable to a wide variety of platforms - to allow easy development of robust OSC applications (for example it should be impossible to crash a server by sending it malformed packets, and difficult to create malformed packets.) . This package contains debug symbols. Package: liboscpack1 Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: A C++ library for packing and unpacking OSC packets Oscpack is simply a set of C++ classes for packing and unpacking OSC packets. Oscpack includes a minimal set of UDP networking classes for Windows and POSIX which are sufficient for writing many OSC applications and servers, but you are encouraged to use another networking framework if it better suits your needs. Oscpack is not an OSC application framework, it doesn't include infrastructure for constructing or routing OSC namespaces, just classes for easily constructing, sending, receiving and parsing OSC packets. The library should also be easy to use for other transport methods (eg serial). . The key goals of the oscpack library are: . - to be a simple and complete implementation of OSC - to be portable to a wide variety of platforms - to allow easy development of robust OSC applications (for example it should be impossible to crash a server by sending it malformed packets, and difficult to create malformed packets.) . This package provides the shared library. debian/source/0000755000000000000000000000000011512225105010460 5ustar debian/source/format0000644000000000000000000000001411512131023011661 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000011512225105010607 5ustar debian/patches/newer-gcc.diff0000644000000000000000000000207511512131023013312 0ustar Description: Add includes to fix building on newer GCC. Author: Monty Taylor Last-Update: 2011-01-08 --- a/examples/OscDump.cpp +++ b/examples/OscDump.cpp @@ -35,6 +35,8 @@ */ +#include +#include #include #include "osc/OscReceivedElements.h" --- a/osc/OscPrintReceivedElements.cpp +++ b/osc/OscPrintReceivedElements.cpp @@ -29,6 +29,7 @@ */ #include "OscPrintReceivedElements.h" +#include #include #include #include --- a/tests/OscReceiveTest.cpp +++ b/tests/OscReceiveTest.cpp @@ -29,6 +29,7 @@ */ #include "OscReceiveTest.h" +#include #include #include --- a/tests/OscSendTests.cpp +++ b/tests/OscSendTests.cpp @@ -29,6 +29,7 @@ */ #include "OscSendTests.h" +#include #include #include --- a/tests/OscUnitTests.cpp +++ b/tests/OscUnitTests.cpp @@ -29,6 +29,7 @@ */ #include "OscUnitTests.h" +#include #include #include debian/patches/fpic.diff0000644000000000000000000000046511512131023012362 0ustar Description: Build shared lib with -fPIC Author: Monty Taylor Last-Update: 2011-01-08 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ CXX = g++ INCLUDES = -I./ -COPTS = -Wall -O3 +COPTS = -Wall -O3 -fPIC CDEBUG = -Wall -g CXXFLAGS = $(COPTS) $(INCLUDES) -D$(ENDIANESS) debian/patches/series0000644000000000000000000000004511512131023012016 0ustar newer-gcc.diff fpic.diff soname.diff debian/patches/soname.diff0000644000000000000000000000074111512131023012720 0ustar Description: Add soname to library. Author: Monty Taylor Last-Update: 2011-01-08 --- a/Makefile +++ b/Makefile @@ -63,7 +63,7 @@ $(LIBFILENAME): $(LIBOBJECTS) @#GNU/Linux case - $(CXX) -shared -Wl,-soname,$(LIBSONAME) -o $(LIBFILENAME) $(LIBOBJECTS) -lc + $(CXX) -shared -Wl,-soname,$(LIBSONAME).1 -o $(LIBFILENAME) $(LIBOBJECTS) -lc @#Mac OS X case @#$(CXX) -dynamiclib -Wl,-install_name,$(LIBSONAME) -o $(LIBFILENAME) $(LIBOBJECTS) -lc debian/liboscpack1.install0000644000000000000000000000002211512131023012730 0ustar usr/lib/lib*.so.* debian/rules0000755000000000000000000000123211512224112010233 0ustar #!/usr/bin/make -f TMP=$(CURDIR)/debian/tmp/ %: dh $@ override_dh_auto_build: make lib override_dh_strip: dh_strip --dbg-package=liboscpack-dbg override_dh_installchangelogs: dh_installchangelogs CHANGES override_dh_auto_install: mkdir -p ${TMP}/usr/lib mkdir -p ${TMP}/usr/include/oscpack/ip mkdir -p ${TMP}/usr/include/oscpack/osc cp liboscpack.so.1.0.2 ${TMP}/usr/lib ln -s liboscpack.so.1.0.2 ${TMP}/usr/lib/liboscpack.so.1 ln -s liboscpack.so.1.0.2 ${TMP}/usr/lib/liboscpack.so cp ip/*.h ${TMP}/usr/include/oscpack/ip cp osc/*.h ${TMP}/usr/include/oscpack/osc get-orig-source: uscan --verbose --force-download --rename --repack --destdir=.. debian/liboscpack1.lintian-overrides0000644000000000000000000000010111512224231014722 0ustar liboscpack1: no-symbols-control-file usr/lib/liboscpack.so.1.0.2 debian/compat0000644000000000000000000000000211512131023010351 0ustar 7