summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/diffstat/diffstat_1.57.bb
diff options
context:
space:
mode:
authorBogdan Marinescu <bogdan.a.marinescu@intel.com>2013-06-03 10:10:20 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-07 16:48:23 +0100
commit26133c29161230ea51e6cde425468ba3aee1cd10 (patch)
tree3204ff03106bf6d87107de5c903bb5d1fc7aba44 /meta/recipes-devtools/diffstat/diffstat_1.57.bb
parent31073bc1e63e0754e35e09209aa86a7414ccf9de (diff)
downloadpoky-26133c29161230ea51e6cde425468ba3aee1cd10.tar.gz
diffstat: upgraded to 1.57
(From OE-Core rev: 36f14ee692a632234a4670f4b4ec2db8f4e32241) Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/diffstat/diffstat_1.57.bb')
-rw-r--r--meta/recipes-devtools/diffstat/diffstat_1.57.bb26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/recipes-devtools/diffstat/diffstat_1.57.bb b/meta/recipes-devtools/diffstat/diffstat_1.57.bb
new file mode 100644
index 0000000000..c25005f140
--- /dev/null
+++ b/meta/recipes-devtools/diffstat/diffstat_1.57.bb
@@ -0,0 +1,26 @@
1SUMMARY = "Tool to produce a statistics based on a diff"
2DESCRIPTION = "diffstat reads the output of diff and displays a histogram of \
3the insertions, deletions, and modifications per-file. It is useful for \
4reviewing large, complex patch files."
5HOMEPAGE = "http://invisible-island.net/diffstat/"
6SECTION = "devel"
7LICENSE = "MIT"
8LIC_FILES_CHKSUM = "file://install-sh;endline=42;md5=b3549726c1022bee09c174c72a0ca4a5"
9
10SRC_URI = "ftp://invisible-island.net/diffstat/diffstat-${PV}.tgz \
11 file://dirfix.patch \
12 file://aclocal.patch"
13
14SRC_URI[md5sum] = "a70ae35e479ab91da7eb6023a4e9240a"
15SRC_URI[sha256sum] = "cb9845839d695f178d6b5458b08d3e04773e400f35c0c062c4c0102220fba1e6"
16
17S = "${WORKDIR}/diffstat-${PV}"
18
19inherit autotools gettext
20
21do_configure () {
22 if [ ! -e ${S}/acinclude.m4 ]; then
23 mv ${S}/aclocal.m4 ${S}/acinclude.m4
24 fi
25 autotools_do_configure
26}