debian/0000755000000000000000000000000012265234070007167 5ustar debian/changelog0000644000000000000000000000267112265234070011047 0ustar ruby-excon (0.31.0-1) unstable; urgency=low * Team upload * New upstream release * Refresh patches * Bump standards version to 3.9.5 (no changes) -- Praveen Arimbrathodiyil Tue, 14 Jan 2014 18:44:24 +0530 ruby-excon (0.25.1-1) unstable; urgency=low * New upstream release -- Laurent Bigonville Sat, 06 Jul 2013 23:48:43 +0200 ruby-excon (0.21.0-1) unstable; urgency=low * Team upload * New upstream release * std version bunped to 3.9.4 * Update build dependencies (gem2deb (>= 0.3.0~), rake, ruby-rspec, ruby-chronic, ruby-shindo, ruby-sinatra, ruby-open4, ruby-activesupport, ruby-delorean, ruby-eventmachine) * debian/patches/02_remove_gemfile_lock.patch: Remove Gemfile.lock * debian/patches/03_remove_rubygems_bundler_add_requires_from_gemspec.patch: Remove rubygems and bundler, add require lines instead of Bundler.require -- Praveen Arimbrathodiyil Thu, 16 May 2013 20:49:12 +0530 ruby-excon (0.13.4-1) unstable; urgency=low * New upstream release * debian/patches/01_use_ca-certificates.patch: Use SSL certificates from ca-certificates package * debian/control: Recommends ca-certificates package -- Laurent Bigonville Tue, 17 Apr 2012 17:46:25 +0200 ruby-excon (0.10.0-1) unstable; urgency=low * Initial release (Closes: #647076) -- Laurent Bigonville Wed, 07 Mar 2012 16:36:21 +0100 debian/copyright0000644000000000000000000000420512265232765011134 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: excon Source: https://github.com/geemus/excon Files: * Copyright: 2010-2011 Wesley Beary 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. Files: debian/* Copyright: 2012 Laurent Bigonville License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. debian/control0000644000000000000000000000214312265233041010567 0ustar Source: ruby-excon Section: ruby Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: Laurent Bigonville Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.3.0~), rake, ruby-rspec, ruby-chronic, ruby-shindo, ruby-sinatra, ruby-open4, ruby-activesupport-3.2, ruby-delorean, ruby-eventmachine Standards-Version: 3.9.5 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-excon.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ruby-extras/ruby-excon.git;a=summary Homepage: https://github.com/geemus/excon XS-Ruby-Versions: all Package: ruby-excon Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter Recommends: ca-certificates Description: Ruby library for creating fast, persistent, HTTP(S) connections Ruby library for creating fast HTTP(S) connections, it supports: * GET/POST/PUT/DELETE/HEAD/TRACE/OPTIONS/CONNECT methods via HTTP/1.1 * HTTPS (SSL) connections * Proxy and keep-alive connections * Multitreading and streaming download debian/ruby-excon.docs0000644000000000000000000000001212265232765012136 0ustar README.md debian/patches/0000755000000000000000000000000012265233275010624 5ustar debian/patches/01_use_ca-certificates.patch0000644000000000000000000000072312265232765016054 0ustar Description: Use SSL certificates from ca-certificates package Author: Laurent Bigonville Forwarded: not-needed Last-Updated: 2013-05-16 --- a/lib/excon/constants.rb +++ b/lib/excon/constants.rb @@ -4,7 +4,7 @@ CR_NL = "\r\n" - DEFAULT_CA_FILE = File.expand_path(File.join(File.dirname(__FILE__), "..", "..", "data", "cacert.pem")) + DEFAULT_CA_FILE = '/etc/ssl/certs/ca-certificates.crt' DEFAULT_CHUNK_SIZE = 1048576 # 1 megabyte debian/patches/series0000644000000000000000000000013012265232765012036 0ustar 01_use_ca-certificates.patch 03_remove_rubygems_bundler_add_requires_from_gemspec.patch debian/patches/03_remove_rubygems_bundler_add_requires_from_gemspec.patch0000644000000000000000000000112112265233275024344 0ustar Description: We don't need bundler Add dependencies in debian/control. Add require lines in test_helper.rb Author: Praveen Arimbrathodiyil Last-Update: 2014-01-14 --- a/tests/test_helper.rb +++ b/tests/test_helper.rb @@ -1,5 +1,14 @@ -require 'rubygems' if RUBY_VERSION < '1.9' -require 'bundler/setup' +# require 'rubygems' if RUBY_VERSION < '1.9' +# require 'bundler/setup' + +# from gemspec +require 'active_support' +require 'eventmachine' +require 'rake' +require 'rdoc' +require 'shindo' +require 'sinatra' + require 'excon' require 'delorean' require 'open4' debian/ruby-tests.rake0000644000000000000000000000010012265232765012154 0ustar require 'shindo/rake' Shindo::Rake.new task :default => :tests debian/compat0000644000000000000000000000000212265232765010376 0ustar 7 debian/watch0000644000000000000000000000013712265232765010232 0ustar version=3 http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/excon .*/excon-(.*).tar.gz debian/rules0000755000000000000000000000070112265232765010256 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/0000755000000000000000000000000012265232765010500 5ustar debian/source/format0000644000000000000000000000001412265232765011706 0ustar 3.0 (quilt)