debian/0000755000000000000000000000000012247201301007156 5ustar debian/ruby-bcat.manpages0000644000000000000000000000014612133037607012576 0ustar # FIXME: man/ dir found in source. Consider installing manpages # man/btee.1 # man/bcat.1 # man/a2h.1 debian/copyright0000644000000000000000000000444412133037607011131 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: bcat Source: http://rtomayko.github.com/bcat/ Files: * Copyright: 2010-2011 Ryan Tomayko 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. . 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 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. Files: debian/* Copyright: 2012 Hideki Yamane 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. . 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 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/rules0000755000000000000000000000070112133037607010246 0ustar #!/usr/bin/make -f #export DH_VERBOSE=1 # # Uncomment to ignore all test failures (but the tests will run anyway) #export DH_RUBY_IGNORE_TESTS=all # # Uncomment to ignore some test failures (but the tests will run anyway). # Valid values: #export DH_RUBY_IGNORE_TESTS=ruby1.8 ruby1.9.1 require-rubygems # # If you need to specify the .gemspec (eg there is more than one) #export DH_RUBY_GEMSPEC=gem.gemspec %: dh $@ --buildsystem=ruby --with ruby debian/source/0000755000000000000000000000000012133037607010470 5ustar debian/source/format0000644000000000000000000000001412133037607011676 0ustar 3.0 (quilt) debian/ruby-bcat.docs0000644000000000000000000000004012133037607011724 0ustar # FIXME: READMEs found # README debian/control0000644000000000000000000000151412247201150010564 0ustar Source: ruby-bcat Section: ruby Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: Hideki Yamane Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.5.0~) Standards-Version: 3.9.5 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-bcat.git Vcs-Browser: http://anonscm.debian.org/?p=pkg-ruby-extras/ruby-bcat.git;a=summary Homepage: http://rtomayko.github.com/bcat/ XS-Ruby-Versions: all Package: ruby-bcat Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, ruby-rack (>= 1.4.1-1) | ruby-rack1.4, ruby-rack (<< 2.0) | ruby-rack1.4 Description: pipe to browser utility bcat utility reads from standard input, or one or more files, and pipes output into a web browser. debian/ruby-tests.rb0000644000000000000000000000073512133037607011643 0ustar # FIXME # there's a spec/ or a test/ directory in the upstream source, but # no test suite was defined in the Gem specification. It would be # a good idea to define it here so the package gets tested at build time. # Examples: # $: << 'lib' << '.' # Dir['{spec,test}/**/*.rb'].each { |f| require f } # # require 'test/ts_foo.rb' # # require 'rbconfig' # ruby = File.join(RbConfig::CONFIG['bindir'], RbConfig::CONFIG['ruby_install_name']) # exec("#{ruby} -I. test/runtests.rb") debian/preinst0000644000000000000000000000145512133037607010604 0ustar #!/bin/sh set -e # summary of how this script can be called: # * `install' # * `install' # * `upgrade' # * `abort-upgrade' # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package command="/usr/bin/bcat" case "$1" in install) if [ -z "`dpkg-divert --list $command`" ]; then dpkg-divert --add --package ruby-bcat --rename --divert "$command".diverted "$command" fi ;; upgrade | abort-upgrade) ;; *) echo "preinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/watch0000644000000000000000000000013512133037607010220 0ustar version=3 http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/bcat .*/bcat-(.*).tar.gz debian/postrm0000644000000000000000000000206612133037607010443 0ustar #!/bin/sh # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package command="/usr/bin/bcat" case "$1" in purge|remove|failed-upgrade|abort-install|abort-upgrade|disappear) if [ ! -z "`dpkg-divert --list $command`" ]; then dpkg-divert --remove --package ruby-bcat --rename --divert "$command".diverted "$command" fi ;; upgrade|*) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/changelog0000644000000000000000000000121112247201301011023 0ustar ruby-bcat (0.6.2-3) unstable; urgency=low Team upload. [ Christian Hofstaedtler ] * Add alternative dependency on ruby-rack1.4 * Update Standards-Version to 3.9.5 (no changes) * Build-Depend on gem2deb 0.5.0 to build for Ruby 2.0 -- Christian Hofstaedtler Mon, 02 Dec 2013 22:59:21 +0100 ruby-bcat (0.6.2-2) unstable; urgency=low * Team upload * Re-upload to unstable -- Praveen Arimbrathodiyil Fri, 10 May 2013 00:03:06 +0530 ruby-bcat (0.6.2-1) experimental; urgency=low * Initial release (Closes: #695984) -- Hideki Yamane Sat, 15 Dec 2012 16:35:37 +0900 debian/compat0000644000000000000000000000000212133037607010366 0ustar 7