[gentoo-commits] repo/gentoo:master commit in: media-libs/libpostproc/, profiles/, profiles/features/hardened/amd64/, ...

2020-04-28 Thread Matt Turner
commit: e3e6b70b3583653da8f064d2880e0342d6f396e6
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Apr 28 17:37:30 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Apr 28 17:40:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3e6b70b

media-libs/libpostproc: Remove

Signed-off-by: Matt Turner  gentoo.org>

 media-libs/libpostproc/Manifest|  1 -
 .../libpostproc-10.20140517-support-MMXEXT.patch   | 26 ---
 .../libpostproc/libpostproc-10.20140517-r1.ebuild  | 89 --
 media-libs/libpostproc/libpostproc-.ebuild | 85 -
 media-libs/libpostproc/metadata.xml| 13 
 profiles/features/hardened/amd64/package.use   |  1 -
 profiles/package.mask  |  5 --
 7 files changed, 220 deletions(-)

diff --git a/media-libs/libpostproc/Manifest b/media-libs/libpostproc/Manifest
deleted file mode 100644
index 4f61e538f83..000
--- a/media-libs/libpostproc/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libpostproc-10.20140517.tar.xz 65556 BLAKE2B 
374dc84fb52f32958bcf9daeaabf2be1405d444f72d1f1ccb22e42b657489adad55199e5be27fa80cdcc21ed4480bae901925fbd833bcd30625d82720d481800
 SHA512 
0d6dca077c99ac569d892bc92cd08c6bf3e3a5e30e623ced20227b5bd1bd1aa3ecd150bfc900659accd77b997eb64b4d6f0538f9b6161d190ef6c69dcaf47893

diff --git 
a/media-libs/libpostproc/files/libpostproc-10.20140517-support-MMXEXT.patch 
b/media-libs/libpostproc/files/libpostproc-10.20140517-support-MMXEXT.patch
deleted file mode 100644
index 8f7d5adc0ba..000
--- a/media-libs/libpostproc/files/libpostproc-10.20140517-support-MMXEXT.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Bug: https://bugs.gentoo.org/621172
-Upstream commit: 
https://github.com/lu-zero/postproc/pull/1/commits/d0c9ca711ef69889ebd0e44da90dccc722fe663e
-
-From d0c9ca711ef69889ebd0e44da90dccc722fe663e Mon Sep 17 00:00:00 2001
-From: Peter-Levine 
-Date: Tue, 24 Oct 2017 19:24:10 -0400
-Subject: [PATCH] Use AV_CPU_FLAG_MMXEXT
-
-Use AV_CPU_FLAG_MMXEXT instead of AV_CPU_FLAG_MMX2.

- libpostproc/postprocess.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c
-index 63b6822..951d1f0 100644
 a/libpostproc/postprocess.c
-+++ b/libpostproc/postprocess.c
-@@ -961,7 +961,7 @@ static int get_cpu_caps(int cpuCaps)
- 
- if (caps & AV_CPU_FLAG_MMX)
- cpuCaps |= PP_CPU_CAPS_MMX;
--if (caps & AV_CPU_FLAG_MMX2)
-+if (caps & AV_CPU_FLAG_MMXEXT)
- cpuCaps |= PP_CPU_CAPS_MMX2;
- if (caps & AV_CPU_FLAG_3DNOW)
- cpuCaps |= PP_CPU_CAPS_3DNOW;

