[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2023-05-06 Thread Sam James
commit: 64caf6b8b097bae11890f9cd7ac59b2289f79659
Author: Matoro Mahri  users  noreply  github  
com>
AuthorDate: Fri May  5 23:43:57 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun May  7 05:31:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64caf6b8

media-libs/zimg: Keyword 3.0.4-r1 mips, #899174

Signed-off-by: Matoro Mahri  users.noreply.github.com>
Signed-off-by: Sam James  gentoo.org>

 media-libs/zimg/zimg-3.0.4-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/zimg/zimg-3.0.4-r1.ebuild 
b/media-libs/zimg/zimg-3.0.4-r1.ebuild
index ffef62a46080..5b947dc93b3e 100644
--- a/media-libs/zimg/zimg-3.0.4-r1.ebuild
+++ b/media-libs/zimg/zimg-3.0.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 
~riscv ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2022-12-10 Thread Pacho Ramos
commit: 234d9d69d445f663a2e7c7952c3fa7eb9e92ed55
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Dec 10 15:05:33 2022 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Dec 10 15:09:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=234d9d69

media-libs/zimg: Drop .la files

Closes: https://bugs.gentoo.org/847520
Signed-off-by: Pacho Ramos  gentoo.org>

 .../{zimg-.ebuild => zimg-3.0.4-r1.ebuild} | 23 ++
 media-libs/zimg/zimg-.ebuild   |  9 -
 2 files changed, 27 insertions(+), 5 deletions(-)

diff --git a/media-libs/zimg/zimg-.ebuild 
b/media-libs/zimg/zimg-3.0.4-r1.ebuild
similarity index 57%
copy from media-libs/zimg/zimg-.ebuild
copy to media-libs/zimg/zimg-3.0.4-r1.ebuild
index 2c7c54c43cfe..ffef62a46080 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-3.0.4-r1.ebuild
@@ -1,14 +1,14 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 if [[ ${PV} = ** ]] ; then
EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv 
~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 
~riscv ~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal
@@ -18,7 +18,14 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 LICENSE="WTFPL-2"
 SLOT="0"
-IUSE="debug static-libs"
+IUSE="debug static-libs test"
+RESTRICT="!test? ( test )"
+DEPEND="test? ( dev-cpp/gtest )"
+
+PATCHES=(
+   "${FILESDIR}/system-gtest.patch"
+   "${FILESDIR}/backport-e29571f-issue-175.patch"
+)
 
 src_prepare() {
default
@@ -28,5 +35,13 @@ src_prepare() {
 multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
$(use_enable debug) \
-   $(use_enable static-libs static)
+   $(use_enable static-libs static) \
+   $(use_enable test unit-test)
+}
+
+multilib_src_install_all() {
+   einstalldocs
+   if ! use static-libs; then
+   find "${ED}" -type f -name '*.la' -delete || die
+   fi
 }

diff --git a/media-libs/zimg/zimg-.ebuild b/media-libs/zimg/zimg-.ebuild
index 2c7c54c43cfe..1db3c69e1757 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 if [[ ${PV} = ** ]] ; then
EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
@@ -30,3 +30,10 @@ multilib_src_configure() {
$(use_enable debug) \
$(use_enable static-libs static)
 }
+
+multilib_src_install_all() {
+   einstalldocs
+   if ! use static-libs; then
+   find "${ED}" -type f -name '*.la' -delete || die
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/files/

2022-11-15 Thread Conrad Kostecki
commit: c5aa840a71a795acc997f845ea24a8c6c4790959
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Nov 14 17:47:29 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Nov 15 22:42:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5aa840a

media-libs/zimg: remove unused patch

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 media-libs/zimg/files/zimg-2.9.2-gcc-10.patch | 18 --
 1 file changed, 18 deletions(-)

diff --git a/media-libs/zimg/files/zimg-2.9.2-gcc-10.patch 
b/media-libs/zimg/files/zimg-2.9.2-gcc-10.patch
deleted file mode 100644
index ea192f77fcad..
--- a/media-libs/zimg/files/zimg-2.9.2-gcc-10.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-https://bugs.gentoo.org/721676
-
-From 9ae36d7d5f7420eaacd9644451933512fa13d716 Mon Sep 17 00:00:00 2001
-From: sekrit-twc 
-Date: Wed, 4 Dec 2019 12:01:26 -0800
-Subject: [PATCH] Update matrix3.cpp
-

- src/zimg/colorspace/matrix3.cpp | 1 +
- 1 file changed, 1 insertion(+)
-
 a/src/zimg/colorspace/matrix3.cpp
-+++ b/src/zimg/colorspace/matrix3.cpp
-@@ -1,3 +1,4 @@
-+#include 
- #include "matrix3.h"
- 
- namespace zimg {



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2022-11-12 Thread Arthur Zamarin
commit: 1756126a1dfa14a1eed6c3abb4f182212fae3285
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 12 16:08:54 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 12 16:08:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1756126a

media-libs/zimg: Stabilize 3.0.4 sparc, #868030

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-libs/zimg/zimg-3.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-3.0.4.ebuild 
b/media-libs/zimg/zimg-3.0.4.ebuild
index 1d8bac186ada..fc89c481adb6 100644
--- a/media-libs/zimg/zimg-3.0.4.ebuild
+++ b/media-libs/zimg/zimg-3.0.4.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc 
x86"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2022-11-12 Thread Arthur Zamarin
commit: c4fa2aeef3f01aefcc23a914ac5b875615578495
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 12 16:07:01 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 12 16:07:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4fa2aee

media-libs/zimg: Stabilize 3.0.4 arm, #868030

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-libs/zimg/zimg-3.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-3.0.4.ebuild 
b/media-libs/zimg/zimg-3.0.4.ebuild
index 33a38857f0f3..1d8bac186ada 100644
--- a/media-libs/zimg/zimg-3.0.4.ebuild
+++ b/media-libs/zimg/zimg-3.0.4.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc 
x86"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc 
x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2022-11-12 Thread Arthur Zamarin
commit: 73b38ce4e969c77abb6a4953eadc9f895c15529f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 12 16:06:14 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 12 16:06:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73b38ce4

media-libs/zimg: Stabilize 3.0.4 ppc64, #868030

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-libs/zimg/zimg-3.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-3.0.4.ebuild 
b/media-libs/zimg/zimg-3.0.4.ebuild
index 6365aa24924e..33a38857f0f3 100644
--- a/media-libs/zimg/zimg-3.0.4.ebuild
+++ b/media-libs/zimg/zimg-3.0.4.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~sparc 
x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc 
x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2022-11-12 Thread Arthur Zamarin
commit: 7ea0f53e7f66b13c6db4a4e1ce80ace895007839
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 12 16:06:07 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 12 16:06:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ea0f53e

media-libs/zimg: Stabilize 3.0.4 ppc, #868030

Signed-off-by: Arthur Zamarin  gentoo.org>

 media-libs/zimg/zimg-3.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-3.0.4.ebuild 
b/media-libs/zimg/zimg-3.0.4.ebuild
index be89f6335570..6365aa24924e 100644
--- a/media-libs/zimg/zimg-3.0.4.ebuild
+++ b/media-libs/zimg/zimg-3.0.4.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc 
x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~sparc 
x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/files/, media-libs/zimg/

2022-09-24 Thread Sam James
commit: 41f53032ea23d2a8a2cac6d58812130518c69315
Author: matoro  users  noreply  github  com>
AuthorDate: Sat Sep 17 18:09:34 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 01:27:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41f53032

media-libs/zimg: enable tests

Bug: https://bugs.gentoo.org/868030
Closes: https://github.com/gentoo/gentoo/pull/27310
Signed-off-by: Sam James  gentoo.org>

 .../zimg/files/backport-e29571f-issue-175.patch| 83 ++
 media-libs/zimg/files/system-gtest.patch   | 45 
 media-libs/zimg/zimg-3.0.4.ebuild  | 12 +++-
 3 files changed, 138 insertions(+), 2 deletions(-)

diff --git a/media-libs/zimg/files/backport-e29571f-issue-175.patch 
b/media-libs/zimg/files/backport-e29571f-issue-175.patch
new file mode 100644
index ..e8512f35eb7e
--- /dev/null
+++ b/media-libs/zimg/files/backport-e29571f-issue-175.patch
@@ -0,0 +1,83 @@
+https://github.com/sekrit-twc/zimg/issues/175
+
+From e29571f9fc4a7bb37503a9c7ae4afd2352968b8f Mon Sep 17 00:00:00 2001
+From: sekrit-twc 
+Date: Sat, 7 May 2022 07:47:53 -0700
+Subject: [PATCH] test: update ARM hashsums
+
+Fix #175
+---
+ test/colorspace/arm/colorspace_neon_test.cpp | 36 ++--
+ 1 file changed, 18 insertions(+), 18 deletions(-)
+
+diff --git a/test/colorspace/arm/colorspace_neon_test.cpp 
b/test/colorspace/arm/colorspace_neon_test.cpp
+index 1b6e0bc9..54ad2c39 100644
+--- a/test/colorspace/arm/colorspace_neon_test.cpp
 b/test/colorspace/arm/colorspace_neon_test.cpp
+@@ -54,13 +54,13 @@ TEST(ColorspaceConversionNeonTest, test_matrix)
+ 
+   const char *expected_sha1[3] = {
+ #if defined(_M_ARM64) || defined(__aarch64__)
+-  "7b2a05426e2ef61dc6adc16573fca46ea3480256",
+-  "9c69bc8fa775a8e877e66e79812e9f4c39cec647",
+-  "6010983126eb3f5ca2dd5c01f4753c0e9f36d0bb"
++  "749f74428406c019b1b727fa30352fcd1f0141ed",
++  "334cfa73375f8afef8423a163f3cff8f8a196762",
++  "aa3aab12d52e67b4d6765b4e8c03205a5375d8d9"
+ #else
+-  "0495adab9c82d98e73841e229a9b2041838fc0f2",
+-  "ece7edb1118d4b3063ad80f5d8febb6db7e9633a",
+-  "73a9ee951c7bde9ae0ada9b90afd1f7ce8b604df"
++  "1d559e4b2812a5940839b064f5bd74bc4fe0a2f9",
++  "b32a33c4bbbf3901f89458f914e6d03cc81f2c1d",
++  "4aadd644fae30cfd2098bb8d2b9f98483c8821fd"
+ #endif
+   };
+ #if defined(_M_ARM64) || defined(__aarch64__)
+@@ -82,34 +82,34 @@ TEST(ColorspaceConversionNeonTest, test_transfer_lut)
+   {
+ #if defined(_M_ARM64) || defined(__aarch64__)
+   "23d012fcb280f601e2e3c349229d0108e3cd632a",
+-  "21f5071b0a817c28295d51ead5137cabc6e0d5c4",
+-  "158c4ff0c91c08f82e9fc35a500a1c8166f5ae6b"
++  "7ae186215d5fa45065f7aeac74ab2dc74b556696",
++  "bad84d4e0de8572c81df6d9f91fef05b1576f9e5"
+ #else
+   "52451877e62e9fc31eb10b1e37c5f95fdd8851db",
+-  "3e2ff4f017c343edbe787692ce169123124337b1",
+-  "f719a90e6a6c859bfcfc136f3296e65044495da0"
++  "06bc0aff436bbbf4ba633b2255dd096e628a129c",
++  "a20570af1c05291029ea7d6b4215c451f4a9187a"
+ #endif
+   },
+   {
+   "011ee645ad30bb6ad6d93d8980d89a3e3e073c19",
+-  "d64814ca78cbf4e07606f92f1644f59762271ca5",
+-  "f871247697737f9f8b6a59a58306e22cce472ea6"
++  "5ae0e075b3856d9f491954b477568b17daf7f147",
++  "84b20f8fa27c23a668540566b9df26c4b42c9afa"
+   },
+   {
+ #if defined(_M_ARM64) || defined(__aarch64__)
+   "8206be2ae5e8a0fc003daeec4178189eecf82a13",
+-  "6bc5833cbd22f04c1965d230aad2ef8969da24b7",
+-  "6538399afe0b9fd55a95608b25c8036e16d658b8"
++  "24843f17600dd7bf9870f5c778549bd96c333427",
++  "26a6b00801b41da17d849e02217bf69add6324a6"
+ #else
+   "905d4d54eeae6458e8e0975c9cea66b25edcc234",
+-  "c2e7015447b40ebb2f4bfba48b7b091f964b22f1",
+-  "d222f960fe874ac88608666c4af8de180d91868e"
++  "d380f54820f1e269ea54a1d552b0cb704f83dd7b",
++  "552579149674b5e37f0d443ad19a59593fdca057"
+ #endif
+   },
+   {
+   "16f2274ffac90927de0438114f0ea22e650981a0",
+-  "2e01c95f89ea26b5a55bed895223381ac3f17e70",
+-  "c61d9c5369a00af5bb40b70fbb21956c00a4a1e9"
++  "b1c8b15b6159ab43e7bfc4e715fe3b621628d26e",
++  "632ae07d6919533c87d2ed28560a60cf070498e2"
+   },
+   };
+   const double expected_tolinear_snr = 

[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2022-09-04 Thread Sam James
commit: bdcd53a7904149fd734791715dbbbc6c5adba8b5
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  5 03:56:43 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  5 03:56:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdcd53a7

media-libs/zimg: Stabilize 3.0.4 arm64, #868030

Signed-off-by: Sam James  gentoo.org>

 media-libs/zimg/zimg-3.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-3.0.4.ebuild 
b/media-libs/zimg/zimg-3.0.4.ebuild
index 8bf4f6346f55..5198226202f1 100644
--- a/media-libs/zimg/zimg-3.0.4.ebuild
+++ b/media-libs/zimg/zimg-3.0.4.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv 
~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc 
x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2022-09-02 Thread Sam James
commit: 2833c4a4d4f62667f61b1c083f0ca311885ab557
Author: Sam James  gentoo  org>
AuthorDate: Sat Sep  3 05:26:35 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Sep  3 05:26:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2833c4a4

media-libs/zimg: Stabilize 3.0.4 amd64, #868030

Signed-off-by: Sam James  gentoo.org>

 media-libs/zimg/zimg-3.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-3.0.4.ebuild 
b/media-libs/zimg/zimg-3.0.4.ebuild
index 32310aaf1bec..8bf4f6346f55 100644
--- a/media-libs/zimg/zimg-3.0.4.ebuild
+++ b/media-libs/zimg/zimg-3.0.4.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv 
~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv 
~sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2022-09-02 Thread Sam James
commit: 70aa70d1f1a502f90c1974d5f3489ea64cb3430e
Author: Sam James  gentoo  org>
AuthorDate: Sat Sep  3 05:26:20 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Sep  3 05:26:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70aa70d1

media-libs/zimg: Stabilize 3.0.4 x86, #868030

Signed-off-by: Sam James  gentoo.org>

 media-libs/zimg/zimg-3.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-3.0.4.ebuild 
b/media-libs/zimg/zimg-3.0.4.ebuild
index 2c7c54c43cfe..32310aaf1bec 100644
--- a/media-libs/zimg/zimg-3.0.4.ebuild
+++ b/media-libs/zimg/zimg-3.0.4.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv 
~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv 
~sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2022-07-07 Thread Alexis Ballier
commit: ce96503d6c627004f1abc6094f3e4a044d550216
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jul  7 13:45:58 2022 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jul  7 14:25:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce96503d

media-libs/zimg: bump to 3.0.4

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alexis Ballier  gentoo.org>

 media-libs/zimg/Manifest  |  1 +
 media-libs/zimg/zimg-3.0.4.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index 81c202b64d8d..f50083da24cf 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -2,3 +2,4 @@ DIST zimg-2.9.2.tar.gz 266049 BLAKE2B 
214a6afec061dc7cc7c751f2a57e56951e44b78fea
 DIST zimg-3.0.1.tar.gz 326304 BLAKE2B 
353e623520df49122badd2d58400936fd25bf74fe386ade6b7a5c1b86db696dd50ff72ff40e1edbd38ee9a8a10dd429f207061fdb2ea326018396dfb92707053
 SHA512 
ae117399772d2c35ffa61b8cf5d156edf4ed65e9ffeb2e9e0688c88244fdd1a89c098bd842e3795b33fb0951da97f844fb6ffe27045e3234720f70f842356936
 DIST zimg-3.0.2.tar.gz 326554 BLAKE2B 
2ebea0060519a6912caf685ec551ed60f64f3e379629c607ad21d256daa549a2e85e2c8dbc0886846e9636508576680ed60353d569aef407879ba5fa7dd3001d
 SHA512 
6aed45c19a07862d389dfc2903a7ed9c0c6b6faa23e1d5de5483f15f1c3fb44a31c954004b8b9f34def0d387a43590d9403d9e24a99a271bcadc373c6ce30d42
 DIST zimg-3.0.3.tar.gz 326585 BLAKE2B 
30ef9063d05869a718ba450e2733dede74abb3f60ca827bba683cc1c21f7c4521c830089e800a2f704bb7a133514b00fbd245362765d07811dcb4d2970b28d09
 SHA512 
859c625599b412ecdd72c73d7618f6c7f9760337f7c8aec69fb97e30e1e65e4da51f6cbc5a2c8ad58cb7fbccdccb5322b95f24166c0204da6a3a8cd862cfb2ab
+DIST zimg-3.0.4.tar.gz 326578 BLAKE2B 
0fa63ccb0037cb6de93cdf9a5cc2d7b7d822652361c08845f9776b85856f03f29ef9fdbe9db55c074922ef13cf76ce4170786fd480da934556997658b7c32a30
 SHA512 
94beddb109f0b301f0fecf09ea2761d3707aaa1f0cc1caf682bb3d1d7dcd89164de8388e922758e274914df9c7c7c1a0a0c5192e78f88655ed4c6da0ee51995c

diff --git a/media-libs/zimg/zimg-3.0.4.ebuild 
b/media-libs/zimg/zimg-3.0.4.ebuild
new file mode 100644
index ..2c7c54c43cfe
--- /dev/null
+++ b/media-libs/zimg/zimg-3.0.4.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} = ** ]] ; then
+   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv 
~sparc ~x86"
+   S="${WORKDIR}/${PN}-release-${PV}/"
+fi
+inherit autotools multilib-minimal
+
+DESCRIPTION="Scaling, colorspace conversion, and dithering library"
+HOMEPAGE="https://github.com/sekrit-twc/zimg;
+
+LICENSE="WTFPL-2"
+SLOT="0"
+IUSE="debug static-libs"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf \
+   $(use_enable debug) \
+   $(use_enable static-libs static)
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2022-03-09 Thread Alexis Ballier
commit: 01fad02386d827dca9e94a179753fd0cdabf2135
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Mar  9 13:59:08 2022 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Mar  9 14:04:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01fad023

media-libs/zimg: bump to 3.0.3

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alexis Ballier  gentoo.org>

 media-libs/zimg/Manifest| 1 +
 media-libs/zimg/{zimg-.ebuild => zimg-3.0.3.ebuild} | 4 ++--
 media-libs/zimg/zimg-.ebuild| 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index c65862038c88..81c202b64d8d 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1,3 +1,4 @@
 DIST zimg-2.9.2.tar.gz 266049 BLAKE2B 
214a6afec061dc7cc7c751f2a57e56951e44b78fea6a0c0dc71235d3dd286fb811303b0a5198ab82165ee78d993caabaf39d7ec17db4c4e5ffca9a3475b49781
 SHA512 
b688f8e93a2e4549f2c844cd58c6e0714e6494d6fc8c800dc1b0cdf2278fb9925a646fc332350c1b5d77cef2134bf35e18a873c24ea1979c1adce57bfef68ebe
 DIST zimg-3.0.1.tar.gz 326304 BLAKE2B 
353e623520df49122badd2d58400936fd25bf74fe386ade6b7a5c1b86db696dd50ff72ff40e1edbd38ee9a8a10dd429f207061fdb2ea326018396dfb92707053
 SHA512 
ae117399772d2c35ffa61b8cf5d156edf4ed65e9ffeb2e9e0688c88244fdd1a89c098bd842e3795b33fb0951da97f844fb6ffe27045e3234720f70f842356936
 DIST zimg-3.0.2.tar.gz 326554 BLAKE2B 
2ebea0060519a6912caf685ec551ed60f64f3e379629c607ad21d256daa549a2e85e2c8dbc0886846e9636508576680ed60353d569aef407879ba5fa7dd3001d
 SHA512 
6aed45c19a07862d389dfc2903a7ed9c0c6b6faa23e1d5de5483f15f1c3fb44a31c954004b8b9f34def0d387a43590d9403d9e24a99a271bcadc373c6ce30d42
+DIST zimg-3.0.3.tar.gz 326585 BLAKE2B 
30ef9063d05869a718ba450e2733dede74abb3f60ca827bba683cc1c21f7c4521c830089e800a2f704bb7a133514b00fbd245362765d07811dcb4d2970b28d09
 SHA512 
859c625599b412ecdd72c73d7618f6c7f9760337f7c8aec69fb97e30e1e65e4da51f6cbc5a2c8ad58cb7fbccdccb5322b95f24166c0204da6a3a8cd862cfb2ab

diff --git a/media-libs/zimg/zimg-.ebuild 
b/media-libs/zimg/zimg-3.0.3.ebuild
similarity index 85%
copy from media-libs/zimg/zimg-.ebuild
copy to media-libs/zimg/zimg-3.0.3.ebuild
index 306320548ba3..2c7c54c43cfe 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-3.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv 
~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal

diff --git a/media-libs/zimg/zimg-.ebuild b/media-libs/zimg/zimg-.ebuild
index 306320548ba3..2c7c54c43cfe 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv 
~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2021-08-24 Thread Marek Szuba
commit: c5ebcb9b6a77b39650e65c4bc8413a35bcbe8e97
Author: Marek Szuba  gentoo  org>
AuthorDate: Tue Aug 24 14:13:25 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Tue Aug 24 14:33:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5ebcb9b

media-libs/zimg: keyword 3.0.2 for ~riscv

Signed-off-by: Marek Szuba  gentoo.org>

 media-libs/zimg/zimg-3.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-3.0.2.ebuild 
b/media-libs/zimg/zimg-3.0.2.ebuild
index c7a443af683..8c2a9ace532 100644
--- a/media-libs/zimg/zimg-3.0.2.ebuild
+++ b/media-libs/zimg/zimg-3.0.2.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv 
~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2021-08-11 Thread Alexis Ballier
commit: 5cba0f18cd2e7e43c7c0c6bf992a97fb54fa6771
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Aug 11 10:47:27 2021 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Aug 11 10:58:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cba0f18

media-libs/zimg: Remove old

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alexis Ballier  gentoo.org>

 media-libs/zimg/Manifest|  1 -
 media-libs/zimg/zimg-2.8.ebuild | 32 
 2 files changed, 33 deletions(-)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index 40197e8b8fc..eda1f0e39ab 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1,3 +1,2 @@
-DIST zimg-2.8.tar.gz 265363 BLAKE2B 
a8982c64325e0089617136fcd5d6ee429ab861e3b9445b9cc0292bd3bbd3abb5783e94983e3e802fd9e59c2c7089eeea176d1eda4f3a850379cfc4fb36cbc408
 SHA512 
1e89087a756798a7ae3bfae3bc8244b29ae8ae7f04f53bdf6c4d4de3cb11412dc1eecd95a4a121bb9077437e633f8fbb665522ff8112ade806d9191ea4b5f7bf
 DIST zimg-2.9.2.tar.gz 266049 BLAKE2B 
214a6afec061dc7cc7c751f2a57e56951e44b78fea6a0c0dc71235d3dd286fb811303b0a5198ab82165ee78d993caabaf39d7ec17db4c4e5ffca9a3475b49781
 SHA512 
b688f8e93a2e4549f2c844cd58c6e0714e6494d6fc8c800dc1b0cdf2278fb9925a646fc332350c1b5d77cef2134bf35e18a873c24ea1979c1adce57bfef68ebe
 DIST zimg-3.0.1.tar.gz 326304 BLAKE2B 
353e623520df49122badd2d58400936fd25bf74fe386ade6b7a5c1b86db696dd50ff72ff40e1edbd38ee9a8a10dd429f207061fdb2ea326018396dfb92707053
 SHA512 
ae117399772d2c35ffa61b8cf5d156edf4ed65e9ffeb2e9e0688c88244fdd1a89c098bd842e3795b33fb0951da97f844fb6ffe27045e3234720f70f842356936

diff --git a/media-libs/zimg/zimg-2.8.ebuild b/media-libs/zimg/zimg-2.8.ebuild
deleted file mode 100644
index bbb930d0563..000
--- a/media-libs/zimg/zimg-2.8.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-if [[ ${PV} = ** ]] ; then
-   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86"
-   S="${WORKDIR}/${PN}-release-${PV}/"
-fi
-inherit autotools multilib-minimal
-
-DESCRIPTION="Scaling, colorspace conversion, and dithering library"
-HOMEPAGE="https://github.com/sekrit-twc/zimg;
-
-LICENSE="WTFPL-2"
-SLOT="0"
-IUSE="cpu_flags_x86_sse"
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-multilib_src_configure() {
-   ECONF_SOURCE="${S}" econf \
-   --disable-static \
-   $(use_enable cpu_flags_x86_sse x86simd)
-}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2021-08-11 Thread Alexis Ballier
commit: 9059893740d48af00972496e76310f12460c6e61
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Aug 11 10:50:42 2021 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Aug 11 10:58:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90598937

media-libs/zimg: bump  to 3.0.2

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alexis Ballier  gentoo.org>

 media-libs/zimg/Manifest  |  1 +
 media-libs/zimg/zimg-3.0.2.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index eda1f0e39ab..c65862038c8 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1,2 +1,3 @@
 DIST zimg-2.9.2.tar.gz 266049 BLAKE2B 
214a6afec061dc7cc7c751f2a57e56951e44b78fea6a0c0dc71235d3dd286fb811303b0a5198ab82165ee78d993caabaf39d7ec17db4c4e5ffca9a3475b49781
 SHA512 
b688f8e93a2e4549f2c844cd58c6e0714e6494d6fc8c800dc1b0cdf2278fb9925a646fc332350c1b5d77cef2134bf35e18a873c24ea1979c1adce57bfef68ebe
 DIST zimg-3.0.1.tar.gz 326304 BLAKE2B 
353e623520df49122badd2d58400936fd25bf74fe386ade6b7a5c1b86db696dd50ff72ff40e1edbd38ee9a8a10dd429f207061fdb2ea326018396dfb92707053
 SHA512 
ae117399772d2c35ffa61b8cf5d156edf4ed65e9ffeb2e9e0688c88244fdd1a89c098bd842e3795b33fb0951da97f844fb6ffe27045e3234720f70f842356936
+DIST zimg-3.0.2.tar.gz 326554 BLAKE2B 
2ebea0060519a6912caf685ec551ed60f64f3e379629c607ad21d256daa549a2e85e2c8dbc0886846e9636508576680ed60353d569aef407879ba5fa7dd3001d
 SHA512 
6aed45c19a07862d389dfc2903a7ed9c0c6b6faa23e1d5de5483f15f1c3fb44a31c954004b8b9f34def0d387a43590d9403d9e24a99a271bcadc373c6ce30d42

diff --git a/media-libs/zimg/zimg-3.0.2.ebuild 
b/media-libs/zimg/zimg-3.0.2.ebuild
new file mode 100644
index 000..c7a443af683
--- /dev/null
+++ b/media-libs/zimg/zimg-3.0.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} = ** ]] ; then
+   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   S="${WORKDIR}/${PN}-release-${PV}/"
+fi
+inherit autotools multilib-minimal
+
+DESCRIPTION="Scaling, colorspace conversion, and dithering library"
+HOMEPAGE="https://github.com/sekrit-twc/zimg;
+
+LICENSE="WTFPL-2"
+SLOT="0"
+IUSE="debug static-libs"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf \
+   $(use_enable debug) \
+   $(use_enable static-libs static)
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2021-01-03 Thread Sam James
commit: e9ef269b6d26d9ac57d9bd6c16214e373dd1dc1c
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan  3 19:38:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan  3 19:38:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9ef269b

