diff options
| author | Amy Fong <amy.fong@windriver.com> | 2014-05-20 15:17:59 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-05-24 00:27:56 -0400 |
| commit | 2e12ccf943cde43a1ddfd6b0cd656c25dc226cff (patch) | |
| tree | 2493057c53c9de118322689d0e68ea9bad868f86 /meta-openstack/recipes-devtools | |
| parent | 5403dff7fd0332ec5669d4d14d6b84edf1f4e26b (diff) | |
| download | meta-cloud-services-2e12ccf943cde43a1ddfd6b0cd656c25dc226cff.tar.gz | |
Ruby/chef solo: Add recipes-devtools/ruby/diff-lcs_git.bb
Diff::LCS computes the difference between two
Enumerable sequences using the McIlroy-Hunt longest common subsequence
(LCS) algorithm. It includes utilities to create a simple HTML diff
output format and a standard diff-like tool.
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Amy Fong <amy.fong@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools')
| -rw-r--r-- | meta-openstack/recipes-devtools/ruby/diff-lcs_git.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/ruby/diff-lcs_git.bb b/meta-openstack/recipes-devtools/ruby/diff-lcs_git.bb new file mode 100644 index 0000000..fc7956d --- /dev/null +++ b/meta-openstack/recipes-devtools/ruby/diff-lcs_git.bb | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | # | ||
| 2 | # Copyright (C) 2014 Wind River Systems, Inc. | ||
| 3 | # | ||
| 4 | SUMMARY = "Computes the difference between two Enumerable sequences." | ||
| 5 | DESCRIPTION = "Diff::LCS computes the difference between two \ | ||
| 6 | Enumerable sequences using the McIlroy-Hunt longest common subsequence \ | ||
| 7 | (LCS) algorithm. It includes utilities to create a simple HTML diff \ | ||
| 8 | output format and a standard diff-like tool." | ||
| 9 | |||
| 10 | LICENSE = "MIT" | ||
| 11 | LIC_FILES_CHKSUM = "file://License.rdoc;md5=debd9dff6792a920e1ca0ee909e1926a" | ||
| 12 | |||
| 13 | PR = "r0" | ||
| 14 | |||
| 15 | BPV = "1.2.5" | ||
| 16 | PV = "${BPV}" | ||
| 17 | SRCREV = "d53e92242b9dd6745e56a0ff4ba15d2f62052b91" | ||
| 18 | |||
| 19 | S = "${WORKDIR}/git" | ||
| 20 | |||
| 21 | SRC_URI = " \ | ||
| 22 | git://github.com/halostatue/diff-lcs.git \ | ||
| 23 | " | ||
| 24 | |||
| 25 | inherit ruby | ||
| 26 | |||
| 27 | BBCLASSEXTEND = "native" | ||
