diff options
-rw-r--r-- | meta-ruby/recipes-devtools/ruby/bundler_git.bb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/meta-ruby/recipes-devtools/ruby/bundler_git.bb b/meta-ruby/recipes-devtools/ruby/bundler_git.bb index fc73001052..7d79544290 100644 --- a/meta-ruby/recipes-devtools/ruby/bundler_git.bb +++ b/meta-ruby/recipes-devtools/ruby/bundler_git.bb | |||
@@ -13,19 +13,21 @@ been installed, so that others can install the exact same gems." | |||
13 | LICENSE = "MIT" | 13 | LICENSE = "MIT" |
14 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=196bb963e601609817d7e9ac9a64a867" | 14 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=196bb963e601609817d7e9ac9a64a867" |
15 | 15 | ||
16 | PR = "r0" | 16 | SRCREV = "06dc8472b9142fd6aaefff780d6d252c20dc2a04" |
17 | 17 | ||
18 | PV = "1.6.2" | 18 | BRANCH = "1-9-stable" |
19 | SRCREV = "06e3647c117da210ffd15a174624497830addd7b" | 19 | PV = "1.9.4" |
20 | 20 | ||
21 | S = "${WORKDIR}/git" | 21 | S = "${WORKDIR}/git" |
22 | 22 | ||
23 | SRC_URI = " \ | 23 | SRC_URI = " \ |
24 | git://github.com/bundler/bundler.git \ | 24 | git://github.com/bundler/bundler.git;branch=${BRANCH} \ |
25 | " | 25 | " |
26 | 26 | ||
27 | inherit ruby | 27 | inherit ruby |
28 | 28 | ||
29 | FILES_${PN} += "${libdir}/ruby/gems" | 29 | FILES_${PN} += "${libdir}/ruby/gems" |
30 | 30 | ||
31 | RDEPENDS_${PN} = "git" | ||
32 | |||
31 | BBCLASSEXTEND = "native" | 33 | BBCLASSEXTEND = "native" |