[arch-commits] Commit in x265/trunk (2 files)

Maxime Gauduin alucryd at archlinux.org
Fri Oct 28 08:57:53 UTC 2016


    Date: Friday, October 28, 2016 @ 08:57:53
  Author: alucryd
Revision: 279381

upgpkg: x265 2.1-2

Modified:
  x265/trunk/PKGBUILD
Deleted:
  x265/trunk/x265-1.7-fix-slowness-with-gcc-5.1.patch

------------------------------------------+
 PKGBUILD                                 |    4 ++--
 x265-1.7-fix-slowness-with-gcc-5.1.patch |   28 ----------------------------
 2 files changed, 2 insertions(+), 30 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2016-10-28 08:03:36 UTC (rev 279380)
+++ PKGBUILD	2016-10-28 08:57:53 UTC (rev 279381)
@@ -5,7 +5,7 @@
 
 pkgname=x265
 pkgver=2.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Open Source H265/HEVC video encoder'
 arch=('i686' 'x86_64')
 url='https://bitbucket.org/multicoreware/x265'
@@ -14,7 +14,7 @@
 makedepends=('yasm' 'cmake')
 provides=('libx265.so')
 source=("https://bitbucket.org/multicoreware/x265/downloads/x265_${pkgver}.tar.gz")
-sha256sums=('b3bc83754e91ed5655c8cba5a2ed48e6b9ab39699c9ed6554c670211d5870f9c')
+sha256sums=('88fcb9af4ba52c0757ac9c0d8cd5ec79951a22905ae886897e06954353d6a643')
 
 prepare() {
   cd x265_${pkgver}

Deleted: x265-1.7-fix-slowness-with-gcc-5.1.patch
===================================================================
--- x265-1.7-fix-slowness-with-gcc-5.1.patch	2016-10-28 08:03:36 UTC (rev 279380)
+++ x265-1.7-fix-slowness-with-gcc-5.1.patch	2016-10-28 08:57:53 UTC (rev 279381)
@@ -1,28 +0,0 @@
-# HG changeset patch
-# User Deepthi Nandakumar <deepthi at multicorewareinc.com>
-# Date 1434559454 -19800
-#      Wed Jun 17 22:14:14 2015 +0530
-# Branch stable
-# Node ID 98325f22a1bad500e6a0c3372bf8177e81167cae
-# Parent  e0738af788da598a3cdf4458dbb46fbb07563534
-fix issue #143 x265 is slow when it is build with GCC 5.1
-
-diff -r e0738af788da -r 98325f22a1ba source/common/vec/vec-primitives.cpp
---- a/source/common/vec/vec-primitives.cpp	Wed May 20 10:29:09 2015 -0500
-+++ b/source/common/vec/vec-primitives.cpp	Wed Jun 17 22:14:14 2015 +0530
-@@ -32,12 +32,13 @@
- #define HAVE_SSE4
- #define HAVE_AVX2
- #elif defined(__GNUC__)
--#if __clang__ || (__GNUC__ >= 4 && __GNUC_MINOR__ >= 3)
-+#define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
-+#if __clang__ || GCC_VERSION >= 40300 /* gcc_version >= gcc-4.3.0 */
- #define HAVE_SSE3
- #define HAVE_SSSE3
- #define HAVE_SSE4
- #endif
--#if __clang__ || (__GNUC__ >= 4 && __GNUC_MINOR__ >= 7)
-+#if __clang__ || GCC_VERSION >= 40700 /* gcc_version >= gcc-4.7.0 */
- #define HAVE_AVX2
- #endif
- #elif defined(_MSC_VER)



More information about the arch-commits mailing list