We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74fdecf commit 228cf9eCopy full SHA for 228cf9e
debian/genprovides
@@ -2,9 +2,12 @@
2
3
set -eu
4
5
+standalone=$(sed -e '/^#/d' ${0}.reject | awk -v d='\\|' '{s=(NR==1?s:s d)$0}END{print s}' )
6
+
7
+# FIXME after ruby3.0 is gone ruby2_keywords can be added to provides again
8
printf 'libruby:Provides='
9
find "$@" -name \*.gemspec \
10
| xargs -n 1 basename \
11
| sort \
- | grep -v 'bundler\|rake' \
12
+ | grep -v "${standalone}" \
13
| sed -e 's/_/-/g; s/\(.*\)-\([0-9.]\+\)\.gemspec/ruby-\1 (= \2), /' | xargs echo
debian/genprovides.reject
@@ -0,0 +1,5 @@
1
+# list of gems to not be shipped with the binary as they are available through
+# standalone packages
+bundler
+rake
+ruby2_keywords
0 commit comments