debian/0000755000000000000000000000000012302375655007176 5ustar debian/copyright0000644000000000000000000001053112216644206011124 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: blinker Source: https://pypi.python.org/pypi/blinker Files: * Copyright: 2013 The Blinker authors and contributors (see AUTHORS file) License: Expat Files: blinker/_saferef.py tests/test_saferef.py Copyright: 2006 Patrick K. O'Brien, Mike C. Fletcher, Matthew R. Scott License: BSD3 Files: docs/html/_static/*.css Copyright (c) 2007-2011 by the Sphinx team (see AUTHORS file). License: BSD Files: debian/* Copyright: 2013 Ondřej Surý 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. License: BSD3 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. . * Neither the name of the 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 COPYRIGHT HOLDERS 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 COPYRIGHT OWNER 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. License: BSD All rights reserved. . 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. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT OWNER 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/python-blinker.links0000644000000000000000000000076012216644206013203 0ustar /usr/share/javascript/sphinxdoc/1.0/underscore.js /usr/share/doc/python-blinker/html/_static/underscore.js /usr/share/javascript/sphinxdoc/1.0/jquery.js /usr/share/doc/python-blinker/html/_static/jquery.js /usr/share/javascript/sphinxdoc/1.0/searchtools.js /usr/share/doc/python-blinker/html/_static/searchtools.js /usr/share/javascript/sphinxdoc/1.0/doctools.js /usr/share/doc/python-blinker/html/_static/doctools.js /usr/share/doc/python-blinker/html/_sources /usr/share/doc/python-blinker/rst debian/changelog0000644000000000000000000000237612302375655011060 0ustar blinker (1.3.dfsg1-1ubuntu2) trusty; urgency=medium * Rebuild to drop files installed into /usr/share/pyshared. -- Matthias Klose Sun, 23 Feb 2014 13:46:21 +0000 blinker (1.3.dfsg1-1ubuntu1) trusty; urgency=low * Merge from Debian unstable. Remaining changes: - Run tests during build -- Michael Terry Tue, 29 Oct 2013 08:59:19 -0700 blinker (1.3.dfsg1-1) unstable; urgency=low * New upstream version 1.3.dfsg1 * Move package under Debian Python Modules Team * Add Homepage to debian/control -- Ondřej Surý Tue, 10 Sep 2013 16:18:38 +0200 blinker (1.2.dfsg1-1ubuntu1) saucy; urgency=low * debian/control, debian/rules: - Enable tests during build -- Michael Terry Thu, 19 Sep 2013 11:33:45 -0400 blinker (1.2.dfsg1-1) unstable; urgency=low * Initial packaging. (Closes: #702231) * Imported Upstream version 1.2.dfsg1 * Update copyright with _saferef and sphinx licenses * Add repack script to remove *.js files from upstream tarball * Add documentation and setup correct sphinxdoc links * Update docs to include link to rst files and also add AUTHORS and README file -- Ondřej Surý Mon, 15 Apr 2013 10:46:16 +0200 debian/python-blinker.docs0000644000000000000000000000003112216644206013002 0ustar docs/html AUTHORS README debian/repack.sh0000755000000000000000000000146012216644206010776 0ustar #!/bin/sh # # Repackage upstream source to exclude non-distributable files. # Should be called as "repack sh --upstream-source # (for example, via uscan). set -e set -u if [ $# -ne 3 ]; then echo "Usage: $0 --upstream-source " exit 1 fi OPT_VERSION=$2 OPT_FILE=$3 TMPDIR=`mktemp -d` trap "rm -rf $TMPDIR" QUIT INT EXIT echo "Repackaging $OPT_FILE" orig_file_path=$(readlink --canonicalize $OPT_FILE) package_name=$(dpkg-parsechangelog | sed -n 's/^Source: //p') dfsg_directory=${package_name}_${OPT_VERSION}.dfsg1 dfsg_file_path=$(dirname ${orig_file_path})/${dfsg_directory}.orig.tar.gz zcat "${orig_file_path}" | \ tar --wildcards \ --delete '*/_static/*.js' | \ gzip -c > $dfsg_file_path echo "File $OPT_FILE repackaged successfully to $dfsg_file_path" debian/compat0000644000000000000000000000000212216644206010367 0ustar 7 debian/control0000644000000000000000000000142412233755516010603 0ustar Source: blinker Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Python Modules Team Uploaders: Ondřej Surý Section: python Priority: optional Build-Depends: python-all (>= 2.6.6-3), debhelper (>= 7), python-nose Standards-Version: 3.9.4 Homepage: http://pythonhosted.org/blinker/ Package: python-blinker Architecture: all Depends: ${misc:Depends}, ${python:Depends} Description: Fast, simple object-to-object and broadcast signaling library Blinker provides a fast dispatching system that allows any number of interested parties to subscribe to events, or "signals". . Signal receivers can subscribe to specific senders or receive signals sent by any sender. debian/rules0000755000000000000000000000032012216644206010244 0ustar #!/usr/bin/make -f # This file was automatically generated by stdeb 0.6.0+git at # Mon, 04 Mar 2013 11:44:57 +0100 %: dh $@ --with python2 --buildsystem=python_distutils override_dh_auto_test: nosetests debian/source/0000755000000000000000000000000012216644206010471 5ustar debian/source/format0000644000000000000000000000001412216644206011677 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000052712216644206010226 0ustar # Example watch control file for uscan # Rename this file to "watch" and then you can run the "uscan" command # to check for upstream updates and more. # See uscan(1) for format # Compulsory line, this is a version 3 file version=3 opts=dversionmangle=s/\.dfsg\d+$// \ https://pypi.python.org/packages/source/b/blinker/blinker-(.*)\.tar\.gz