diff --git a/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild 
b/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild
deleted file mode 100644
index 7aaf82daa19..000
--- a/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-2"
-   EGIT_REPO_URI="https://github.com/lu-zero/postproc.git;
-fi
-
-inherit eutils flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM}
-
-DESCRIPTION="Video post processing library"
-HOMEPAGE="https://github.com/lu-zero/postproc;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
-   SRC_URI="mirror://gentoo/${P}.tar.xz"
-else # Release
-   SRC_URI="https://dev.gentoo.org/~lu_zero/distfiles/${P}.tar.xz;
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 
~amd64-linux ~x86-linux"
-fi
-IUSE="pic static-libs"
-
-# String for CPU features in the useflag[:configure_option] form
-# if :configure_option isn't set, it will use 'useflag' as configure option
-CPU_FEATURES="cpu_flags_x86_3dnow:amd3dnow altivec cpu_flags_x86_mmx:mmx 
cpu_flags_x86_mmxext:mmxext"
-for i in ${CPU_FEATURES}; do
-   IUSE="${IUSE} ${i%:*}"
-done
-
-RDEPEND="
-   >=media-video/libav-0.8.2-r2:0=
-   !media-video/ffmpeg:0"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-support-MMXEXT.patch
-}
-
-multilib_src_configure() {
-   local myconf=( ${EXTRA_LIBPOSTPROC_CONF} )
-   for i in $(get-flag march) $(get-flag mcpu) $(get-flag mtune) ; do
-   [[ "${i}" = "native" ]] && i="host" # bug #273421
-   myconf+=( --cpu=${i} )
-   break
-   done
-
-   if use pic ; then
-   myconf+=( --enable-pic )
-   # disable asm code if PIC is required
-   # as the provided asm decidedly is not PIC for x86.
-   [[ ${ABI} == x86 ]] && myconf+=( --disable-asm )
-   fi
-
-   # cross compile support
-   if tc-is-cross-compiler ; then
-   

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

2020-04-11 Thread Sergei Trofimovich
commit: c91e10d3e2b3d7f85c8ddd51829883d0713b8f99
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Apr 11 09:31:53 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Apr 11 10:20:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c91e10d3

media-libs/libpostproc: drop to ~hppa

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

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

diff --git a/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild 
b/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild
index e222df76a92..7aaf82daa19 100644
--- a/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild
+++ b/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild
@@ -24,7 +24,7 @@ fi
 LICENSE="GPL-2"
 SLOT="0"
 if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 
~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 
~amd64-linux ~x86-linux"
 fi
 IUSE="pic static-libs"
 



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

2019-12-15 Thread Michał Górny
commit: 11a3ad648a65090f8f455d8529d494062fabbf92
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Dec 15 20:00:09 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Dec 15 20:06:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11a3ad64

media-libs/libpostproc: Switch to git-r3

Signed-off-by: Michał Górny  gentoo.org>

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

diff --git a/media-libs/libpostproc/libpostproc-.ebuild 
b/media-libs/libpostproc/libpostproc-.ebuild
index cdce6896ff1..1ce9ec065f8 100644
--- a/media-libs/libpostproc/libpostproc-.ebuild
+++ b/media-libs/libpostproc/libpostproc-.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-2"
+   SCM="git-r3"
EGIT_REPO_URI="https://github.com/lu-zero/postproc.git;
 fi
 



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

2019-11-13 Thread Aaron Bauman
commit: 801e5a28b0f1ed8e3103d96cb17e4f222c5b57fd
Author: Aaron Bauman  gentoo  org>
AuthorDate: Thu Nov 14 00:36:26 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Thu Nov 14 00:36:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=801e5a28

media-libs/libpostproc: drop old EAPI

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

 media-libs/libpostproc/Manifest|  1 -
 .../libpostproc/libpostproc-0.8.0.20121125.ebuild  | 87 --
 .../libpostproc/libpostproc-10.20140517.ebuild | 87 --
 3 files changed, 175 deletions(-)

diff --git a/media-libs/libpostproc/Manifest b/media-libs/libpostproc/Manifest
index 1264acae3a5..4f61e538f83 100644
--- a/media-libs/libpostproc/Manifest
+++ b/media-libs/libpostproc/Manifest
@@ -1,2 +1 @@
-DIST libpostproc-0.8.0.20121125.tar.xz 65376 BLAKE2B 
7745fc0d495a3a6ea45f4e0b012f343d8db0838f7b26f778a646011e3ef01cdc8b7b37b1148b3ea4d838b3a51decb912a6b4328559929f6d38ab01ef8453f990
 SHA512 
7f1451dbe822d143793c12bb7c18fd9eeb98b5347bbfc54172f0aceb2f18cf31b2c0c888c33a9ce2e9f519b4bbb0a900b729188ce83cda9ad5499a8f6ea2d62a
 DIST libpostproc-10.20140517.tar.xz 65556 BLAKE2B 
374dc84fb52f32958bcf9daeaabf2be1405d444f72d1f1ccb22e42b657489adad55199e5be27fa80cdcc21ed4480bae901925fbd833bcd30625d82720d481800
 SHA512 
0d6dca077c99ac569d892bc92cd08c6bf3e3a5e30e623ced20227b5bd1bd1aa3ecd150bfc900659accd77b997eb64b4d6f0538f9b6161d190ef6c69dcaf47893

diff --git a/media-libs/libpostproc/libpostproc-0.8.0.20121125.ebuild 
b/media-libs/libpostproc/libpostproc-0.8.0.20121125.ebuild
deleted file mode 100644
index a6b424d6d4a..000
--- a/media-libs/libpostproc/libpostproc-0.8.0.20121125.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-2"
-   EGIT_REPO_URI="https://github.com/dwbuiten/postproc.git;
-fi
-
-inherit eutils flag-o-matic multilib toolchain-funcs ${SCM}
-
-DESCRIPTION="Video post processing library"
-HOMEPAGE="https://github.com/dwbuiten/postproc;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
-   SRC_URI="mirror://gentoo/${P}.tar.xz"
-else # Release
-   SRC_URI="https://dev.gentoo.org/~lu_zero/distfiles/${P}.tar.xz;
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
-fi
-IUSE="pic static-libs"
-
-# String for CPU features in the useflag[:configure_option] form
-# if :configure_option isn't set, it will use 'useflag' as configure option
-CPU_FEATURES="cpu_flags_x86_3dnow:amd3dnow altivec cpu_flags_x86_mmx:mmx 
cpu_flags_x86_mmxext:mmxext"
-for i in ${CPU_FEATURES}; do
-   IUSE="${IUSE} ${i%:*}"
-done
-
-DEPEND=">=virtual/ffmpeg-0.10.2-r1"
-RDEPEND="${DEPEND}
-   !https://github.com/lu-zero/postproc.git;
-fi
-
-inherit eutils flag-o-matic multilib toolchain-funcs ${SCM}
-
-DESCRIPTION="Video post processing library"
-HOMEPAGE="https://github.com/lu-zero/postproc;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
-   SRC_URI="mirror://gentoo/${P}.tar.xz"
-else # Release
-   SRC_URI="https://dev.gentoo.org/~lu_zero/distfiles/${P}.tar.xz;
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
-fi
-IUSE="pic static-libs"
-
-# String for CPU features in the useflag[:configure_option] form
-# if :configure_option isn't set, it will use 'useflag' as configure option
-CPU_FEATURES="cpu_flags_x86_3dnow:amd3dnow altivec cpu_flags_x86_mmx:mmx 
cpu_flags_x86_mmxext:mmxext"
-for i in ${CPU_FEATURES}; do
-   IUSE="${IUSE} ${i%:*}"
-done
-
-DEPEND=">=virtual/ffmpeg-0.10.2-r2"
-RDEPEND="${DEPEND}
-   !

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

2018-02-17 Thread Michał Górny
commit: 918e4334eec549412047ee7907ef67b51f784a1d
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb 17 16:36:31 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb 17 16:39:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=918e4334

media-libs/libpostproc: Remove amd64-fbsd to match libav

 media-libs/libpostproc/libpostproc-0.8.0.20121125.ebuild | 2 +-
 media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild | 2 +-
 media-libs/libpostproc/libpostproc-10.20140517.ebuild| 2 +-
 media-libs/libpostproc/libpostproc-.ebuild   | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-libs/libpostproc/libpostproc-0.8.0.20121125.ebuild 
b/media-libs/libpostproc/libpostproc-0.8.0.20121125.ebuild
index 76b7c2d3646..263c068b316 100644
--- a/media-libs/libpostproc/libpostproc-0.8.0.20121125.ebuild
+++ b/media-libs/libpostproc/libpostproc-0.8.0.20121125.ebuild
@@ -24,7 +24,7 @@ fi
 LICENSE="GPL-2"
 SLOT="0"
 if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux"
+   KEYWORDS="alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
 fi
 IUSE="pic static-libs"
 

diff --git a/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild 
b/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild
index 1a23881842a..41dbc9c99ac 100644
--- a/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild
+++ b/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild
@@ -24,7 +24,7 @@ fi
 LICENSE="GPL-2"
 SLOT="0"
 if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux"
 fi
 IUSE="pic static-libs"
 

diff --git a/media-libs/libpostproc/libpostproc-10.20140517.ebuild 
b/media-libs/libpostproc/libpostproc-10.20140517.ebuild
index 32152d6af2c..4e1693b0428 100644
--- a/media-libs/libpostproc/libpostproc-10.20140517.ebuild
+++ b/media-libs/libpostproc/libpostproc-10.20140517.ebuild
@@ -24,7 +24,7 @@ fi
 LICENSE="GPL-2"
 SLOT="0"
 if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux"
 fi
 IUSE="pic static-libs"
 

diff --git a/media-libs/libpostproc/libpostproc-.ebuild 
b/media-libs/libpostproc/libpostproc-.ebuild
index d64b20db732..92c4722f80b 100644
--- a/media-libs/libpostproc/libpostproc-.ebuild
+++ b/media-libs/libpostproc/libpostproc-.ebuild
@@ -24,7 +24,7 @@ fi
 LICENSE="GPL-2"
 SLOT="0"
 if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux"
 fi
 IUSE="pic static-libs"
 



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

2017-11-18 Thread David Seifert
commit: 33e8da86fc64502e76f5958bea4b2d99ba2284f8
Author: Peter Levine  gmail  com>
AuthorDate: Wed Oct 25 00:45:46 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Nov 18 18:09:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33e8da86

media-libs/libpostproc: Fix undeclared macro

Closes: https://bugs.gentoo.org/621172
Package-Manager: Portage-2.3.11, Repoman-2.3.3
Closes: https://github.com/gentoo/gentoo/pull/6042

 .../libpostproc-10.20140517-support-MMXEXT.patch   | 26 ++
 .../libpostproc/libpostproc-10.20140517-r1.ebuild  |  4 
 2 files changed, 30 insertions(+)

diff --git 
a/media-libs/libpostproc/files/libpostproc-10.20140517-support-MMXEXT.patch 
b/media-libs/libpostproc/files/libpostproc-10.20140517-support-MMXEXT.patch
new file mode 100644
index 000..8f7d5adc0ba
--- /dev/null
+++ b/media-libs/libpostproc/files/libpostproc-10.20140517-support-MMXEXT.patch
@@ -0,0 +1,26 @@
+Bug: https://bugs.gentoo.org/621172
+Upstream commit: 
https://github.com/lu-zero/postproc/pull/1/commits/d0c9ca711ef69889ebd0e44da90dccc722fe663e
+
+From d0c9ca711ef69889ebd0e44da90dccc722fe663e Mon Sep 17 00:00:00 2001
+From: Peter-Levine 
+Date: Tue, 24 Oct 2017 19:24:10 -0400
+Subject: [PATCH] Use AV_CPU_FLAG_MMXEXT
+
+Use AV_CPU_FLAG_MMXEXT instead of AV_CPU_FLAG_MMX2.
+---
+ libpostproc/postprocess.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c
+index 63b6822..951d1f0 100644
+--- a/libpostproc/postprocess.c
 b/libpostproc/postprocess.c
+@@ -961,7 +961,7 @@ static int get_cpu_caps(int cpuCaps)
+ 
+ if (caps & AV_CPU_FLAG_MMX)
+ cpuCaps |= PP_CPU_CAPS_MMX;
+-if (caps & AV_CPU_FLAG_MMX2)
++if (caps & AV_CPU_FLAG_MMXEXT)
+ cpuCaps |= PP_CPU_CAPS_MMX2;
+ if (caps & AV_CPU_FLAG_3DNOW)
+ cpuCaps |= PP_CPU_CAPS_3DNOW;

diff --git a/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild 
b/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild
index def8f1fe3e3..1a23881842a 100644
--- a/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild
+++ b/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild
@@ -43,6 +43,10 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 
+src_prepare() {
+   epatch "${FILESDIR}"/${P}-support-MMXEXT.patch
+}
+
 multilib_src_configure() {
local myconf=( ${EXTRA_LIBPOSTPROC_CONF} )
for i in $(get-flag march) $(get-flag mcpu) $(get-flag mtune) ; do



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

2017-07-30 Thread Michał Górny
commit: 5b93d671ac8ddfb8e00d13fdad0464bd5b258a1a
Author: David Hicks  hicks  id  au>
AuthorDate: Sat Jul 29 16:48:32 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul 30 09:38:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b93d671

media-libs/libpostproc: use HTTPS for GitHub

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 media-libs/libpostproc/libpostproc-0.8.0.20121125.ebuild | 4 ++--
 media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild | 4 ++--
 media-libs/libpostproc/libpostproc-10.20140517.ebuild| 4 ++--
 media-libs/libpostproc/libpostproc-.ebuild   | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/media-libs/libpostproc/libpostproc-0.8.0.20121125.ebuild 
b/media-libs/libpostproc/libpostproc-0.8.0.20121125.ebuild
index b239033b5eb..76b7c2d3646 100644
--- a/media-libs/libpostproc/libpostproc-0.8.0.20121125.ebuild
+++ b/media-libs/libpostproc/libpostproc-0.8.0.20121125.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="4"
@@ -6,7 +6,7 @@ EAPI="4"
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then
SCM="git-2"
-   EGIT_REPO_URI="git://github.com/dwbuiten/postproc.git"
+   EGIT_REPO_URI="https://github.com/dwbuiten/postproc.git;
 fi
 
 inherit eutils flag-o-matic multilib toolchain-funcs ${SCM}

diff --git a/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild 
b/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild
index 59c25988989..def8f1fe3e3 100644
--- a/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild
+++ b/media-libs/libpostproc/libpostproc-10.20140517-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -6,7 +6,7 @@ EAPI="5"
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then
SCM="git-2"
-   EGIT_REPO_URI="git://github.com/lu-zero/postproc.git"
+   EGIT_REPO_URI="https://github.com/lu-zero/postproc.git;
 fi
 
 inherit eutils flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM}

diff --git a/media-libs/libpostproc/libpostproc-10.20140517.ebuild 
b/media-libs/libpostproc/libpostproc-10.20140517.ebuild
index 60335a603f7..32152d6af2c 100644
--- a/media-libs/libpostproc/libpostproc-10.20140517.ebuild
+++ b/media-libs/libpostproc/libpostproc-10.20140517.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="4"
@@ -6,7 +6,7 @@ EAPI="4"
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then
SCM="git-2"
-   EGIT_REPO_URI="git://github.com/lu-zero/postproc.git"
+   EGIT_REPO_URI="https://github.com/lu-zero/postproc.git;
 fi
 
 inherit eutils flag-o-matic multilib toolchain-funcs ${SCM}

diff --git a/media-libs/libpostproc/libpostproc-.ebuild 
b/media-libs/libpostproc/libpostproc-.ebuild
index b08336dd17f..d64b20db732 100644
--- a/media-libs/libpostproc/libpostproc-.ebuild
+++ b/media-libs/libpostproc/libpostproc-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -6,7 +6,7 @@ EAPI="5"
 SCM=""
 if [ "${PV#}" != "${PV}" ] ; then
SCM="git-2"
-   EGIT_REPO_URI="git://github.com/lu-zero/postproc.git"
+   EGIT_REPO_URI="https://github.com/lu-zero/postproc.git;
 fi
 
 inherit eutils flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM}