debian/0000775000000000000000000000000012314710632007167 5ustar debian/copyright0000664000000000000000000000345612301725215011131 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: iscpy Source: https://pypi.python.org/pypi/iscpy Files: * Copyright: 2014 Jacob C. Collings License: BSD Files: debian/* Copyright: 2014 Andres Rodriguez License: BSD License: BSD Copyright (c) The Regents of the University of California. All rights reserved. . Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. 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. 3. Neither the name of the University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. debian/rules0000775000000000000000000000025112314705176010254 0ustar #!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ --with python2 override_dh_auto_test: nosetests --exe --all-modules test debian/source/0000775000000000000000000000000012301232512010457 5ustar debian/source/format0000664000000000000000000000001412301232512011665 0ustar 3.0 (quilt) debian/docs0000664000000000000000000000000012301232512010020 0ustar debian/watch0000664000000000000000000000011412301234265010213 0ustar version=3 https://pypi.python.org/packages/source/i/iscpy/iscpy-(.+).tar.gz debian/changelog0000664000000000000000000000057312314710631011045 0ustar iscpy (1.05-0ubuntu2) trusty; urgency=medium * Use nosetests to run tests on package build. * d/p/test-data-dir: locate test data based on module directory. -- Robie Basak Thu, 27 Mar 2014 02:48:57 +0000 iscpy (1.05-0ubuntu1) trusty; urgency=low * Initial release -- Andres Rodriguez Wed, 19 Feb 2014 17:50:48 -0500 debian/control0000664000000000000000000000135612314704222010575 0ustar Source: iscpy Section: python Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: MAAS Maintainers Build-Depends: debhelper (>= 8.1.0~), python (>= 2.7), python-setuptools, python-nose Standards-Version: 3.9.4 Homepage: https://pypi.python.org/pypi/iscpy X-Python-Version: >= 2.7 Package: python-iscpy Architecture: all Depends: ${python:Depends}, ${misc:Depends} Description: Python library to parse ISC style config files ISCpy is an ISC config file parser. It has several possibilities for depth and quantity of ISC config files. ISC config files include BIND and DHCP config files among a few others. debian/patches/0000775000000000000000000000000012314710060010611 5ustar debian/patches/series0000664000000000000000000000001712314703744012037 0ustar test-data-path debian/patches/test-data-path0000664000000000000000000000140212314710060013351 0ustar Author: Robie Basak Description: locate test data based on the module directory Removes the assumption that the test data is available in the current directory, since test runners typically do not set the working directory as they traverse through tests. This allows nosetests to discover and run this test successfully. Forwarded: no Last-Update: 2014-03-27 2014-03-27: patch submission to upstream by email to jc@purdue.edu bounced. --- a/test/named_importer_lib_regtest.py +++ b/test/named_importer_lib_regtest.py @@ -46,7 +46,10 @@ import iscpy -NAMED_FILE = 'test_data/named.example.conf' +NAMED_FILE = os.path.join( + os.path.dirname(__file__), + 'test_data/named.example.conf' +) class TestNamedImport(unittest.TestCase): debian/compat0000664000000000000000000000000212301235100010351 0ustar 8