Import Debian changes 2.1.4-2
ruby-rack (2.1.4-2) unstable; urgency=medium * Revert "Drop all patches" - Rack::Builder::parse_file#test_0006_strips leading unicode byte order mark when present still fails in i386 and stuff. Meh, I'll take a look later. ruby-rack (2.1.4-1) unstable; urgency=medium [ Pirate Praveen ] * New upstream version 2.1.4 * Bump Standards-Version to 4.5.1 (no changes needed) * Drop patches applied upstream [ Utkarsh Gupta ] * Drop all patches ruby-rack (2.1.1-6) unstable; urgency=medium [ Cédric Boutillier ] * [ci skip] Update team name * [ci skip] Add .gitattributes to keep unwanted files out of the source package [ Debian Janitor ] * Apply multi-arch hints. + ruby-rack: Add :all qualifier for ruby dependency. [ Utkarsh Gupta ] * When parsing cookies, only decode the values. Patch utils to fix cookie parsing. (Fixes: CVE-2020-8184) (Closes: #963477) ruby-rack (2.1.1-5) unstable; urgency=medium * Add patch to use Dir.entries instead of Dir[glob] to prevent user-specified glob metacharacters (Fixes: CVE-2020-8161) ruby-rack (2.1.1-4) unstable; urgency=medium * Remove ruby-minitest-global-expectations from Depends * Add ruby-minitest-global-expectations for tests ruby-rack (2.1.1-3) unstable; urgency=medium * Add patch to skip random failure (probably fixed in later upstream version) ruby-rack (2.1.1-2) unstable; urgency=medium [ Debian Janitor ] * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository, Repository-Browse. [ Utkarsh Gupta ] * Shoot to unstable * Enable tests :D * Add BD on ruby-minitest-global-expectations * Add runtime dependency on ruby-minitest-global-expectations * Fix package wrt cme * Use AUTOPKGTEST_TMP in tests as ADTTMP is deprecated * Add myself as an uploader * Add Rules-Requires-Root: no * Add Breaks for ruby-rack-oauth2 ruby-rack (2.1.1-1) experimental; urgency=medium * Team upload * New upstream version 2.1.1 * Bump Standards-Version to 4.4.1 (no changes needed) * Switch test to minitest (but disable tests because build deps not packaged) * Switch to github tarballs for tests * Upload to experimental because autopkgtest for berkshelf-api coquelicot nanoc rails redmine ruby-acts-as-api ruby-faye ruby-grape ruby-moneta ruby-omniauth ruby-rack-attack ruby-rack-oauth2 ruby-rack-openid ruby-voight-kampff failed and rebuilds of berkshelf-api coquelicot nanoc redmine ruby-grape ruby-omniauth ruby-rack-oauth2 ruby-warden failed ruby-rack (2.0.7-2) unstable; urgency=medium * Team upload * Re-upload to unstable * Add salsa-ci.yml * Bump Standards-Version to 4.4.0 * Bump debhelper-compat to 12 ruby-rack (2.0.7-1) experimental; urgency=medium * Team upload * New upstream version 2.0.7
Showing
- .circleci/config.yml 107 additions, 0 deletions.circleci/config.yml
- .gitignore 12 additions, 0 deletions.gitignore
- .rubocop.yml 48 additions, 0 deletions.rubocop.yml
- .yardopts 2 additions, 0 deletions.yardopts
- CHANGELOG.md 77 additions, 0 deletionsCHANGELOG.md
- Gemfile 29 additions, 0 deletionsGemfile
- HISTORY.md 0 additions, 505 deletionsHISTORY.md
- MIT-LICENSE 4 additions, 2 deletionsMIT-LICENSE
- README.rdoc 77 additions, 117 deletionsREADME.rdoc
- Rakefile 25 additions, 18 deletionsRakefile
- SECURITY_POLICY.md 66 additions, 0 deletionsSECURITY_POLICY.md
- SPEC 3 additions, 4 deletionsSPEC
- bin/rackup 1 addition, 0 deletionsbin/rackup
- debian/changelog 112 additions, 1 deletiondebian/changelog
- debian/compat 0 additions, 1 deletiondebian/compat
- debian/control 22 additions, 21 deletionsdebian/control
- debian/patches/series 1 addition, 0 deletionsdebian/patches/series
- debian/patches/skip-random-failure.patch 15 additions, 0 deletionsdebian/patches/skip-random-failure.patch
- debian/ruby-tests.rake 11 additions, 5 deletionsdebian/ruby-tests.rake
- debian/salsa-ci.yml 4 additions, 0 deletionsdebian/salsa-ci.yml
.circleci/config.yml
0 → 100644
.gitignore
0 → 100644
.rubocop.yml
0 → 100644
.yardopts
0 → 100644
CHANGELOG.md
0 → 100644
Gemfile
0 → 100644
# frozen_string_literal: true | ||
source 'https://rubygems.org' | ||
gemspec | ||
# What we need to do here is just *exclude* JRuby, but bundler has no way to do | ||
# this, because of some argument that I know I had with Yehuda and Carl years | ||
# ago, but I've since forgotten. Anyway, we actually need it here, and it's not | ||
# avaialable, so prepare yourself for a yak shave when this breaks. | ||
c_platforms = Bundler::Dsl::VALID_PLATFORMS.dup.delete_if do |platform| | ||
platform =~ /jruby/ | ||
end | ||
gem "rubocop", "0.68.1", require: false | ||
# Alternative solution that might work, but it has bad interactions with | ||
# Gemfile.lock if that gets committed/reused: | ||
# c_platforms = [:mri] if Gem.platforms.last.os == "java" | ||
group :extra do | ||
gem 'fcgi', platforms: c_platforms | ||
gem 'dalli' | ||
gem 'thin', platforms: c_platforms | ||
end | ||
group :doc do | ||
gem 'rdoc' | ||
end |
HISTORY.md
deleted
100644 → 0
This diff is collapsed.
SECURITY_POLICY.md
0 → 100644
debian/compat
deleted
100644 → 0
debian/patches/skip-random-failure.patch
0 → 100644
debian/salsa-ci.yml
0 → 100644
Please register or sign in to comment