media-libs/zimg: Stabilize 3.0.1 arm64, #762877

Signed-off-by: Sam James  gentoo.org>

 media-libs/zimg/zimg-3.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-3.0.1.ebuild 
b/media-libs/zimg/zimg-3.0.1.ebuild
index 52ba80dd038..105cdb5838d 100644
--- a/media-libs/zimg/zimg-3.0.1.ebuild
+++ b/media-libs/zimg/zimg-3.0.1.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2021-01-02 Thread Sergei Trofimovich
commit: f94511872c615bb444bb8223005361905a6ea222
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Jan  2 11:39:58 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jan  2 11:51:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9451187

media-libs/zimg: stable 3.0.1 for sparc, bug #762877

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-libs/zimg/zimg-3.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-3.0.1.ebuild 
b/media-libs/zimg/zimg-3.0.1.ebuild
index 2e10103e346..9317c64c6c6 100644
--- a/media-libs/zimg/zimg-3.0.1.ebuild
+++ b/media-libs/zimg/zimg-3.0.1.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2020-12-31 Thread Sam James
commit: f3d397ab4ffc62e30348fa79f64d162acfb6c603
Author: Sam James  gentoo  org>
AuthorDate: Fri Jan  1 05:45:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jan  1 05:45:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3d397ab

media-libs/zimg: Stabilize 3.0.1 amd64, #762877

Signed-off-by: Sam James  gentoo.org>

 media-libs/zimg/zimg-3.0.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/zimg/zimg-3.0.1.ebuild 
b/media-libs/zimg/zimg-3.0.1.ebuild
index 306320548ba..2e10103e346 100644
--- a/media-libs/zimg/zimg-3.0.1.ebuild
+++ b/media-libs/zimg/zimg-3.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2020-08-31 Thread Alexis Ballier
commit: ec9839f0030c73681feab619b9ec42282e6dda84
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Aug 31 07:00:17 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Aug 31 09:10:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec9839f0

media-libs/zimg: bump to 3.0.1

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Alexis Ballier  gentoo.org>

 media-libs/zimg/Manifest| 1 +
 media-libs/zimg/{zimg-.ebuild => zimg-3.0.1.ebuild} | 5 ++---
 media-libs/zimg/zimg-.ebuild| 5 ++---
 3 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index 33a55d77fd7..40197e8b8fc 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1,2 +1,3 @@
 DIST zimg-2.8.tar.gz 265363 BLAKE2B 
a8982c64325e0089617136fcd5d6ee429ab861e3b9445b9cc0292bd3bbd3abb5783e94983e3e802fd9e59c2c7089eeea176d1eda4f3a850379cfc4fb36cbc408
 SHA512 
1e89087a756798a7ae3bfae3bc8244b29ae8ae7f04f53bdf6c4d4de3cb11412dc1eecd95a4a121bb9077437e633f8fbb665522ff8112ade806d9191ea4b5f7bf
 DIST zimg-2.9.2.tar.gz 266049 BLAKE2B 
214a6afec061dc7cc7c751f2a57e56951e44b78fea6a0c0dc71235d3dd286fb811303b0a5198ab82165ee78d993caabaf39d7ec17db4c4e5ffca9a3475b49781
 SHA512 
b688f8e93a2e4549f2c844cd58c6e0714e6494d6fc8c800dc1b0cdf2278fb9925a646fc332350c1b5d77cef2134bf35e18a873c24ea1979c1adce57bfef68ebe
+DIST zimg-3.0.1.tar.gz 326304 BLAKE2B 
353e623520df49122badd2d58400936fd25bf74fe386ade6b7a5c1b86db696dd50ff72ff40e1edbd38ee9a8a10dd429f207061fdb2ea326018396dfb92707053
 SHA512 
ae117399772d2c35ffa61b8cf5d156edf4ed65e9ffeb2e9e0688c88244fdd1a89c098bd842e3795b33fb0951da97f844fb6ffe27045e3234720f70f842356936

diff --git a/media-libs/zimg/zimg-.ebuild 
b/media-libs/zimg/zimg-3.0.1.ebuild
similarity index 85%
copy from media-libs/zimg/zimg-.ebuild
copy to media-libs/zimg/zimg-3.0.1.ebuild
index 4e92e0eec81..306320548ba 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-3.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 LICENSE="WTFPL-2"
 SLOT="0"
