debian/0000755000000000000000000000000012146477054007200 5ustar debian/ruby-subexec.lintian-overrides0000644000000000000000000000012112146476133015164 0ustar # Upstream does not provide a chaneglog file ruby-subexec: no-upstream-changelog debian/watch0000644000000000000000000000031412146476133010224 0ustar version=3 opts=uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha|b|a)\d*)$/$1~$2/,dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$// \ https://github.com/nulayer/subexec/tags .*/v?(\d[\d\.]+)\.tar\.gz debian/rules0000755000000000000000000000070112146471757010262 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/0000755000000000000000000000000012146471757010504 5ustar debian/source/format0000644000000000000000000000001412146471757011712 0ustar 3.0 (quilt) debian/control0000644000000000000000000000172212146471757010611 0ustar Source: ruby-subexec Section: ruby Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: Markus Tornow Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.3.0~), rake, ruby-rspec Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-subexec.git Vcs-Browser: http://anonscm.debian.org/gitweb?p=pkg-ruby-extras/ruby-subexec.git;a=summary Homepage: http://github.com/nulayer/subexec XS-Ruby-Versions: all Package: ruby-subexec Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter Description: mechanism for spawning a subprocess Subexec is a simple library that spawns an external command. It has an optional timeout parameter, useful for libraries which are wrappers for external command line programs and which may sometimes fail ever to return control back to the original process. debian/compat0000644000000000000000000000000212146471757010402 0ustar 7 debian/changelog0000644000000000000000000000076112146476133011053 0ustar ruby-subexec (0.2.3+gh-1) unstable; urgency=low * New upstream Release * pointing debian/watch to github instead of gemwatch, which has no test folder * removing the patch correct-wrong-export-LANG-syntax, it is implemented in the new upstream version -- Markus Tornow Mon, 20 May 2013 18:40:17 +0200 ruby-subexec (0.2.2-1) unstable; urgency=low * Initial release (Closes: #691280) -- Markus Tornow Thu, 04 Apr 2013 22:53:39 +0200 debian/patches/0000755000000000000000000000000012146471757010633 5ustar debian/patches/series0000644000000000000000000000001712146471757012046 0ustar remove-bundler debian/patches/remove-bundler0000644000000000000000000000145212146471757013506 0ustar Description: removing bundler as require Removing require bundler from spec-helper.rb, this is getting handled by debian/control file. Author: Markus Tornow Forwarded: not-needed Last-Update: 2013-01-20 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,21 +1,6 @@ -begin - require 'bundler' - Bundler.setup(:default, :development) -rescue LoadError => e - # Fall back on doing an unlocked resolve at runtime. - $stderr.puts e.message - $stderr.puts "Try running `bundle install`" - exit! -end - $:.unshift(File.dirname(__FILE__)) $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) -begin - require 'pry' - require 'pry-nav' -rescue LoadError -end require 'subexec' require 'rspec' debian/copyright0000644000000000000000000000252012146471757011136 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: subexec Source: https://github.com/nulayer/subexec/ Files: * Copyright: 2011 Nulayer Inc. info@nulayer.com License: Expat Files: debian/* Copyright: 2013 Markus Tornow 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/ruby-tests.rake0000644000000000000000000000022612146471757012171 0ustar require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = './spec/**/*_spec.rb' end task :default => :spec