summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-10-28 21:27:25 -0200
committerSilvio Rhatto <rhatto@riseup.net>2014-10-28 21:27:25 -0200
commitf87be20c8bc060cfaba2b75a2633c90dfcc43c29 (patch)
tree8209637c6cc18b2d692d84f2ba194fe0a31efa16
parentfcfe321cfa6eef0c4fbed284364f4573f43a8e43 (diff)
downloaddebian-f87be20c8bc060cfaba2b75a2633c90dfcc43c29.tar.gz
debian-f87be20c8bc060cfaba2b75a2633c90dfcc43c29.tar.bz2
Ruby: downloading existing dependencies
-rw-r--r--ruby.md12
1 files changed, 9 insertions, 3 deletions
diff --git a/ruby.md b/ruby.md
index 9b6252c..761ac9b 100644
--- a/ruby.md
+++ b/ruby.md
@@ -64,7 +64,7 @@ Then:
* Try different package names.
* Update your list of existing `$packages`.
-In this example, that gives us the following already ported dependencies:
+In this example, that gives us the following `$already_ported` dependencies:
* capistrano
* ruby-activemodel
@@ -86,7 +86,7 @@ In this example, that gives us the following already ported dependencies:
* ruby-tzinfo
* ruby-versionomy
-That means the following gems need to be packaged:
+That means the following `$gems` needs to be packaged:
* base32
* command_line_reporter
@@ -97,7 +97,7 @@ That means the following gems need to be packaged:
* tee
* ya2yaml
-In summary, we need to port the following packages:
+In summary, we need to port the following `$new_packages`:
* ruby-base32
* ruby-command-line-reporter
@@ -114,6 +114,12 @@ Build remaining packages:
gem2deb $gem
done
+Backporting existing packages:
+
+ for package in $already_ported; do
+ apt-get -t jessie source --download-only $package
+ done
+
Additional steps:
* Backport existing dependencies if needed.