debian/0000755000000000000000000000000012241160544007165 5ustar debian/compat0000644000000000000000000000000212241156717010372 0ustar 7 debian/source/0000755000000000000000000000000012241156717010474 5ustar debian/source/format0000644000000000000000000000001412241156717011702 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000061112241156717010252 0ustar #!/usr/bin/make -f export DEB_BUILD_MAINT_OPTIONS=hardening=+all %: dh $@ override_dh_auto_build: $(MAKE) \ CFLAGS="$$(dpkg-buildflags --get CPPFLAGS) $$(dpkg-buildflags --get CFLAGS) -O2 -Wall" \ LDFLAGS="$$(dpkg-buildflags --get LDFLAGS)" override_dh_auto_install: PREFIX=/usr dh_auto_install override_dh_auto_clean: $(MAKE) clean override_dh_auto_test: echo "No test suite." debian/changelog0000644000000000000000000000127012241156717011046 0ustar luxio (7-1) unstable; urgency=low * New upstream version. * debian/control: bumped Standards-Version to 3.9.5. No other changes required for this. -- Lars Wirzenius Thu, 14 Nov 2013 14:18:33 +0000 luxio (5-1) unstable; urgency=low * New upstream version. - adds copyright information to files that were missing it * debian/copyright: Add copyright information for Debian packaging files. * debian/rules: Install binaries into /usr/bin, not /bin. -- Lars Wirzenius Sun, 11 Aug 2013 13:42:40 +0100 luxio (4-1) unstable; urgency=low * Initial packaging. (Closes: #706162) -- Lars Wirzenius Sun, 30 Jun 2013 11:23:44 +0100 debian/copyright0000644000000000000000000000255712241156717011140 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: luxio Upstream-Contact: Rob Kendrick Source: http://bzr.rjek.com/public/luxio/ Files: * Copyright: 2012, Rob Kendrick and Daniel Silverstone License: Expat Files: debian/* Copyright: 2013, Lars Wirzenius License: Expat License: Expat 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. . 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. debian/control0000644000000000000000000000227612241156717010606 0ustar Source: luxio Maintainer: Lars Wirzenius Uploaders: Daniel Silverstone Section: interpreters Priority: optional Standards-Version: 3.9.5 Build-Depends: liblua5.1-dev, lua5.1, liblua5.2-dev, lua5.2, debhelper (>= 9.20120909~), pkg-config Package: lua-luxio0 Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Description: Posix bindings for Lua Lightweight UNIX I/O and POSIX binding for Lua . * Reasonably good coverage of POSIX and BSD Sockets, including IPv6, and some GNU extensions. * Low-level. You get the return values and the errno for the bound functions where possible. Others take a table to fill in, or may return tables. * High-level wrapper library providing nice IO access and to misc. utility functions. Generates useful errors in assert()able form, and provides meaningful __tostring metamethods to aid debugging. * A high-level poll()-based event dispatch library. * Sub-process handling library (read/write io.popen with job control). * A prototype POSIX Message Queue-based IPC scheme that can serialise most simple Lua values. (No closures, userdata, etc) Homepage: http://www.rjek.com/software.html