From cede96cd70326baae6f14a3d9c13773635f58cba Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 6 Jul 2018 08:36:09 +0200 Subject: extra/python2: disable another test --- extra/python2/PKGBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extra/python2/PKGBUILD b/extra/python2/PKGBUILD index 89e42cde..e7604555 100644 --- a/extra/python2/PKGBUILD +++ b/extra/python2/PKGBUILD @@ -2,9 +2,10 @@ # test_replace_overflow (present in test_bytes, test_str, test_string, # test_unicode, test_userstring) segfault on i686 # test_bigrepeat (present in test_tuple) segfault on i686 +# test_audioop (present in test_wrongsize) AssertionError: -2147483648 != 2147483648L eval "$( declare -f check | \ sed ' - /xvfb-run/ s/-x test_idle/-x test_idle test_bytes test_str test_string test_unicode test_userstring test_tuple/ + /xvfb-run/ s/-x test_idle/-x test_idle test_bytes test_str test_string test_unicode test_userstring test_tuple test_wrongsize/ ' )" -- cgit v1.2.3-70-g09d2 From 7f361049fd2fb43d34cd644f373a0ddec9f5e51c Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 6 Jul 2018 09:03:05 +0200 Subject: community/consul: fix "linux" make target --- community/consul/PKGBUILD | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 community/consul/PKGBUILD diff --git a/community/consul/PKGBUILD b/community/consul/PKGBUILD new file mode 100644 index 00000000..60cf693f --- /dev/null +++ b/community/consul/PKGBUILD @@ -0,0 +1,6 @@ +eval "$( + declare -f prepare | \ + sed ' + $ i sed "s/amd64/386/g" "${srcdir}/src/github.com/hashicorp/${pkgname}/GNUmakefile" + ' +)" -- cgit v1.2.3-70-g09d2 From 0afa0838759cf343a0c595458b8c2e689520f41f Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 6 Jul 2018 09:22:22 +0200 Subject: extra/python2: disable another test --- extra/python2/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/python2/PKGBUILD b/extra/python2/PKGBUILD index e7604555..495bc722 100644 --- a/extra/python2/PKGBUILD +++ b/extra/python2/PKGBUILD @@ -2,10 +2,10 @@ # test_replace_overflow (present in test_bytes, test_str, test_string, # test_unicode, test_userstring) segfault on i686 # test_bigrepeat (present in test_tuple) segfault on i686 -# test_audioop (present in test_wrongsize) AssertionError: -2147483648 != 2147483648L +# test_audioop (present in test_wrongsize, test_augassign) AssertionError: -2147483648 != 2147483648L eval "$( declare -f check | \ sed ' - /xvfb-run/ s/-x test_idle/-x test_idle test_bytes test_str test_string test_unicode test_userstring test_tuple test_wrongsize/ + /xvfb-run/ s/-x test_idle/-x test_idle test_bytes test_str test_string test_unicode test_userstring test_tuple test_wrongsize test_augassign/ ' )" -- cgit v1.2.3-70-g09d2 From e9e4e669a93f71dae57ad744102d8429c7c4ff42 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 6 Jul 2018 09:26:56 +0200 Subject: community/consul: sed needs "-i" to make inline changes, whoops --- community/consul/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community/consul/PKGBUILD b/community/consul/PKGBUILD index 60cf693f..dd10b5cf 100644 --- a/community/consul/PKGBUILD +++ b/community/consul/PKGBUILD @@ -1,6 +1,6 @@ eval "$( declare -f prepare | \ sed ' - $ i sed "s/amd64/386/g" "${srcdir}/src/github.com/hashicorp/${pkgname}/GNUmakefile" + $ i sed -i "s/amd64/386/g" "${srcdir}/src/github.com/hashicorp/${pkgname}/GNUmakefile" ' )" -- cgit v1.2.3-70-g09d2 From 73e1a9a73343d47599f07900213916deeec251b3 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 6 Jul 2018 11:30:00 +0200 Subject: extra/python2: disable another test --- extra/python2/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/python2/PKGBUILD b/extra/python2/PKGBUILD index 495bc722..fd31655a 100644 --- a/extra/python2/PKGBUILD +++ b/extra/python2/PKGBUILD @@ -2,10 +2,10 @@ # test_replace_overflow (present in test_bytes, test_str, test_string, # test_unicode, test_userstring) segfault on i686 # test_bigrepeat (present in test_tuple) segfault on i686 -# test_audioop (present in test_wrongsize, test_augassign) AssertionError: -2147483648 != 2147483648L +# test_audioop (present in test_wrongsize, test_augassign, test_base64) AssertionError: -2147483648 != 2147483648L eval "$( declare -f check | \ sed ' - /xvfb-run/ s/-x test_idle/-x test_idle test_bytes test_str test_string test_unicode test_userstring test_tuple test_wrongsize test_augassign/ + /xvfb-run/ s/-x test_idle/-x test_idle test_bytes test_str test_string test_unicode test_userstring test_tuple test_wrongsize test_augassign test_base64/ ' )" -- cgit v1.2.3-70-g09d2