debian/0000755000000000000000000000000012264763722007201 5ustar debian/ruby-multi-xml.docs0000644000000000000000000000003212177605415012752 0ustar README.md CONTRIBUTING.md debian/copyright0000644000000000000000000000251212177605415011131 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: multi_xml Source: http://rubygems.org/gems/multi_xml Files: * Copyright: 2010 Erik Michaels-Ober License: Expat Files: debian/* Copyright: 2013 Praveen Arimbrathodiyil 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-multi-xml.lintian-overrides0000644000000000000000000000011612177605415015463 0ustar # Upstream does not provide a changelog ruby-multi-xml: no-upstream-changelog debian/changelog0000644000000000000000000000167712264763710011063 0ustar ruby-multi-xml (0.5.4-0ubuntu3) trusty; urgency=medium * Merge the 0.5.3-2 changes from unstable. -- Matthias Klose Mon, 13 Jan 2014 14:18:43 +0100 ruby-multi-xml (0.5.4-0ubuntu2) saucy; urgency=low * Ignore the ruby1.8 test results. -- Matthias Klose Thu, 19 Sep 2013 11:30:56 +0200 ruby-multi-xml (0.5.4-0ubuntu1) saucy; urgency=low * New upstream release. * debian/patches/remove-simplecov.pathc: Refresh. -- Logan Rosen Sun, 04 Aug 2013 22:16:55 -0400 ruby-multi-xml (0.5.3-2) unstable; urgency=medium * Team upload. * Update Build-Depends for ruby2.0, drop ruby1.8 support * Bump Standards-Version to 3.9.5 (no changes) -- Christian Hofstaedtler Mon, 23 Dec 2013 21:44:50 +0100 ruby-multi-xml (0.5.3-1) unstable; urgency=low * Initial release (Closes: #691189) -- Praveen Arimbrathodiyil Mon, 27 May 2013 00:27:35 +0530 debian/compat0000644000000000000000000000000212177605415010374 0ustar 7 debian/patches/0000755000000000000000000000000012177605614010626 5ustar debian/patches/remove-simplecov.pathc0000644000000000000000000000133112177605546015145 0ustar Description: Remove simplecov SimpleCov is used only for code coverage analysis. When someone package it for debian, this patch may be removed. Author: Praveen Arimbrathodiyil Last-Update: 2013-05-27 --- a/spec/helper.rb +++ b/spec/helper.rb @@ -1,11 +1,11 @@ -require 'simplecov' -require 'coveralls' +#require 'simplecov' +#require 'coveralls' -SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[ - SimpleCov::Formatter::HTMLFormatter, - Coveralls::SimpleCov::Formatter -] -SimpleCov.start +#SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[ +# SimpleCov::Formatter::HTMLFormatter, +# Coveralls::SimpleCov::Formatter +#] +#SimpleCov.start require 'multi_xml' require 'rspec' debian/patches/series0000644000000000000000000000002712177605415012041 0ustar remove-simplecov.pathc debian/control0000644000000000000000000000230712264763660010607 0ustar Source: ruby-multi-xml Section: ruby Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Ruby Extras Maintainers Uploaders: Praveen Arimbrathodiyil Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.6.0~), ruby-libxml (>= 2.7.0-2~), ruby-ox (>= 1.8.9-2~), rake, ruby-rspec, ruby-nokogiri (>= 1.6.0~) Standards-Version: 3.9.5 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-multi-xml.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ruby-extras/ruby-multi-xml.git;a=summary Homepage: https://github.com/sferik/multi_xml XS-Ruby-Versions: all Package: ruby-multi-xml Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter Description: generic swappable back-end for XML parsing in Ruby Provides swappable XML backends utilizing LibXML, Nokogiri, Ox, or REXML. . Lots of Ruby libraries utilize XML parsing in some form, and everyone has their favorite XML library. In order to best support multiple XML parsers and libraries, `multi_xml` is a general-purpose swappable XML backend library. debian/rules0000755000000000000000000000074512216542113010251 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 export DH_RUBY_IGNORE_TESTS=ruby1.8 # # 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/0000755000000000000000000000000012177605614010477 5ustar debian/source/format0000644000000000000000000000001412177605415011704 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000014712177605415010231 0ustar version=3 http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/multi_xml .*/multi_xml-(.*).tar.gz debian/ruby-tests.rake0000644000000000000000000000022312177605415012160 0ustar require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = './spec/**/*_spec.rb' end task :default => :spec