summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/open-vcdiff
diff options
context:
space:
mode:
authorMatthieu CRAPET <Matthieu.CRAPET@ingenico.com>2014-05-19 13:27:05 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2014-05-21 13:56:15 +0200
commit8fed52de716dabde6cc9cdac9eef4d73a49d437a (patch)
tree42df32302dc6b04728bd66bc0c26ce33335ce102 /meta-oe/recipes-support/open-vcdiff
parent90795acc987040bf4743828644b1edf57e929439 (diff)
downloadmeta-openembedded-8fed52de716dabde6cc9cdac9eef4d73a49d437a.tar.gz
open-vcdiff: update to 0.8.4
wget is ignoring "Content-Disposition" http header, that's why I've added 'downloadfilename' in SRC_URI. Note: Googlecode discarded their download section and moved to Googledrive. http://google-opensource.blogspot.fr/2013/05/a-change-to-google-code-download-service.html Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/open-vcdiff')
-rw-r--r--meta-oe/recipes-support/open-vcdiff/files/aclocal-amflags-fix.patch33
-rw-r--r--meta-oe/recipes-support/open-vcdiff/open-vcdiff_0.8.4.bb (renamed from meta-oe/recipes-support/open-vcdiff/open-vcdiff_0.8.3.bb)9
2 files changed, 4 insertions, 38 deletions
diff --git a/meta-oe/recipes-support/open-vcdiff/files/aclocal-amflags-fix.patch b/meta-oe/recipes-support/open-vcdiff/files/aclocal-amflags-fix.patch
deleted file mode 100644
index cd1efd7b1..000000000
--- a/meta-oe/recipes-support/open-vcdiff/files/aclocal-amflags-fix.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1Fix this error:
2
3| aclocal: error: non-option arguments are not accepted: '\'.
4
5Starting from commit v1.11-662-g52246cc, when given non-option arguments, aclocal rejects them, instead of silently ignoring them.
6
7Declare ACLOCAL_AMFLAGS as a single line because autoreconf can't handle multiline.
8
9Notice that ACLOCAL_AMFLAGS is deprecated.
10In configure.ac, AC_CONFIG_MACRO_DIRS should be used (instead of AC_CONFIG_MACRO_DIR) but requires automake 1.13+.
11
12Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com>
13---
14 Makefile.am | 3 +--
15 1 file changed, 1 insertion(+), 2 deletions(-)
16
17diff --git a/Makefile.am b/Makefile.am
18index 5c765c7..f4295a6 100644
19--- a/Makefile.am
20+++ b/Makefile.am
21@@ -1,8 +1,7 @@
22 ## Process this file with automake to produce Makefile.in
23
24 # Make sure that when we re-make ./configure, we get the macros we need
25-ACLOCAL_AMFLAGS = -I m4 \
26- -I gflags/m4
27+ACLOCAL_AMFLAGS = -I m4 -I gflags/m4
28
29 # This is so we can #include <google/vcencoder.h> or <gtest/gtest.h>
30 AM_CPPFLAGS = -I$(top_srcdir)/src \
31--
321.8.5.4
33
diff --git a/meta-oe/recipes-support/open-vcdiff/open-vcdiff_0.8.3.bb b/meta-oe/recipes-support/open-vcdiff/open-vcdiff_0.8.4.bb
index c6af25d48..e6942d01f 100644
--- a/meta-oe/recipes-support/open-vcdiff/open-vcdiff_0.8.3.bb
+++ b/meta-oe/recipes-support/open-vcdiff/open-vcdiff_0.8.4.bb
@@ -9,11 +9,10 @@ HOMEPAGE = "http://code.google.com/p/open-vcdiff/"
9SECTION = "console/utils" 9SECTION = "console/utils"
10 10
11LICENSE = "Apache-2.0" 11LICENSE = "Apache-2.0"
12LIC_FILES_CHKSUM = "file://COPYING;md5=b2c8309843bc5297cfb4dc84f43f3ccc" 12LIC_FILES_CHKSUM = "file://COPYING;md5=ff820d4ddc1ba05b6fd37b41a21506f9"
13 13
14SRC_URI = "http://open-vcdiff.googlecode.com/files/${BPN}-${PV}.tar.gz \ 14SRC_URI = "https://drive.google.com/uc?id=0B5WpIi2fQU1aNGJwVE9hUjU5clU&export=download;downloadfilename=${BP}.tar.gz"
15 file://aclocal-amflags-fix.patch" 15SRC_URI[md5sum] = "5c0d378d907bebc38b51c3d7e4117011"
16SRC_URI[md5sum] = "5f848e4916b407879f55e0ca74c3f6af" 16SRC_URI[sha256sum] = "2b142b1027fb0a62c41347600e01a53fa274dad15445a7da48083c830c3138b3"
17SRC_URI[sha256sum] = "b7e47db78866082e9e8b5782f5491092c8414f0acc0440aea03b14c7d1d3c371"
18 17
19inherit autotools 18inherit autotools