debian/0000755000000000000000000000000012320323055007161 5ustar debian/ruby-dataobjects-sqlite3.docs0000644000000000000000000000002011655100013014644 0ustar README.markdown debian/copyright0000644000000000000000000000262412155551772011137 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: do_sqlite3 Source: http://github.com/datamapper/do Files: * Copyright: 2007-2011 Yehuda Katz 2007-2011 Dirkjan Bussink License: Expat Files: debian/* Copyright: 2011-2013 Cédric Boutillier 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/changelog0000644000000000000000000000634712320323055011045 0ustar ruby-dataobjects-sqlite3 (0.10.13-1build1) trusty; urgency=medium * No-change upload to drop dependencies on ruby1.8. -- Matthias Klose Sun, 06 Apr 2014 21:03:48 +0200 ruby-dataobjects-sqlite3 (0.10.13-1) unstable; urgency=low * New upstream version * debian/control: + remove obsolete DM-Upload-Allowed flag + use canonical URI in Vcs-* fields + update my email address + drop transitional packages + update version dependency for ruby-dataobjects * debian/copyright: update my email address and years * remove lintian overrides, about transitional packages -- Cédric Boutillier Tue, 11 Jun 2013 09:38:59 +0200 ruby-dataobjects-sqlite3 (0.10.8-3) unstable; urgency=low * Remove debian/ruby-test-files.yaml, not needed anymore (tests are run with the rake method) -- Cédric Boutillier Tue, 26 Jun 2012 10:02:00 +0200 ruby-dataobjects-sqlite3 (0.10.8-2) unstable; urgency=low * Bump build dependency on gem2deb to >= 0.3.0~ -- Cédric Boutillier Tue, 26 Jun 2012 09:29:31 +0200 ruby-dataobjects-sqlite3 (0.10.8-1) unstable; urgency=low * New upstream release * Bump Standards-Version to 3.9.3 (no changes needed) * Update Format URL in DEP5 debian/copyright file * Use the rakefile method to run the RSpec tests -- Cédric Boutillier Fri, 20 Apr 2012 00:07:14 +0200 ruby-dataobjects-sqlite3 (0.10.7-1) unstable; urgency=low * New upstream release * Conversion to gem2deb + rename source and binary packages * added 0010_remove_rubygems_from_specs.patch * added 0020_remove_loadpath_manipulation_in_specs.patch * override lintian warning about duplicate description for transitional packages * Add myself as an uploader -- Cédric Boutillier Mon, 24 Oct 2011 15:13:19 +0200 libdataobjects-sqlite3-ruby (0.10.2-1) unstable; urgency=low * New upstream release. * debian/watch + updated from alioth gemwatch. * debian/control + corrected typo error. + updated depends to libddataobjects-ruby1.9 to 1.9.1. -- Deepak Tripathi Tue, 01 Jun 2010 15:35:15 +0530 libdataobjects-sqlite3-ruby (0.10.1.1-1) unstable; urgency=low * New upstream release. * Bumped standard version * Update debian/copyright * Added debian/source/format * Modified debian/watch for .gem * Ported to ruby1.9.1 * debian/control + added DM-Upload field. + added Homepage and Vcs-* entry + keeping under pkg-ruby-extras group. + taking over from Sebestien. -- Deepak Tripathi Mon, 10 May 2010 08:26:37 +0000 libdataobjects-sqlite3-ruby (0.9.11-1) unstable; urgency=low * New upstream release. * Added debian/watch file. * Conform to latest policy. -- Sebastien Delafond Wed, 19 Aug 2009 11:47:23 +0200 libdataobjects-sqlite3-ruby (0.2.5-2) unstable; urgency=low * Depend on libdataobjects-ruby1.8 -- Sebastien Delafond Mon, 12 May 2008 15:24:14 -0700 libdataobjects-sqlite3-ruby (0.2.5-1) unstable; urgency=low * Initial Release. -- Sebastien Delafond Mon, 12 May 2008 14:57:06 -0700 debian/compat0000644000000000000000000000000211655100013010354 0ustar 7 debian/patches/0000755000000000000000000000000011655100222010607 5ustar debian/patches/0010_remove_rubygems_from_specs.patch0000644000000000000000000000051311655100222017721 0ustar Description: remove requirement on rubygems in spec_helper Author: Cédric Boutillier Last-Update: 2011-10-23 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,7 +1,6 @@ $TESTING=true JRUBY = RUBY_PLATFORM =~ /java/ -require 'rubygems' require 'rspec' require 'date' require 'ostruct' debian/patches/series0000644000000000000000000000012711655100222012024 0ustar 0010_remove_rubygems_from_specs.patch 0020_remove_loadpath_manipulation_in_specs.patch debian/patches/0020_remove_loadpath_manipulation_in_specs.patch0000644000000000000000000000231711655100222022110 0ustar Description: remove $LOAD_PATH manipulation in specs They should use the copy installed in debian/ Author: Cédric Boutillier Last-Update: 2011-11-03 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -8,15 +8,15 @@ require 'win32console' if RUBY_PLATFORM =~ /mingw|mswin/ driver_lib = File.expand_path('../../lib', __FILE__) -$LOAD_PATH.unshift(driver_lib) unless $LOAD_PATH.include?(driver_lib) +#$LOAD_PATH.unshift(driver_lib) unless $LOAD_PATH.include?(driver_lib) # Prepend data_objects/do_jdbc in the repository to the load path. # DO NOT USE installed gems, except when running the specs from gem. -repo_root = File.expand_path('../../..', __FILE__) -(['data_objects'] << ('do_jdbc' if JRUBY)).compact.each do |lib| - lib_path = "#{repo_root}/#{lib}/lib" - $LOAD_PATH.unshift(lib_path) if File.directory?(lib_path) && !$LOAD_PATH.include?(lib_path) -end +#repo_root = File.expand_path('../../..', __FILE__) +#(['data_objects'] << ('do_jdbc' if JRUBY)).compact.each do |lib| +# lib_path = "#{repo_root}/#{lib}/lib" +# $LOAD_PATH.unshift(lib_path) if File.directory?(lib_path) && !$LOAD_PATH.include?(lib_path) +#end require 'data_objects' require 'data_objects/spec/setup' debian/control0000644000000000000000000000205012154173432010570 0ustar Source: ruby-dataobjects-sqlite3 Section: ruby Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: Deepak Tripathi , Cédric Boutillier Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.3.0~), libsqlite3-dev, ruby-dataobjects (>= 0.10.13~), ruby-rspec (>= 2.5), rake Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-dataobjects-sqlite3.git Vcs-Browser: http://anonscm.debian.org/gitweb?p=pkg-ruby-extras/ruby-dataobjects-sqlite3.git;a=summary Homepage: https://github.com/datamapper/do XS-Ruby-Versions: all Package: ruby-dataobjects-sqlite3 Architecture: any XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, ruby-dataobjects (>= 0.10.13~) Description: SQLite adapter for ruby-dataobjects The purpose of DataObjects.rb is to propose a single interface for Ruby to various databases. This package provides the adapter for SQLite to this unified interface. debian/rules0000755000000000000000000000104611655100222010241 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 #install upstream changelog override_dh_installchangelogs: dh_installchangelogs ChangeLog.markdown debian/source/0000755000000000000000000000000011655100013010456 5ustar debian/source/format0000644000000000000000000000001411655100013011664 0ustar 3.0 (quilt) debian/source/options0000644000000000000000000000002011655100013012064 0ustar unapply-patches debian/watch0000644000000000000000000000015111655100013010204 0ustar version=3 http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/do_sqlite3 .*/do_sqlite3-(.*).tar.gz debian/ruby-tests.rake0000644000000000000000000000022311744111373012152 0ustar require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = './spec/**/*_spec.rb' end task :default => :spec