-IUSE="cpu_flags_x86_sse debug static-libs"
+IUSE="debug static-libs"
 
 src_prepare() {
default
@@ -28,6 +28,5 @@ src_prepare() {
 multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
$(use_enable debug) \
-   $(use_enable cpu_flags_x86_sse x86simd) \
$(use_enable static-libs static)
 }

diff --git a/media-libs/zimg/zimg-.ebuild b/media-libs/zimg/zimg-.ebuild
index 4e92e0eec81..306320548ba 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 LICENSE="WTFPL-2"
 SLOT="0"
-IUSE="cpu_flags_x86_sse debug static-libs"
+IUSE="debug static-libs"
 
 src_prepare() {
default
@@ -28,6 +28,5 @@ src_prepare() {
 multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
$(use_enable debug) \
-   $(use_enable cpu_flags_x86_sse x86simd) \
$(use_enable static-libs static)
 }



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/files/, media-libs/zimg/

2020-05-09 Thread Sergei Trofimovich
commit: 7a49f4df7f6bc0e0ab953c10ec1cd4a25558cb4b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat May  9 09:36:19 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May  9 09:36:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a49f4df

media-libs/zimg: tweak for gcc-10, bug #721676

The build fails as:

```
src/zimg/colorspace/matrix3.cpp:20:7:
  error: 'size_t' was not declared in this scope; did you mean 'std::size_t'?
   20 |  for (size_t i = 0; i < 3; ++i) {
  |   ^~
  |   std::size_t
```

Direct backport of upstream 9ae36d7d5f74 ("Update matrix3.cpp")
which adds missing  include needed for 'size_t'.

Reported-by: Patrick McLean
Closes: https://bugs.gentoo.org/721676
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-libs/zimg/files/zimg-2.9.2-gcc-10.patch | 18 ++
 media-libs/zimg/zimg-2.9.2.ebuild |  2 ++
 2 files changed, 20 insertions(+)

diff --git a/media-libs/zimg/files/zimg-2.9.2-gcc-10.patch 
b/media-libs/zimg/files/zimg-2.9.2-gcc-10.patch
new file mode 100644
index 000..ea192f77fca
--- /dev/null
+++ b/media-libs/zimg/files/zimg-2.9.2-gcc-10.patch
@@ -0,0 +1,18 @@
+https://bugs.gentoo.org/721676
+
+From 9ae36d7d5f7420eaacd9644451933512fa13d716 Mon Sep 17 00:00:00 2001
+From: sekrit-twc 
+Date: Wed, 4 Dec 2019 12:01:26 -0800
+Subject: [PATCH] Update matrix3.cpp
+
+---
+ src/zimg/colorspace/matrix3.cpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+--- a/src/zimg/colorspace/matrix3.cpp
 b/src/zimg/colorspace/matrix3.cpp
+@@ -1,3 +1,4 @@
++#include 
+ #include "matrix3.h"
+ 
+ namespace zimg {

diff --git a/media-libs/zimg/zimg-2.9.2.ebuild 
b/media-libs/zimg/zimg-2.9.2.ebuild
index c1295123848..e962d7a4b5f 100644
--- a/media-libs/zimg/zimg-2.9.2.ebuild
+++ b/media-libs/zimg/zimg-2.9.2.ebuild
@@ -20,6 +20,8 @@ LICENSE="WTFPL-2"
 SLOT="0"
 IUSE="cpu_flags_x86_sse debug static-libs"
 
+PATCHES=("${FILESDIR}"/${PN}-2.9.2-gcc-10.patch)
+
 src_prepare() {
default
eautoreconf



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2020-01-05 Thread Mikle Kolyada
commit: 3ea5b3a2814b6b32a48886a7ca8846d6028f5138
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Jan  5 18:47:26 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Jan  5 18:54:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ea5b3a2

media-libs/zimg: mark stable

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Mikle Kolyada  gentoo.org>

 media-libs/zimg/zimg-2.9.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/zimg/zimg-2.9.2.ebuild 
b/media-libs/zimg/zimg-2.9.2.ebuild
index 4e92e0eec81..4d0105daf14 100644
--- a/media-libs/zimg/zimg-2.9.2.ebuild
+++ b/media-libs/zimg/zimg-2.9.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-10-26 Thread Mikle Kolyada
commit: 6eb3c57d922b7e5d4ee53e3f22eeb5965ad2d2de
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Oct 26 16:02:59 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Oct 26 16:05:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eb3c57d

media-libs/zimg: Version bump (v2.9.2)

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Mikle Kolyada  gentoo.org>

 media-libs/zimg/Manifest  |  1 +
 media-libs/zimg/zimg-2.9.2.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index 812439a44b6..33a55d77fd7 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1 +1,2 @@
 DIST zimg-2.8.tar.gz 265363 BLAKE2B 
a8982c64325e0089617136fcd5d6ee429ab861e3b9445b9cc0292bd3bbd3abb5783e94983e3e802fd9e59c2c7089eeea176d1eda4f3a850379cfc4fb36cbc408
 SHA512 
1e89087a756798a7ae3bfae3bc8244b29ae8ae7f04f53bdf6c4d4de3cb11412dc1eecd95a4a121bb9077437e633f8fbb665522ff8112ade806d9191ea4b5f7bf
+DIST zimg-2.9.2.tar.gz 266049 BLAKE2B 
214a6afec061dc7cc7c751f2a57e56951e44b78fea6a0c0dc71235d3dd286fb811303b0a5198ab82165ee78d993caabaf39d7ec17db4c4e5ffca9a3475b49781
 SHA512 
b688f8e93a2e4549f2c844cd58c6e0714e6494d6fc8c800dc1b0cdf2278fb9925a646fc332350c1b5d77cef2134bf35e18a873c24ea1979c1adce57bfef68ebe

diff --git a/media-libs/zimg/zimg-2.9.2.ebuild 
b/media-libs/zimg/zimg-2.9.2.ebuild
new file mode 100644
index 000..4e92e0eec81
--- /dev/null
+++ b/media-libs/zimg/zimg-2.9.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} = ** ]] ; then
+   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   S="${WORKDIR}/${PN}-release-${PV}/"
+fi
+inherit autotools multilib-minimal
+
+DESCRIPTION="Scaling, colorspace conversion, and dithering library"
+HOMEPAGE="https://github.com/sekrit-twc/zimg;
+
+LICENSE="WTFPL-2"
+SLOT="0"
+IUSE="cpu_flags_x86_sse debug static-libs"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf \
+   $(use_enable debug) \
+   $(use_enable cpu_flags_x86_sse x86simd) \
+   $(use_enable static-libs static)
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-10-26 Thread Mikle Kolyada
commit: 69e9d5d1cee837cd46bbd7eebf8a4a9c1ad700f3
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Oct 26 16:03:55 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Oct 26 16:05:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69e9d5d1

media-libs/zimg: Sync live ebuild

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Mikle Kolyada  gentoo.org>

 media-libs/zimg/zimg-.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/media-libs/zimg/zimg-.ebuild b/media-libs/zimg/zimg-.ebuild
index 2e9348c76c5..4e92e0eec81 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 LICENSE="WTFPL-2"
 SLOT="0"
-IUSE="cpu_flags_x86_sse"
+IUSE="cpu_flags_x86_sse debug static-libs"
 
 src_prepare() {
default
@@ -27,6 +27,7 @@ src_prepare() {
 
 multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
-   --disable-static \
-   $(use_enable cpu_flags_x86_sse x86simd)
+   $(use_enable debug) \
+   $(use_enable cpu_flags_x86_sse x86simd) \
+   $(use_enable static-libs static)
 }



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-10-20 Thread David Seifert
commit: 3525dec4310a095becff4353139532c9356d5ac7
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Sun Oct  6 23:45:31 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Oct 20 13:32:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3525dec4

media-libs/zimg: disable static libraries

Closes: https://bugs.gentoo.org/694132
Closes: https://github.com/gentoo/gentoo/pull/13059
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Alessandro Barbieri  gmail.com>
Signed-off-by: David Seifert  gentoo.org>

 media-libs/zimg/zimg-2.8.ebuild  | 3 ++-
 media-libs/zimg/zimg-.ebuild | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/media-libs/zimg/zimg-2.8.ebuild b/media-libs/zimg/zimg-2.8.ebuild
index 5108ffad512..7207d746344 100644
--- a/media-libs/zimg/zimg-2.8.ebuild
+++ b/media-libs/zimg/zimg-2.8.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 LICENSE="WTFPL-2"
 SLOT="0"
-IUSE="static-libs cpu_flags_x86_sse"
+IUSE="cpu_flags_x86_sse"
 
 src_prepare() {
default
@@ -27,5 +27,6 @@ src_prepare() {
 
 multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
+   --disable-static \
$(use_enable cpu_flags_x86_sse x86simd)
 }

diff --git a/media-libs/zimg/zimg-.ebuild b/media-libs/zimg/zimg-.ebuild
index d20d4bf5840..2e9348c76c5 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 LICENSE="WTFPL-2"
 SLOT="0"
-IUSE="static-libs cpu_flags_x86_sse"
+IUSE="cpu_flags_x86_sse"
 
 src_prepare() {
default
@@ -27,5 +27,6 @@ src_prepare() {
 
 multilib_src_configure() {
ECONF_SOURCE="${S}" econf \
+   --disable-static \
$(use_enable cpu_flags_x86_sse x86simd)
 }



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/files/, media-libs/zimg/

2019-07-28 Thread Andreas Sturmlechner
commit: e77dea4a53648561d5aeee46c779e4d546f979ef
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jul 28 21:17:43 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jul 28 21:20:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e77dea4a

media-libs/zimg: Drop old

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-libs/zimg/Manifest|   3 -
 media-libs/zimg/files/zimg-2.7.5-sse2.patch | 231 
 media-libs/zimg/zimg-2.5.ebuild |  36 -
 media-libs/zimg/zimg-2.7.4.ebuild   |  36 -
 media-libs/zimg/zimg-2.7.5.ebuild   |  33 
 5 files changed, 339 deletions(-)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index 71b6acd6d38..812439a44b6 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1,4 +1 @@
-DIST zimg-2.5.tar.gz 213054 BLAKE2B 
0532693c11c1b2bcc0d5bde3a0bc16bf4f736ceff5fcda5d9bf491fcebe7e8be538041cc536e40bc110e438370c8599ce0be35f71cea00429b16c6eeb680cb86
 SHA512 
7fc48c704b434d837c36d4bafc51b35789eaf90fc81a68dcd7ec546f1e82a3e41c53263f8d381541d5c0ce58e25dddf0adaf1c3575512842ae633b5581778938
-DIST zimg-2.7.4.tar.gz 246376 BLAKE2B 
b6a21a1f7ca5106810485a69bb4e8f1d59d67fe3a619fd0ac412b1e441fe2d8892f6482fbdfa48ae441fa5a21512b5ba0977eeaca7dcb7e0fcc43447f6e4
 SHA512 
adbb525b2611ef5267a4c0d4e8c6dd164c2814241c4d58d5356545b23dcf0cbeabb140141ae6ff0e70ef8e0741e351cbfadbadd60923061ddd693a2c3d9e5fde
-DIST zimg-2.7.5.tar.gz 246416 BLAKE2B 
a0ce1497356238aee5d3965a7ec57f1591d51c5df2475fb05d208a07f1431f073f8caaac110775fb17c6df8f887ed974b53f262e01f5532de13dc4c539958c1b
 SHA512 
600139f86b074f2ed9614daa58d969465fa3d1578d8165bd2f841193f7b793c4b36389064dd4eee8e01e66a745d1c71c62e5bdb0b5283e54c435ed4a130a5b3b
 DIST zimg-2.8.tar.gz 265363 BLAKE2B 
a8982c64325e0089617136fcd5d6ee429ab861e3b9445b9cc0292bd3bbd3abb5783e94983e3e802fd9e59c2c7089eeea176d1eda4f3a850379cfc4fb36cbc408
 SHA512 
1e89087a756798a7ae3bfae3bc8244b29ae8ae7f04f53bdf6c4d4de3cb11412dc1eecd95a4a121bb9077437e633f8fbb665522ff8112ade806d9191ea4b5f7bf

diff --git a/media-libs/zimg/files/zimg-2.7.5-sse2.patch 
b/media-libs/zimg/files/zimg-2.7.5-sse2.patch
deleted file mode 100644
index 77483ab59e7..000
--- a/media-libs/zimg/files/zimg-2.7.5-sse2.patch
+++ /dev/null
@@ -1,231 +0,0 @@
-From e30112df0ca703be82ed2c852511916fc46defbd Mon Sep 17 00:00:00 2001
-From: sekrit-twc 
-Date: Fri, 22 Mar 2019 18:51:14 -0700
-Subject: [PATCH] colorspace: use bfloat16 for SSE2 linear-to-gamma LUT
-
-On Skylake, processing 512 pixel array:
-
-direction  cycles/sample   cycles/pxvector
- g->l   2.35  9.43
- l->g   2.49  9.97

- .../colorspace/x86/operation_impl_avx2.cpp|   3 +-
- .../colorspace/x86/operation_impl_sse2.cpp| 104 --
- test/colorspace/x86/colorspace_sse2_test.cpp  |  14 +--
- 3 files changed, 100 insertions(+), 21 deletions(-)
-
-diff --git a/src/zimg/colorspace/x86/operation_impl_avx2.cpp 
b/src/zimg/colorspace/x86/operation_impl_avx2.cpp
-index f896..f0e7f792 100644
 a/src/zimg/colorspace/x86/operation_impl_avx2.cpp
-+++ b/src/zimg/colorspace/x86/operation_impl_avx2.cpp
-@@ -114,8 +114,7 @@ class ToGammaLutOperationAVX2 final : public Operation {
-   {
-   EnsureSinglePrecision x87;
- 
--  // Allocate an extra LUT entry so that indexing can be done by 
multipying by a power of 2.
--  for (unsigned long i = 0; i <= UINT16_MAX; ++i) {
-+  for (size_t i = 0; i <= UINT16_MAX; ++i) {
-   uint16_t half = static_cast(i);
-   float x = 
_mm_cvtss_f32(_mm_cvtph_ps(_mm_set1_epi16(half)));
-   m_lut[i] = func(x * prescale);
-diff --git a/src/zimg/colorspace/x86/operation_impl_sse2.cpp 
b/src/zimg/colorspace/x86/operation_impl_sse2.cpp
-index 48645031..da9d4dbc 100644
 a/src/zimg/colorspace/x86/operation_impl_sse2.cpp
-+++ b/src/zimg/colorspace/x86/operation_impl_sse2.cpp
-@@ -3,11 +3,13 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include "common/align.h"
- #include "common/ccdep.h"
- #include "common/make_unique.h"
-+#include "common/x86/sse2_util.h"
- #include "colorspace/gamma.h"
- #include "colorspace/operation.h"
- #include "colorspace/operation_impl.h"
-@@ -20,14 +22,25 @@ namespace {
- 
- constexpr unsigned LUT_DEPTH = 16;
- 
--void lut_filter_line(const float *RESTRICT lut, unsigned lut_depth, float 
prescale, const float *src, float *dst, unsigned left, unsigned right)
-+template 
-+T bit_cast(const U ) noexcept
-+{
-+  static_assert(sizeof(T) == sizeof(U), "object sizes must match");
-+  static_assert(std::is_pod::value && std::is_pod::value, "object 
types must be POD");
-+
-+  T ret;
-+  std::copy_n(reinterpret_cast(), sizeof(x), 
reinterpret_cast());
-+  

[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-07-28 Thread Mikle Kolyada
commit: 3826c9b5faf990e8aff8e20bdf26bbe28a55a753
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Jul 28 13:51:57 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Jul 28 13:51:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3826c9b5

media-libs/zimg: arm stable wrt bug #688808

Package-Manager: Portage-2.3.66, Repoman-2.3.16
RepoMan-Options: --include-arches="arm"
Signed-off-by: Mikle Kolyada  gentoo.org>

 media-libs/zimg/zimg-2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.8.ebuild b/media-libs/zimg/zimg-2.8.ebuild
index 239892feaeb..5108ffad512 100644
--- a/media-libs/zimg/zimg-2.8.ebuild
+++ b/media-libs/zimg/zimg-2.8.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ppc ppc64 sparc x86"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-07-23 Thread Aaron Bauman
commit: f82d1878268becffe610d3f4e09e5371bfab6d0a
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Jul 23 14:13:05 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Jul 23 14:13:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f82d1878

media-libs/zimg: arm64 stable (bug #688808)

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="arm64"

 media-libs/zimg/zimg-2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.8.ebuild b/media-libs/zimg/zimg-2.8.ebuild
index a4d7d1777da..239892feaeb 100644
--- a/media-libs/zimg/zimg-2.8.ebuild
+++ b/media-libs/zimg/zimg-2.8.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
+   KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ppc ppc64 sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-07-02 Thread Sergei Trofimovich
commit: 2d1c75097cfef21befa9e0b64e7b9473ae63091b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Jul  2 08:26:23 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jul  2 08:26:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d1c7509

media-libs/zimg: stable 2.8 for ppc64, bug #688808

Package-Manager: Portage-2.3.68, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-libs/zimg/zimg-2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.8.ebuild b/media-libs/zimg/zimg-2.8.ebuild
index 0a9a3cd4e32..a4d7d1777da 100644
--- a/media-libs/zimg/zimg-2.8.ebuild
+++ b/media-libs/zimg/zimg-2.8.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ppc ~ppc64 sparc x86"
+   KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-07-02 Thread Sergei Trofimovich
commit: 1a4a2d63b463271f516f7758e95a3ec8dcf65b55
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Jul  2 08:21:21 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jul  2 08:21:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a4a2d63

media-libs/zimg: stable 2.8 for ppc, bug #688808

Package-Manager: Portage-2.3.68, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-libs/zimg/zimg-2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.8.ebuild b/media-libs/zimg/zimg-2.8.ebuild
index 5021993859a..0a9a3cd4e32 100644
--- a/media-libs/zimg/zimg-2.8.ebuild
+++ b/media-libs/zimg/zimg-2.8.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~ppc ~ppc64 sparc x86"
+   KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ppc ~ppc64 sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-07-02 Thread Sergei Trofimovich
commit: a288d218943b3d42da4d7f6909233cf6a3c98fda
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Jul  2 08:18:14 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jul  2 08:18:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a288d218

media-libs/zimg: stable 2.8 for ia64, bug #688808

Package-Manager: Portage-2.3.68, Repoman-2.3.16
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-libs/zimg/zimg-2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.8.ebuild b/media-libs/zimg/zimg-2.8.ebuild
index ae1f30ab4c5..5021993859a 100644
--- a/media-libs/zimg/zimg-2.8.ebuild
+++ b/media-libs/zimg/zimg-2.8.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc ~ppc64 sparc x86"
+   KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~ppc ~ppc64 sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-06-29 Thread Sergei Trofimovich
commit: ca885b7245c2a6a7eecae2ba955df6053737d535
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Jun 29 05:33:25 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jun 29 07:43:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca885b72

media-libs/zimg: stable 2.8 for hppa, bug #688808

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-libs/zimg/zimg-2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.8.ebuild b/media-libs/zimg/zimg-2.8.ebuild
index e842b5dbb06..ae1f30ab4c5 100644
--- a/media-libs/zimg/zimg-2.8.ebuild
+++ b/media-libs/zimg/zimg-2.8.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86"
+   KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc ~ppc64 sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-06-28 Thread Sergei Trofimovich
commit: 925d5b3e1e00307569ab96309dd0ff5ecdcbe51f
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Jun 28 20:13:46 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jun 28 20:49:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=925d5b3e

media-libs/zimg: stable 2.8 for sparc, bug #688808

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-libs/zimg/zimg-2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.8.ebuild b/media-libs/zimg/zimg-2.8.ebuild
index 1b828b17116..e842b5dbb06 100644
--- a/media-libs/zimg/zimg-2.8.ebuild
+++ b/media-libs/zimg/zimg-2.8.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-06-28 Thread Agostino Sarubbo
commit: 600dc562acea5c7f4ba8efae8380e8c4eecf86a3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jun 28 15:21:38 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jun 28 15:21:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=600dc562

media-libs/zimg: x86 stable wrt bug #688808

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="x86"

 media-libs/zimg/zimg-2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.8.ebuild b/media-libs/zimg/zimg-2.8.ebuild
index 47645eeebed..1b828b17116 100644
--- a/media-libs/zimg/zimg-2.8.ebuild
+++ b/media-libs/zimg/zimg-2.8.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-06-28 Thread Agostino Sarubbo
commit: 405d2af4770099da2afb1a5dee92919281b6f781
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jun 28 12:54:12 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jun 28 12:54:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=405d2af4

media-libs/zimg: alpha stable wrt bug #688808

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="alpha"

 media-libs/zimg/zimg-2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.8.ebuild b/media-libs/zimg/zimg-2.8.ebuild
index 217eb10a0de..47645eeebed 100644
--- a/media-libs/zimg/zimg-2.8.ebuild
+++ b/media-libs/zimg/zimg-2.8.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-06-28 Thread Agostino Sarubbo
commit: 6325f3476717e8b0bbd27508e37d93e5ece376cc
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jun 28 11:37:29 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jun 28 11:37:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6325f347

media-libs/zimg: amd64 stable wrt bug #688808

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 media-libs/zimg/zimg-2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.8.ebuild b/media-libs/zimg/zimg-2.8.ebuild
index d20d4bf5840..217eb10a0de 100644
--- a/media-libs/zimg/zimg-2.8.ebuild
+++ b/media-libs/zimg/zimg-2.8.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-05-23 Thread Alexis Ballier
commit: deb74b91a6a63ca52146942b8d0b4118a5c4e167
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed May 22 11:32:52 2019 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu May 23 11:03:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deb74b91

media-libs/zimg: bump to 2.8

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Alexis Ballier  gentoo.org>

 media-libs/zimg/Manifest|  1 +
 media-libs/zimg/zimg-2.8.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index 2545c19d858..71b6acd6d38 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1,3 +1,4 @@
 DIST zimg-2.5.tar.gz 213054 BLAKE2B 
0532693c11c1b2bcc0d5bde3a0bc16bf4f736ceff5fcda5d9bf491fcebe7e8be538041cc536e40bc110e438370c8599ce0be35f71cea00429b16c6eeb680cb86
 SHA512 
7fc48c704b434d837c36d4bafc51b35789eaf90fc81a68dcd7ec546f1e82a3e41c53263f8d381541d5c0ce58e25dddf0adaf1c3575512842ae633b5581778938
 DIST zimg-2.7.4.tar.gz 246376 BLAKE2B 
b6a21a1f7ca5106810485a69bb4e8f1d59d67fe3a619fd0ac412b1e441fe2d8892f6482fbdfa48ae441fa5a21512b5ba0977eeaca7dcb7e0fcc43447f6e4
 SHA512 
adbb525b2611ef5267a4c0d4e8c6dd164c2814241c4d58d5356545b23dcf0cbeabb140141ae6ff0e70ef8e0741e351cbfadbadd60923061ddd693a2c3d9e5fde
 DIST zimg-2.7.5.tar.gz 246416 BLAKE2B 
a0ce1497356238aee5d3965a7ec57f1591d51c5df2475fb05d208a07f1431f073f8caaac110775fb17c6df8f887ed974b53f262e01f5532de13dc4c539958c1b
 SHA512 
600139f86b074f2ed9614daa58d969465fa3d1578d8165bd2f841193f7b793c4b36389064dd4eee8e01e66a745d1c71c62e5bdb0b5283e54c435ed4a130a5b3b
+DIST zimg-2.8.tar.gz 265363 BLAKE2B 
a8982c64325e0089617136fcd5d6ee429ab861e3b9445b9cc0292bd3bbd3abb5783e94983e3e802fd9e59c2c7089eeea176d1eda4f3a850379cfc4fb36cbc408
 SHA512 
1e89087a756798a7ae3bfae3bc8244b29ae8ae7f04f53bdf6c4d4de3cb11412dc1eecd95a4a121bb9077437e633f8fbb665522ff8112ade806d9191ea4b5f7bf

diff --git a/media-libs/zimg/zimg-2.8.ebuild b/media-libs/zimg/zimg-2.8.ebuild
new file mode 100644
index 000..d20d4bf5840
--- /dev/null
+++ b/media-libs/zimg/zimg-2.8.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} = ** ]] ; then
+   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   S="${WORKDIR}/${PN}-release-${PV}/"
+fi
+inherit autotools multilib-minimal
+
+DESCRIPTION="Scaling, colorspace conversion, and dithering library"
+HOMEPAGE="https://github.com/sekrit-twc/zimg;
+
+LICENSE="WTFPL-2"
+SLOT="0"
+IUSE="static-libs cpu_flags_x86_sse"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf \
+   $(use_enable cpu_flags_x86_sse x86simd)
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-05-21 Thread Andreas Sturmlechner
commit: 676daf4ce9a7f5878e014b17e199b0c22c3920fe
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue May 21 19:32:29 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue May 21 19:32:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=676daf4c

media-libs/zimg: Redo keywords in live ebuild

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-libs/zimg/zimg-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-.ebuild b/media-libs/zimg/zimg-.ebuild
index 62adc665df3..d20d4bf5840 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} = ** ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 inherit autotools multilib-minimal



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/files/, media-libs/zimg/

2019-05-21 Thread Andreas Sturmlechner
commit: dcc0c10f45442c42c2bdbf10564a8eb39196edee
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue May 21 19:28:14 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue May 21 19:29:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcc0c10f

media-libs/zimg: EAPI-7 bump

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-libs/zimg/files/zimg-2.7.5-sse2.patch | 231 
 media-libs/zimg/zimg-2.7.5.ebuild   |  35 ++---
 2 files changed, 247 insertions(+), 19 deletions(-)

diff --git a/media-libs/zimg/files/zimg-2.7.5-sse2.patch 
b/media-libs/zimg/files/zimg-2.7.5-sse2.patch
new file mode 100644
index 000..77483ab59e7
--- /dev/null
+++ b/media-libs/zimg/files/zimg-2.7.5-sse2.patch
@@ -0,0 +1,231 @@
+From e30112df0ca703be82ed2c852511916fc46defbd Mon Sep 17 00:00:00 2001
+From: sekrit-twc 
+Date: Fri, 22 Mar 2019 18:51:14 -0700
+Subject: [PATCH] colorspace: use bfloat16 for SSE2 linear-to-gamma LUT
+
+On Skylake, processing 512 pixel array:
+
+direction  cycles/sample   cycles/pxvector
+ g->l   2.35  9.43
+ l->g   2.49  9.97
+---
+ .../colorspace/x86/operation_impl_avx2.cpp|   3 +-
+ .../colorspace/x86/operation_impl_sse2.cpp| 104 --
+ test/colorspace/x86/colorspace_sse2_test.cpp  |  14 +--
+ 3 files changed, 100 insertions(+), 21 deletions(-)
+
+diff --git a/src/zimg/colorspace/x86/operation_impl_avx2.cpp 
b/src/zimg/colorspace/x86/operation_impl_avx2.cpp
+index f896..f0e7f792 100644
+--- a/src/zimg/colorspace/x86/operation_impl_avx2.cpp
 b/src/zimg/colorspace/x86/operation_impl_avx2.cpp
+@@ -114,8 +114,7 @@ class ToGammaLutOperationAVX2 final : public Operation {
+   {
+   EnsureSinglePrecision x87;
+ 
+-  // Allocate an extra LUT entry so that indexing can be done by 
multipying by a power of 2.
+-  for (unsigned long i = 0; i <= UINT16_MAX; ++i) {
++  for (size_t i = 0; i <= UINT16_MAX; ++i) {
+   uint16_t half = static_cast(i);
+   float x = 
_mm_cvtss_f32(_mm_cvtph_ps(_mm_set1_epi16(half)));
+   m_lut[i] = func(x * prescale);
+diff --git a/src/zimg/colorspace/x86/operation_impl_sse2.cpp 
b/src/zimg/colorspace/x86/operation_impl_sse2.cpp
+index 48645031..da9d4dbc 100644
+--- a/src/zimg/colorspace/x86/operation_impl_sse2.cpp
 b/src/zimg/colorspace/x86/operation_impl_sse2.cpp
+@@ -3,11 +3,13 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include "common/align.h"
+ #include "common/ccdep.h"
+ #include "common/make_unique.h"
++#include "common/x86/sse2_util.h"
+ #include "colorspace/gamma.h"
+ #include "colorspace/operation.h"
+ #include "colorspace/operation_impl.h"
+@@ -20,14 +22,25 @@ namespace {
+ 
+ constexpr unsigned LUT_DEPTH = 16;
+ 
+-void lut_filter_line(const float *RESTRICT lut, unsigned lut_depth, float 
prescale, const float *src, float *dst, unsigned left, unsigned right)
++template 
++T bit_cast(const U ) noexcept
++{
++  static_assert(sizeof(T) == sizeof(U), "object sizes must match");
++  static_assert(std::is_pod::value && std::is_pod::value, "object 
types must be POD");
++
++  T ret;
++  std::copy_n(reinterpret_cast(), sizeof(x), 
reinterpret_cast());
++  return ret;
++}
++
++void to_linear_lut_filter_line(const float *RESTRICT lut, unsigned lut_depth, 
const float *src, float *dst, unsigned left, unsigned right)
+ {
+   unsigned vec_left = ceil_n(left, 4);
+   unsigned vec_right = floor_n(right, 4);
+ 
+   const int32_t lut_limit = static_cast(1) << lut_depth;
+ 
+-  const __m128 scale = _mm_set_ps1(0.5f * prescale * lut_limit);
++  const __m128 scale = _mm_set_ps1(0.5f * lut_limit);
+   const __m128 offset = _mm_set_ps1(0.25f * lut_limit);
+   const __m128i limit = _mm_set1_epi16(std::min(lut_limit + INT16_MIN, 
static_cast(INT16_MAX)));
+   const __m128i bias_epi16 = _mm_set1_epi16(INT16_MIN);
+@@ -73,16 +86,61 @@ void lut_filter_line(const float *RESTRICT lut, unsigned 
lut_depth, float presca
+   }
+ }
+ 
++void to_gamma_lut_filter_line(const float *RESTRICT lut, const float *src, 
float *dst, unsigned left, unsigned right)
++{
++  unsigned vec_left = ceil_n(left, 4);
++  unsigned vec_right = floor_n(right, 4);
++
++  for (unsigned j = left; j < vec_left; ++j) {
++  __m128i x = _mm_castps_si128(_mm_load_ss(src + j));
++  __m128i msb = _mm_srli_epi32(x, 16);
++  __m128i lsb = _mm_and_si128(_mm_srli_epi32(x, 15), 
_mm_set1_epi32(1));
++  x = mm_packus_epi32(msb, lsb);
++  x = _mm_adds_epi16(x, _mm_shuffle_epi32(x, _MM_SHUFFLE(1, 0, 3, 
2)));
++
++  dst[j] = lut[_mm_cvtsi128_si32(x)];
++  }
++  for (unsigned j = vec_left; j < vec_right; j += 4) {
++  

[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-05-21 Thread Andreas Sturmlechner
commit: 243856f76077e7d73c1714b410b538de9cd71dc6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue May 21 19:29:20 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue May 21 19:29:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=243856f7

media-libs/zimg: Sync live with 2.7.5 changes

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-libs/zimg/zimg-.ebuild | 35 +++
 1 file changed, 15 insertions(+), 20 deletions(-)

diff --git a/media-libs/zimg/zimg-.ebuild b/media-libs/zimg/zimg-.ebuild
index fe1991fc9e0..62adc665df3 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-.ebuild
@@ -1,36 +1,31 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
-AUTOTOOLS_AUTORECONF=yes
-
-SCM=""
-
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
+if [[ ${PV} = ** ]] ; then
EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   S="${WORKDIR}/${PN}-release-${PV}/"
 fi
-
-inherit autotools-multilib ${SCM}
+inherit autotools multilib-minimal
 
 DESCRIPTION="Scaling, colorspace conversion, and dithering library"
 HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
-if [ "${PV#}" = "${PV}" ] ; then
-   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-   S="${WORKDIR}/${PN}-release-${PV}/"
-fi
-
 LICENSE="WTFPL-2"
 SLOT="0"
 IUSE="static-libs cpu_flags_x86_sse"
 
-DEPEND=""
-RDEPEND="${DEPEND}"
+src_prepare() {
+   default
+   eautoreconf
+}
 
-src_configure() {
-   autotools-multilib_src_configure \
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf \
$(use_enable cpu_flags_x86_sse x86simd)
 }



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-05-21 Thread Aaron Bauman
commit: e1c9e47ddab380fe015668825a8b03d5aa8813aa
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue May 21 06:01:10 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue May 21 06:31:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1c9e47d

media-libs/zimg: amd64 stable

Signed-off-by: Aaron Bauman  gentoo.org>

 media-libs/zimg/zimg-2.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.7.5.ebuild 
b/media-libs/zimg/zimg-2.7.5.ebuild
index 93b521bee17..1775f6b60bb 100644
--- a/media-libs/zimg/zimg-2.7.5.ebuild
+++ b/media-libs/zimg/zimg-2.7.5.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-01-10 Thread Sergei Trofimovich
commit: 89a2c5bc2502702373404c55ff1c37693f4d2e58
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jan 10 20:38:25 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jan 11 07:41:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89a2c5bc

media-libs/zimg: stable 2.5 for hppa, bug #614626

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-libs/zimg/zimg-2.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/zimg/zimg-2.5.ebuild b/media-libs/zimg/zimg-2.5.ebuild
index 825283b9cef..df91e3a3d81 100644
--- a/media-libs/zimg/zimg-2.5.ebuild
+++ b/media-libs/zimg/zimg-2.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 sparc x86"
+   KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2019-01-09 Thread Sergei Trofimovich
commit: 4aee4870837dd2c71b3cf81861cc6a7b89b8e332
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Jan  9 19:40:48 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Jan  9 20:31:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aee4870

media-libs/zimg: carry ~hppa forward

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-libs/zimg/zimg-2.7.4.ebuild | 4 ++--
 media-libs/zimg/zimg-2.7.5.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-libs/zimg/zimg-2.7.4.ebuild 
b/media-libs/zimg/zimg-2.7.4.ebuild
index fe1991fc9e0..1d720a336c9 100644
--- a/media-libs/zimg/zimg-2.7.4.ebuild
+++ b/media-libs/zimg/zimg-2.7.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 

diff --git a/media-libs/zimg/zimg-2.7.5.ebuild 
b/media-libs/zimg/zimg-2.7.5.ebuild
index fe1991fc9e0..1d720a336c9 100644
--- a/media-libs/zimg/zimg-2.7.5.ebuild
+++ b/media-libs/zimg/zimg-2.7.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2018-12-13 Thread Sergei Trofimovich
commit: e6f6af4208e2e3e079d3eef185861a6af81132c6
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Dec 13 20:37:15 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Dec 13 21:27:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6f6af42

media-libs/zimg: keyworded 2.5 for hppa, bug #614626

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-libs/zimg/zimg-2.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/zimg/zimg-2.5.ebuild b/media-libs/zimg/zimg-2.5.ebuild
index 5abc7d61bbb..825283b9cef 100644
--- a/media-libs/zimg/zimg-2.5.ebuild
+++ b/media-libs/zimg/zimg-2.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86"
+   KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2018-07-17 Thread Alexis Ballier
commit: 858eec4083f3de171a9ba1d20a8354f30bded343
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Jul 17 07:20:01 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Jul 17 07:20:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=858eec40

media-libs/zimg: bump to 2.7.5

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 media-libs/zimg/Manifest| 1 +
 media-libs/zimg/{zimg-.ebuild => zimg-2.7.5.ebuild} | 4 ++--
 media-libs/zimg/zimg-.ebuild| 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index 21ec577a1e2..2545c19d858 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1,2 +1,3 @@
 DIST zimg-2.5.tar.gz 213054 BLAKE2B 
0532693c11c1b2bcc0d5bde3a0bc16bf4f736ceff5fcda5d9bf491fcebe7e8be538041cc536e40bc110e438370c8599ce0be35f71cea00429b16c6eeb680cb86
 SHA512 
7fc48c704b434d837c36d4bafc51b35789eaf90fc81a68dcd7ec546f1e82a3e41c53263f8d381541d5c0ce58e25dddf0adaf1c3575512842ae633b5581778938
 DIST zimg-2.7.4.tar.gz 246376 BLAKE2B 
b6a21a1f7ca5106810485a69bb4e8f1d59d67fe3a619fd0ac412b1e441fe2d8892f6482fbdfa48ae441fa5a21512b5ba0977eeaca7dcb7e0fcc43447f6e4
 SHA512 
adbb525b2611ef5267a4c0d4e8c6dd164c2814241c4d58d5356545b23dcf0cbeabb140141ae6ff0e70ef8e0741e351cbfadbadd60923061ddd693a2c3d9e5fde
+DIST zimg-2.7.5.tar.gz 246416 BLAKE2B 
a0ce1497356238aee5d3965a7ec57f1591d51c5df2475fb05d208a07f1431f073f8caaac110775fb17c6df8f887ed974b53f262e01f5532de13dc4c539958c1b
 SHA512 
600139f86b074f2ed9614daa58d969465fa3d1578d8165bd2f841193f7b793c4b36389064dd4eee8e01e66a745d1c71c62e5bdb0b5283e54c435ed4a130a5b3b

diff --git a/media-libs/zimg/zimg-.ebuild 
b/media-libs/zimg/zimg-2.7.5.ebuild
similarity index 87%
copy from media-libs/zimg/zimg-.ebuild
copy to media-libs/zimg/zimg-2.7.5.ebuild
index efc3a2b2423..fe1991fc9e0 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-2.7.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 

diff --git a/media-libs/zimg/zimg-.ebuild b/media-libs/zimg/zimg-.ebuild
index efc3a2b2423..fe1991fc9e0 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2018-07-17 Thread Alexis Ballier
commit: 58200b528cf11dafb4df5b7958a90c24d1b533de
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Jul 17 07:16:56 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Jul 17 07:20:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58200b52

media-libs/zimg: Remove old

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 media-libs/zimg/Manifest  |  2 --
 media-libs/zimg/zimg-2.5.1.ebuild | 36 
 media-libs/zimg/zimg-2.6.3.ebuild | 36 
 3 files changed, 74 deletions(-)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index c33759e7dd8..21ec577a1e2 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1,4 +1,2 @@
-DIST zimg-2.5.1.tar.gz 213083 BLAKE2B 
d0ea74d409fa19b6e9ed946c70d2c41d0ee35e38955b8c14eba9c9f769405db97fc4884043ab378c2e4c36540fae524ce97173ecd2e30f6ecde12bc579327a88
 SHA512 
c16402ee7aff40b811cd8c69c1e5d5f13775e628f3d5300e82548b6cc97d17e5317fa58d498a0cb4f7699d4eb2d1f424c3f4d9858f4cfbdda36612d6693961a0
 DIST zimg-2.5.tar.gz 213054 BLAKE2B 
0532693c11c1b2bcc0d5bde3a0bc16bf4f736ceff5fcda5d9bf491fcebe7e8be538041cc536e40bc110e438370c8599ce0be35f71cea00429b16c6eeb680cb86
 SHA512 
7fc48c704b434d837c36d4bafc51b35789eaf90fc81a68dcd7ec546f1e82a3e41c53263f8d381541d5c0ce58e25dddf0adaf1c3575512842ae633b5581778938
-DIST zimg-2.6.3.tar.gz 238372 BLAKE2B 
4651381c61b978bedd78871117fbe0b1be7e40e3b0d32b399ab47cab06d596befb61078a6f979f2a2ea962ba66046f776e18a2bbf304dee4a2428b303a3094a7
 SHA512 
497d3b5b0c004fe720c9be2460f251196789ed055a0081b774c78f8c311dc097c2b5d975cb0a7d41e819ca21527e961186b665b5791032787c3b30647011e7da
 DIST zimg-2.7.4.tar.gz 246376 BLAKE2B 
b6a21a1f7ca5106810485a69bb4e8f1d59d67fe3a619fd0ac412b1e441fe2d8892f6482fbdfa48ae441fa5a21512b5ba0977eeaca7dcb7e0fcc43447f6e4
 SHA512 
adbb525b2611ef5267a4c0d4e8c6dd164c2814241c4d58d5356545b23dcf0cbeabb140141ae6ff0e70ef8e0741e351cbfadbadd60923061ddd693a2c3d9e5fde

diff --git a/media-libs/zimg/zimg-2.5.1.ebuild 
b/media-libs/zimg/zimg-2.5.1.ebuild
deleted file mode 100644
index fe1991fc9e0..000
--- a/media-libs/zimg/zimg-2.5.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
-
-SCM=""
-
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
-fi
-
-inherit autotools-multilib ${SCM}
-
-DESCRIPTION="Scaling, colorspace conversion, and dithering library"
-HOMEPAGE="https://github.com/sekrit-twc/zimg;
-
-if [ "${PV#}" = "${PV}" ] ; then
-   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-   S="${WORKDIR}/${PN}-release-${PV}/"
-fi
-
-LICENSE="WTFPL-2"
-SLOT="0"
-IUSE="static-libs cpu_flags_x86_sse"
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   autotools-multilib_src_configure \
-   $(use_enable cpu_flags_x86_sse x86simd)
-}

diff --git a/media-libs/zimg/zimg-2.6.3.ebuild 
b/media-libs/zimg/zimg-2.6.3.ebuild
deleted file mode 100644
index fe1991fc9e0..000
--- a/media-libs/zimg/zimg-2.6.3.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
-
-SCM=""
-
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
-fi
-
-inherit autotools-multilib ${SCM}
-
-DESCRIPTION="Scaling, colorspace conversion, and dithering library"
-HOMEPAGE="https://github.com/sekrit-twc/zimg;
-
-if [ "${PV#}" = "${PV}" ] ; then
-   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-   S="${WORKDIR}/${PN}-release-${PV}/"
-fi
-
-LICENSE="WTFPL-2"
-SLOT="0"
-IUSE="static-libs cpu_flags_x86_sse"
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   autotools-multilib_src_configure \
-   $(use_enable cpu_flags_x86_sse x86simd)
-}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2018-05-08 Thread Sergei Trofimovich
commit: 644a684d5ad39965b48b3f86702f05acf0399f3e
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue May  8 18:16:46 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue May  8 18:42:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=644a684d

media-libs/zimg: stable 2.5 for sparc

Bug: https://bugs.gentoo.org/614626
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 media-libs/zimg/zimg-2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.5.ebuild b/media-libs/zimg/zimg-2.5.ebuild
index 3debf52018e..5abc7d61bbb 100644
--- a/media-libs/zimg/zimg-2.5.ebuild
+++ b/media-libs/zimg/zimg-2.5.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sparc x86"
+   KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2018-04-17 Thread Sergei Trofimovich
commit: 7e1033866db82efd61f24ffa61817161a06b178f
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Apr 17 18:33:22 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Apr 17 19:11:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e103386

media-libs/zimg: keyworded 2.5 for sparc, bug #614626

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 media-libs/zimg/zimg-2.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/zimg/zimg-2.5.ebuild b/media-libs/zimg/zimg-2.5.ebuild
index ac8793fcf58..3debf52018e 100644
--- a/media-libs/zimg/zimg-2.5.ebuild
+++ b/media-libs/zimg/zimg-2.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 arm ia64 ppc ppc64 x86"
+   KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sparc x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2018-03-06 Thread Sergei Trofimovich
commit: 63718dfec450343080a1bac1bc7b62262a397942
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Mar  6 22:00:20 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar  6 22:28:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63718dfe

media-libs/zimg: keyworded 2.7.4 for sparc, bug #574786

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 media-libs/zimg/zimg-2.7.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.7.4.ebuild 
b/media-libs/zimg/zimg-2.7.4.ebuild
index f33de9c2c99..fe1991fc9e0 100644
--- a/media-libs/zimg/zimg-2.7.4.ebuild
+++ b/media-libs/zimg/zimg-2.7.4.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2018-03-06 Thread Sergei Trofimovich
commit: 803ed9abe5ece45edf02b404dc3eb3ecc2be3f69
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Mar  6 21:58:18 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar  6 22:28:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=803ed9ab

media-libs/zimg: keyworded 2.5.1 for sparc, bug #574786

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 media-libs/zimg/zimg-2.5.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/zimg/zimg-2.5.1.ebuild 
b/media-libs/zimg/zimg-2.5.1.ebuild
index efc3a2b2423..fe1991fc9e0 100644
--- a/media-libs/zimg/zimg-2.5.1.ebuild
+++ b/media-libs/zimg/zimg-2.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2018-03-06 Thread Sergei Trofimovich
commit: 5cce92e540c44c179fc4dd594eb90f9cb7301453
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Mar  6 21:59:19 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar  6 22:28:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cce92e5

media-libs/zimg: keyworded 2.6.3 for sparc, bug #574786

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 media-libs/zimg/zimg-2.6.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/zimg/zimg-2.6.3.ebuild 
b/media-libs/zimg/zimg-2.6.3.ebuild
index efc3a2b2423..fe1991fc9e0 100644
--- a/media-libs/zimg/zimg-2.6.3.ebuild
+++ b/media-libs/zimg/zimg-2.6.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2018-02-24 Thread Alexis Ballier
commit: b03d3f230b254f2d463be8d0b81a406cf7110b7d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Feb 24 12:34:15 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Feb 24 12:34:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b03d3f23

media-libs/zimg: bump to 2.7.4

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 media-libs/zimg/Manifest  |  1 +
 media-libs/zimg/zimg-2.7.4.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index 9a040bff121..c33759e7dd8 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1,3 +1,4 @@
 DIST zimg-2.5.1.tar.gz 213083 BLAKE2B 
d0ea74d409fa19b6e9ed946c70d2c41d0ee35e38955b8c14eba9c9f769405db97fc4884043ab378c2e4c36540fae524ce97173ecd2e30f6ecde12bc579327a88
 SHA512 
c16402ee7aff40b811cd8c69c1e5d5f13775e628f3d5300e82548b6cc97d17e5317fa58d498a0cb4f7699d4eb2d1f424c3f4d9858f4cfbdda36612d6693961a0
 DIST zimg-2.5.tar.gz 213054 BLAKE2B 
0532693c11c1b2bcc0d5bde3a0bc16bf4f736ceff5fcda5d9bf491fcebe7e8be538041cc536e40bc110e438370c8599ce0be35f71cea00429b16c6eeb680cb86
 SHA512 
7fc48c704b434d837c36d4bafc51b35789eaf90fc81a68dcd7ec546f1e82a3e41c53263f8d381541d5c0ce58e25dddf0adaf1c3575512842ae633b5581778938
 DIST zimg-2.6.3.tar.gz 238372 BLAKE2B 
4651381c61b978bedd78871117fbe0b1be7e40e3b0d32b399ab47cab06d596befb61078a6f979f2a2ea962ba66046f776e18a2bbf304dee4a2428b303a3094a7
 SHA512 
497d3b5b0c004fe720c9be2460f251196789ed055a0081b774c78f8c311dc097c2b5d975cb0a7d41e819ca21527e961186b665b5791032787c3b30647011e7da
+DIST zimg-2.7.4.tar.gz 246376 BLAKE2B 
b6a21a1f7ca5106810485a69bb4e8f1d59d67fe3a619fd0ac412b1e441fe2d8892f6482fbdfa48ae441fa5a21512b5ba0977eeaca7dcb7e0fcc43447f6e4
 SHA512 
adbb525b2611ef5267a4c0d4e8c6dd164c2814241c4d58d5356545b23dcf0cbeabb140141ae6ff0e70ef8e0741e351cbfadbadd60923061ddd693a2c3d9e5fde

diff --git a/media-libs/zimg/zimg-2.7.4.ebuild 
b/media-libs/zimg/zimg-2.7.4.ebuild
new file mode 100644
index 000..f33de9c2c99
--- /dev/null
+++ b/media-libs/zimg/zimg-2.7.4.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=yes
+
+SCM=""
+
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
+fi
+
+inherit autotools-multilib ${SCM}
+
+DESCRIPTION="Scaling, colorspace conversion, and dithering library"
+HOMEPAGE="https://github.com/sekrit-twc/zimg;
+
+if [ "${PV#}" = "${PV}" ] ; then
+   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+   S="${WORKDIR}/${PN}-release-${PV}/"
+fi
+
+LICENSE="WTFPL-2"
+SLOT="0"
+IUSE="static-libs cpu_flags_x86_sse"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   autotools-multilib_src_configure \
+   $(use_enable cpu_flags_x86_sse x86simd)
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-11-30 Thread Alexis Ballier
commit: 6067d19b4660a0e43c37280dcbf01b20d0d8a33a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Nov 30 13:39:18 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Nov 30 13:57:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6067d19b

media-libs/zimg: bump to 2.6.3

Closes: https://bugs.gentoo.org/633748

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 media-libs/zimg/Manifest| 5 +++--
 media-libs/zimg/{zimg-.ebuild => zimg-2.6.3.ebuild} | 2 +-
 media-libs/zimg/zimg-.ebuild| 2 +-
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index 6a4583d130c..9a040bff121 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1,2 +1,3 @@
-DIST zimg-2.5.1.tar.gz 213083 SHA256 
deb85887081cab7fa9c492b588900d60d6466e61ee8ea51a84ca280688d93de9 SHA512 
c16402ee7aff40b811cd8c69c1e5d5f13775e628f3d5300e82548b6cc97d17e5317fa58d498a0cb4f7699d4eb2d1f424c3f4d9858f4cfbdda36612d6693961a0
 WHIRLPOOL 
7dac4a8f305e471b10db50bd6f189d9591e2ca46ec008c7bec1e4d6f6b47f409dfeed575e5bc7a00678430e5a673196ab814c5c45b1afeb43145b33f8dcc63dc
-DIST zimg-2.5.tar.gz 213054 SHA256 
50b2bcc49e51cd36011a0c363ff914a81b6f161aefdffeaa2bc4a4627c13784d SHA512 
7fc48c704b434d837c36d4bafc51b35789eaf90fc81a68dcd7ec546f1e82a3e41c53263f8d381541d5c0ce58e25dddf0adaf1c3575512842ae633b5581778938
 WHIRLPOOL 
38ec8b7c26b8b358551a8158372f0cf1d27fbb4a0666ec8b56c3b7227f18bda4267f252596eba5a26347463ef8426982c9befe2ccf9bb1384a17d393ff35390a
+DIST zimg-2.5.1.tar.gz 213083 BLAKE2B 
d0ea74d409fa19b6e9ed946c70d2c41d0ee35e38955b8c14eba9c9f769405db97fc4884043ab378c2e4c36540fae524ce97173ecd2e30f6ecde12bc579327a88
 SHA512 
c16402ee7aff40b811cd8c69c1e5d5f13775e628f3d5300e82548b6cc97d17e5317fa58d498a0cb4f7699d4eb2d1f424c3f4d9858f4cfbdda36612d6693961a0
+DIST zimg-2.5.tar.gz 213054 BLAKE2B 
0532693c11c1b2bcc0d5bde3a0bc16bf4f736ceff5fcda5d9bf491fcebe7e8be538041cc536e40bc110e438370c8599ce0be35f71cea00429b16c6eeb680cb86
 SHA512 
7fc48c704b434d837c36d4bafc51b35789eaf90fc81a68dcd7ec546f1e82a3e41c53263f8d381541d5c0ce58e25dddf0adaf1c3575512842ae633b5581778938
+DIST zimg-2.6.3.tar.gz 238372 BLAKE2B 
4651381c61b978bedd78871117fbe0b1be7e40e3b0d32b399ab47cab06d596befb61078a6f979f2a2ea962ba66046f776e18a2bbf304dee4a2428b303a3094a7
 SHA512 
497d3b5b0c004fe720c9be2460f251196789ed055a0081b774c78f8c311dc097c2b5d975cb0a7d41e819ca21527e961186b665b5791032787c3b30647011e7da

diff --git a/media-libs/zimg/zimg-.ebuild 
b/media-libs/zimg/zimg-2.6.3.ebuild
similarity index 92%
copy from media-libs/zimg/zimg-.ebuild
copy to media-libs/zimg/zimg-2.6.3.ebuild
index d9ebe735562..efc3a2b2423 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-2.6.3.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 

diff --git a/media-libs/zimg/zimg-.ebuild b/media-libs/zimg/zimg-.ebuild
index d9ebe735562..efc3a2b2423 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-06-16 Thread Alexis Ballier
commit: 26a12c0d413900f2c2c7f3f539c562178d875b14
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 09:21:41 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 09:36:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26a12c0d

media-libs/zimg: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/zimg/zimg-2.5.1.ebuild | 2 +-
 media-libs/zimg/zimg-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/zimg/zimg-2.5.1.ebuild 
b/media-libs/zimg/zimg-2.5.1.ebuild
index dd447924188..efc3a2b2423 100644
--- a/media-libs/zimg/zimg-2.5.1.ebuild
+++ b/media-libs/zimg/zimg-2.5.1.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 

diff --git a/media-libs/zimg/zimg-.ebuild b/media-libs/zimg/zimg-.ebuild
index 5826bad7c0d..d9ebe735562 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-06-10 Thread Sergei Trofimovich
commit: e97fc5600bf18830398b3a002cc141ee2dbca18d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jun 10 19:51:09 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jun 10 20:12:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e97fc560

media-libs/zimg: ia64 stable, bug #574786

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/zimg/zimg-2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.5.ebuild b/media-libs/zimg/zimg-2.5.ebuild
index c70136f5dc8..ac8793fcf58 100644
--- a/media-libs/zimg/zimg-2.5.ebuild
+++ b/media-libs/zimg/zimg-2.5.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 arm ppc ppc64 x86"
+   KEYWORDS="alpha amd64 arm ia64 ppc ppc64 x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-06-10 Thread Sergei Trofimovich
commit: 05d481a4a32ff3980fd4d0f58de3c106a2dccd59
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jun 10 20:10:32 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jun 10 20:13:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05d481a4

media-libs/zimg: ~ia64 keyworded

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/zimg/zimg-2.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.5.1.ebuild 
b/media-libs/zimg/zimg-2.5.1.ebuild
index 5826bad7c0d..dd447924188 100644
--- a/media-libs/zimg/zimg-2.5.1.ebuild
+++ b/media-libs/zimg/zimg-2.5.1.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-04-23 Thread Alexis Ballier
commit: 5214b1e9b7c1deba31d5a5e4b82002db478c0b1b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Apr 23 13:58:38 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Apr 23 13:58:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5214b1e9

media-libs/zimg: bump to 2.5.1

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 media-libs/zimg/Manifest  |  1 +
 media-libs/zimg/zimg-2.5.1.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index d002e4af840..6a4583d130c 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1 +1,2 @@
+DIST zimg-2.5.1.tar.gz 213083 SHA256 
deb85887081cab7fa9c492b588900d60d6466e61ee8ea51a84ca280688d93de9 SHA512 
c16402ee7aff40b811cd8c69c1e5d5f13775e628f3d5300e82548b6cc97d17e5317fa58d498a0cb4f7699d4eb2d1f424c3f4d9858f4cfbdda36612d6693961a0
 WHIRLPOOL 
7dac4a8f305e471b10db50bd6f189d9591e2ca46ec008c7bec1e4d6f6b47f409dfeed575e5bc7a00678430e5a673196ab814c5c45b1afeb43145b33f8dcc63dc
 DIST zimg-2.5.tar.gz 213054 SHA256 
50b2bcc49e51cd36011a0c363ff914a81b6f161aefdffeaa2bc4a4627c13784d SHA512 
7fc48c704b434d837c36d4bafc51b35789eaf90fc81a68dcd7ec546f1e82a3e41c53263f8d381541d5c0ce58e25dddf0adaf1c3575512842ae633b5581778938
 WHIRLPOOL 
38ec8b7c26b8b358551a8158372f0cf1d27fbb4a0666ec8b56c3b7227f18bda4267f252596eba5a26347463ef8426982c9befe2ccf9bb1384a17d393ff35390a

diff --git a/media-libs/zimg/zimg-2.5.1.ebuild 
b/media-libs/zimg/zimg-2.5.1.ebuild
new file mode 100644
index 000..5826bad7c0d
--- /dev/null
+++ b/media-libs/zimg/zimg-2.5.1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=yes
+
+SCM=""
+
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
+fi
+
+inherit autotools-multilib ${SCM}
+
+DESCRIPTION="Scaling, colorspace conversion, and dithering library"
+HOMEPAGE="https://github.com/sekrit-twc/zimg;
+
+if [ "${PV#}" = "${PV}" ] ; then
+   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
+   S="${WORKDIR}/${PN}-release-${PV}/"
+fi
+
+LICENSE="WTFPL-2"
+SLOT="0"
+IUSE="static-libs cpu_flags_x86_sse"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   autotools-multilib_src_configure \
+   $(use_enable cpu_flags_x86_sse x86simd)
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-04-23 Thread Alexis Ballier
commit: f14a311797913d66b06afb66c7ca366d8c05cae9
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Apr 23 13:57:19 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Apr 23 13:57:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f14a3117

media-libs/zimg: remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 media-libs/zimg/Manifest|  1 -
 media-libs/zimg/zimg-2.4.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index 89580f025b3..d002e4af840 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1,2 +1 @@
-DIST zimg-2.4.tar.gz 193791 SHA256 
996ea0e446df6ff4d6cb9c04a77d60978eca47c32d3785cd63fe8c29a9523d1f SHA512 
978a344c8f91327c7b92c6354526042d3901ce8ca3db19ba1ea1c81f4a1f980a64290223c202af354abd9efd821664d1743714acee171529a30f3742a0195e9e
 WHIRLPOOL 
cbae92a607d94c61860461d054e2a68220b2f7039e5aaade0dc869267795759076edd42bd30f4b03d816119b181a5c703a7d7382a7ff751433eace9d8050466b
 DIST zimg-2.5.tar.gz 213054 SHA256 
50b2bcc49e51cd36011a0c363ff914a81b6f161aefdffeaa2bc4a4627c13784d SHA512 
7fc48c704b434d837c36d4bafc51b35789eaf90fc81a68dcd7ec546f1e82a3e41c53263f8d381541d5c0ce58e25dddf0adaf1c3575512842ae633b5581778938
 WHIRLPOOL 
38ec8b7c26b8b358551a8158372f0cf1d27fbb4a0666ec8b56c3b7227f18bda4267f252596eba5a26347463ef8426982c9befe2ccf9bb1384a17d393ff35390a

diff --git a/media-libs/zimg/zimg-2.4.ebuild b/media-libs/zimg/zimg-2.4.ebuild
deleted file mode 100644
index c70136f5dc8..000
--- a/media-libs/zimg/zimg-2.4.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
-
-SCM=""
-
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
-fi
-
-inherit autotools-multilib ${SCM}
-
-DESCRIPTION="Scaling, colorspace conversion, and dithering library"
-HOMEPAGE="https://github.com/sekrit-twc/zimg;
-
-if [ "${PV#}" = "${PV}" ] ; then
-   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 arm ppc ppc64 x86"
-   S="${WORKDIR}/${PN}-release-${PV}/"
-fi
-
-LICENSE="WTFPL-2"
-SLOT="0"
-IUSE="static-libs cpu_flags_x86_sse"
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   autotools-multilib_src_configure \
-   $(use_enable cpu_flags_x86_sse x86simd)
-}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-04-18 Thread Michael Weber
commit: fc33e77a2b65e2fba3ce627cab4cc13fc786a4f0
Author: Michael Weber  gentoo  org>
AuthorDate: Tue Apr 18 21:49:24 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Tue Apr 18 21:49:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc33e77a

media-libs/zimg: arm ppc ppc64 stable (bug 614626).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"

 media-libs/zimg/zimg-2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.5.ebuild b/media-libs/zimg/zimg-2.5.ebuild
index fc4f3cd58d8..000ca12c2b3 100644
--- a/media-libs/zimg/zimg-2.5.ebuild
+++ b/media-libs/zimg/zimg-2.5.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 x86"
+   KEYWORDS="~alpha amd64 arm ppc ppc64 x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-04-07 Thread Agostino Sarubbo
commit: 117473feddfcc46f832448aff06fd75a100bb81f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Apr  7 16:04:59 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Apr  7 16:04:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=117473fe

media-libs/zimg: amd64 stable wrt bug #614626

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-libs/zimg/zimg-2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.5.ebuild b/media-libs/zimg/zimg-2.5.ebuild
index 5826bad7c0d..443ee4d9f9c 100644
--- a/media-libs/zimg/zimg-2.5.ebuild
+++ b/media-libs/zimg/zimg-2.5.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-04-05 Thread Tobias Klausmann
commit: a2ec8fe8c59adfbb8c6207d70f1d875980d635ea
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Apr  5 14:05:33 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Apr  5 14:05:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2ec8fe8

media-libs/zimg-2.4-r0: add alpha keyword

Gentoo-Bug: 608868

 media-libs/zimg/zimg-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.4.ebuild b/media-libs/zimg/zimg-2.4.ebuild
index 000ca12c2b3..c70136f5dc8 100644
--- a/media-libs/zimg/zimg-2.4.ebuild
+++ b/media-libs/zimg/zimg-2.4.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm ppc ppc64 x86"
+   KEYWORDS="alpha amd64 arm ppc ppc64 x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-03-16 Thread Alexis Ballier
commit: 2e17f310acb82a87acafde5e93e853d712fa39bb
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Mar 16 07:18:21 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Mar 16 07:23:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e17f310

media-libs/zimg: Sync live ebuild hidden keywords

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 media-libs/zimg/zimg-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-.ebuild b/media-libs/zimg/zimg-.ebuild
index 894506787ca..5826bad7c0d 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-03-16 Thread Alexis Ballier
commit: 248306e97c5807267537fe0bb5c9747712bb9c4a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Mar 16 07:17:25 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Mar 16 07:23:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=248306e9

media-libs/zimg: remove old

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 media-libs/zimg/Manifest|  1 -
 media-libs/zimg/zimg-2.3.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index f5638540b04..6dc76f87075 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1,2 +1 @@
-DIST zimg-2.3.tar.gz 188682 SHA256 
09962385f986dbcfd8ed6160cdafc2bc57bef8c6bfb3ca3a4bcaa482f09c06fa SHA512 
18ace0b66c59304d0a0abdb3cc4d5391bd1d74ef7b69af4e35350d452cf1b43807fc9ffda2285e991920bbb414e58a3e3a20d44a6f2ed7a9e902d956f973269d
 WHIRLPOOL 
112b0f267587d361775d4eeab158cc66f8b56bbd760073d63417dd9f388de8df8758af07c7921b896dcef59f5e2fdf1474621f2bf22ca943473d268ee222611b
 DIST zimg-2.4.tar.gz 193791 SHA256 
996ea0e446df6ff4d6cb9c04a77d60978eca47c32d3785cd63fe8c29a9523d1f SHA512 
978a344c8f91327c7b92c6354526042d3901ce8ca3db19ba1ea1c81f4a1f980a64290223c202af354abd9efd821664d1743714acee171529a30f3742a0195e9e
 WHIRLPOOL 
cbae92a607d94c61860461d054e2a68220b2f7039e5aaade0dc869267795759076edd42bd30f4b03d816119b181a5c703a7d7382a7ff751433eace9d8050466b

diff --git a/media-libs/zimg/zimg-2.3.ebuild b/media-libs/zimg/zimg-2.3.ebuild
deleted file mode 100644
index 728b00d4b45..000
--- a/media-libs/zimg/zimg-2.3.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
-
-SCM=""
-
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
-fi
-
-inherit autotools-multilib ${SCM}
-
-DESCRIPTION="Scaling, colorspace conversion, and dithering library"
-HOMEPAGE="https://github.com/sekrit-twc/zimg;
-
-if [ "${PV#}" = "${PV}" ] ; then
-   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~x86"
-   S="${WORKDIR}/${PN}-release-${PV}/"
-fi
-
-LICENSE="WTFPL-2"
-SLOT="0"
-IUSE="static-libs cpu_flags_x86_sse"
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   autotools-multilib_src_configure \
-   $(use_enable cpu_flags_x86_sse x86simd)
-}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-03-16 Thread Alexis Ballier
commit: 9797d5a6967b83503c0a2aa37d5c16dc7df25822
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Mar 16 07:23:13 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Mar 16 07:23:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9797d5a6

media-libs/zimg: Bump to 2.5

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 media-libs/zimg/Manifest|  1 +
 media-libs/zimg/zimg-2.5.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index 6dc76f87075..89580f025b3 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1 +1,2 @@
 DIST zimg-2.4.tar.gz 193791 SHA256 
996ea0e446df6ff4d6cb9c04a77d60978eca47c32d3785cd63fe8c29a9523d1f SHA512 
978a344c8f91327c7b92c6354526042d3901ce8ca3db19ba1ea1c81f4a1f980a64290223c202af354abd9efd821664d1743714acee171529a30f3742a0195e9e
 WHIRLPOOL 
cbae92a607d94c61860461d054e2a68220b2f7039e5aaade0dc869267795759076edd42bd30f4b03d816119b181a5c703a7d7382a7ff751433eace9d8050466b
+DIST zimg-2.5.tar.gz 213054 SHA256 
50b2bcc49e51cd36011a0c363ff914a81b6f161aefdffeaa2bc4a4627c13784d SHA512 
7fc48c704b434d837c36d4bafc51b35789eaf90fc81a68dcd7ec546f1e82a3e41c53263f8d381541d5c0ce58e25dddf0adaf1c3575512842ae633b5581778938
 WHIRLPOOL 
38ec8b7c26b8b358551a8158372f0cf1d27fbb4a0666ec8b56c3b7227f18bda4267f252596eba5a26347463ef8426982c9befe2ccf9bb1384a17d393ff35390a

diff --git a/media-libs/zimg/zimg-2.5.ebuild b/media-libs/zimg/zimg-2.5.ebuild
new file mode 100644
index 000..5826bad7c0d
--- /dev/null
+++ b/media-libs/zimg/zimg-2.5.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=yes
+
+SCM=""
+
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
+fi
+
+inherit autotools-multilib ${SCM}
+
+DESCRIPTION="Scaling, colorspace conversion, and dithering library"
+HOMEPAGE="https://github.com/sekrit-twc/zimg;
+
+if [ "${PV#}" = "${PV}" ] ; then
+   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
+   S="${WORKDIR}/${PN}-release-${PV}/"
+fi
+
+LICENSE="WTFPL-2"
+SLOT="0"
+IUSE="static-libs cpu_flags_x86_sse"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   autotools-multilib_src_configure \
+   $(use_enable cpu_flags_x86_sse x86simd)
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-03-02 Thread Tobias Klausmann
commit: 129c9874d27849d13e2b6f9732855dcc9592ec23
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Mar  2 15:26:09 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Mar  2 15:26:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=129c9874

media-libs/zimg-2.4-r0: add ~alpha keyword

Gentoo-Bug: 574786

 media-libs/zimg/zimg-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.4.ebuild b/media-libs/zimg/zimg-2.4.ebuild
index 5a0b59745dc..000ca12c2b3 100644
--- a/media-libs/zimg/zimg-2.4.ebuild
+++ b/media-libs/zimg/zimg-2.4.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 arm ppc ppc64 x86"
+   KEYWORDS="~alpha amd64 arm ppc ppc64 x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-02-23 Thread Michael Weber
commit: 6c6a202ffd3b2e20ba7529b5d508881c0ce6d0b5
Author: Michael Weber  gentoo  org>
AuthorDate: Thu Feb 23 12:34:55 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Thu Feb 23 12:34:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c6a202f

media-libs/zimg: arm stable (bug 608868)

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="ppc64"

 media-libs/zimg/zimg-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.4.ebuild b/media-libs/zimg/zimg-2.4.ebuild
index 74b231f4fb..a1f78c6193 100644
--- a/media-libs/zimg/zimg-2.4.ebuild
+++ b/media-libs/zimg/zimg-2.4.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm ppc ppc64 x86"
+   KEYWORDS="amd64 arm ppc ppc64 x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-02-22 Thread Michael Weber
commit: de325675a51759bb794c7444787b8c16a8dd6039
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Feb 22 21:08:59 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Feb 22 21:08:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de325675

media-libs/zimg: ppc stable (bug 608868)

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="ppc64"

 media-libs/zimg/zimg-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.4.ebuild b/media-libs/zimg/zimg-2.4.ebuild
index 63a9fbf6b9..74b231f4fb 100644
--- a/media-libs/zimg/zimg-2.4.ebuild
+++ b/media-libs/zimg/zimg-2.4.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm ~ppc ppc64 x86"
+   KEYWORDS="amd64 ~arm ppc ppc64 x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-02-22 Thread Jeroen Roovers
commit: 3730b4d1a54341eb3a940749e7e024edade8fe38
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Feb 22 13:16:54 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Feb 22 13:18:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3730b4d1

media-libs/zimg: Stable for PPC64 (bug #608868).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 media-libs/zimg/zimg-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.4.ebuild b/media-libs/zimg/zimg-2.4.ebuild
index 8a6f33cadc..63a9fbf6b9 100644
--- a/media-libs/zimg/zimg-2.4.ebuild
+++ b/media-libs/zimg/zimg-2.4.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
+   KEYWORDS="amd64 ~arm ~ppc ppc64 x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-02-17 Thread Markus Meier
commit: d7723b384a8af5c9c5e1a0fa316b5ab50cc36f1b
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Feb 17 17:15:10 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Feb 17 17:27:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7723b38

media-libs/zimg: add ~arm, bug #574786

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 media-libs/zimg/zimg-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.4.ebuild b/media-libs/zimg/zimg-2.4.ebuild
index d2c5037654..8a6f33cadc 100644
--- a/media-libs/zimg/zimg-2.4.ebuild
+++ b/media-libs/zimg/zimg-2.4.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~ppc ~ppc64 x86"
+   KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-02-15 Thread Agostino Sarubbo
commit: e97b22430c94a0e10f8d2e0fcd123f8c9aaa1aa5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Feb 15 15:55:42 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Feb 15 15:55:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e97b2243

media-libs/zimg: x86 stable wrt bug #608868

Package-Manager: portage-2.3.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-libs/zimg/zimg-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.4.ebuild b/media-libs/zimg/zimg-2.4.ebuild
index 69cc7c3737..d2c5037654 100644
--- a/media-libs/zimg/zimg-2.4.ebuild
+++ b/media-libs/zimg/zimg-2.4.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~ppc ~ppc64 x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-02-05 Thread Jeroen Roovers
commit: 6d48c27d802440f9bd3c8ca461cd2cc85286a2c9
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Feb  5 12:42:33 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Feb  5 12:42:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d48c27d

media-libs/zimg: Mark ~ppc64 (bug #574786).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 media-libs/zimg/zimg-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.4.ebuild b/media-libs/zimg/zimg-2.4.ebuild
index 58109a1..af288c0 100644
--- a/media-libs/zimg/zimg-2.4.ebuild
+++ b/media-libs/zimg/zimg-2.4.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc ~x86"
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2017-01-23 Thread Alexis Ballier
commit: 471f1f47c296e093f4767dd90799dd33ed8496c2
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Jan 23 09:30:40 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Jan 23 09:34:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=471f1f47

media-libs/zimg: bump to 2.4

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-libs/zimg/Manifest  | 1 +
 media-libs/zimg/{zimg-.ebuild => zimg-2.4.ebuild} | 4 ++--
 media-libs/zimg/zimg-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index f07e992..f563854 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1 +1,2 @@
 DIST zimg-2.3.tar.gz 188682 SHA256 
09962385f986dbcfd8ed6160cdafc2bc57bef8c6bfb3ca3a4bcaa482f09c06fa SHA512 
18ace0b66c59304d0a0abdb3cc4d5391bd1d74ef7b69af4e35350d452cf1b43807fc9ffda2285e991920bbb414e58a3e3a20d44a6f2ed7a9e902d956f973269d
 WHIRLPOOL 
112b0f267587d361775d4eeab158cc66f8b56bbd760073d63417dd9f388de8df8758af07c7921b896dcef59f5e2fdf1474621f2bf22ca943473d268ee222611b
+DIST zimg-2.4.tar.gz 193791 SHA256 
996ea0e446df6ff4d6cb9c04a77d60978eca47c32d3785cd63fe8c29a9523d1f SHA512 
978a344c8f91327c7b92c6354526042d3901ce8ca3db19ba1ea1c81f4a1f980a64290223c202af354abd9efd821664d1743714acee171529a30f3742a0195e9e
 WHIRLPOOL 
cbae92a607d94c61860461d054e2a68220b2f7039e5aaade0dc869267795759076edd42bd30f4b03d816119b181a5c703a7d7382a7ff751433eace9d8050466b

diff --git a/media-libs/zimg/zimg-.ebuild b/media-libs/zimg/zimg-2.4.ebuild
similarity index 91%
copy from media-libs/zimg/zimg-.ebuild
copy to media-libs/zimg/zimg-2.4.ebuild
index a8a8647..58109a1 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-2.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc"
+   KEYWORDS="~amd64 ~ppc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 

diff --git a/media-libs/zimg/zimg-.ebuild b/media-libs/zimg/zimg-.ebuild
index a8a8647..58109a1 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc"
+   KEYWORDS="~amd64 ~ppc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2016-10-15 Thread Pacho Ramos
commit: 4be5599aaf9aa123889d7a89829a76f999cc83a6
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Oct 15 11:36:18 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Oct 15 11:47:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4be5599a

media-libs/zimg: x86 keyword, bug #574786

Package-Manager: portage-2.3.1

 media-libs/zimg/zimg-2.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zimg/zimg-2.3.ebuild b/media-libs/zimg/zimg-2.3.ebuild
index a8a8647..cfb8136 100644
--- a/media-libs/zimg/zimg-2.3.ebuild
+++ b/media-libs/zimg/zimg-2.3.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~ppc"
+   KEYWORDS="~amd64 ~ppc ~x86"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2016-10-14 Thread Alexis Ballier
commit: 73f47dde2b7f495380466fd89c54df4d1a1fa3e3
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Oct 14 13:09:45 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Oct 14 13:09:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73f47dde

media-libs/zimg: remove old

Package-Manager: portage-2.3.2

 media-libs/zimg/Manifest  |  5 -
 media-libs/zimg/zimg-2.0.1.ebuild | 37 -
 media-libs/zimg/zimg-2.0.2.ebuild | 37 -
 media-libs/zimg/zimg-2.0.3.ebuild | 37 -
 media-libs/zimg/zimg-2.0.4.ebuild | 37 -
 media-libs/zimg/zimg-2.2.1.ebuild | 37 -
 6 files changed, 190 deletions(-)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index 164c87f..f07e992 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1,6 +1 @@
-DIST zimg-2.0.1.tar.gz 174318 SHA256 
be2557bf944dad07edbaf37d3fd5f1911627294b8d0992a8530048e84df082d8 SHA512 
213952b2e51fad2f92d989104be188ff6cdc71b0910a1201a5f772e45b1fa90f522a62e85d8725037560e4505f40958a5497d731f3d03f7b890bfdaa5d0ae13c
 WHIRLPOOL 
4918e22cc76a613a1641aba55f5f2d652186ef84a5719d250dfb499d0c8be8c7dd688dcf95d18e93f152479fad4a8543addf5c9a149fc030f354a090e741bcbb
-DIST zimg-2.0.2.tar.gz 174415 SHA256 
b9c7bac9e6ad53dfa94215c28440167d72d41109df10278673789f8e531f2142 SHA512 
f638e19d898c2c60009447d26e7098c1ec2aeac1d71234c17fa32e9d14a8506b549dae68c994b6be88938355bcf4e0f1f4efd5db7273ff15fa776260c978c123
 WHIRLPOOL 
859b7bcde2d6d3672312c8202df89e9c6c0aea2037e2c5179261ea39c6f321c8c872e7e1605bb225b97d3f1ef1942cba32ab96433c96816eee67f78e90b9fe5b
-DIST zimg-2.0.3.tar.gz 17 SHA256 
521b109348d4570e5b9a313b8549caaf882062740f4a20acd036d033149ae125 SHA512 
2029bb55345344195364d08d97c2f830be5034926c2506caba7b05493ce4f3053b3c7086b2cf860d5839a87fac18582dde07c089ba4792a002b980fe7829c29e
 WHIRLPOOL 
04062ce2919900c69e878afb4bc8f3a64cbf0c9f1293d0cf8c4bafc4ffe39ee5a00d1047543e8621a1a557d334ec7c160cbebe54946c604be5fac607fa2c23c3
-DIST zimg-2.0.4.tar.gz 174469 SHA256 
e3b1f5b9f8ce750f96b9bc9801ff5d6aa931d35300d67711826e397df43c5245 SHA512 
2184df60fc870d901e2c039c4a944edae2a9153d879da1d89fbc59ea8af6830922347accd3b1aae85d6efaebc59bdb7e2c4f3cab1e554b85cb42abb3c83235ea
 WHIRLPOOL 
6692a06866aef78631e61edbdd0f794950ae177fe051f2c48a5a00f66879ea276238435f4d3b1dcbfad23eb19473f3fafb3d8a7b858cdb8336e1afc00d2d5bc9
-DIST zimg-2.2.1.tar.gz 175873 SHA256 
0ac3004f7612f91e2eda1aaaf170c2ceef4f90f881647b8e248f36b0e6954f54 SHA512 
35dca56eb27bab4623dfddcaec2e28ea33ed0092bce2c237b455731f94c3ab003f8ac507070c5330db32e1950ef56efcc33886a48a93411b14cad208f70e
 WHIRLPOOL 
a14400baf78a98012be627309748eb56f9e843419ab7705e3b3b2cf0a16f25ee68711512015faf33c8cd4336809330f775f5cf8739f15a1cf091c0ff9afe5f71
 DIST zimg-2.3.tar.gz 188682 SHA256 
09962385f986dbcfd8ed6160cdafc2bc57bef8c6bfb3ca3a4bcaa482f09c06fa SHA512 
18ace0b66c59304d0a0abdb3cc4d5391bd1d74ef7b69af4e35350d452cf1b43807fc9ffda2285e991920bbb414e58a3e3a20d44a6f2ed7a9e902d956f973269d
 WHIRLPOOL 
112b0f267587d361775d4eeab158cc66f8b56bbd760073d63417dd9f388de8df8758af07c7921b896dcef59f5e2fdf1474621f2bf22ca943473d268ee222611b

diff --git a/media-libs/zimg/zimg-2.0.1.ebuild 
b/media-libs/zimg/zimg-2.0.1.ebuild
deleted file mode 100644
index 73b4cb9..
--- a/media-libs/zimg/zimg-2.0.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
-
-SCM=""
-
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
-fi
-
-inherit autotools-multilib ${SCM}
-
-DESCRIPTION="Scaling, colorspace conversion, and dithering library"
-HOMEPAGE="https://github.com/sekrit-twc/zimg;
-
-if [ "${PV#}" = "${PV}" ] ; then
-   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64"
-   S="${WORKDIR}/${PN}-release-${PV}/"
-fi
-
-LICENSE="WTFPL-2"
-SLOT="0"
-IUSE="static-libs cpu_flags_x86_sse"
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   autotools-multilib_src_configure \
-   $(use_enable cpu_flags_x86_sse x86simd)
-}

diff --git a/media-libs/zimg/zimg-2.0.2.ebuild 
b/media-libs/zimg/zimg-2.0.2.ebuild
deleted file mode 100644
index 73b4cb9..
--- a/media-libs/zimg/zimg-2.0.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
-
-SCM=""
-
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
-fi
-
-inherit autotools-multilib ${SCM}
-
-DESCRIPTION="Scaling, colorspace conversion, and dithering library"

[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2016-10-14 Thread Alexis Ballier
commit: e761336ced614434bfa56fe6f96fd1e76b196306
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Oct 14 13:07:44 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Oct 14 13:07:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e761336c

media-libs/zimg: bump to 2.3

Package-Manager: portage-2.3.2

 media-libs/zimg/Manifest|  1 +
 media-libs/zimg/zimg-2.3.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index 3baa0ce..164c87f 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -3,3 +3,4 @@ DIST zimg-2.0.2.tar.gz 174415 SHA256 
b9c7bac9e6ad53dfa94215c28440167d72d41109df1
 DIST zimg-2.0.3.tar.gz 17 SHA256 
521b109348d4570e5b9a313b8549caaf882062740f4a20acd036d033149ae125 SHA512 
2029bb55345344195364d08d97c2f830be5034926c2506caba7b05493ce4f3053b3c7086b2cf860d5839a87fac18582dde07c089ba4792a002b980fe7829c29e
 WHIRLPOOL 
04062ce2919900c69e878afb4bc8f3a64cbf0c9f1293d0cf8c4bafc4ffe39ee5a00d1047543e8621a1a557d334ec7c160cbebe54946c604be5fac607fa2c23c3
 DIST zimg-2.0.4.tar.gz 174469 SHA256 
e3b1f5b9f8ce750f96b9bc9801ff5d6aa931d35300d67711826e397df43c5245 SHA512 
2184df60fc870d901e2c039c4a944edae2a9153d879da1d89fbc59ea8af6830922347accd3b1aae85d6efaebc59bdb7e2c4f3cab1e554b85cb42abb3c83235ea
 WHIRLPOOL 
6692a06866aef78631e61edbdd0f794950ae177fe051f2c48a5a00f66879ea276238435f4d3b1dcbfad23eb19473f3fafb3d8a7b858cdb8336e1afc00d2d5bc9
 DIST zimg-2.2.1.tar.gz 175873 SHA256 
0ac3004f7612f91e2eda1aaaf170c2ceef4f90f881647b8e248f36b0e6954f54 SHA512 
35dca56eb27bab4623dfddcaec2e28ea33ed0092bce2c237b455731f94c3ab003f8ac507070c5330db32e1950ef56efcc33886a48a93411b14cad208f70e
 WHIRLPOOL 
a14400baf78a98012be627309748eb56f9e843419ab7705e3b3b2cf0a16f25ee68711512015faf33c8cd4336809330f775f5cf8739f15a1cf091c0ff9afe5f71
+DIST zimg-2.3.tar.gz 188682 SHA256 
09962385f986dbcfd8ed6160cdafc2bc57bef8c6bfb3ca3a4bcaa482f09c06fa SHA512 
18ace0b66c59304d0a0abdb3cc4d5391bd1d74ef7b69af4e35350d452cf1b43807fc9ffda2285e991920bbb414e58a3e3a20d44a6f2ed7a9e902d956f973269d
 WHIRLPOOL 
112b0f267587d361775d4eeab158cc66f8b56bbd760073d63417dd9f388de8df8758af07c7921b896dcef59f5e2fdf1474621f2bf22ca943473d268ee222611b

diff --git a/media-libs/zimg/zimg-2.3.ebuild b/media-libs/zimg/zimg-2.3.ebuild
new file mode 100644
index ..a8a8647
--- /dev/null
+++ b/media-libs/zimg/zimg-2.3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=yes
+
+SCM=""
+
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
+fi
+
+inherit autotools-multilib ${SCM}
+
+DESCRIPTION="Scaling, colorspace conversion, and dithering library"
+HOMEPAGE="https://github.com/sekrit-twc/zimg;
+
+if [ "${PV#}" = "${PV}" ] ; then
+   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~ppc"
+   S="${WORKDIR}/${PN}-release-${PV}/"
+fi
+
+LICENSE="WTFPL-2"
+SLOT="0"
+IUSE="static-libs cpu_flags_x86_sse"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   autotools-multilib_src_configure \
+   $(use_enable cpu_flags_x86_sse x86simd)
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2016-09-20 Thread Alexis Ballier
commit: eca95e70409810b07a07795df3e4a020118479ac
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Sep 20 09:52:17 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Sep 20 12:48:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eca95e70

media-libs/zimg: bump to 2.2.1

Package-Manager: portage-2.3.1

 media-libs/zimg/Manifest  |  1 +
 media-libs/zimg/zimg-2.2.1.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index 98cbb0e..3baa0ce 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -2,3 +2,4 @@ DIST zimg-2.0.1.tar.gz 174318 SHA256 
be2557bf944dad07edbaf37d3fd5f1911627294b8d0
 DIST zimg-2.0.2.tar.gz 174415 SHA256 
b9c7bac9e6ad53dfa94215c28440167d72d41109df10278673789f8e531f2142 SHA512 
f638e19d898c2c60009447d26e7098c1ec2aeac1d71234c17fa32e9d14a8506b549dae68c994b6be88938355bcf4e0f1f4efd5db7273ff15fa776260c978c123
 WHIRLPOOL 
859b7bcde2d6d3672312c8202df89e9c6c0aea2037e2c5179261ea39c6f321c8c872e7e1605bb225b97d3f1ef1942cba32ab96433c96816eee67f78e90b9fe5b
 DIST zimg-2.0.3.tar.gz 17 SHA256 
521b109348d4570e5b9a313b8549caaf882062740f4a20acd036d033149ae125 SHA512 
2029bb55345344195364d08d97c2f830be5034926c2506caba7b05493ce4f3053b3c7086b2cf860d5839a87fac18582dde07c089ba4792a002b980fe7829c29e
 WHIRLPOOL 
04062ce2919900c69e878afb4bc8f3a64cbf0c9f1293d0cf8c4bafc4ffe39ee5a00d1047543e8621a1a557d334ec7c160cbebe54946c604be5fac607fa2c23c3
 DIST zimg-2.0.4.tar.gz 174469 SHA256 
e3b1f5b9f8ce750f96b9bc9801ff5d6aa931d35300d67711826e397df43c5245 SHA512 
2184df60fc870d901e2c039c4a944edae2a9153d879da1d89fbc59ea8af6830922347accd3b1aae85d6efaebc59bdb7e2c4f3cab1e554b85cb42abb3c83235ea
 WHIRLPOOL 
6692a06866aef78631e61edbdd0f794950ae177fe051f2c48a5a00f66879ea276238435f4d3b1dcbfad23eb19473f3fafb3d8a7b858cdb8336e1afc00d2d5bc9
+DIST zimg-2.2.1.tar.gz 175873 SHA256 
0ac3004f7612f91e2eda1aaaf170c2ceef4f90f881647b8e248f36b0e6954f54 SHA512 
35dca56eb27bab4623dfddcaec2e28ea33ed0092bce2c237b455731f94c3ab003f8ac507070c5330db32e1950ef56efcc33886a48a93411b14cad208f70e
 WHIRLPOOL 
a14400baf78a98012be627309748eb56f9e843419ab7705e3b3b2cf0a16f25ee68711512015faf33c8cd4336809330f775f5cf8739f15a1cf091c0ff9afe5f71

diff --git a/media-libs/zimg/zimg-2.2.1.ebuild 
b/media-libs/zimg/zimg-2.2.1.ebuild
new file mode 100644
index ..a8a8647
--- /dev/null
+++ b/media-libs/zimg/zimg-2.2.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=yes
+
+SCM=""
+
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
+fi
+
+inherit autotools-multilib ${SCM}
+
+DESCRIPTION="Scaling, colorspace conversion, and dithering library"
+HOMEPAGE="https://github.com/sekrit-twc/zimg;
+
+if [ "${PV#}" = "${PV}" ] ; then
+   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~ppc"
+   S="${WORKDIR}/${PN}-release-${PV}/"
+fi
+
+LICENSE="WTFPL-2"
+SLOT="0"
+IUSE="static-libs cpu_flags_x86_sse"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   autotools-multilib_src_configure \
+   $(use_enable cpu_flags_x86_sse x86simd)
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2016-07-25 Thread Chí-Thanh Christopher Nguyễn
commit: 9f2c0f63641861dad6c5b90bb27ff2562d35219e
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Mon Jul 25 17:09:28 2016 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Mon Jul 25 17:09:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f2c0f63

media-libs/zimg: keyword ~ppc

Bug: https://bugs.gentoo.org/show_bug.cgi?id=574786

Package-Manager: portage-2.2.28

 media-libs/zimg/zimg-2.0.4.ebuild | 4 ++--
 media-libs/zimg/zimg-.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-libs/zimg/zimg-2.0.4.ebuild 
b/media-libs/zimg/zimg-2.0.4.ebuild
index 73b4cb9..a8a8647 100644
--- a/media-libs/zimg/zimg-2.0.4.ebuild
+++ b/media-libs/zimg/zimg-2.0.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~ppc"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 

diff --git a/media-libs/zimg/zimg-.ebuild b/media-libs/zimg/zimg-.ebuild
index 73b4cb9..a8a8647 100644
--- a/media-libs/zimg/zimg-.ebuild
+++ b/media-libs/zimg/zimg-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg;
 
 if [ "${PV#}" = "${PV}" ] ; then

SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~ppc"
S="${WORKDIR}/${PN}-release-${PV}/"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2016-01-30 Thread Alexis Ballier
commit: 9a13cdb680b4b3762ac952ba885cf74a3e7bd877
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jan 30 15:55:13 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Jan 30 15:56:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a13cdb6

media-libs/zimg: bump to 2.0.4

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 media-libs/zimg/Manifest  |  1 +
 media-libs/zimg/zimg-2.0.4.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index f4bb303..98cbb0e 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1,3 +1,4 @@
 DIST zimg-2.0.1.tar.gz 174318 SHA256 
be2557bf944dad07edbaf37d3fd5f1911627294b8d0992a8530048e84df082d8 SHA512 
213952b2e51fad2f92d989104be188ff6cdc71b0910a1201a5f772e45b1fa90f522a62e85d8725037560e4505f40958a5497d731f3d03f7b890bfdaa5d0ae13c
 WHIRLPOOL 
4918e22cc76a613a1641aba55f5f2d652186ef84a5719d250dfb499d0c8be8c7dd688dcf95d18e93f152479fad4a8543addf5c9a149fc030f354a090e741bcbb
 DIST zimg-2.0.2.tar.gz 174415 SHA256 
b9c7bac9e6ad53dfa94215c28440167d72d41109df10278673789f8e531f2142 SHA512 
f638e19d898c2c60009447d26e7098c1ec2aeac1d71234c17fa32e9d14a8506b549dae68c994b6be88938355bcf4e0f1f4efd5db7273ff15fa776260c978c123
 WHIRLPOOL 
859b7bcde2d6d3672312c8202df89e9c6c0aea2037e2c5179261ea39c6f321c8c872e7e1605bb225b97d3f1ef1942cba32ab96433c96816eee67f78e90b9fe5b
 DIST zimg-2.0.3.tar.gz 17 SHA256 
521b109348d4570e5b9a313b8549caaf882062740f4a20acd036d033149ae125 SHA512 
2029bb55345344195364d08d97c2f830be5034926c2506caba7b05493ce4f3053b3c7086b2cf860d5839a87fac18582dde07c089ba4792a002b980fe7829c29e
 WHIRLPOOL 
04062ce2919900c69e878afb4bc8f3a64cbf0c9f1293d0cf8c4bafc4ffe39ee5a00d1047543e8621a1a557d334ec7c160cbebe54946c604be5fac607fa2c23c3
+DIST zimg-2.0.4.tar.gz 174469 SHA256 
e3b1f5b9f8ce750f96b9bc9801ff5d6aa931d35300d67711826e397df43c5245 SHA512 
2184df60fc870d901e2c039c4a944edae2a9153d879da1d89fbc59ea8af6830922347accd3b1aae85d6efaebc59bdb7e2c4f3cab1e554b85cb42abb3c83235ea
 WHIRLPOOL 
6692a06866aef78631e61edbdd0f794950ae177fe051f2c48a5a00f66879ea276238435f4d3b1dcbfad23eb19473f3fafb3d8a7b858cdb8336e1afc00d2d5bc9

diff --git a/media-libs/zimg/zimg-2.0.4.ebuild 
b/media-libs/zimg/zimg-2.0.4.ebuild
new file mode 100644
index 000..73b4cb9
--- /dev/null
+++ b/media-libs/zimg/zimg-2.0.4.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=yes
+
+SCM=""
+
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
+fi
+
+inherit autotools-multilib ${SCM}
+
+DESCRIPTION="Scaling, colorspace conversion, and dithering library"
+HOMEPAGE="https://github.com/sekrit-twc/zimg;
+
+if [ "${PV#}" = "${PV}" ] ; then
+   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64"
+   S="${WORKDIR}/${PN}-release-${PV}/"
+fi
+
+LICENSE="WTFPL-2"
+SLOT="0"
+IUSE="static-libs cpu_flags_x86_sse"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   autotools-multilib_src_configure \
+   $(use_enable cpu_flags_x86_sse x86simd)
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2016-01-19 Thread Alexis Ballier
commit: bce4705418020a5791ae23ab234a2f49a73cba37
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Jan 19 11:05:29 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Jan 19 11:35:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bce47054

media-libs/zimg: bump to 2.0.3

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 media-libs/zimg/Manifest  |  1 +
 media-libs/zimg/zimg-2.0.3.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index a1a00fa..f4bb303 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1,2 +1,3 @@
 DIST zimg-2.0.1.tar.gz 174318 SHA256 
be2557bf944dad07edbaf37d3fd5f1911627294b8d0992a8530048e84df082d8 SHA512 
213952b2e51fad2f92d989104be188ff6cdc71b0910a1201a5f772e45b1fa90f522a62e85d8725037560e4505f40958a5497d731f3d03f7b890bfdaa5d0ae13c
 WHIRLPOOL 
4918e22cc76a613a1641aba55f5f2d652186ef84a5719d250dfb499d0c8be8c7dd688dcf95d18e93f152479fad4a8543addf5c9a149fc030f354a090e741bcbb
 DIST zimg-2.0.2.tar.gz 174415 SHA256 
b9c7bac9e6ad53dfa94215c28440167d72d41109df10278673789f8e531f2142 SHA512 
f638e19d898c2c60009447d26e7098c1ec2aeac1d71234c17fa32e9d14a8506b549dae68c994b6be88938355bcf4e0f1f4efd5db7273ff15fa776260c978c123
 WHIRLPOOL 
859b7bcde2d6d3672312c8202df89e9c6c0aea2037e2c5179261ea39c6f321c8c872e7e1605bb225b97d3f1ef1942cba32ab96433c96816eee67f78e90b9fe5b
+DIST zimg-2.0.3.tar.gz 17 SHA256 
521b109348d4570e5b9a313b8549caaf882062740f4a20acd036d033149ae125 SHA512 
2029bb55345344195364d08d97c2f830be5034926c2506caba7b05493ce4f3053b3c7086b2cf860d5839a87fac18582dde07c089ba4792a002b980fe7829c29e
 WHIRLPOOL 
04062ce2919900c69e878afb4bc8f3a64cbf0c9f1293d0cf8c4bafc4ffe39ee5a00d1047543e8621a1a557d334ec7c160cbebe54946c604be5fac607fa2c23c3

diff --git a/media-libs/zimg/zimg-2.0.3.ebuild 
b/media-libs/zimg/zimg-2.0.3.ebuild
new file mode 100644
index 000..73b4cb9
--- /dev/null
+++ b/media-libs/zimg/zimg-2.0.3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=yes
+
+SCM=""
+
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
+fi
+
+inherit autotools-multilib ${SCM}
+
+DESCRIPTION="Scaling, colorspace conversion, and dithering library"
+HOMEPAGE="https://github.com/sekrit-twc/zimg;
+
+if [ "${PV#}" = "${PV}" ] ; then
+   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64"
+   S="${WORKDIR}/${PN}-release-${PV}/"
+fi
+
+LICENSE="WTFPL-2"
+SLOT="0"
+IUSE="static-libs cpu_flags_x86_sse"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   autotools-multilib_src_configure \
+   $(use_enable cpu_flags_x86_sse x86simd)
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2015-12-09 Thread Alexis Ballier
commit: 6c52941361743eef55d07ce6e157895fb72209c9
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Dec  9 08:33:38 2015 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Dec  9 08:33:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c529413

media-libs/zimg: bump to 2.0.2

Package-Manager: portage-2.2.26
Signed-off-by: Alexis Ballier  gentoo.org>

 media-libs/zimg/Manifest  |  1 +
 media-libs/zimg/zimg-2.0.2.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
index 0bd2aca..a1a00fa 100644
--- a/media-libs/zimg/Manifest
+++ b/media-libs/zimg/Manifest
@@ -1 +1,2 @@
 DIST zimg-2.0.1.tar.gz 174318 SHA256 
be2557bf944dad07edbaf37d3fd5f1911627294b8d0992a8530048e84df082d8 SHA512 
213952b2e51fad2f92d989104be188ff6cdc71b0910a1201a5f772e45b1fa90f522a62e85d8725037560e4505f40958a5497d731f3d03f7b890bfdaa5d0ae13c
 WHIRLPOOL 
4918e22cc76a613a1641aba55f5f2d652186ef84a5719d250dfb499d0c8be8c7dd688dcf95d18e93f152479fad4a8543addf5c9a149fc030f354a090e741bcbb
+DIST zimg-2.0.2.tar.gz 174415 SHA256 
b9c7bac9e6ad53dfa94215c28440167d72d41109df10278673789f8e531f2142 SHA512 
f638e19d898c2c60009447d26e7098c1ec2aeac1d71234c17fa32e9d14a8506b549dae68c994b6be88938355bcf4e0f1f4efd5db7273ff15fa776260c978c123
 WHIRLPOOL 
859b7bcde2d6d3672312c8202df89e9c6c0aea2037e2c5179261ea39c6f321c8c872e7e1605bb225b97d3f1ef1942cba32ab96433c96816eee67f78e90b9fe5b

diff --git a/media-libs/zimg/zimg-2.0.2.ebuild 
b/media-libs/zimg/zimg-2.0.2.ebuild
new file mode 100644
index 000..73b4cb9
--- /dev/null
+++ b/media-libs/zimg/zimg-2.0.2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=yes
+
+SCM=""
+
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
+fi
+
+inherit autotools-multilib ${SCM}
+
+DESCRIPTION="Scaling, colorspace conversion, and dithering library"
+HOMEPAGE="https://github.com/sekrit-twc/zimg;
+
+if [ "${PV#}" = "${PV}" ] ; then
+   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64"
+   S="${WORKDIR}/${PN}-release-${PV}/"
+fi
+
+LICENSE="WTFPL-2"
+SLOT="0"
+IUSE="static-libs cpu_flags_x86_sse"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   autotools-multilib_src_configure \
+   $(use_enable cpu_flags_x86_sse x86simd)
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/

2015-10-30 Thread Alexis Ballier
commit: ce7e1fd768f07ba40048f1ef7f987e42935c6550
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Oct 30 14:19:03 2015 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Oct 30 14:21:47 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce7e1fd7

media-libs/zimg: Initial import. Ebuild by me.

Package-Manager: portage-2.2.23

 media-libs/zimg/Manifest  |  1 +
 media-libs/zimg/metadata.xml  |  8 
 media-libs/zimg/zimg-2.0.1.ebuild | 37 +
 media-libs/zimg/zimg-.ebuild  | 37 +
 4 files changed, 83 insertions(+)

diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest
new file mode 100644
index 000..0bd2aca
--- /dev/null
+++ b/media-libs/zimg/Manifest
@@ -0,0 +1 @@
+DIST zimg-2.0.1.tar.gz 174318 SHA256 
be2557bf944dad07edbaf37d3fd5f1911627294b8d0992a8530048e84df082d8 SHA512 
213952b2e51fad2f92d989104be188ff6cdc71b0910a1201a5f772e45b1fa90f522a62e85d8725037560e4505f40958a5497d731f3d03f7b890bfdaa5d0ae13c
 WHIRLPOOL 
4918e22cc76a613a1641aba55f5f2d652186ef84a5719d250dfb499d0c8be8c7dd688dcf95d18e93f152479fad4a8543addf5c9a149fc030f354a090e741bcbb

diff --git a/media-libs/zimg/metadata.xml b/media-libs/zimg/metadata.xml
new file mode 100644
index 000..c572c7d
--- /dev/null
+++ b/media-libs/zimg/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  video
+  
+media-vi...@gentoo.org
+  
+

diff --git a/media-libs/zimg/zimg-2.0.1.ebuild 
b/media-libs/zimg/zimg-2.0.1.ebuild
new file mode 100644
index 000..73b4cb9
--- /dev/null
+++ b/media-libs/zimg/zimg-2.0.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=yes
+
+SCM=""
+
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
+fi
+
+inherit autotools-multilib ${SCM}
+
+DESCRIPTION="Scaling, colorspace conversion, and dithering library"
+HOMEPAGE="https://github.com/sekrit-twc/zimg;
+
+if [ "${PV#}" = "${PV}" ] ; then
+   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64"
+   S="${WORKDIR}/${PN}-release-${PV}/"
+fi
+
+LICENSE="WTFPL-2"
+SLOT="0"
+IUSE="static-libs cpu_flags_x86_sse"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   autotools-multilib_src_configure \
+   $(use_enable cpu_flags_x86_sse x86simd)
+}

diff --git a/media-libs/zimg/zimg-.ebuild b/media-libs/zimg/zimg-.ebuild
new file mode 100644
index 000..73b4cb9
--- /dev/null
+++ b/media-libs/zimg/zimg-.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=yes
+
+SCM=""
+
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/sekrit-twc/zimg;
+fi
+
+inherit autotools-multilib ${SCM}
+
+DESCRIPTION="Scaling, colorspace conversion, and dithering library"
+HOMEPAGE="https://github.com/sekrit-twc/zimg;
+
+if [ "${PV#}" = "${PV}" ] ; then
+   
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64"
+   S="${WORKDIR}/${PN}-release-${PV}/"
+fi
+
+LICENSE="WTFPL-2"
+SLOT="0"
+IUSE="static-libs cpu_flags_x86_sse"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   autotools-multilib_src_configure \
+   $(use_enable cpu_flags_x86_sse x86simd)
+}