[DRE-commits] [ruby-octokit] 02/02: Upload to unstable

Miguel Landaeta nomadium at moszumanska.debian.org
Sun Mar 30 21:24:04 UTC 2014


This is an automated email from the git hooks/post-receive script.

nomadium pushed a commit to branch master
in repository ruby-octokit.

commit 550a968d2b1b4d39b3cef09c1589854825df2dd5
Author: Miguel Landaeta <nomadium at debian.org>
Date:   Sun Mar 30 17:15:21 2014 -0300

    Upload to unstable
---
 debian/changelog                              |  7 +++
 debian/patches/01_disable_simplecov-html.diff | 16 ------
 debian/patches/02_disable_webmock.diff        | 20 --------
 debian/patches/03_disable_vcr.diff            | 71 ---------------------------
 debian/patches/series                         |  3 --
 5 files changed, 7 insertions(+), 110 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 4616777..022c055 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+ruby-octokit (3.0.0-1) unstable; urgency=low
+
+  * New upstream release.
+  * Remove unneeded patches.
+
+ -- Miguel Landaeta <nomadium at debian.org>  Sun, 30 Mar 2014 17:02:13 -0300
+
 ruby-octokit (2.7.0-1) unstable; urgency=low
 
   * Initial release (Closes: #740736).
diff --git a/debian/patches/01_disable_simplecov-html.diff b/debian/patches/01_disable_simplecov-html.diff
deleted file mode 100644
index 7702f19..0000000
--- a/debian/patches/01_disable_simplecov-html.diff
+++ /dev/null
@@ -1,16 +0,0 @@
-Description: Disable simplecov-html
-Author: Miguel Landaeta <miguel at debian.org>
-Forwarded: no
-Last-Update: 2014-03-04
-
---- ruby-octokit-2.7.0.orig/spec/helper.rb
-+++ ruby-octokit-2.7.0/spec/helper.rb
-@@ -2,7 +2,7 @@ require 'simplecov'
- require 'coveralls'
- 
- SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
--  SimpleCov::Formatter::HTMLFormatter,
-+  SimpleCov::Formatter::SimpleFormatter,
-   Coveralls::SimpleCov::Formatter
- ]
- SimpleCov.start
diff --git a/debian/patches/02_disable_webmock.diff b/debian/patches/02_disable_webmock.diff
deleted file mode 100644
index 3bd10bc..0000000
--- a/debian/patches/02_disable_webmock.diff
+++ /dev/null
@@ -1,20 +0,0 @@
-Description: Disable webmock
-Author: Miguel Landaeta <miguel at debian.org>
-Forwarded: no
-Last-Update: 2014-03-04
-
---- ruby-octokit-2.7.0.orig/spec/helper.rb
-+++ ruby-octokit-2.7.0/spec/helper.rb
-@@ -10,9 +10,10 @@ SimpleCov.start
- require 'json'
- require 'octokit'
- require 'rspec'
--require 'webmock/rspec'
-+# webmock tests are excluded because is not available in Debian yet: #695194.
-+#require 'webmock/rspec'
- 
--WebMock.disable_net_connect!(:allow => 'coveralls.io')
-+#WebMock.disable_net_connect!(:allow => 'coveralls.io')
- 
- RSpec.configure do |config|
-   config.treat_symbols_as_metadata_keys_with_true_values = true
diff --git a/debian/patches/03_disable_vcr.diff b/debian/patches/03_disable_vcr.diff
deleted file mode 100644
index be31fc7..0000000
--- a/debian/patches/03_disable_vcr.diff
+++ /dev/null
@@ -1,71 +0,0 @@
-Description: Disable vcr
-Author: Miguel Landaeta <miguel at debian.org>
-Forwarded: no
-Last-Update: 2014-03-04
-
---- ruby-octokit-2.7.0.orig/spec/helper.rb
-+++ ruby-octokit-2.7.0/spec/helper.rb
-@@ -19,34 +19,35 @@ RSpec.configure do |config|
-   config.treat_symbols_as_metadata_keys_with_true_values = true
- end
- 
--require 'vcr'
--VCR.configure do |c|
--  c.configure_rspec_metadata!
--  c.filter_sensitive_data("<GITHUB_LOGIN>") do
--    test_github_login
--  end
--  c.filter_sensitive_data("<GITHUB_PASSWORD>") do
--    test_github_password
--  end
--  c.filter_sensitive_data("<<ACCESS_TOKEN>>") do
--    test_github_token
--  end
--  c.filter_sensitive_data("<GITHUB_CLIENT_ID>") do
--    test_github_client_id
--  end
--  c.filter_sensitive_data("<GITHUB_CLIENT_SECRET>") do
--    test_github_client_id
--  end
--  c.default_cassette_options = {
--    :serialize_with             => :json,
--    # TODO: Track down UTF-8 issue and remove
--    :preserve_exact_body_bytes  => true,
--    :decode_compressed_response => true,
--    :record                     => ENV['TRAVIS'] ? :none : :once
--  }
--  c.cassette_library_dir = 'spec/cassettes'
--  c.hook_into :webmock
--end
-+# vcr tests are excluded because is not available in Debian yet: #695195.
-+#require 'vcr'
-+#VCR.configure do |c|
-+#  c.configure_rspec_metadata!
-+#  c.filter_sensitive_data("<GITHUB_LOGIN>") do
-+#    test_github_login
-+#  end
-+#  c.filter_sensitive_data("<GITHUB_PASSWORD>") do
-+#    test_github_password
-+#  end
-+#  c.filter_sensitive_data("<<ACCESS_TOKEN>>") do
-+#    test_github_token
-+#  end
-+#  c.filter_sensitive_data("<GITHUB_CLIENT_ID>") do
-+#    test_github_client_id
-+#  end
-+#  c.filter_sensitive_data("<GITHUB_CLIENT_SECRET>") do
-+#    test_github_client_id
-+#  end
-+#  c.default_cassette_options = {
-+#    :serialize_with             => :json,
-+#    # TODO: Track down UTF-8 issue and remove
-+#    :preserve_exact_body_bytes  => true,
-+#    :decode_compressed_response => true,
-+#    :record                     => ENV['TRAVIS'] ? :none : :once
-+#  }
-+#  c.cassette_library_dir = 'spec/cassettes'
-+#  c.hook_into :webmock
-+#end
- 
- def test_github_login
-   ENV.fetch 'OCTOKIT_TEST_GITHUB_LOGIN', 'api-padawan'
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index a06f631..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,3 +0,0 @@
-01_disable_simplecov-html.diff
-02_disable_webmock.diff
-03_disable_vcr.diff

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-octokit.git



More information about the Pkg-ruby-extras-commits mailing list