mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
Merge pull request #1075 from MilhouseVH/package_updates1
Package updates
This commit is contained in:
commit
6e139146e2
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="enca"
|
||||
PKG_VERSION="1.16"
|
||||
PKG_VERSION="1.19"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="libconfig"
|
||||
PKG_VERSION="1.5"
|
||||
PKG_VERSION="1.6"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="LGPL"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="diffutils"
|
||||
PKG_VERSION="3.3"
|
||||
PKG_VERSION="3.5"
|
||||
PKG_REV="0"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="libcdio"
|
||||
PKG_VERSION="0.93"
|
||||
PKG_VERSION="0.94"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPLv3"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="mysql"
|
||||
PKG_VERSION="5.7.15"
|
||||
PKG_VERSION="5.7.17"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="LGPL"
|
||||
|
@ -1,93 +1,38 @@
|
||||
diff -Naur a/cmake/build_configurations/compiler_options.cmake b/cmake/build_configurations/compiler_options.cmake
|
||||
--- a/cmake/build_configurations/compiler_options.cmake 2016-07-12 04:55:26.000000000 -0700
|
||||
+++ b/cmake/build_configurations/compiler_options.cmake 2016-09-09 01:56:54.715063581 -0700
|
||||
@@ -15,7 +15,6 @@
|
||||
--- a/cmake/build_configurations/compiler_options.cmake 2016-12-19 09:18:07.169866414 +0000
|
||||
+++ b/cmake/build_configurations/compiler_options.cmake 2016-12-19 09:19:26.290338156 +0000
|
||||
@@ -15,8 +15,6 @@
|
||||
|
||||
INCLUDE(CheckCCompilerFlag)
|
||||
INCLUDE(CheckCXXCompilerFlag)
|
||||
-INCLUDE(cmake/compiler_bugs.cmake)
|
||||
-INCLUDE(cmake/floating_point.cmake)
|
||||
|
||||
IF(SIZEOF_VOIDP EQUAL 4)
|
||||
SET(32BIT 1)
|
||||
@@ -34,10 +33,6 @@
|
||||
@@ -35,10 +33,6 @@
|
||||
IF(WITH_VALGRIND)
|
||||
SET(COMMON_C_FLAGS "-fno-inline ${COMMON_C_FLAGS}")
|
||||
ENDIF()
|
||||
- # Disable optimizations that change floating point results
|
||||
- IF(HAVE_C_FLOATING_POINT_OPTIMIZATION_PROBLEMS)
|
||||
- SET(COMMON_C_FLAGS "${COMMON_C_FLAGS} -fno-expensive-optimizations")
|
||||
- # Disable expensive-optimization if shift-or-optimization bug effective
|
||||
- IF(HAVE_C_SHIFT_OR_OPTIMIZATION_BUG)
|
||||
- SET(C_NO_EXPENSIVE_OPTIMIZATIONS TRUE)
|
||||
- ENDIF()
|
||||
SET(CMAKE_C_FLAGS_DEBUG "${COMMON_C_FLAGS}")
|
||||
SET(CMAKE_C_FLAGS_RELWITHDEBINFO "-O3 ${COMMON_C_FLAGS}")
|
||||
# Disable floating point expression contractions to avoid result differences
|
||||
IF(HAVE_C_FLOATING_POINT_FUSED_MADD)
|
||||
IF(HAVE_C_FP_CONTRACT_FLAG)
|
||||
@@ -69,14 +63,6 @@
|
||||
IF(HAVE_CXX_SHIFT_OR_OPTIMIZATION_BUG)
|
||||
SET(CXX_NO_EXPENSIVE_OPTIMIZATIONS TRUE)
|
||||
ENDIF()
|
||||
@@ -53,10 +48,6 @@
|
||||
IF(WITH_VALGRIND)
|
||||
SET(COMMON_CXX_FLAGS "-fno-inline ${COMMON_CXX_FLAGS}")
|
||||
ENDIF()
|
||||
- # Disable optimizations that change floating point results
|
||||
- IF(HAVE_CXX_FLOATING_POINT_OPTIMIZATION_PROBLEMS)
|
||||
- SET(COMMON_CXX_FLAGS "${COMMON_CXX_FLAGS} -fno-expensive-optimizations")
|
||||
- # Disable floating point expression contractions to avoid result differences
|
||||
- IF(HAVE_CXX_FLOATING_POINT_FUSED_MADD)
|
||||
- IF(HAVE_CXX_FP_CONTRACT_FLAG)
|
||||
- SET(COMMON_CXX_FLAGS "${COMMON_CXX_FLAGS} -ffp-contract=off")
|
||||
- ELSE()
|
||||
- SET(CXX_NO_EXPENSIVE_OPTIMIZATIONS TRUE)
|
||||
- ENDIF()
|
||||
SET(CMAKE_CXX_FLAGS_DEBUG "${COMMON_CXX_FLAGS}")
|
||||
SET(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O3 ${COMMON_CXX_FLAGS}")
|
||||
- ENDIF()
|
||||
IF(CXX_NO_EXPENSIVE_OPTIMIZATIONS)
|
||||
SET(COMMON_CXX_FLAGS "${COMMON_CXX_FLAGS} -fno-expensive-optimizations")
|
||||
ENDIF()
|
||||
diff -Naur a/cmake/floating_point.cmake b/cmake/floating_point.cmake
|
||||
--- a/cmake/floating_point.cmake 2016-07-12 04:55:26.000000000 -0700
|
||||
+++ b/cmake/floating_point.cmake 1969-12-31 16:00:00.000000000 -0800
|
||||
@@ -1,56 +0,0 @@
|
||||
-# Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
|
||||
-#
|
||||
-# This program is free software; you can redistribute it and/or modify
|
||||
-# it under the terms of the GNU General Public License as published by
|
||||
-# the Free Software Foundation; version 2 of the License.
|
||||
-#
|
||||
-# This program is distributed in the hope that it will be useful,
|
||||
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
-# GNU General Public License for more details.
|
||||
-#
|
||||
-# You should have received a copy of the GNU General Public License
|
||||
-# along with this program; if not, write to the Free Software
|
||||
-# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
-
|
||||
-INCLUDE(CheckCSourceRuns)
|
||||
-INCLUDE(CheckCXXSourceRuns)
|
||||
-
|
||||
-SET(code "
|
||||
- int main (int argc, char **argv)
|
||||
- {
|
||||
- double n[21] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
- 0, 0, 0, 1, 1, 1, 1, 1, 1, 1,1 };
|
||||
- double m= 0, s= 0;
|
||||
- int i;
|
||||
- for(i= 0; i < 21; i++)
|
||||
- {
|
||||
- double m_kminusone= m;
|
||||
- m= m_kminusone + (n[i] - m_kminusone) / (double) (i + 2);
|
||||
- s= s + (n[i] - m_kminusone) * (n[i] - m);
|
||||
- }
|
||||
- /*
|
||||
- s should now be either 5e 74 d1 45 17 5d 14 40 or
|
||||
- 40 14 5d 17 45 d1 74 5e, depending on endianness. If the floating point
|
||||
- operations are over optimized, the least significant byte is 5d instead
|
||||
- of 5e.
|
||||
- */
|
||||
- return (*(unsigned char*)(&s) == 0x5e ||
|
||||
- *((unsigned char*)(&s) + 7) == 0x5e);
|
||||
- }"
|
||||
-)
|
||||
-
|
||||
-SET(SAVE_CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS}")
|
||||
-SET(CMAKE_REQUIRED_FLAGS
|
||||
- "${CMAKE_REQUIRED_FLAGS} -O3 -fexpensive-optimizations"
|
||||
-)
|
||||
-
|
||||
-IF(CMAKE_COMPILER_IS_GNUCC)
|
||||
- CHECK_C_SOURCE_RUNS("${code}" HAVE_C_FLOATING_POINT_OPTIMIZATION_PROBLEMS)
|
||||
-ENDIF()
|
||||
-
|
||||
-IF(CMAKE_COMPILER_IS_GNUCXX)
|
||||
- CHECK_CXX_SOURCE_RUNS("${code}" HAVE_CXX_FLOATING_POINT_OPTIMIZATION_PROBLEMS)
|
||||
-ENDIF()
|
||||
-
|
||||
-SET(CMAKE_REQUIRED_FLAGS "${SAVE_CMAKE_REQUIRED_FLAGS}")
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="sqlite"
|
||||
PKG_VERSION="autoconf-3150000"
|
||||
PKG_VERSION="autoconf-3150200"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="PublicDomain"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="ccache"
|
||||
PKG_VERSION="3.2.8"
|
||||
PKG_VERSION="3.3.3"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="cmake"
|
||||
PKG_VERSION="3.6.2"
|
||||
PKG_VERSION="3.6.3"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="BSD"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="elfutils"
|
||||
PKG_VERSION="0.166"
|
||||
PKG_VERSION="0.167"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="mpfr"
|
||||
PKG_VERSION="3.1.4"
|
||||
PKG_VERSION="3.1.5"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="LGPL"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="Python"
|
||||
PKG_VERSION="2.7.12"
|
||||
PKG_VERSION="2.7.13"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="OSS"
|
||||
|
@ -61,7 +61,7 @@ Index: b/Makefile.pre.in
|
||||
@@ -410,7 +410,7 @@
|
||||
|
||||
# Default target
|
||||
all: build_all
|
||||
all: @DEF_MAKE_ALL_RULE@
|
||||
-build_all: $(BUILDPYTHON) oldsharedmods sharedmods gdbhooks
|
||||
+build_all: $(BUILDPYTHON) oldsharedmods sharedmods gdbhooks python-config
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="SDL2"
|
||||
PKG_VERSION="2.0.4"
|
||||
PKG_VERSION="2.0.5"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
|
@ -18,7 +18,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="openvpn"
|
||||
PKG_VERSION="2.3.12"
|
||||
PKG_VERSION="2.3.14"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="rpcbind"
|
||||
PKG_VERSION="0.2.3"
|
||||
PKG_VERSION="0.2.4"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="OSS"
|
||||
|
@ -1,22 +0,0 @@
|
||||
diff -up rpcbind-0.2.3/src/rpcb_svc_com.c.orig rpcbind-0.2.3/src/rpcb_svc_com.c
|
||||
--- rpcbind-0.2.3/src/rpcb_svc_com.c.orig 2015-11-02 16:23:08.584000000 -0500
|
||||
+++ rpcbind-0.2.3/src/rpcb_svc_com.c 2015-11-02 16:58:20.386000000 -0500
|
||||
@@ -1295,10 +1295,17 @@ handle_reply(int fd, SVCXPRT *xprt)
|
||||
a.rmt_localvers = fi->versnum;
|
||||
|
||||
xprt_set_caller(xprt, fi);
|
||||
+#if defined(SVC_XP_AUTH)
|
||||
+ SVC_XP_AUTH(xprt) = svc_auth_none;
|
||||
+#else
|
||||
xprt->xp_auth = &svc_auth_none;
|
||||
+#endif
|
||||
svc_sendreply(xprt, (xdrproc_t) xdr_rmtcall_result, (char *) &a);
|
||||
+#if !defined(SVC_XP_AUTH)
|
||||
SVCAUTH_DESTROY(xprt->xp_auth);
|
||||
xprt->xp_auth = NULL;
|
||||
+#endif
|
||||
+
|
||||
done:
|
||||
if (buffer)
|
||||
free(buffer);
|
||||
|
@ -0,0 +1,18 @@
|
||||
diff -Naur a/systemd/rpcbind.service.in b/systemd/rpcbind.service.in
|
||||
--- a/systemd/rpcbind.service.in 2016-12-20 03:18:51.839794796 +0000
|
||||
+++ b/systemd/rpcbind.service.in 2016-12-20 03:21:30.476854474 +0000
|
||||
@@ -6,12 +6,12 @@
|
||||
# Make sure we use the IP addresses listed for
|
||||
# rpcbind.socket, no matter how this unit is started.
|
||||
Wants=rpcbind.socket
|
||||
-After=rpcbind.socket
|
||||
+After=rpcbind.socket var.mount
|
||||
|
||||
[Service]
|
||||
Type=notify
|
||||
# distro can provide a drop-in adding EnvironmentFile=-/??? if needed.
|
||||
-ExecStart=@_bindir@/rpcbind $RPCBIND_OPTIONS -w -f
|
||||
+ExecStart=@_bindir@/rpcbind $RPCBIND_OPTIONS -f
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="freetype"
|
||||
PKG_VERSION="2.6.3"
|
||||
PKG_VERSION="2.6.5"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
|
@ -17,12 +17,12 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="setuptools"
|
||||
PKG_VERSION="20.6.7"
|
||||
PKG_VERSION="32.1.2"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="OSS"
|
||||
PKG_SITE="https://pypi.python.org/pypi/setuptools"
|
||||
PKG_URL="http://pypi.python.org/packages/source/s/$PKG_NAME/$PKG_NAME-$PKG_VERSION.tar.gz"
|
||||
PKG_URL="https://github.com/pypa/setuptools/archive/v$PKG_VERSION.tar.gz"
|
||||
PKG_DEPENDS_HOST="Python:host"
|
||||
PKG_SECTION="python/devel"
|
||||
PKG_SHORTDESC="setuptools: A collection of enhancements to the Python distutils"
|
||||
@ -32,7 +32,7 @@ PKG_IS_ADDON="no"
|
||||
PKG_AUTORECONF="no"
|
||||
|
||||
make_host() {
|
||||
: # nothing todo
|
||||
python bootstrap.py
|
||||
}
|
||||
|
||||
makeinstall_host() {
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="libgcrypt"
|
||||
PKG_VERSION="1.7.3"
|
||||
PKG_VERSION="1.7.5"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPLv2"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="libgpg-error"
|
||||
PKG_VERSION="1.24"
|
||||
PKG_VERSION="1.25"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPLv2"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="libevdev"
|
||||
PKG_VERSION="1.5.4"
|
||||
PKG_VERSION="1.5.5"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="pciutils"
|
||||
PKG_VERSION="3.5.1"
|
||||
PKG_VERSION="3.5.2"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="x86_64"
|
||||
PKG_LICENSE="GPL"
|
||||
|
@ -17,11 +17,11 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="util-linux"
|
||||
PKG_VERSION="2.28.1"
|
||||
PKG_VERSION="2.29"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
PKG_URL="http://www.kernel.org/pub/linux/utils/util-linux/v2.28/$PKG_NAME-$PKG_VERSION.tar.xz"
|
||||
PKG_URL="http://www.kernel.org/pub/linux/utils/util-linux/v2.29/$PKG_NAME-$PKG_VERSION.tar.xz"
|
||||
PKG_DEPENDS_TARGET="toolchain"
|
||||
PKG_DEPENDS_INIT="toolchain"
|
||||
PKG_SECTION="system"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="hdparm"
|
||||
PKG_VERSION="9.48"
|
||||
PKG_VERSION="9.49"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="BSD"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="qemu"
|
||||
PKG_VERSION="2.5.1"
|
||||
PKG_VERSION="2.7.0"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="libinput"
|
||||
PKG_VERSION="1.5.2"
|
||||
PKG_VERSION="1.5.3"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
|
@ -25,7 +25,7 @@
|
||||
# there: http://forum.xbmc.org/showthread.php?tid=177557
|
||||
|
||||
PKG_NAME="curl"
|
||||
PKG_VERSION="7.51.0"
|
||||
PKG_VERSION="7.52.0"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="MIT"
|
||||
|
@ -17,7 +17,7 @@
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="xf86-input-libinput"
|
||||
PKG_VERSION="0.22.0"
|
||||
PKG_VERSION="0.23.0"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
|
Loading…
x
Reference in New Issue
Block a user