Import Debian changes 2.1.1-4~bpo10+1
Branches upstream/buster
Tags upstream/2.1.1
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 60 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 93 additions, 8 deletionsdebian/changelog
- debian/compat 0 additions, 1 deletiondebian/compat
- debian/control 22 additions, 21 deletionsdebian/control
- debian/patches/CVE-2022-30122.patch 0 additions, 82 deletionsdebian/patches/CVE-2022-30122.patch
- debian/patches/CVE-2022-30123.patch 0 additions, 81 deletionsdebian/patches/CVE-2022-30123.patch
- debian/patches/series 1 addition, 2 deletionsdebian/patches/series
- debian/patches/skip-random-failure.patch 15 additions, 0 deletionsdebian/patches/skip-random-failure.patch
.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/CVE-2022-30122.patch
deleted
100644 → 0
debian/patches/CVE-2022-30123.patch
deleted
100644 → 0
debian/patches/skip-random-failure.patch
0 → 100644
Please register or sign in to comment