app-arch/cabextract: fix big-endian

Closes: https://bugs.gentoo.org/670654
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
This commit is contained in:
Thomas Deutschmann
2018-11-22 14:53:24 +01:00
parent 87f69c522f
commit 3a418bfc82
3 changed files with 39 additions and 0 deletions

View File

@@ -31,6 +31,11 @@ DEPEND="${LIBMSPACK_DEPEND}
virtual/pkgconfig"
RDEPEND="extras? ( dev-lang/perl )"
PATCHES=(
"${FILESDIR}"/${P}-fix-bigendian.patch
"${FILESDIR}"/${P}-remove-spurious-test_files.patch
)
src_prepare() {
if [[ ${PV} == "9999" ]] ; then
# Re-create file layout from release tarball

View File

@@ -0,0 +1,17 @@
https://github.com/kyz/libmspack/commit/c19e707936947b45cf05bc9aaee68517c6c2aca6
---
configure.ac | 1 +
1 files changed, 1 insertions(+)
diff --git a/configure.ac b/configure.ac
--- a/configure.ac
+++ b/configure.ac
@@ -30,6 +30,7 @@ AC_CHECK_HEADERS([inttypes.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_INLINE
+AC_C_BIGENDIAN
AC_TYPE_MODE_T
AC_TYPE_OFF_T
AC_TYPE_SIZE_T

View File

@@ -0,0 +1,17 @@
https://github.com/kyz/libmspack/commit/2f78851e3927b05931574b380ca6dccaf91e3807
---
test/bugs.test | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/test/bugs.test
+++ b/test/bugs.test
@@ -2,7 +2,7 @@
# test that known crash bugs remain fixed
. test/testcase
-$cabextract -t $test_files/bugs/*.cab
+$cabextract -t bugs/*.cab
# fail if exit code indicates a crash (SIGBUS, SIGSEGV, etc.)
test $? -le 1