Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
ruby-http-parser
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Ruby Team
ruby-http-parser
Commits
0927d3be
Commit
0927d3be
authored
4 years ago
by
Cédric Boutillier
Browse files
Options
Downloads
Patches
Plain Diff
Replace 2.7.0 in d/rules by theRbConfig::RBCONFIG["ruby_version"] (Closes: #964320)
parent
33a94e58
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
debian/changelog
+11
-0
11 additions, 0 deletions
debian/changelog
debian/rules
+6
-3
6 additions, 3 deletions
debian/rules
with
17 additions
and
3 deletions
debian/changelog
+
11
−
0
View file @
0927d3be
ruby-http-parser (1.2.1-4) UNRELEASED; urgency=medium
[ Pirate Praveen ]
* Allow version from backports to satisfy dependency
[ Cédric Boutillier ]
* Replace hardcoded 2.7.0 version in debian/rules by the output of
RbConfig::RBCONFIG["ruby_version"] (Closes: #964320)
-- Cédric Boutillier <boutil@debian.org> Wed, 26 Aug 2020 11:37:49 +0200
ruby-http-parser (1.2.1-3) unstable; urgency=medium
* Team upload.
...
...
This diff is collapsed.
Click to expand it.
debian/rules
+
6
−
3
View file @
0927d3be
...
...
@@ -4,12 +4,15 @@
export GEM2DEB_TEST_RUNNER = --check-dependencies
#export DH_RUBY = --gem-install
RUBY_VERSION=`ruby -e 'puts RbConfig::CONFIG["ruby_version"]'`
RUBY_ARCH=`ruby -e 'puts RbConfig::CONFIG["arch"]'`
%:
dh $@ --buildsystem=ruby --with ruby
override_dh_install:
dh_install
mv $(CURDIR)/debian/ruby-http-parser/usr/share/rubygems-integration/
2.7.0
\
mv $(CURDIR)/debian/ruby-http-parser/usr/share/rubygems-integration/
$(RUBY_VERSION)
\
$(CURDIR)/debian/ruby-http-parser/usr/share/rubygems-integration/all
mkdir -p $(CURDIR)/debian/ruby-http-parser/usr/lib/
`ruby -e 'puts RbConfig::CONFIG["arch"]'`
/ruby/vendor_ruby/
find ext/ -name "libhttp-parser-ext.so" -exec cp "{}" $(CURDIR)/debian/ruby-http-parser/usr/lib/
`ruby -e 'puts RbConfig::CONFIG["arch"]'`
/ruby/vendor_ruby/ ";"
mkdir -p $(CURDIR)/debian/ruby-http-parser/usr/lib/
$(RUBY_ARCH)
/ruby/vendor_ruby/
find ext/ -name "libhttp-parser-ext.so" -exec cp "{}" $(CURDIR)/debian/ruby-http-parser/usr/lib/
$(RUBY_ARCH)
/ruby/vendor_ruby/ ";"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment