* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2015-08-31 21:24 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2015-08-31 21:24 UTC (permalink / raw
To: gentoo-commits
commit: 8c89b1ba79a0c62019e922df2a2c7be16021d339
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 31 19:20:32 2015 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Aug 31 21:28:38 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c89b1ba
media-libs/libepoxy: Sync keywords to 9999 ebuild.
media-libs/libepoxy/libepoxy-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 882629e..aadac36 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -22,7 +22,7 @@ if [[ ${PV} = 9999* ]]; then
KEYWORDS=""
SRC_URI=""
else
- KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
SRC_URI="https://github.com/anholt/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2015-09-26 5:39 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2015-09-26 5:39 UTC (permalink / raw
To: gentoo-commits
commit: e46b18fbdad9189efc1cc6a861af9546b7df81f9
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 26 05:39:12 2015 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Sep 26 05:39:37 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e46b18fb
media-libs/libepoxy: Version bump to 1.3.1.
Bug: https://bugs.gentoo.org/561422
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/libepoxy-1.3.1.ebuild | 43 +++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index fcc7556..d130854 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1 +1,2 @@
DIST libepoxy-1.2.tar.gz 267110 SHA256 42c328440f60a5795835c5ec4bdfc1329e75bba16b6e22b3a87ed17e9679e8f6 SHA512 1104fc7e6cbb4bb95e422e7801491067806df6849690be4068b5eec33a5fc84672a5bb4666357e9a46d2fae436f83b37402b6cc0c4ee69627e48d48a4d32a2ed WHIRLPOOL 6a678b9999a909a858a6bd6d9695fd1b6093cd266c1b8c72c401c880a11c09aa9e819ec1459fd12e997ecf54460d7b1da0c476f79d27539218533fff53fc78a6
+DIST libepoxy-1.3.1.tar.gz 284227 SHA256 6700ddedffb827b42c72cce1e0be6fba67b678b19bf256e1b5efd3ea38cc2bb4 SHA512 7d83f01bbc6d2387e4e2ec8a94b05d6e7aa6d0513821a794d60544381a18874fa75ec1dfd2585824076708e2848ff8d5dc20e184af65a7cb602e7dfd010aaf53 WHIRLPOOL 2a91c3e0931b57e791a91f025c7e9b21d6404d9644a7dc47faf6b64a3f17838dc509d1860d38be9c08779ac35fb9c56606396fc02ccccc5833d4aaf78cfcc359
diff --git a/media-libs/libepoxy/libepoxy-1.3.1.ebuild b/media-libs/libepoxy/libepoxy-1.3.1.ebuild
new file mode 100644
index 0000000..aadac36
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.3.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=yes
+
+EGIT_REPO_URI="git://github.com/anholt/libepoxy.git"
+
+if [[ ${PV} = 9999* ]]; then
+ GIT_ECLASS="git-r3"
+fi
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_REQ_USE='xml(+)'
+inherit autotools-multilib ${GIT_ECLASS} python-any-r1
+
+DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+if [[ ${PV} = 9999* ]]; then
+ KEYWORDS=""
+ SRC_URI=""
+else
+ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ SRC_URI="https://github.com/anholt/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+RESTICT="test" # FIXME: tests fail when run from portage.
+
+DEPEND="${PYTHON_DEPS}
+ media-libs/mesa[egl]
+ x11-misc/util-macros
+ x11-libs/libX11"
+RDEPEND=""
+
+src_unpack() {
+ default
+ [[ $PV = 9999* ]] && git-r3_src_unpack
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2015-09-26 5:39 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2015-09-26 5:39 UTC (permalink / raw
To: gentoo-commits
commit: 3381de85bf4450d32dd77c744d475e478aa4d948
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 26 05:38:02 2015 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Sep 26 05:39:37 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3381de85
media-libs/libepoxy: Remove unused test USE flag.
media-libs/libepoxy/libepoxy-1.2.ebuild | 2 +-
media-libs/libepoxy/libepoxy-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.2.ebuild b/media-libs/libepoxy/libepoxy-1.2.ebuild
index e52f155..3c03676 100644
--- a/media-libs/libepoxy/libepoxy-1.2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.2.ebuild
@@ -28,7 +28,7 @@ fi
LICENSE="MIT"
SLOT="0"
-IUSE="test"
+IUSE=""
RESTICT="test" # FIXME: tests fail when run from portage.
DEPEND="${PYTHON_DEPS}
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index aadac36..0dfcf8c 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -28,7 +28,7 @@ fi
LICENSE="MIT"
SLOT="0"
-IUSE="test"
+IUSE=""
RESTICT="test" # FIXME: tests fail when run from portage.
DEPEND="${PYTHON_DEPS}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2015-12-19 19:59 Markus Meier
0 siblings, 0 replies; 152+ messages in thread
From: Markus Meier @ 2015-12-19 19:59 UTC (permalink / raw
To: gentoo-commits
commit: 226e3cc84eff5c4fbdb89d40adeb40efa384565f
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 19 19:59:18 2015 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Sat Dec 19 19:59:18 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=226e3cc8
media-libs/libepoxy: arm stable, bug #559062
Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="arm"
media-libs/libepoxy/libepoxy-1.3.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.3.1.ebuild b/media-libs/libepoxy/libepoxy-1.3.1.ebuild
index d95ea6b..82e776b 100644
--- a/media-libs/libepoxy/libepoxy-1.3.1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.3.1.ebuild
@@ -19,10 +19,10 @@ inherit autotools-multilib ${GIT_ECLASS} python-any-r1
DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
- KEYWORDS=""
+ KEYWORDS="arm"
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86"
+ KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86"
SRC_URI="https://github.com/anholt/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2016-02-03 5:10 Ian Delaney
0 siblings, 0 replies; 152+ messages in thread
From: Ian Delaney @ 2016-02-03 5:10 UTC (permalink / raw
To: gentoo-commits
commit: 16e89f33911102d3d7541933b444bf057c5f536e
Author: Holger Hoffstätte <holger.hoffstaette <AT> googlemail <DOT> com>
AuthorDate: Tue Feb 2 17:22:25 2016 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Tue Feb 2 17:22:25 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16e89f33
media-libs/libepoxy: add support for python 3.5
media-libs/libepoxy/libepoxy-1.3.1.ebuild | 2 +-
media-libs/libepoxy/libepoxy-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.3.1.ebuild b/media-libs/libepoxy/libepoxy-1.3.1.ebuild
index 401e85d..3cae16c 100644
--- a/media-libs/libepoxy/libepoxy-1.3.1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.3.1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
GIT_ECLASS="git-r3"
fi
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
PYTHON_REQ_USE='xml(+)'
inherit autotools-multilib ${GIT_ECLASS} python-any-r1
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 0dfcf8c..98ef5b0 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
GIT_ECLASS="git-r3"
fi
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
PYTHON_REQ_USE='xml(+)'
inherit autotools-multilib ${GIT_ECLASS} python-any-r1
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2016-03-04 3:59 Stephen Klimaszewski
0 siblings, 0 replies; 152+ messages in thread
From: Stephen Klimaszewski @ 2016-03-04 3:59 UTC (permalink / raw
To: gentoo-commits
commit: 5c1c0c4c5a93100f182887235258e882fa794bbe
Author: Steev Klimaszewski <steev <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 4 03:38:07 2016 +0000
Commit: Stephen Klimaszewski <steev <AT> gentoo <DOT> org>
CommitDate: Fri Mar 4 03:38:07 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c1c0c4c
media-libs/libepoxy: Keyword 1.3.1 for ~arm64
Tested on Cortex-A53
Package-Manager: portage-2.2.27
media-libs/libepoxy/libepoxy-1.3.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.3.1.ebuild b/media-libs/libepoxy/libepoxy-1.3.1.ebuild
index 3cae16c..2f7bd68 100644
--- a/media-libs/libepoxy/libepoxy-1.3.1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.3.1.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$
@@ -22,7 +22,7 @@ if [[ ${PV} = 9999* ]]; then
KEYWORDS="arm hppa ppc64"
SRC_URI=""
else
- KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
+ KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
SRC_URI="https://github.com/anholt/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2016-07-04 17:36 Chí-Thanh Christopher Nguyễn
0 siblings, 0 replies; 152+ messages in thread
From: Chí-Thanh Christopher Nguyễn @ 2016-07-04 17:36 UTC (permalink / raw
To: gentoo-commits
commit: 831e64cedcd599fcf164ff92ac936c8e896c011c
Author: Chí-Thanh Christopher Nguyễn <chithanh <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 4 17:37:06 2016 +0000
Commit: Chí-Thanh Christopher Nguyễn <chithanh <AT> gentoo <DOT> org>
CommitDate: Mon Jul 4 17:37:06 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=831e64ce
media-libs/libepoxy: fix mulitlib dependencies
Bug: https://bugs.gentoo.org/show_bug.cgi?id=541088
Package-Manager: portage-2.2.28
media-libs/libepoxy/libepoxy-1.3.1.ebuild | 8 ++++----
media-libs/libepoxy/libepoxy-9999.ebuild | 8 ++++----
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.3.1.ebuild b/media-libs/libepoxy/libepoxy-1.3.1.ebuild
index 7fc3ebf..bfb543c 100644
--- a/media-libs/libepoxy/libepoxy-1.3.1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.3.1.ebuild
@@ -19,7 +19,7 @@ inherit autotools-multilib ${GIT_ECLASS} python-any-r1
DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
- KEYWORDS="alpha arm hppa ppc64"
+ KEYWORDS=""
SRC_URI=""
else
KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
@@ -29,12 +29,12 @@ fi
LICENSE="MIT"
SLOT="0"
IUSE="test"
-RESTICT="test" # FIXME: tests fail when run from portage.
+RESTRICT="test" # FIXME: tests fail when run from portage.
DEPEND="${PYTHON_DEPS}
- media-libs/mesa[egl]
+ media-libs/mesa[egl,${MULTILIB_USEDEP}]
x11-misc/util-macros
- x11-libs/libX11"
+ x11-libs/libX11[${MULTILIB_USEDEP}]"
RDEPEND=""
src_unpack() {
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 98ef5b0..5d12655 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.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$
@@ -29,12 +29,12 @@ fi
LICENSE="MIT"
SLOT="0"
IUSE=""
-RESTICT="test" # FIXME: tests fail when run from portage.
+RESTRICT="test" # FIXME: tests fail when run from portage.
DEPEND="${PYTHON_DEPS}
- media-libs/mesa[egl]
+ media-libs/mesa[egl,${MULTILIB_USEDEP}]
x11-misc/util-macros
- x11-libs/libX11"
+ x11-libs/libX11[${MULTILIB_USEDEP}]"
RDEPEND=""
src_unpack() {
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-02-09 12:51 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2017-02-09 12:51 UTC (permalink / raw
To: gentoo-commits
commit: 51be1c672283fa13e97fb7584598172b5854fffd
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 9 12:45:13 2017 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Feb 9 12:51:21 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51be1c67
media-libs/libepoxy: Version bump to 1.4.0.
Bug: https://bugs.gentoo.org/608584
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/libepoxy-1.4.0.ebuild | 42 +++++++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index d130854651..2613539cfc 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,2 +1,3 @@
DIST libepoxy-1.2.tar.gz 267110 SHA256 42c328440f60a5795835c5ec4bdfc1329e75bba16b6e22b3a87ed17e9679e8f6 SHA512 1104fc7e6cbb4bb95e422e7801491067806df6849690be4068b5eec33a5fc84672a5bb4666357e9a46d2fae436f83b37402b6cc0c4ee69627e48d48a4d32a2ed WHIRLPOOL 6a678b9999a909a858a6bd6d9695fd1b6093cd266c1b8c72c401c880a11c09aa9e819ec1459fd12e997ecf54460d7b1da0c476f79d27539218533fff53fc78a6
DIST libepoxy-1.3.1.tar.gz 284227 SHA256 6700ddedffb827b42c72cce1e0be6fba67b678b19bf256e1b5efd3ea38cc2bb4 SHA512 7d83f01bbc6d2387e4e2ec8a94b05d6e7aa6d0513821a794d60544381a18874fa75ec1dfd2585824076708e2848ff8d5dc20e184af65a7cb602e7dfd010aaf53 WHIRLPOOL 2a91c3e0931b57e791a91f025c7e9b21d6404d9644a7dc47faf6b64a3f17838dc509d1860d38be9c08779ac35fb9c56606396fc02ccccc5833d4aaf78cfcc359
+DIST libepoxy-1.4.0.tar.gz 307980 SHA256 935c74d4f8bdb1d2435f58ea95ac2a470368123e8e6f0618f6bc147c0956701b SHA512 b802a8647643c7a6dd78286b9bd019670180f2384b3c76187cb21bf68dd9c44a249034b1e3acaf4740039a367930a5b8cddbe90870dd7627e11477be6481e2c6 WHIRLPOOL 8b0cf62788dae0811b99bf0eed30f5e639661716defac5895311c7b3475950b259d5e15b7a4fbfd7beead6a3893981b9ca1f97d0c7558601c48536bc9e8afcba
diff --git a/media-libs/libepoxy/libepoxy-1.4.0.ebuild b/media-libs/libepoxy/libepoxy-1.4.0.ebuild
new file mode 100644
index 0000000000..b302ca17ba
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.4.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=yes
+
+EGIT_REPO_URI="git://github.com/anholt/libepoxy.git"
+
+if [[ ${PV} = 9999* ]]; then
+ GIT_ECLASS="git-r3"
+fi
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_REQ_USE='xml(+)'
+inherit autotools-multilib ${GIT_ECLASS} python-any-r1
+
+DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+if [[ ${PV} = 9999* ]]; then
+ KEYWORDS=""
+ SRC_URI=""
+else
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+DEPEND="${PYTHON_DEPS}
+ media-libs/mesa[egl,${MULTILIB_USEDEP}]
+ x11-misc/util-macros
+ x11-libs/libX11[${MULTILIB_USEDEP}]"
+RDEPEND=""
+
+src_unpack() {
+ default
+ [[ $PV = 9999* ]] && git-r3_src_unpack
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-02-09 12:51 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2017-02-09 12:51 UTC (permalink / raw
To: gentoo-commits
commit: da96c07a0551c0434d87f87bdb648e5bca3d614d
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 9 12:49:40 2017 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Feb 9 12:51:21 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da96c07a
media-libs/libepoxy: Remove RESTRICT="test"
media-libs/libepoxy/libepoxy-9999.ebuild | 1 -
1 file changed, 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 16148fedbf..b302ca17ba 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -29,7 +29,6 @@ fi
LICENSE="MIT"
SLOT="0"
IUSE="test"
-RESTRICT="test" # FIXME: tests fail when run from portage.
DEPEND="${PYTHON_DEPS}
media-libs/mesa[egl,${MULTILIB_USEDEP}]
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-02-09 12:51 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2017-02-09 12:51 UTC (permalink / raw
To: gentoo-commits
commit: 2f7fdbed40cf24773496b70988d6f8f299b92b4a
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 9 12:44:35 2017 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Feb 9 12:51:21 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f7fdbed
media-libs/libepoxy: Sync changes to 9999 ebuild.
media-libs/libepoxy/libepoxy-9999.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 4665cdff12..16148fedbf 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.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$
@@ -22,13 +22,13 @@ if [[ ${PV} = 9999* ]]; then
KEYWORDS=""
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
- SRC_URI="https://github.com/anholt/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
LICENSE="MIT"
SLOT="0"
-IUSE=""
+IUSE="test"
RESTRICT="test" # FIXME: tests fail when run from portage.
DEPEND="${PYTHON_DEPS}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-03-04 7:50 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2017-03-04 7:50 UTC (permalink / raw
To: gentoo-commits
commit: 7084c5dc5801965f5106ca830abbe19bf1cdfc66
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 4 07:41:21 2017 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Mar 4 07:49:58 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7084c5dc
media-libs/libepoxy: Drop old version 1.4.0.
media-libs/libepoxy/Manifest | 1 -
media-libs/libepoxy/libepoxy-1.4.0.ebuild | 41 -------------------------------
2 files changed, 42 deletions(-)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index e0fb8d97441..6193874aff0 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,4 +1,3 @@
DIST libepoxy-1.2.tar.gz 267110 SHA256 42c328440f60a5795835c5ec4bdfc1329e75bba16b6e22b3a87ed17e9679e8f6 SHA512 1104fc7e6cbb4bb95e422e7801491067806df6849690be4068b5eec33a5fc84672a5bb4666357e9a46d2fae436f83b37402b6cc0c4ee69627e48d48a4d32a2ed WHIRLPOOL 6a678b9999a909a858a6bd6d9695fd1b6093cd266c1b8c72c401c880a11c09aa9e819ec1459fd12e997ecf54460d7b1da0c476f79d27539218533fff53fc78a6
DIST libepoxy-1.3.1.tar.gz 284227 SHA256 6700ddedffb827b42c72cce1e0be6fba67b678b19bf256e1b5efd3ea38cc2bb4 SHA512 7d83f01bbc6d2387e4e2ec8a94b05d6e7aa6d0513821a794d60544381a18874fa75ec1dfd2585824076708e2848ff8d5dc20e184af65a7cb602e7dfd010aaf53 WHIRLPOOL 2a91c3e0931b57e791a91f025c7e9b21d6404d9644a7dc47faf6b64a3f17838dc509d1860d38be9c08779ac35fb9c56606396fc02ccccc5833d4aaf78cfcc359
-DIST libepoxy-1.4.0.tar.gz 307980 SHA256 935c74d4f8bdb1d2435f58ea95ac2a470368123e8e6f0618f6bc147c0956701b SHA512 b802a8647643c7a6dd78286b9bd019670180f2384b3c76187cb21bf68dd9c44a249034b1e3acaf4740039a367930a5b8cddbe90870dd7627e11477be6481e2c6 WHIRLPOOL 8b0cf62788dae0811b99bf0eed30f5e639661716defac5895311c7b3475950b259d5e15b7a4fbfd7beead6a3893981b9ca1f97d0c7558601c48536bc9e8afcba
DIST libepoxy-1.4.1.tar.gz 309759 SHA256 da8f42c355b62c2c3ff6bc534c2a24099707b249c2af6eaf8db54b94c364a504 SHA512 6656df4d447bd581b7701931070e03accb5b105426248f2b3360ba59bf50e09ce8be4c9691904b517b92fbfe241f8f3f435de116ca77ea2a0ecf1c121fb24a11 WHIRLPOOL c44047342a43306fa72fe6e4b21142064a42e6d1b079a386d929f3b9244e3cd664bf406cb98f8cb68a508b363f9c8a794b4f6f98a4bf82ffa739b4be00401b2f
diff --git a/media-libs/libepoxy/libepoxy-1.4.0.ebuild b/media-libs/libepoxy/libepoxy-1.4.0.ebuild
deleted file mode 100644
index a1390b27cae..00000000000
--- a/media-libs/libepoxy/libepoxy-1.4.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
-
-EGIT_REPO_URI="git://github.com/anholt/libepoxy.git"
-
-if [[ ${PV} = 9999* ]]; then
- GIT_ECLASS="git-r3"
-fi
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-PYTHON_REQ_USE='xml(+)'
-inherit autotools-multilib ${GIT_ECLASS} python-any-r1
-
-DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-if [[ ${PV} = 9999* ]]; then
- KEYWORDS=""
- SRC_URI=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-
-DEPEND="${PYTHON_DEPS}
- media-libs/mesa[egl,${MULTILIB_USEDEP}]
- x11-misc/util-macros
- x11-libs/libX11[${MULTILIB_USEDEP}]"
-RDEPEND=""
-
-src_unpack() {
- default
- [[ $PV = 9999* ]] && git-r3_src_unpack
-}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-03-04 7:50 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2017-03-04 7:50 UTC (permalink / raw
To: gentoo-commits
commit: de0b31b73bae3dbdf79c68fc63c5b51cc1907ff9
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 4 07:40:50 2017 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Mar 4 07:49:58 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de0b31b7
media-libs/libepoxy: Version bump to 1.4.1.
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/libepoxy-1.4.1.ebuild | 50 +++++++++++++++++++++++++++++++
2 files changed, 51 insertions(+)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 2613539cfca..e0fb8d97441 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,3 +1,4 @@
DIST libepoxy-1.2.tar.gz 267110 SHA256 42c328440f60a5795835c5ec4bdfc1329e75bba16b6e22b3a87ed17e9679e8f6 SHA512 1104fc7e6cbb4bb95e422e7801491067806df6849690be4068b5eec33a5fc84672a5bb4666357e9a46d2fae436f83b37402b6cc0c4ee69627e48d48a4d32a2ed WHIRLPOOL 6a678b9999a909a858a6bd6d9695fd1b6093cd266c1b8c72c401c880a11c09aa9e819ec1459fd12e997ecf54460d7b1da0c476f79d27539218533fff53fc78a6
DIST libepoxy-1.3.1.tar.gz 284227 SHA256 6700ddedffb827b42c72cce1e0be6fba67b678b19bf256e1b5efd3ea38cc2bb4 SHA512 7d83f01bbc6d2387e4e2ec8a94b05d6e7aa6d0513821a794d60544381a18874fa75ec1dfd2585824076708e2848ff8d5dc20e184af65a7cb602e7dfd010aaf53 WHIRLPOOL 2a91c3e0931b57e791a91f025c7e9b21d6404d9644a7dc47faf6b64a3f17838dc509d1860d38be9c08779ac35fb9c56606396fc02ccccc5833d4aaf78cfcc359
DIST libepoxy-1.4.0.tar.gz 307980 SHA256 935c74d4f8bdb1d2435f58ea95ac2a470368123e8e6f0618f6bc147c0956701b SHA512 b802a8647643c7a6dd78286b9bd019670180f2384b3c76187cb21bf68dd9c44a249034b1e3acaf4740039a367930a5b8cddbe90870dd7627e11477be6481e2c6 WHIRLPOOL 8b0cf62788dae0811b99bf0eed30f5e639661716defac5895311c7b3475950b259d5e15b7a4fbfd7beead6a3893981b9ca1f97d0c7558601c48536bc9e8afcba
+DIST libepoxy-1.4.1.tar.gz 309759 SHA256 da8f42c355b62c2c3ff6bc534c2a24099707b249c2af6eaf8db54b94c364a504 SHA512 6656df4d447bd581b7701931070e03accb5b105426248f2b3360ba59bf50e09ce8be4c9691904b517b92fbfe241f8f3f435de116ca77ea2a0ecf1c121fb24a11 WHIRLPOOL c44047342a43306fa72fe6e4b21142064a42e6d1b079a386d929f3b9244e3cd664bf406cb98f8cb68a508b363f9c8a794b4f6f98a4bf82ffa739b4be00401b2f
diff --git a/media-libs/libepoxy/libepoxy-1.4.1.ebuild b/media-libs/libepoxy/libepoxy-1.4.1.ebuild
new file mode 100644
index 00000000000..8b741660cf3
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.4.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_REPO_URI="git://github.com/anholt/libepoxy.git"
+
+if [[ ${PV} = 9999* ]]; then
+ GIT_ECLASS="git-r3"
+fi
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_REQ_USE='xml(+)'
+inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
+
+DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+if [[ ${PV} = 9999* ]]; then
+ KEYWORDS=""
+ SRC_URI=""
+else
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test X"
+
+DEPEND="${PYTHON_DEPS}
+ media-libs/mesa[egl,${MULTILIB_USEDEP}]
+ x11-misc/util-macros
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
+RDEPEND=""
+
+src_unpack() {
+ default
+ [[ $PV = 9999* ]] && git-r3_src_unpack
+}
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+multilib_src_configure() {
+ ECONF_SOURCE=${S} \
+ econf \
+ $(use_enable X glx)
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-03-04 7:50 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2017-03-04 7:50 UTC (permalink / raw
To: gentoo-commits
commit: 8824c4ff99ce377f488b2a95be19809b17f6a5fd
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 4 07:37:13 2017 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Mar 4 07:49:54 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8824c4ff
media-libs/libepoxy: Add USE=X and port to EAPI=6.
Patch by dolphinling.
Bug: https://bugs.gentoo.org/584436
media-libs/libepoxy/libepoxy-9999.ebuild | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index a1390b27cae..8b741660cf3 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -1,9 +1,7 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
+EAPI=6
EGIT_REPO_URI="git://github.com/anholt/libepoxy.git"
@@ -13,7 +11,7 @@ fi
PYTHON_COMPAT=( python{2_7,3_4,3_5} )
PYTHON_REQ_USE='xml(+)'
-inherit autotools-multilib ${GIT_ECLASS} python-any-r1
+inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
HOMEPAGE="https://github.com/anholt/libepoxy"
@@ -27,15 +25,26 @@ fi
LICENSE="MIT"
SLOT="0"
-IUSE="test"
+IUSE="test X"
DEPEND="${PYTHON_DEPS}
media-libs/mesa[egl,${MULTILIB_USEDEP}]
x11-misc/util-macros
- x11-libs/libX11[${MULTILIB_USEDEP}]"
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
RDEPEND=""
src_unpack() {
default
[[ $PV = 9999* ]] && git-r3_src_unpack
}
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+multilib_src_configure() {
+ ECONF_SOURCE=${S} \
+ econf \
+ $(use_enable X glx)
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-03-05 17:26 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2017-03-05 17:26 UTC (permalink / raw
To: gentoo-commits
commit: c8da55057f5e1357bcad212eda85892aa8e8562f
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 5 17:25:31 2017 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Mar 5 17:25:57 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8da5505
media-libs/libepoxy: Enable USE=+X by default.
media-libs/libepoxy/libepoxy-1.4.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.4.1.ebuild b/media-libs/libepoxy/libepoxy-1.4.1.ebuild
index 8b741660cf3..8429b558b4c 100644
--- a/media-libs/libepoxy/libepoxy-1.4.1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.4.1.ebuild
@@ -25,7 +25,7 @@ fi
LICENSE="MIT"
SLOT="0"
-IUSE="test X"
+IUSE="test +X"
DEPEND="${PYTHON_DEPS}
media-libs/mesa[egl,${MULTILIB_USEDEP}]
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-03-16 16:59 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2017-03-16 16:59 UTC (permalink / raw
To: gentoo-commits
commit: db30ca8d28c1eca21cd2ad8eaa15642f5affd4a1
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 16 16:58:41 2017 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 16:58:47 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db30ca8d
media-libs/libepoxy: Drop old.
media-libs/libepoxy/Manifest | 2 --
media-libs/libepoxy/libepoxy-1.2.ebuild | 42 -------------------------------
media-libs/libepoxy/libepoxy-1.3.1.ebuild | 42 -------------------------------
3 files changed, 86 deletions(-)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 6193874aff0..202b3f512b8 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,3 +1 @@
-DIST libepoxy-1.2.tar.gz 267110 SHA256 42c328440f60a5795835c5ec4bdfc1329e75bba16b6e22b3a87ed17e9679e8f6 SHA512 1104fc7e6cbb4bb95e422e7801491067806df6849690be4068b5eec33a5fc84672a5bb4666357e9a46d2fae436f83b37402b6cc0c4ee69627e48d48a4d32a2ed WHIRLPOOL 6a678b9999a909a858a6bd6d9695fd1b6093cd266c1b8c72c401c880a11c09aa9e819ec1459fd12e997ecf54460d7b1da0c476f79d27539218533fff53fc78a6
-DIST libepoxy-1.3.1.tar.gz 284227 SHA256 6700ddedffb827b42c72cce1e0be6fba67b678b19bf256e1b5efd3ea38cc2bb4 SHA512 7d83f01bbc6d2387e4e2ec8a94b05d6e7aa6d0513821a794d60544381a18874fa75ec1dfd2585824076708e2848ff8d5dc20e184af65a7cb602e7dfd010aaf53 WHIRLPOOL 2a91c3e0931b57e791a91f025c7e9b21d6404d9644a7dc47faf6b64a3f17838dc509d1860d38be9c08779ac35fb9c56606396fc02ccccc5833d4aaf78cfcc359
DIST libepoxy-1.4.1.tar.gz 309759 SHA256 da8f42c355b62c2c3ff6bc534c2a24099707b249c2af6eaf8db54b94c364a504 SHA512 6656df4d447bd581b7701931070e03accb5b105426248f2b3360ba59bf50e09ce8be4c9691904b517b92fbfe241f8f3f435de116ca77ea2a0ecf1c121fb24a11 WHIRLPOOL c44047342a43306fa72fe6e4b21142064a42e6d1b079a386d929f3b9244e3cd664bf406cb98f8cb68a508b363f9c8a794b4f6f98a4bf82ffa739b4be00401b2f
diff --git a/media-libs/libepoxy/libepoxy-1.2.ebuild b/media-libs/libepoxy/libepoxy-1.2.ebuild
deleted file mode 100644
index 6d0aaa00f3b..00000000000
--- a/media-libs/libepoxy/libepoxy-1.2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
-
-EGIT_REPO_URI="git://github.com/anholt/libepoxy.git"
-
-if [[ ${PV} = 9999* ]]; then
- GIT_ECLASS="git-r3"
-fi
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-PYTHON_REQ_USE='xml(+)'
-inherit autotools-multilib ${GIT_ECLASS} python-any-r1
-
-DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-if [[ ${PV} = 9999* ]]; then
- KEYWORDS=""
- SRC_URI=""
-else
- KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86"
- SRC_URI="https://github.com/anholt/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-RESTICT="test" # FIXME: tests fail when run from portage.
-
-DEPEND="${PYTHON_DEPS}
- media-libs/mesa[egl]
- x11-misc/util-macros
- x11-libs/libX11"
-RDEPEND=""
-
-src_unpack() {
- default
- [[ $PV = 9999* ]] && git-r3_src_unpack
-}
diff --git a/media-libs/libepoxy/libepoxy-1.3.1.ebuild b/media-libs/libepoxy/libepoxy-1.3.1.ebuild
deleted file mode 100644
index fe9076777f1..00000000000
--- a/media-libs/libepoxy/libepoxy-1.3.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
-
-EGIT_REPO_URI="git://github.com/anholt/libepoxy.git"
-
-if [[ ${PV} = 9999* ]]; then
- GIT_ECLASS="git-r3"
-fi
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-PYTHON_REQ_USE='xml(+)'
-inherit autotools-multilib ${GIT_ECLASS} python-any-r1
-
-DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-if [[ ${PV} = 9999* ]]; then
- KEYWORDS=""
- SRC_URI=""
-else
- KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86"
- SRC_URI="https://github.com/anholt/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-RESTRICT="test" # FIXME: tests fail when run from portage.
-
-DEPEND="${PYTHON_DEPS}
- media-libs/mesa[egl,${MULTILIB_USEDEP}]
- x11-misc/util-macros
- x11-libs/libX11[${MULTILIB_USEDEP}]"
-RDEPEND=""
-
-src_unpack() {
- default
- [[ $PV = 9999* ]] && git-r3_src_unpack
-}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-05-22 22:32 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2017-05-22 22:32 UTC (permalink / raw
To: gentoo-commits
commit: ba27860502d98d10a4fddcb2d41336da66a6eb16
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon May 22 22:29:29 2017 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon May 22 22:29:29 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba278605
media-libs/libepoxy: Enable USE=+X by default.
Missed in commit c8da55057f.
media-libs/libepoxy/libepoxy-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 8b741660cf3..8429b558b4c 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -25,7 +25,7 @@ fi
LICENSE="MIT"
SLOT="0"
-IUSE="test X"
+IUSE="test +X"
DEPEND="${PYTHON_DEPS}
media-libs/mesa[egl,${MULTILIB_USEDEP}]
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-05-22 22:32 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2017-05-22 22:32 UTC (permalink / raw
To: gentoo-commits
commit: 028c50a850c742179f8a5bd143f3acdb8e876a0f
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon May 22 22:30:56 2017 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon May 22 22:32:13 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=028c50a8
media-libs/libepoxy: Version bump to 1.4.2
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/libepoxy-1.4.2.ebuild | 49 +++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 202b3f512b8..8d22cf3d00a 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1 +1,2 @@
DIST libepoxy-1.4.1.tar.gz 309759 SHA256 da8f42c355b62c2c3ff6bc534c2a24099707b249c2af6eaf8db54b94c364a504 SHA512 6656df4d447bd581b7701931070e03accb5b105426248f2b3360ba59bf50e09ce8be4c9691904b517b92fbfe241f8f3f435de116ca77ea2a0ecf1c121fb24a11 WHIRLPOOL c44047342a43306fa72fe6e4b21142064a42e6d1b079a386d929f3b9244e3cd664bf406cb98f8cb68a508b363f9c8a794b4f6f98a4bf82ffa739b4be00401b2f
+DIST libepoxy-1.4.2.tar.gz 309973 SHA256 61613b2cdc0167917229aa308d6eab2473f0408f84f3ccbd77d8677b42e89e39 SHA512 b94e1fe749c63a82f38369ff62b7d0d8cf1c55884159f030dc2919c17daf5811dd71cfd6a663edb38df66ff4ca53120a6a53501568cc8a582f08d4ae82fe9d89 WHIRLPOOL 83a6519ccc46126038b14a51eef36663dcf434f094685bca5e7a55f539d8ab2502eeab44d1471d8ecb1fe09156ccf04b0f9c7dc005c824feebe46ae342df4714
diff --git a/media-libs/libepoxy/libepoxy-1.4.2.ebuild b/media-libs/libepoxy/libepoxy-1.4.2.ebuild
new file mode 100644
index 00000000000..e68473e91a5
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.4.2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_REPO_URI="git://github.com/anholt/libepoxy.git"
+
+if [[ ${PV} = 9999* ]]; then
+ GIT_ECLASS="git-r3"
+fi
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_REQ_USE='xml(+)'
+inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
+
+DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+if [[ ${PV} = 9999* ]]; then
+ SRC_URI=""
+else
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test +X"
+
+DEPEND="${PYTHON_DEPS}
+ media-libs/mesa[egl,${MULTILIB_USEDEP}]
+ x11-misc/util-macros
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
+RDEPEND=""
+
+src_unpack() {
+ default
+ [[ $PV = 9999* ]] && git-r3_src_unpack
+}
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+multilib_src_configure() {
+ ECONF_SOURCE=${S} \
+ econf \
+ $(use_enable X glx)
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-05-22 22:32 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2017-05-22 22:32 UTC (permalink / raw
To: gentoo-commits
commit: 5b5f708396578af2cbe7e4aec9e8190d6957c9d6
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon May 22 22:31:34 2017 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon May 22 22:32:11 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b5f7083
media-libs/libepoxy: Drop empty KEYWORDS assignment
media-libs/libepoxy/libepoxy-9999.ebuild | 1 -
1 file changed, 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 8429b558b4c..e68473e91a5 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -16,7 +16,6 @@ inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
- KEYWORDS=""
SRC_URI=""
else
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-05-31 13:06 Agostino Sarubbo
0 siblings, 0 replies; 152+ messages in thread
From: Agostino Sarubbo @ 2017-05-31 13:06 UTC (permalink / raw
To: gentoo-commits
commit: 1f1ed2640fc1000309985f6df64312de0c263e37
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed May 31 13:04:36 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed May 31 13:04:36 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f1ed264
media-libs/libepoxy: amd64 stable wrt bug #620234
Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.4.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.4.2.ebuild b/media-libs/libepoxy/libepoxy-1.4.2.ebuild
index e68473e91a5..3b810343abb 100644
--- a/media-libs/libepoxy/libepoxy-1.4.2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.4.2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-06-04 19:20 Tobias Klausmann
0 siblings, 0 replies; 152+ messages in thread
From: Tobias Klausmann @ 2017-06-04 19:20 UTC (permalink / raw
To: gentoo-commits
commit: 084d46b7747a99a42b5642c5958a7da521f0253f
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 4 19:20:12 2017 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Sun Jun 4 19:20:12 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=084d46b7
media-libs/libepoxy-1.4.2-r0: add alpha keyword
Gentoo-Bug: 620234
media-libs/libepoxy/libepoxy-1.4.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.4.2.ebuild b/media-libs/libepoxy/libepoxy-1.4.2.ebuild
index 980132c9dfc..0f9a9e43e85 100644
--- a/media-libs/libepoxy/libepoxy-1.4.2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.4.2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
+ KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-06-21 4:07 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2017-06-21 4:07 UTC (permalink / raw
To: gentoo-commits
commit: 1b93fc04ea2711e0c7de03bca649f65e641d9703
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 21 04:05:08 2017 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Wed Jun 21 04:07:31 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b93fc04
media-libs/libepoxy: Version bump to 1.4.3
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/libepoxy-1.4.3.ebuild | 49 +++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 8d22cf3d00a..04407d714c2 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,2 +1,3 @@
DIST libepoxy-1.4.1.tar.gz 309759 SHA256 da8f42c355b62c2c3ff6bc534c2a24099707b249c2af6eaf8db54b94c364a504 SHA512 6656df4d447bd581b7701931070e03accb5b105426248f2b3360ba59bf50e09ce8be4c9691904b517b92fbfe241f8f3f435de116ca77ea2a0ecf1c121fb24a11 WHIRLPOOL c44047342a43306fa72fe6e4b21142064a42e6d1b079a386d929f3b9244e3cd664bf406cb98f8cb68a508b363f9c8a794b4f6f98a4bf82ffa739b4be00401b2f
DIST libepoxy-1.4.2.tar.gz 309973 SHA256 61613b2cdc0167917229aa308d6eab2473f0408f84f3ccbd77d8677b42e89e39 SHA512 b94e1fe749c63a82f38369ff62b7d0d8cf1c55884159f030dc2919c17daf5811dd71cfd6a663edb38df66ff4ca53120a6a53501568cc8a582f08d4ae82fe9d89 WHIRLPOOL 83a6519ccc46126038b14a51eef36663dcf434f094685bca5e7a55f539d8ab2502eeab44d1471d8ecb1fe09156ccf04b0f9c7dc005c824feebe46ae342df4714
+DIST libepoxy-1.4.3.tar.gz 310823 SHA256 7f18518ba0036f7670f837a510bb25be4b3e7fba97d75193b24f7220de55b515 SHA512 41c7a4eea66c89346b0ec71407b2d22bf645ed0ef81ebad560370903f138ed48abb6bc6bcc88c75a3a05497acc6720397db828d61301599c05040263a9f4f7f0 WHIRLPOOL c935b9355728837bc7503b5610c512538e7718ec0db5b6efe232fd3eb2d522c3dc07e5eeb498b9749a64ee2562bd919933d6f46f5dd260a17a1ca230993c55d4
diff --git a/media-libs/libepoxy/libepoxy-1.4.3.ebuild b/media-libs/libepoxy/libepoxy-1.4.3.ebuild
new file mode 100644
index 00000000000..e68473e91a5
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.4.3.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_REPO_URI="git://github.com/anholt/libepoxy.git"
+
+if [[ ${PV} = 9999* ]]; then
+ GIT_ECLASS="git-r3"
+fi
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_REQ_USE='xml(+)'
+inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
+
+DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+if [[ ${PV} = 9999* ]]; then
+ SRC_URI=""
+else
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test +X"
+
+DEPEND="${PYTHON_DEPS}
+ media-libs/mesa[egl,${MULTILIB_USEDEP}]
+ x11-misc/util-macros
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
+RDEPEND=""
+
+src_unpack() {
+ default
+ [[ $PV = 9999* ]] && git-r3_src_unpack
+}
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+multilib_src_configure() {
+ ECONF_SOURCE=${S} \
+ econf \
+ $(use_enable X glx)
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-06-24 8:40 Markus Meier
0 siblings, 0 replies; 152+ messages in thread
From: Markus Meier @ 2017-06-24 8:40 UTC (permalink / raw
To: gentoo-commits
commit: 4f8e1f801d321e91043893fb522758bdcfebf26b
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 24 08:39:31 2017 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Sat Jun 24 08:39:31 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f8e1f80
media-libs/libepoxy: arm stable, bug #620234
Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"
media-libs/libepoxy/libepoxy-1.4.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.4.2.ebuild b/media-libs/libepoxy/libepoxy-1.4.2.ebuild
index d999fa2375d..be67ee01b3f 100644
--- a/media-libs/libepoxy/libepoxy-1.4.2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.4.2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86"
+ KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-07-30 9:38 Michał Górny
0 siblings, 0 replies; 152+ messages in thread
From: Michał Górny @ 2017-07-30 9:38 UTC (permalink / raw
To: gentoo-commits
commit: 7968ea0b9a1fd5f33a62c98b4e88a90fe570f1d9
Author: David Hicks <david <AT> hicks <DOT> id <DOT> au>
AuthorDate: Sat Jul 29 16:42:32 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul 30 09:38:03 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7968ea0b
media-libs/libepoxy: use HTTPS for GitHub
Package-Manager: Portage-2.3.6, Repoman-2.3.3
media-libs/libepoxy/libepoxy-1.4.1.ebuild | 2 +-
media-libs/libepoxy/libepoxy-1.4.2.ebuild | 2 +-
media-libs/libepoxy/libepoxy-1.4.3.ebuild | 2 +-
media-libs/libepoxy/libepoxy-9999.ebuild | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.4.1.ebuild b/media-libs/libepoxy/libepoxy-1.4.1.ebuild
index 5bd6b17d82c..e4412e94a96 100644
--- a/media-libs/libepoxy/libepoxy-1.4.1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.4.1.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-EGIT_REPO_URI="git://github.com/anholt/libepoxy.git"
+EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
if [[ ${PV} = 9999* ]]; then
GIT_ECLASS="git-r3"
diff --git a/media-libs/libepoxy/libepoxy-1.4.2.ebuild b/media-libs/libepoxy/libepoxy-1.4.2.ebuild
index be67ee01b3f..c81920132ff 100644
--- a/media-libs/libepoxy/libepoxy-1.4.2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.4.2.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-EGIT_REPO_URI="git://github.com/anholt/libepoxy.git"
+EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
if [[ ${PV} = 9999* ]]; then
GIT_ECLASS="git-r3"
diff --git a/media-libs/libepoxy/libepoxy-1.4.3.ebuild b/media-libs/libepoxy/libepoxy-1.4.3.ebuild
index e68473e91a5..5b6d700758f 100644
--- a/media-libs/libepoxy/libepoxy-1.4.3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.4.3.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-EGIT_REPO_URI="git://github.com/anholt/libepoxy.git"
+EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
if [[ ${PV} = 9999* ]]; then
GIT_ECLASS="git-r3"
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index e68473e91a5..5b6d700758f 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-EGIT_REPO_URI="git://github.com/anholt/libepoxy.git"
+EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
if [[ ${PV} = 9999* ]]; then
GIT_ECLASS="git-r3"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-09-16 19:34 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2017-09-16 19:34 UTC (permalink / raw
To: gentoo-commits
commit: d386f9d533a37699f55f9e67d951fb3ef56a859e
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 16 19:34:10 2017 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Sep 16 19:34:10 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d386f9d5
media-libs/libepoxy: Switch to using the meson build system
media-libs/libepoxy/libepoxy-9999.ebuild | 24 ++++++++++++++++--------
1 file changed, 16 insertions(+), 8 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 5b6d700758f..633cc77c96a 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -11,7 +11,7 @@ fi
PYTHON_COMPAT=( python{2_7,3_4,3_5} )
PYTHON_REQ_USE='xml(+)'
-inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
+inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
HOMEPAGE="https://github.com/anholt/libepoxy"
@@ -37,13 +37,21 @@ src_unpack() {
[[ $PV = 9999* ]] && git-r3_src_unpack
}
-src_prepare() {
- default
- eautoreconf
+multilib_src_configure() {
+ local emesonargs=(
+ -Denable-glx=$(usex X)
+ )
+ meson_src_configure
}
-multilib_src_configure() {
- ECONF_SOURCE=${S} \
- econf \
- $(use_enable X glx)
+multilib_src_compile() {
+ meson_src_compile
+}
+
+multilib_src_test() {
+ meson_src_test
+}
+
+multilib_src_install() {
+ meson_src_install
}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2017-12-10 10:17 Pacho Ramos
0 siblings, 0 replies; 152+ messages in thread
From: Pacho Ramos @ 2017-12-10 10:17 UTC (permalink / raw
To: gentoo-commits
commit: 2d01c7e79d0164e66f907682ae16e4a72b292638
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 9 20:01:11 2017 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Dec 10 10:15:01 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d01c7e7
media-libs/libepoxy: Add support for newer python
Package-Manager: Portage-2.3.16, Repoman-2.3.6
media-libs/libepoxy/Manifest | 4 ++--
media-libs/libepoxy/libepoxy-1.4.3.ebuild | 2 +-
media-libs/libepoxy/libepoxy-9999.ebuild | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 04407d714c2..a1cb57c0720 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,3 +1,3 @@
DIST libepoxy-1.4.1.tar.gz 309759 SHA256 da8f42c355b62c2c3ff6bc534c2a24099707b249c2af6eaf8db54b94c364a504 SHA512 6656df4d447bd581b7701931070e03accb5b105426248f2b3360ba59bf50e09ce8be4c9691904b517b92fbfe241f8f3f435de116ca77ea2a0ecf1c121fb24a11 WHIRLPOOL c44047342a43306fa72fe6e4b21142064a42e6d1b079a386d929f3b9244e3cd664bf406cb98f8cb68a508b363f9c8a794b4f6f98a4bf82ffa739b4be00401b2f
-DIST libepoxy-1.4.2.tar.gz 309973 SHA256 61613b2cdc0167917229aa308d6eab2473f0408f84f3ccbd77d8677b42e89e39 SHA512 b94e1fe749c63a82f38369ff62b7d0d8cf1c55884159f030dc2919c17daf5811dd71cfd6a663edb38df66ff4ca53120a6a53501568cc8a582f08d4ae82fe9d89 WHIRLPOOL 83a6519ccc46126038b14a51eef36663dcf434f094685bca5e7a55f539d8ab2502eeab44d1471d8ecb1fe09156ccf04b0f9c7dc005c824feebe46ae342df4714
-DIST libepoxy-1.4.3.tar.gz 310823 SHA256 7f18518ba0036f7670f837a510bb25be4b3e7fba97d75193b24f7220de55b515 SHA512 41c7a4eea66c89346b0ec71407b2d22bf645ed0ef81ebad560370903f138ed48abb6bc6bcc88c75a3a05497acc6720397db828d61301599c05040263a9f4f7f0 WHIRLPOOL c935b9355728837bc7503b5610c512538e7718ec0db5b6efe232fd3eb2d522c3dc07e5eeb498b9749a64ee2562bd919933d6f46f5dd260a17a1ca230993c55d4
+DIST libepoxy-1.4.2.tar.gz 309973 BLAKE2B 029948aea64db917e782a57c901f537be796b269bcfdc9f4238db4fae41d3d11f68def2288d73a673b7e2a159e7ed2226761e4ebf603ec4f0fdcaf7f56eb02d1 SHA512 b94e1fe749c63a82f38369ff62b7d0d8cf1c55884159f030dc2919c17daf5811dd71cfd6a663edb38df66ff4ca53120a6a53501568cc8a582f08d4ae82fe9d89
+DIST libepoxy-1.4.3.tar.gz 310823 BLAKE2B 6eab12a0ecf68a1bda3484c7cd71c0b3d62391e2bee8efd3c0fe7970ee4c3672f2dd81547d3884b301165accf3a8ce91a7c2a2e9686b1ca43c7f37cd15c5c946 SHA512 41c7a4eea66c89346b0ec71407b2d22bf645ed0ef81ebad560370903f138ed48abb6bc6bcc88c75a3a05497acc6720397db828d61301599c05040263a9f4f7f0
diff --git a/media-libs/libepoxy/libepoxy-1.4.3.ebuild b/media-libs/libepoxy/libepoxy-1.4.3.ebuild
index 5b6d700758f..f3a593bfc08 100644
--- a/media-libs/libepoxy/libepoxy-1.4.3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.4.3.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} = 9999* ]]; then
GIT_ECLASS="git-r3"
fi
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
PYTHON_REQ_USE='xml(+)'
inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 633cc77c96a..6797bdfe72c 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} = 9999* ]]; then
GIT_ECLASS="git-r3"
fi
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
PYTHON_REQ_USE='xml(+)'
inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-02-22 19:02 Michał Górny
0 siblings, 0 replies; 152+ messages in thread
From: Michał Górny @ 2018-02-22 19:02 UTC (permalink / raw
To: gentoo-commits
commit: f8cf8fc157e7049c60ada31ca74fc4950636913c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 22 18:59:24 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Feb 22 19:02:52 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8cf8fc1
media-libs/libepoxy: Keyword ~amd64-fbsd
This has broken tests, and two of them fail after fixing but it at least
builds and is needed to fix dependencies of x11-libs/gtk+:3.
media-libs/libepoxy/libepoxy-1.4.3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.4.3.ebuild b/media-libs/libepoxy/libepoxy-1.4.3.ebuild
index f3a593bfc08..fd3adb6ce8e 100644
--- a/media-libs/libepoxy/libepoxy-1.4.3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.4.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=6
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-03-01 6:50 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-03-01 6:50 UTC (permalink / raw
To: gentoo-commits
commit: 92c7d6fc51c992d5a6fef73227b3b1305e1b4328
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 1 06:44:24 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Mar 1 06:50:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92c7d6fc
media-libs/libepoxy: Drop x11-misc/util-macros dependency
Not needed with Meson.
media-libs/libepoxy/libepoxy-9999.ebuild | 1 -
1 file changed, 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 9172bc341b5..97ad0938592 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -28,7 +28,6 @@ IUSE="test +X"
DEPEND="${PYTHON_DEPS}
media-libs/mesa[egl,${MULTILIB_USEDEP}]
- x11-misc/util-macros
X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
RDEPEND=""
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-03-01 6:50 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-03-01 6:50 UTC (permalink / raw
To: gentoo-commits
commit: 15324fe4b40fad1f98f565285b02f7335e6a720a
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 1 06:45:48 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Mar 1 06:50:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15324fe4
media-libs/libepoxy: Version bump to 1.5.0
Closes: https://bugs.gentoo.org/648550
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/libepoxy-1.5.0.ebuild | 58 +++++++++++++++++++++++++++++++
2 files changed, 59 insertions(+)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 5262f32b5c0..43a17a2ac5c 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,3 +1,4 @@
DIST libepoxy-1.4.1.tar.gz 309759 BLAKE2B 304bbe395ec184d0b29b0ed256917d78a84d815599ae2f2a3ba72ea165c6fe1c73eea27125ff7b3d6097b406aa07643ddd185550b827fae5adac426af4999022 SHA512 6656df4d447bd581b7701931070e03accb5b105426248f2b3360ba59bf50e09ce8be4c9691904b517b92fbfe241f8f3f435de116ca77ea2a0ecf1c121fb24a11
DIST libepoxy-1.4.2.tar.gz 309973 BLAKE2B 029948aea64db917e782a57c901f537be796b269bcfdc9f4238db4fae41d3d11f68def2288d73a673b7e2a159e7ed2226761e4ebf603ec4f0fdcaf7f56eb02d1 SHA512 b94e1fe749c63a82f38369ff62b7d0d8cf1c55884159f030dc2919c17daf5811dd71cfd6a663edb38df66ff4ca53120a6a53501568cc8a582f08d4ae82fe9d89
DIST libepoxy-1.4.3.tar.gz 310823 BLAKE2B 6eab12a0ecf68a1bda3484c7cd71c0b3d62391e2bee8efd3c0fe7970ee4c3672f2dd81547d3884b301165accf3a8ce91a7c2a2e9686b1ca43c7f37cd15c5c946 SHA512 41c7a4eea66c89346b0ec71407b2d22bf645ed0ef81ebad560370903f138ed48abb6bc6bcc88c75a3a05497acc6720397db828d61301599c05040263a9f4f7f0
+DIST libepoxy-1.5.0.tar.gz 325983 BLAKE2B 13cec792a3f32630765e3bad755bfb8569119351a3bf83a6581c4db3210eca0779ca6681bbb67898847265283a929ed742fd7000d18977fb5f2203968815fe92 SHA512 e522c64d4f407aab031fbd31feaee1a2de4467fdd49b0267327100cfe836c2f5bebccf367449e3bd97e1a457168bbf0ace968eaa45a018020f1c038469343efe
diff --git a/media-libs/libepoxy/libepoxy-1.5.0.ebuild b/media-libs/libepoxy/libepoxy-1.5.0.ebuild
new file mode 100644
index 00000000000..2271e9db287
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.5.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
+
+if [[ ${PV} = 9999* ]]; then
+ GIT_ECLASS="git-r3"
+fi
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+PYTHON_REQ_USE='xml(+)'
+inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
+
+DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+if [[ ${PV} = 9999* ]]; then
+ SRC_URI=""
+else
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test +X"
+
+DEPEND="${PYTHON_DEPS}
+ media-libs/mesa[egl,${MULTILIB_USEDEP}]
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
+RDEPEND=""
+
+src_unpack() {
+ default
+ [[ $PV = 9999* ]] && git-r3_src_unpack
+}
+
+multilib_src_configure() {
+ local emesonargs=(
+ -Degl=yes
+ -Dglx=$(usex X)
+ -Dx11=$(usex X true false)
+ )
+ meson_src_configure
+}
+
+multilib_src_compile() {
+ meson_src_compile
+}
+
+multilib_src_test() {
+ meson_src_test
+}
+
+multilib_src_install() {
+ meson_src_install
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-03-01 6:50 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-03-01 6:50 UTC (permalink / raw
To: gentoo-commits
commit: c29e22e80226934d46acb360de67f773804c2b77
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 1 06:46:34 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Mar 1 06:50:09 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c29e22e8
media-libs/libepoxy: Propagate ~amd64-fbsd keyword
media-libs/libepoxy/libepoxy-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 6797bdfe72c..9172bc341b5 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.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=6
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-03-01 6:50 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-03-01 6:50 UTC (permalink / raw
To: gentoo-commits
commit: a2a41c208ea227236ab76fc668824ea18ec49836
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 1 06:44:55 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Mar 1 06:50:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2a41c20
media-libs/libepoxy: Fix Meson configuration options
media-libs/libepoxy/libepoxy-9999.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 97ad0938592..2271e9db287 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -38,7 +38,9 @@ src_unpack() {
multilib_src_configure() {
local emesonargs=(
- -Denable-glx=$(usex X)
+ -Degl=yes
+ -Dglx=$(usex X)
+ -Dx11=$(usex X true false)
)
meson_src_configure
}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-03-01 6:50 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-03-01 6:50 UTC (permalink / raw
To: gentoo-commits
commit: 2d5b20e41c9ef4dbdb969e204767b3d1b5d16958
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 1 06:49:31 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Mar 1 06:50:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d5b20e4
media-libs/libepoxy: Drop old version
Closes: https://bugs.gentoo.org/623926
media-libs/libepoxy/Manifest | 1 -
media-libs/libepoxy/libepoxy-1.4.3.ebuild | 49 -------------------------------
2 files changed, 50 deletions(-)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 43a17a2ac5c..24253c80637 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,4 +1,3 @@
DIST libepoxy-1.4.1.tar.gz 309759 BLAKE2B 304bbe395ec184d0b29b0ed256917d78a84d815599ae2f2a3ba72ea165c6fe1c73eea27125ff7b3d6097b406aa07643ddd185550b827fae5adac426af4999022 SHA512 6656df4d447bd581b7701931070e03accb5b105426248f2b3360ba59bf50e09ce8be4c9691904b517b92fbfe241f8f3f435de116ca77ea2a0ecf1c121fb24a11
DIST libepoxy-1.4.2.tar.gz 309973 BLAKE2B 029948aea64db917e782a57c901f537be796b269bcfdc9f4238db4fae41d3d11f68def2288d73a673b7e2a159e7ed2226761e4ebf603ec4f0fdcaf7f56eb02d1 SHA512 b94e1fe749c63a82f38369ff62b7d0d8cf1c55884159f030dc2919c17daf5811dd71cfd6a663edb38df66ff4ca53120a6a53501568cc8a582f08d4ae82fe9d89
-DIST libepoxy-1.4.3.tar.gz 310823 BLAKE2B 6eab12a0ecf68a1bda3484c7cd71c0b3d62391e2bee8efd3c0fe7970ee4c3672f2dd81547d3884b301165accf3a8ce91a7c2a2e9686b1ca43c7f37cd15c5c946 SHA512 41c7a4eea66c89346b0ec71407b2d22bf645ed0ef81ebad560370903f138ed48abb6bc6bcc88c75a3a05497acc6720397db828d61301599c05040263a9f4f7f0
DIST libepoxy-1.5.0.tar.gz 325983 BLAKE2B 13cec792a3f32630765e3bad755bfb8569119351a3bf83a6581c4db3210eca0779ca6681bbb67898847265283a929ed742fd7000d18977fb5f2203968815fe92 SHA512 e522c64d4f407aab031fbd31feaee1a2de4467fdd49b0267327100cfe836c2f5bebccf367449e3bd97e1a457168bbf0ace968eaa45a018020f1c038469343efe
diff --git a/media-libs/libepoxy/libepoxy-1.4.3.ebuild b/media-libs/libepoxy/libepoxy-1.4.3.ebuild
deleted file mode 100644
index fd3adb6ce8e..00000000000
--- a/media-libs/libepoxy/libepoxy-1.4.3.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
-
-if [[ ${PV} = 9999* ]]; then
- GIT_ECLASS="git-r3"
-fi
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-PYTHON_REQ_USE='xml(+)'
-inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
-
-DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-if [[ ${PV} = 9999* ]]; then
- SRC_URI=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test +X"
-
-DEPEND="${PYTHON_DEPS}
- media-libs/mesa[egl,${MULTILIB_USEDEP}]
- x11-misc/util-macros
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-
-src_unpack() {
- default
- [[ $PV = 9999* ]] && git-r3_src_unpack
-}
-
-src_prepare() {
- default
- eautoreconf
-}
-
-multilib_src_configure() {
- ECONF_SOURCE=${S} \
- econf \
- $(use_enable X glx)
-}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-03-01 13:25 Mart Raudsepp
0 siblings, 0 replies; 152+ messages in thread
From: Mart Raudsepp @ 2018-03-01 13:25 UTC (permalink / raw
To: gentoo-commits
commit: 718ac3abd5e4a8447d6f9eb8a50fac9e6c8d4588
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 1 13:24:44 2018 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Thu Mar 1 13:24:44 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=718ac3ab
media-libs/libepoxy: depend on required meson version, higher than from eclass
Closes: https://bugs.gentoo.org/649182
Package-Manager: Portage-2.3.19, Repoman-2.3.6
media-libs/libepoxy/libepoxy-1.5.0.ebuild | 3 ++-
media-libs/libepoxy/libepoxy-9999.ebuild | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.0.ebuild b/media-libs/libepoxy/libepoxy-1.5.0.ebuild
index 2271e9db287..17eb5ee20a7 100644
--- a/media-libs/libepoxy/libepoxy-1.5.0.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.0.ebuild
@@ -28,7 +28,8 @@ IUSE="test +X"
DEPEND="${PYTHON_DEPS}
media-libs/mesa[egl,${MULTILIB_USEDEP}]
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
+ >=dev-util/meson-0.44.0"
RDEPEND=""
src_unpack() {
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 2271e9db287..17eb5ee20a7 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -28,7 +28,8 @@ IUSE="test +X"
DEPEND="${PYTHON_DEPS}
media-libs/mesa[egl,${MULTILIB_USEDEP}]
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
+ >=dev-util/meson-0.44.0"
RDEPEND=""
src_unpack() {
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-03-02 10:01 Michał Górny
0 siblings, 0 replies; 152+ messages in thread
From: Michał Górny @ 2018-03-02 10:01 UTC (permalink / raw
To: gentoo-commits
commit: 7ae32cca18b0de0a2e6a1634fbcd6a8e8f7c59b6
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 2 10:00:16 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 2 10:00:16 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ae32cca
media-libs/libepoxy: Revert "Drop old version"
This is the last version that was working on FreeBSD.
Reverts: 2d5b20e41c9 (media-libs/libepoxy: Drop old version)
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/libepoxy-1.4.3.ebuild | 49 +++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 24253c80637..43a17a2ac5c 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,3 +1,4 @@
DIST libepoxy-1.4.1.tar.gz 309759 BLAKE2B 304bbe395ec184d0b29b0ed256917d78a84d815599ae2f2a3ba72ea165c6fe1c73eea27125ff7b3d6097b406aa07643ddd185550b827fae5adac426af4999022 SHA512 6656df4d447bd581b7701931070e03accb5b105426248f2b3360ba59bf50e09ce8be4c9691904b517b92fbfe241f8f3f435de116ca77ea2a0ecf1c121fb24a11
DIST libepoxy-1.4.2.tar.gz 309973 BLAKE2B 029948aea64db917e782a57c901f537be796b269bcfdc9f4238db4fae41d3d11f68def2288d73a673b7e2a159e7ed2226761e4ebf603ec4f0fdcaf7f56eb02d1 SHA512 b94e1fe749c63a82f38369ff62b7d0d8cf1c55884159f030dc2919c17daf5811dd71cfd6a663edb38df66ff4ca53120a6a53501568cc8a582f08d4ae82fe9d89
+DIST libepoxy-1.4.3.tar.gz 310823 BLAKE2B 6eab12a0ecf68a1bda3484c7cd71c0b3d62391e2bee8efd3c0fe7970ee4c3672f2dd81547d3884b301165accf3a8ce91a7c2a2e9686b1ca43c7f37cd15c5c946 SHA512 41c7a4eea66c89346b0ec71407b2d22bf645ed0ef81ebad560370903f138ed48abb6bc6bcc88c75a3a05497acc6720397db828d61301599c05040263a9f4f7f0
DIST libepoxy-1.5.0.tar.gz 325983 BLAKE2B 13cec792a3f32630765e3bad755bfb8569119351a3bf83a6581c4db3210eca0779ca6681bbb67898847265283a929ed742fd7000d18977fb5f2203968815fe92 SHA512 e522c64d4f407aab031fbd31feaee1a2de4467fdd49b0267327100cfe836c2f5bebccf367449e3bd97e1a457168bbf0ace968eaa45a018020f1c038469343efe
diff --git a/media-libs/libepoxy/libepoxy-1.4.3.ebuild b/media-libs/libepoxy/libepoxy-1.4.3.ebuild
new file mode 100644
index 00000000000..fd3adb6ce8e
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.4.3.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
+
+if [[ ${PV} = 9999* ]]; then
+ GIT_ECLASS="git-r3"
+fi
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+PYTHON_REQ_USE='xml(+)'
+inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
+
+DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+if [[ ${PV} = 9999* ]]; then
+ SRC_URI=""
+else
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test +X"
+
+DEPEND="${PYTHON_DEPS}
+ media-libs/mesa[egl,${MULTILIB_USEDEP}]
+ x11-misc/util-macros
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
+RDEPEND=""
+
+src_unpack() {
+ default
+ [[ $PV = 9999* ]] && git-r3_src_unpack
+}
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+multilib_src_configure() {
+ ECONF_SOURCE=${S} \
+ econf \
+ $(use_enable X glx)
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-03-02 10:01 Michał Górny
0 siblings, 0 replies; 152+ messages in thread
From: Michał Górny @ 2018-03-02 10:01 UTC (permalink / raw
To: gentoo-commits
commit: 6044698a4f667900dcddf8eac179e4dde4d50155
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 2 09:59:49 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 2 09:59:49 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6044698a
media-libs/libepoxy: Remove *-fbsd keywords from 1.5.0
Bug: https://bugs.gentoo.org/649212
media-libs/libepoxy/libepoxy-1.5.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.0.ebuild b/media-libs/libepoxy/libepoxy-1.5.0.ebuild
index 17eb5ee20a7..21db4db9f63 100644
--- a/media-libs/libepoxy/libepoxy-1.5.0.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.0.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-03-19 19:51 Sergei Trofimovich
0 siblings, 0 replies; 152+ messages in thread
From: Sergei Trofimovich @ 2018-03-19 19:51 UTC (permalink / raw
To: gentoo-commits
commit: cb1ce762e11ac5053d5b4089c28748329229fc20
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 19 19:51:15 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Mar 19 19:51:38 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb1ce762
media-libs/libepoxy: stable 1.4.2 for hppa, bug #620234
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="hppa"
media-libs/libepoxy/libepoxy-1.4.2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.4.2.ebuild b/media-libs/libepoxy/libepoxy-1.4.2.ebuild
index c81920132ff..0bb1a38de57 100644
--- a/media-libs/libepoxy/libepoxy-1.4.2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.4.2.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=6
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86"
+ KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-04-25 17:49 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-04-25 17:49 UTC (permalink / raw
To: gentoo-commits
commit: f0a450a0609938383f42280bb4e842403b8751a3
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 25 17:49:01 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Wed Apr 25 17:49:12 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0a450a0
media-libs/libepoxy: Version bump to 1.5.1
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/libepoxy-1.5.1.ebuild | 59 +++++++++++++++++++++++++++++++
2 files changed, 60 insertions(+)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 43a17a2ac5c..f67cf6c560e 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -2,3 +2,4 @@ DIST libepoxy-1.4.1.tar.gz 309759 BLAKE2B 304bbe395ec184d0b29b0ed256917d78a84d81
DIST libepoxy-1.4.2.tar.gz 309973 BLAKE2B 029948aea64db917e782a57c901f537be796b269bcfdc9f4238db4fae41d3d11f68def2288d73a673b7e2a159e7ed2226761e4ebf603ec4f0fdcaf7f56eb02d1 SHA512 b94e1fe749c63a82f38369ff62b7d0d8cf1c55884159f030dc2919c17daf5811dd71cfd6a663edb38df66ff4ca53120a6a53501568cc8a582f08d4ae82fe9d89
DIST libepoxy-1.4.3.tar.gz 310823 BLAKE2B 6eab12a0ecf68a1bda3484c7cd71c0b3d62391e2bee8efd3c0fe7970ee4c3672f2dd81547d3884b301165accf3a8ce91a7c2a2e9686b1ca43c7f37cd15c5c946 SHA512 41c7a4eea66c89346b0ec71407b2d22bf645ed0ef81ebad560370903f138ed48abb6bc6bcc88c75a3a05497acc6720397db828d61301599c05040263a9f4f7f0
DIST libepoxy-1.5.0.tar.gz 325983 BLAKE2B 13cec792a3f32630765e3bad755bfb8569119351a3bf83a6581c4db3210eca0779ca6681bbb67898847265283a929ed742fd7000d18977fb5f2203968815fe92 SHA512 e522c64d4f407aab031fbd31feaee1a2de4467fdd49b0267327100cfe836c2f5bebccf367449e3bd97e1a457168bbf0ace968eaa45a018020f1c038469343efe
+DIST libepoxy-1.5.1.tar.gz 324985 BLAKE2B 338b558ca3c174c04383dfc1bfe4f444965aef745b3043183d4024df62b37fdfc923c5c1d243a3061201a0f7b6946ce443d4ede3195b85d1022c187f46b08540 SHA512 f839f82e4ffabda42a2bb9c2822ba2e8da6583bdb481daa2e090e62b580fdfb0d11f96af790685769317ff2446d1d8d7cb6374b2049614ee938b84014b604bce
diff --git a/media-libs/libepoxy/libepoxy-1.5.1.ebuild b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
new file mode 100644
index 00000000000..21db4db9f63
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
+
+if [[ ${PV} = 9999* ]]; then
+ GIT_ECLASS="git-r3"
+fi
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+PYTHON_REQ_USE='xml(+)'
+inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
+
+DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+if [[ ${PV} = 9999* ]]; then
+ SRC_URI=""
+else
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test +X"
+
+DEPEND="${PYTHON_DEPS}
+ media-libs/mesa[egl,${MULTILIB_USEDEP}]
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
+ >=dev-util/meson-0.44.0"
+RDEPEND=""
+
+src_unpack() {
+ default
+ [[ $PV = 9999* ]] && git-r3_src_unpack
+}
+
+multilib_src_configure() {
+ local emesonargs=(
+ -Degl=yes
+ -Dglx=$(usex X)
+ -Dx11=$(usex X true false)
+ )
+ meson_src_configure
+}
+
+multilib_src_compile() {
+ meson_src_compile
+}
+
+multilib_src_test() {
+ meson_src_test
+}
+
+multilib_src_install() {
+ meson_src_install
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-05-06 12:26 Mikle Kolyada
0 siblings, 0 replies; 152+ messages in thread
From: Mikle Kolyada @ 2018-05-06 12:26 UTC (permalink / raw
To: gentoo-commits
commit: 5ddc1bad1584315c97cc85f55ac91e7e8a076b10
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun May 6 12:21:08 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun May 6 12:21:08 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ddc1bad
media-libs/libepoxy: amd64 stable wrt bug #649316
Package-Manager: Portage-2.3.24, Repoman-2.3.6
media-libs/libepoxy/libepoxy-1.5.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.1.ebuild b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
index 21db4db9f63..b199a0c4871 100644
--- a/media-libs/libepoxy/libepoxy-1.5.1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-05-06 19:23 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-05-06 19:23 UTC (permalink / raw
To: gentoo-commits
commit: 114c184beec49713ac1bb5e7ac2e8585d3921d1f
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun May 6 19:21:50 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun May 6 19:22:50 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=114c184b
media-libs/libepoxy-1.5.1: alpha stable, bug 649316
media-libs/libepoxy/libepoxy-1.5.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.1.ebuild b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
index b199a0c4871..91472fc84c5 100644
--- a/media-libs/libepoxy/libepoxy-1.5.1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-05-06 19:40 Sergei Trofimovich
0 siblings, 0 replies; 152+ messages in thread
From: Sergei Trofimovich @ 2018-05-06 19:40 UTC (permalink / raw
To: gentoo-commits
commit: 371c7b31b1f643dc0f86d2e28f733a52fce44000
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun May 6 19:38:31 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun May 6 19:38:31 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=371c7b31
media-libs/libepoxy: stable 1.5.1 for ia64, bug #649316
Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"
media-libs/libepoxy/libepoxy-1.5.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.1.ebuild b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
index 91472fc84c5..200be9673e7 100644
--- a/media-libs/libepoxy/libepoxy-1.5.1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-05-06 20:45 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-05-06 20:45 UTC (permalink / raw
To: gentoo-commits
commit: 195c2dd3275e79571995e64fa96c95b51092765d
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun May 6 20:45:11 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun May 6 20:45:11 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=195c2dd3
media-libs/libepoxy-1.5.1: ppc64 stable, bug 649316
media-libs/libepoxy/libepoxy-1.5.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.1.ebuild b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
index 02442ed308b..f9eacc8db9a 100644
--- a/media-libs/libepoxy/libepoxy-1.5.1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~sparc ~x86"
+ KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc ~x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-05-08 6:24 Sergei Trofimovich
0 siblings, 0 replies; 152+ messages in thread
From: Sergei Trofimovich @ 2018-05-08 6:24 UTC (permalink / raw
To: gentoo-commits
commit: cdfaa0f5dacbe58a85cb5a9f4158b03e67cb6e87
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Mon May 7 22:52:27 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue May 8 06:23:26 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdfaa0f5
media-libs/libepoxy: stable 1.5.1 for sparc
Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"
media-libs/libepoxy/libepoxy-1.5.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.1.ebuild b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
index 2c214916fa4..543d947443c 100644
--- a/media-libs/libepoxy/libepoxy-1.5.1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86"
+ KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-05-13 11:30 Markus Meier
0 siblings, 0 replies; 152+ messages in thread
From: Markus Meier @ 2018-05-13 11:30 UTC (permalink / raw
To: gentoo-commits
commit: 50403752af3c0dc61f97d22cb8a3e4b1d3cc0687
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Sun May 13 11:26:11 2018 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Sun May 13 11:26:11 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50403752
media-libs/libepoxy: arm stable, bug #649316
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"
media-libs/libepoxy/libepoxy-1.5.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.1.ebuild b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
index 543d947443c..a72f1f566fa 100644
--- a/media-libs/libepoxy/libepoxy-1.5.1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86"
+ KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-05-20 18:37 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-05-20 18:37 UTC (permalink / raw
To: gentoo-commits
commit: da94829ff350187a3efaca0ece5ac0fd6085a853
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun May 20 18:25:33 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun May 20 18:25:33 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da94829f
media-libs/libepoxy: Drop old versions
media-libs/libepoxy/Manifest | 2 --
media-libs/libepoxy/libepoxy-1.4.1.ebuild | 49 -------------------------
media-libs/libepoxy/libepoxy-1.5.0.ebuild | 59 -------------------------------
3 files changed, 110 deletions(-)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index f67cf6c560e..b92f794a2ec 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,5 +1,3 @@
-DIST libepoxy-1.4.1.tar.gz 309759 BLAKE2B 304bbe395ec184d0b29b0ed256917d78a84d815599ae2f2a3ba72ea165c6fe1c73eea27125ff7b3d6097b406aa07643ddd185550b827fae5adac426af4999022 SHA512 6656df4d447bd581b7701931070e03accb5b105426248f2b3360ba59bf50e09ce8be4c9691904b517b92fbfe241f8f3f435de116ca77ea2a0ecf1c121fb24a11
DIST libepoxy-1.4.2.tar.gz 309973 BLAKE2B 029948aea64db917e782a57c901f537be796b269bcfdc9f4238db4fae41d3d11f68def2288d73a673b7e2a159e7ed2226761e4ebf603ec4f0fdcaf7f56eb02d1 SHA512 b94e1fe749c63a82f38369ff62b7d0d8cf1c55884159f030dc2919c17daf5811dd71cfd6a663edb38df66ff4ca53120a6a53501568cc8a582f08d4ae82fe9d89
DIST libepoxy-1.4.3.tar.gz 310823 BLAKE2B 6eab12a0ecf68a1bda3484c7cd71c0b3d62391e2bee8efd3c0fe7970ee4c3672f2dd81547d3884b301165accf3a8ce91a7c2a2e9686b1ca43c7f37cd15c5c946 SHA512 41c7a4eea66c89346b0ec71407b2d22bf645ed0ef81ebad560370903f138ed48abb6bc6bcc88c75a3a05497acc6720397db828d61301599c05040263a9f4f7f0
-DIST libepoxy-1.5.0.tar.gz 325983 BLAKE2B 13cec792a3f32630765e3bad755bfb8569119351a3bf83a6581c4db3210eca0779ca6681bbb67898847265283a929ed742fd7000d18977fb5f2203968815fe92 SHA512 e522c64d4f407aab031fbd31feaee1a2de4467fdd49b0267327100cfe836c2f5bebccf367449e3bd97e1a457168bbf0ace968eaa45a018020f1c038469343efe
DIST libepoxy-1.5.1.tar.gz 324985 BLAKE2B 338b558ca3c174c04383dfc1bfe4f444965aef745b3043183d4024df62b37fdfc923c5c1d243a3061201a0f7b6946ce443d4ede3195b85d1022c187f46b08540 SHA512 f839f82e4ffabda42a2bb9c2822ba2e8da6583bdb481daa2e090e62b580fdfb0d11f96af790685769317ff2446d1d8d7cb6374b2049614ee938b84014b604bce
diff --git a/media-libs/libepoxy/libepoxy-1.4.1.ebuild b/media-libs/libepoxy/libepoxy-1.4.1.ebuild
deleted file mode 100644
index e4412e94a96..00000000000
--- a/media-libs/libepoxy/libepoxy-1.4.1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
-
-if [[ ${PV} = 9999* ]]; then
- GIT_ECLASS="git-r3"
-fi
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-PYTHON_REQ_USE='xml(+)'
-inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
-
-DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-if [[ ${PV} = 9999* ]]; then
- SRC_URI=""
-else
- KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86"
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test +X"
-
-DEPEND="${PYTHON_DEPS}
- media-libs/mesa[egl,${MULTILIB_USEDEP}]
- x11-misc/util-macros
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-
-src_unpack() {
- default
- [[ $PV = 9999* ]] && git-r3_src_unpack
-}
-
-src_prepare() {
- default
- eautoreconf
-}
-
-multilib_src_configure() {
- ECONF_SOURCE=${S} \
- econf \
- $(use_enable X glx)
-}
diff --git a/media-libs/libepoxy/libepoxy-1.5.0.ebuild b/media-libs/libepoxy/libepoxy-1.5.0.ebuild
deleted file mode 100644
index 21db4db9f63..00000000000
--- a/media-libs/libepoxy/libepoxy-1.5.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
-
-if [[ ${PV} = 9999* ]]; then
- GIT_ECLASS="git-r3"
-fi
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-PYTHON_REQ_USE='xml(+)'
-inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
-
-DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-if [[ ${PV} = 9999* ]]; then
- SRC_URI=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test +X"
-
-DEPEND="${PYTHON_DEPS}
- media-libs/mesa[egl,${MULTILIB_USEDEP}]
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
- >=dev-util/meson-0.44.0"
-RDEPEND=""
-
-src_unpack() {
- default
- [[ $PV = 9999* ]] && git-r3_src_unpack
-}
-
-multilib_src_configure() {
- local emesonargs=(
- -Degl=yes
- -Dglx=$(usex X)
- -Dx11=$(usex X true false)
- )
- meson_src_configure
-}
-
-multilib_src_compile() {
- meson_src_compile
-}
-
-multilib_src_test() {
- meson_src_test
-}
-
-multilib_src_install() {
- meson_src_install
-}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-05-23 6:53 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-05-23 6:53 UTC (permalink / raw
To: gentoo-commits
commit: 35302c518a2c989e09f87f4340fb3532454c8a30
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed May 23 06:51:48 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Wed May 23 06:53:31 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35302c51
media-libs/libepoxy: Version bump 1.5.2
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/libepoxy-1.5.2.ebuild | 59 +++++++++++++++++++++++++++++++
2 files changed, 60 insertions(+)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index b92f794a2ec..f51ebeab012 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,3 +1,4 @@
DIST libepoxy-1.4.2.tar.gz 309973 BLAKE2B 029948aea64db917e782a57c901f537be796b269bcfdc9f4238db4fae41d3d11f68def2288d73a673b7e2a159e7ed2226761e4ebf603ec4f0fdcaf7f56eb02d1 SHA512 b94e1fe749c63a82f38369ff62b7d0d8cf1c55884159f030dc2919c17daf5811dd71cfd6a663edb38df66ff4ca53120a6a53501568cc8a582f08d4ae82fe9d89
DIST libepoxy-1.4.3.tar.gz 310823 BLAKE2B 6eab12a0ecf68a1bda3484c7cd71c0b3d62391e2bee8efd3c0fe7970ee4c3672f2dd81547d3884b301165accf3a8ce91a7c2a2e9686b1ca43c7f37cd15c5c946 SHA512 41c7a4eea66c89346b0ec71407b2d22bf645ed0ef81ebad560370903f138ed48abb6bc6bcc88c75a3a05497acc6720397db828d61301599c05040263a9f4f7f0
DIST libepoxy-1.5.1.tar.gz 324985 BLAKE2B 338b558ca3c174c04383dfc1bfe4f444965aef745b3043183d4024df62b37fdfc923c5c1d243a3061201a0f7b6946ce443d4ede3195b85d1022c187f46b08540 SHA512 f839f82e4ffabda42a2bb9c2822ba2e8da6583bdb481daa2e090e62b580fdfb0d11f96af790685769317ff2446d1d8d7cb6374b2049614ee938b84014b604bce
+DIST libepoxy-1.5.2.tar.gz 324905 BLAKE2B bbc1904b99e6674b03259bc2a5f4076f248d698e80a6f57013f5c19dcb5d6c22fe8b821eae3ff014f40c273a6f91ad3efc054ec48ddf5b8e8b5d8e12da3b60cc SHA512 3dfa10b356d6105fc8b1fda62dcf025b20a786b37f82c8275b3f12df8d3a62bbd4a9800abac396cfb48b789f72ff3c5f7a796eb83f046e978f9403a53e6ddf0d
diff --git a/media-libs/libepoxy/libepoxy-1.5.2.ebuild b/media-libs/libepoxy/libepoxy-1.5.2.ebuild
new file mode 100644
index 00000000000..21db4db9f63
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.5.2.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
+
+if [[ ${PV} = 9999* ]]; then
+ GIT_ECLASS="git-r3"
+fi
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+PYTHON_REQ_USE='xml(+)'
+inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
+
+DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+if [[ ${PV} = 9999* ]]; then
+ SRC_URI=""
+else
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test +X"
+
+DEPEND="${PYTHON_DEPS}
+ media-libs/mesa[egl,${MULTILIB_USEDEP}]
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
+ >=dev-util/meson-0.44.0"
+RDEPEND=""
+
+src_unpack() {
+ default
+ [[ $PV = 9999* ]] && git-r3_src_unpack
+}
+
+multilib_src_configure() {
+ local emesonargs=(
+ -Degl=yes
+ -Dglx=$(usex X)
+ -Dx11=$(usex X true false)
+ )
+ meson_src_configure
+}
+
+multilib_src_compile() {
+ meson_src_compile
+}
+
+multilib_src_test() {
+ meson_src_test
+}
+
+multilib_src_install() {
+ meson_src_install
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-05-29 19:08 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-05-29 19:08 UTC (permalink / raw
To: gentoo-commits
commit: a5a91b5dc7b24a8ddf2d295e796aeffb0d85b3ed
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue May 29 19:04:45 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue May 29 19:07:57 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5a91b5d
media-libs/libepoxy: RDEPEND on media-libs/mesa
The .pc file installed by libepoxy says it requires gl, which is
installed by Mesa.
Closes: https://bugs.gentoo.org/610608
media-libs/libepoxy/libepoxy-1.5.2.ebuild | 4 ++--
media-libs/libepoxy/libepoxy-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.2.ebuild b/media-libs/libepoxy/libepoxy-1.5.2.ebuild
index 21db4db9f63..25f715c61c3 100644
--- a/media-libs/libepoxy/libepoxy-1.5.2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.2.ebuild
@@ -26,11 +26,11 @@ LICENSE="MIT"
SLOT="0"
IUSE="test +X"
+RDEPEND="media-libs/mesa[egl,${MULTILIB_USEDEP}]"
DEPEND="${PYTHON_DEPS}
- media-libs/mesa[egl,${MULTILIB_USEDEP}]
+ ${RDEPEND}
X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
>=dev-util/meson-0.44.0"
-RDEPEND=""
src_unpack() {
default
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 17eb5ee20a7..5810d7944cc 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -26,11 +26,11 @@ LICENSE="MIT"
SLOT="0"
IUSE="test +X"
+RDEPEND="media-libs/mesa[egl,${MULTILIB_USEDEP}]"
DEPEND="${PYTHON_DEPS}
- media-libs/mesa[egl,${MULTILIB_USEDEP}]
+ ${RDEPEND}
X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
>=dev-util/meson-0.44.0"
-RDEPEND=""
src_unpack() {
default
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-05-29 19:08 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-05-29 19:08 UTC (permalink / raw
To: gentoo-commits
commit: 9d59949b7c10c121f43dca1f43f5d4d61eed3a9f
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue May 29 19:07:39 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue May 29 19:07:58 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d59949b
media-libs/libepoxy: DEPEND on virtual/libepoxy
media-libs/libepoxy/libepoxy-1.5.2.ebuild | 3 ++-
media-libs/libepoxy/libepoxy-9999.ebuild | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.2.ebuild b/media-libs/libepoxy/libepoxy-1.5.2.ebuild
index 25f715c61c3..a814fceec62 100644
--- a/media-libs/libepoxy/libepoxy-1.5.2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.2.ebuild
@@ -30,7 +30,8 @@ RDEPEND="media-libs/mesa[egl,${MULTILIB_USEDEP}]"
DEPEND="${PYTHON_DEPS}
${RDEPEND}
X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
- >=dev-util/meson-0.44.0"
+ >=dev-util/meson-0.44.0
+ virtual/pkgconfig"
src_unpack() {
default
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 5810d7944cc..476702c15fb 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -30,7 +30,8 @@ RDEPEND="media-libs/mesa[egl,${MULTILIB_USEDEP}]"
DEPEND="${PYTHON_DEPS}
${RDEPEND}
X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
- >=dev-util/meson-0.44.0"
+ >=dev-util/meson-0.44.0
+ virtual/pkgconfig"
src_unpack() {
default
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-06-06 20:33 Michał Górny
0 siblings, 0 replies; 152+ messages in thread
From: Michał Górny @ 2018-06-06 20:33 UTC (permalink / raw
To: gentoo-commits
commit: 5dec98ba98ead079e7d2db5f1fe2a7fa4dce9c0a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 6 20:31:44 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jun 6 20:33:16 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dec98ba
media-libs/libepoxy: 1.5.2 tested on ~amd64-fbsd
Closes: https://bugs.gentoo.org/649212
media-libs/libepoxy/libepoxy-1.5.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.2.ebuild b/media-libs/libepoxy/libepoxy-1.5.2.ebuild
index a814fceec62..476702c15fb 100644
--- a/media-libs/libepoxy/libepoxy-1.5.2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-07-24 0:02 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-07-24 0:02 UTC (permalink / raw
To: gentoo-commits
commit: 627182746f7a4dec02ea09bdb8af33c55d6bd472
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 24 00:01:25 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Jul 24 00:02:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62718274
media-libs/libepoxy: Drop meson as explicit dependency
In commit bbe649a35dc8 ("meson.eclass: require at least meson-0.45.1")
we bumped the required version of meson. Thus our local dependency is
now useless.
media-libs/libepoxy/libepoxy-1.5.1.ebuild | 3 +--
media-libs/libepoxy/libepoxy-1.5.2.ebuild | 1 -
media-libs/libepoxy/libepoxy-9999.ebuild | 1 -
3 files changed, 1 insertion(+), 4 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.1.ebuild b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
index 451ae46f887..0dac30a38a2 100644
--- a/media-libs/libepoxy/libepoxy-1.5.1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
@@ -28,8 +28,7 @@ IUSE="test +X"
DEPEND="${PYTHON_DEPS}
media-libs/mesa[egl,${MULTILIB_USEDEP}]
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
- >=dev-util/meson-0.44.0"
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
RDEPEND=""
src_unpack() {
diff --git a/media-libs/libepoxy/libepoxy-1.5.2.ebuild b/media-libs/libepoxy/libepoxy-1.5.2.ebuild
index 476702c15fb..b6c7a46a052 100644
--- a/media-libs/libepoxy/libepoxy-1.5.2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.2.ebuild
@@ -30,7 +30,6 @@ RDEPEND="media-libs/mesa[egl,${MULTILIB_USEDEP}]"
DEPEND="${PYTHON_DEPS}
${RDEPEND}
X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
- >=dev-util/meson-0.44.0
virtual/pkgconfig"
src_unpack() {
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 476702c15fb..b6c7a46a052 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -30,7 +30,6 @@ RDEPEND="media-libs/mesa[egl,${MULTILIB_USEDEP}]"
DEPEND="${PYTHON_DEPS}
${RDEPEND}
X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
- >=dev-util/meson-0.44.0
virtual/pkgconfig"
src_unpack() {
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-10-06 20:32 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-10-06 20:32 UTC (permalink / raw
To: gentoo-commits
commit: b5d2cde0bc23b7fd83600d15089989098030283e
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 6 20:30:02 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Oct 6 20:31:44 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5d2cde0
media-libs/libepoxy: Version bump to 1.5.3
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/libepoxy-1.5.3.ebuild | 60 +++++++++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index f51ebeab012..430a23341f0 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -2,3 +2,4 @@ DIST libepoxy-1.4.2.tar.gz 309973 BLAKE2B 029948aea64db917e782a57c901f537be796b2
DIST libepoxy-1.4.3.tar.gz 310823 BLAKE2B 6eab12a0ecf68a1bda3484c7cd71c0b3d62391e2bee8efd3c0fe7970ee4c3672f2dd81547d3884b301165accf3a8ce91a7c2a2e9686b1ca43c7f37cd15c5c946 SHA512 41c7a4eea66c89346b0ec71407b2d22bf645ed0ef81ebad560370903f138ed48abb6bc6bcc88c75a3a05497acc6720397db828d61301599c05040263a9f4f7f0
DIST libepoxy-1.5.1.tar.gz 324985 BLAKE2B 338b558ca3c174c04383dfc1bfe4f444965aef745b3043183d4024df62b37fdfc923c5c1d243a3061201a0f7b6946ce443d4ede3195b85d1022c187f46b08540 SHA512 f839f82e4ffabda42a2bb9c2822ba2e8da6583bdb481daa2e090e62b580fdfb0d11f96af790685769317ff2446d1d8d7cb6374b2049614ee938b84014b604bce
DIST libepoxy-1.5.2.tar.gz 324905 BLAKE2B bbc1904b99e6674b03259bc2a5f4076f248d698e80a6f57013f5c19dcb5d6c22fe8b821eae3ff014f40c273a6f91ad3efc054ec48ddf5b8e8b5d8e12da3b60cc SHA512 3dfa10b356d6105fc8b1fda62dcf025b20a786b37f82c8275b3f12df8d3a62bbd4a9800abac396cfb48b789f72ff3c5f7a796eb83f046e978f9403a53e6ddf0d
+DIST libepoxy-1.5.3.tar.gz 326768 BLAKE2B 053665429a249adca4c9b3d57797949e3a0ffd0ed3f1c66cb8becfb884431e44a4cccb6b2fd3788a86ee01268ebad3cc36e67e391d2aa5cdea28837a162be9ad SHA512 e831f4f918f08fd5f799501efc0e23b8d404478651634f5e7b35f8ebcc29d91abc447ab20da062dde5be75e18cb39ffea708688e6534f7ab257b949f9c53ddc8
diff --git a/media-libs/libepoxy/libepoxy-1.5.3.ebuild b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
new file mode 100644
index 00000000000..ec896cd974c
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
+
+if [[ ${PV} = 9999* ]]; then
+ GIT_ECLASS="git-r3"
+fi
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+PYTHON_REQ_USE='xml(+)'
+inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
+
+DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+if [[ ${PV} = 9999* ]]; then
+ SRC_URI=""
+else
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test +X"
+
+RDEPEND="media-libs/mesa[egl,${MULTILIB_USEDEP}]"
+DEPEND="${PYTHON_DEPS}
+ ${RDEPEND}
+ >=dev-util/meson-0.47.0
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
+ virtual/pkgconfig"
+
+src_unpack() {
+ default
+ [[ $PV = 9999* ]] && git-r3_src_unpack
+}
+
+multilib_src_configure() {
+ local emesonargs=(
+ -Degl=yes
+ -Dglx=$(usex X)
+ -Dx11=$(usex X true false)
+ )
+ meson_src_configure
+}
+
+multilib_src_compile() {
+ meson_src_compile
+}
+
+multilib_src_test() {
+ meson_src_test
+}
+
+multilib_src_install() {
+ meson_src_install
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-10-06 20:32 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-10-06 20:32 UTC (permalink / raw
To: gentoo-commits
commit: 5866bbc8c2570fd1fc597db57f6cd621855917a2
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 6 20:29:22 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Oct 6 20:31:44 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5866bbc8
media-libs/libepoxy: Require >=dev-util/meson-0.47.0
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-9999.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index b6c7a46a052..ec896cd974c 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.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=6
@@ -29,6 +29,7 @@ IUSE="test +X"
RDEPEND="media-libs/mesa[egl,${MULTILIB_USEDEP}]"
DEPEND="${PYTHON_DEPS}
${RDEPEND}
+ >=dev-util/meson-0.47.0
X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
virtual/pkgconfig"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-11-03 14:36 Mikle Kolyada
0 siblings, 0 replies; 152+ messages in thread
From: Mikle Kolyada @ 2018-11-03 14:36 UTC (permalink / raw
To: gentoo-commits
commit: 6150561007f37fb0cc044d55ecba406d3cd80d98
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 3 14:33:03 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Nov 3 14:33:03 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61505610
media-libs/libepoxy: amd64 stable wrt bug #668900
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11
media-libs/libepoxy/libepoxy-1.5.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3.ebuild b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
index ec896cd974c..7ae18f0b8da 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-11-04 4:35 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-11-04 4:35 UTC (permalink / raw
To: gentoo-commits
commit: 1142a170695331c4a9b382a2112fd6ad18498195
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 4 04:34:48 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Nov 4 04:34:48 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1142a170
media-libs/libepoxy-1.5.3: ppc64 stable, bug 668900
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3.ebuild b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
index 4b07285d8b7..3ada9967a3f 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-11-07 22:41 Sergei Trofimovich
0 siblings, 0 replies; 152+ messages in thread
From: Sergei Trofimovich @ 2018-11-07 22:41 UTC (permalink / raw
To: gentoo-commits
commit: d6a57ba486b2125b76b69b5241f4eaddd1426e85
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Wed Nov 7 22:18:55 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Nov 7 22:41:17 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6a57ba4
media-libs/libepoxy: stable 1.5.3 for sparc, bug #668900
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3.ebuild b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
index 9fbabb3ba81..c541e24f316 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-fbsd"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-11-10 17:23 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-11-10 17:23 UTC (permalink / raw
To: gentoo-commits
commit: 9d6ba0c9dd51aa7aa3dd3c3f372d9dd6c84b75f6
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 10 17:22:51 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Nov 10 17:23:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d6ba0c9
media-libs/libepoxy-1.5.3: alpha stable, bug 668900
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3.ebuild b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
index c541e24f316..bd88264bcb2 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd"
+ KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-11-15 0:31 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-11-15 0:31 UTC (permalink / raw
To: gentoo-commits
commit: 71d46f4582c793865db1880ed0a3a5fed5b1a3f7
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 15 00:30:54 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Nov 15 00:31:14 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71d46f45
media-libs/libepoxy: Drop old versions
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/Manifest | 3 --
media-libs/libepoxy/libepoxy-1.4.2.ebuild | 49 -------------------------
media-libs/libepoxy/libepoxy-1.4.3.ebuild | 49 -------------------------
media-libs/libepoxy/libepoxy-1.5.2.ebuild | 59 -------------------------------
4 files changed, 160 deletions(-)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 430a23341f0..d27b51633a6 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,5 +1,2 @@
-DIST libepoxy-1.4.2.tar.gz 309973 BLAKE2B 029948aea64db917e782a57c901f537be796b269bcfdc9f4238db4fae41d3d11f68def2288d73a673b7e2a159e7ed2226761e4ebf603ec4f0fdcaf7f56eb02d1 SHA512 b94e1fe749c63a82f38369ff62b7d0d8cf1c55884159f030dc2919c17daf5811dd71cfd6a663edb38df66ff4ca53120a6a53501568cc8a582f08d4ae82fe9d89
-DIST libepoxy-1.4.3.tar.gz 310823 BLAKE2B 6eab12a0ecf68a1bda3484c7cd71c0b3d62391e2bee8efd3c0fe7970ee4c3672f2dd81547d3884b301165accf3a8ce91a7c2a2e9686b1ca43c7f37cd15c5c946 SHA512 41c7a4eea66c89346b0ec71407b2d22bf645ed0ef81ebad560370903f138ed48abb6bc6bcc88c75a3a05497acc6720397db828d61301599c05040263a9f4f7f0
DIST libepoxy-1.5.1.tar.gz 324985 BLAKE2B 338b558ca3c174c04383dfc1bfe4f444965aef745b3043183d4024df62b37fdfc923c5c1d243a3061201a0f7b6946ce443d4ede3195b85d1022c187f46b08540 SHA512 f839f82e4ffabda42a2bb9c2822ba2e8da6583bdb481daa2e090e62b580fdfb0d11f96af790685769317ff2446d1d8d7cb6374b2049614ee938b84014b604bce
-DIST libepoxy-1.5.2.tar.gz 324905 BLAKE2B bbc1904b99e6674b03259bc2a5f4076f248d698e80a6f57013f5c19dcb5d6c22fe8b821eae3ff014f40c273a6f91ad3efc054ec48ddf5b8e8b5d8e12da3b60cc SHA512 3dfa10b356d6105fc8b1fda62dcf025b20a786b37f82c8275b3f12df8d3a62bbd4a9800abac396cfb48b789f72ff3c5f7a796eb83f046e978f9403a53e6ddf0d
DIST libepoxy-1.5.3.tar.gz 326768 BLAKE2B 053665429a249adca4c9b3d57797949e3a0ffd0ed3f1c66cb8becfb884431e44a4cccb6b2fd3788a86ee01268ebad3cc36e67e391d2aa5cdea28837a162be9ad SHA512 e831f4f918f08fd5f799501efc0e23b8d404478651634f5e7b35f8ebcc29d91abc447ab20da062dde5be75e18cb39ffea708688e6534f7ab257b949f9c53ddc8
diff --git a/media-libs/libepoxy/libepoxy-1.4.2.ebuild b/media-libs/libepoxy/libepoxy-1.4.2.ebuild
deleted file mode 100644
index 0bb1a38de57..00000000000
--- a/media-libs/libepoxy/libepoxy-1.4.2.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
-
-if [[ ${PV} = 9999* ]]; then
- GIT_ECLASS="git-r3"
-fi
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-PYTHON_REQ_USE='xml(+)'
-inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
-
-DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-if [[ ${PV} = 9999* ]]; then
- SRC_URI=""
-else
- KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86"
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test +X"
-
-DEPEND="${PYTHON_DEPS}
- media-libs/mesa[egl,${MULTILIB_USEDEP}]
- x11-misc/util-macros
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-
-src_unpack() {
- default
- [[ $PV = 9999* ]] && git-r3_src_unpack
-}
-
-src_prepare() {
- default
- eautoreconf
-}
-
-multilib_src_configure() {
- ECONF_SOURCE=${S} \
- econf \
- $(use_enable X glx)
-}
diff --git a/media-libs/libepoxy/libepoxy-1.4.3.ebuild b/media-libs/libepoxy/libepoxy-1.4.3.ebuild
deleted file mode 100644
index fd3adb6ce8e..00000000000
--- a/media-libs/libepoxy/libepoxy-1.4.3.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
-
-if [[ ${PV} = 9999* ]]; then
- GIT_ECLASS="git-r3"
-fi
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-PYTHON_REQ_USE='xml(+)'
-inherit autotools ${GIT_ECLASS} multilib-minimal python-any-r1
-
-DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-if [[ ${PV} = 9999* ]]; then
- SRC_URI=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test +X"
-
-DEPEND="${PYTHON_DEPS}
- media-libs/mesa[egl,${MULTILIB_USEDEP}]
- x11-misc/util-macros
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-
-src_unpack() {
- default
- [[ $PV = 9999* ]] && git-r3_src_unpack
-}
-
-src_prepare() {
- default
- eautoreconf
-}
-
-multilib_src_configure() {
- ECONF_SOURCE=${S} \
- econf \
- $(use_enable X glx)
-}
diff --git a/media-libs/libepoxy/libepoxy-1.5.2.ebuild b/media-libs/libepoxy/libepoxy-1.5.2.ebuild
deleted file mode 100644
index b6c7a46a052..00000000000
--- a/media-libs/libepoxy/libepoxy-1.5.2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
-
-if [[ ${PV} = 9999* ]]; then
- GIT_ECLASS="git-r3"
-fi
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-PYTHON_REQ_USE='xml(+)'
-inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
-
-DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-if [[ ${PV} = 9999* ]]; then
- SRC_URI=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test +X"
-
-RDEPEND="media-libs/mesa[egl,${MULTILIB_USEDEP}]"
-DEPEND="${PYTHON_DEPS}
- ${RDEPEND}
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
- virtual/pkgconfig"
-
-src_unpack() {
- default
- [[ $PV = 9999* ]] && git-r3_src_unpack
-}
-
-multilib_src_configure() {
- local emesonargs=(
- -Degl=yes
- -Dglx=$(usex X)
- -Dx11=$(usex X true false)
- )
- meson_src_configure
-}
-
-multilib_src_compile() {
- meson_src_compile
-}
-
-multilib_src_test() {
- meson_src_test
-}
-
-multilib_src_install() {
- meson_src_install
-}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-11-17 14:57 Mikle Kolyada
0 siblings, 0 replies; 152+ messages in thread
From: Mikle Kolyada @ 2018-11-17 14:57 UTC (permalink / raw
To: gentoo-commits
commit: fadc8c8a7b1fff79caa904a7583963eb228c5149
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 17 14:48:34 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Nov 17 14:56:45 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fadc8c8a
media-libs/libepoxy: amd64 stable wrt bug #668900
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
media-libs/libepoxy/libepoxy-1.5.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3.ebuild b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
index bd88264bcb2..4cbb94c8e03 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd"
+ KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-11-27 20:30 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-11-27 20:30 UTC (permalink / raw
To: gentoo-commits
commit: faa9ea7274c1bf669ecaacdd953f87cc497c97e5
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 27 20:29:42 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Nov 27 20:30:43 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faa9ea72
media-libs/libepoxy-1.5.3: ia64 stable, bug 668900
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3.ebuild b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
index 4cbb94c8e03..b5b5e857ea9 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd"
+ KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2018-11-29 5:17 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2018-11-29 5:17 UTC (permalink / raw
To: gentoo-commits
commit: d57389b683bd273322a9bff7d9cc522e21a4e5cd
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 29 05:08:21 2018 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Nov 29 05:17:18 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d57389b6
media-libs/libepoxy: Drop old versions
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/Manifest | 1 -
media-libs/libepoxy/libepoxy-1.5.1.ebuild | 58 -------------------------------
2 files changed, 59 deletions(-)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index d27b51633a6..6be52074314 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,2 +1 @@
-DIST libepoxy-1.5.1.tar.gz 324985 BLAKE2B 338b558ca3c174c04383dfc1bfe4f444965aef745b3043183d4024df62b37fdfc923c5c1d243a3061201a0f7b6946ce443d4ede3195b85d1022c187f46b08540 SHA512 f839f82e4ffabda42a2bb9c2822ba2e8da6583bdb481daa2e090e62b580fdfb0d11f96af790685769317ff2446d1d8d7cb6374b2049614ee938b84014b604bce
DIST libepoxy-1.5.3.tar.gz 326768 BLAKE2B 053665429a249adca4c9b3d57797949e3a0ffd0ed3f1c66cb8becfb884431e44a4cccb6b2fd3788a86ee01268ebad3cc36e67e391d2aa5cdea28837a162be9ad SHA512 e831f4f918f08fd5f799501efc0e23b8d404478651634f5e7b35f8ebcc29d91abc447ab20da062dde5be75e18cb39ffea708688e6534f7ab257b949f9c53ddc8
diff --git a/media-libs/libepoxy/libepoxy-1.5.1.ebuild b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
deleted file mode 100644
index 0dac30a38a2..00000000000
--- a/media-libs/libepoxy/libepoxy-1.5.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
-
-if [[ ${PV} = 9999* ]]; then
- GIT_ECLASS="git-r3"
-fi
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-PYTHON_REQ_USE='xml(+)'
-inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
-
-DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-if [[ ${PV} = 9999* ]]; then
- SRC_URI=""
-else
- KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86"
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test +X"
-
-DEPEND="${PYTHON_DEPS}
- media-libs/mesa[egl,${MULTILIB_USEDEP}]
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
-RDEPEND=""
-
-src_unpack() {
- default
- [[ $PV = 9999* ]] && git-r3_src_unpack
-}
-
-multilib_src_configure() {
- local emesonargs=(
- -Degl=yes
- -Dglx=$(usex X)
- -Dx11=$(usex X true false)
- )
- meson_src_configure
-}
-
-multilib_src_compile() {
- meson_src_compile
-}
-
-multilib_src_test() {
- meson_src_test
-}
-
-multilib_src_install() {
- meson_src_install
-}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-02-28 17:05 Mikle Kolyada
0 siblings, 0 replies; 152+ messages in thread
From: Mikle Kolyada @ 2019-02-28 17:05 UTC (permalink / raw
To: gentoo-commits
commit: 7f2846ae6a7215bf8fd485b9a59656cc57db7d45
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 28 17:03:38 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Feb 28 17:03:38 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f2846ae
media-libs/libepoxy: mark s390 stable
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
media-libs/libepoxy/libepoxy-1.5.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3.ebuild b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
index 163ae56825a..24977945905 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd"
+ KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-03-04 18:46 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2019-03-04 18:46 UTC (permalink / raw
To: gentoo-commits
commit: f6e30524a72d6a4508f2f5485628282768aa05f8
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 4 18:32:46 2019 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Mar 4 18:46:40 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6e30524
media-libs/libepoxy: Add python3_7 support.
Patch from arthurzam <AT> gmail.com.
Closes: https://bugs.gentoo.org/679384
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.3.ebuild | 2 +-
media-libs/libepoxy/libepoxy-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3.ebuild b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
index 24977945905..cec62781b84 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} = 9999* ]]; then
GIT_ECLASS="git-r3"
fi
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} )
PYTHON_REQ_USE='xml(+)'
inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index ec896cd974c..bb809e2ad9b 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} = 9999* ]]; then
GIT_ECLASS="git-r3"
fi
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} )
PYTHON_REQ_USE='xml(+)'
inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-07-01 16:18 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2019-07-01 16:18 UTC (permalink / raw
To: gentoo-commits
commit: 0122b2f482775a7da0d84e47db5579713958db6e
Author: Gerhard Bräunlich <g.braeunlich <AT> disroot <DOT> org>
AuthorDate: Sun Jun 2 11:49:32 2019 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon Jul 1 16:17:54 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0122b2f4
media-libs/libepoxy: Make egl configurable
Signed-off-by: Gerhard Bräunlich <g.braeunlich <AT> disroot.org>
Closes: https://github.com/gentoo/gentoo/pull/12169
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
.../{libepoxy-9999.ebuild => libepoxy-1.5.3-r1.ebuild} | 10 +++++-----
media-libs/libepoxy/libepoxy-9999.ebuild | 8 ++++----
media-libs/libepoxy/metadata.xml | 3 +++
3 files changed, 12 insertions(+), 9 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
similarity index 86%
copy from media-libs/libepoxy/libepoxy-9999.ebuild
copy to media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
index 1bac611c62b..300f6338c93 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3-r1.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=6
@@ -18,15 +18,15 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
LICENSE="MIT"
SLOT="0"
-IUSE="test +X"
+IUSE="+egl test +X"
-RDEPEND="media-libs/mesa[egl,${MULTILIB_USEDEP}]"
+RDEPEND="egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
DEPEND="${PYTHON_DEPS}
${RDEPEND}
>=dev-util/meson-0.47.0
@@ -40,7 +40,7 @@ src_unpack() {
multilib_src_configure() {
local emesonargs=(
- -Degl=yes
+ -Degl=$(usex egl)
-Dglx=$(usex X)
-Dx11=$(usex X true false)
)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 1bac611c62b..4bdbc19dd23 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.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=6
@@ -24,9 +24,9 @@ fi
LICENSE="MIT"
SLOT="0"
-IUSE="test +X"
+IUSE="+egl test +X"
-RDEPEND="media-libs/mesa[egl,${MULTILIB_USEDEP}]"
+RDEPEND="egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
DEPEND="${PYTHON_DEPS}
${RDEPEND}
>=dev-util/meson-0.47.0
@@ -40,7 +40,7 @@ src_unpack() {
multilib_src_configure() {
local emesonargs=(
- -Degl=yes
+ -Degl=$(usex egl)
-Dglx=$(usex X)
-Dx11=$(usex X true false)
)
diff --git a/media-libs/libepoxy/metadata.xml b/media-libs/libepoxy/metadata.xml
index 1065cad0271..1162de9ab55 100644
--- a/media-libs/libepoxy/metadata.xml
+++ b/media-libs/libepoxy/metadata.xml
@@ -5,6 +5,9 @@
<email>x11@gentoo.org</email>
<name>X11</name>
</maintainer>
+ <use>
+ <flag name="egl">Enable EGL support.</flag>
+ </use>
<upstream>
<remote-id type="github">anholt/libepoxy</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-07-09 23:11 Sergei Trofimovich
0 siblings, 0 replies; 152+ messages in thread
From: Sergei Trofimovich @ 2019-07-09 23:11 UTC (permalink / raw
To: gentoo-commits
commit: 5c68daadf8211a6e92e450c6578093d005e5dcb7
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Tue Jul 9 20:21:24 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Jul 9 23:11:04 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c68daad
media-libs/libepoxy: stable 1.5.3-r1 for sparc, bug #689510
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
index 300f6338c93..0f99c6cc4d2 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc ~x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-07-10 10:30 Agostino Sarubbo
0 siblings, 0 replies; 152+ messages in thread
From: Agostino Sarubbo @ 2019-07-10 10:30 UTC (permalink / raw
To: gentoo-commits
commit: 2ae967baea537af3c8c26bb394f2355bbaaf5ef6
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 10 10:29:10 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jul 10 10:29:10 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ae967ba
media-libs/libepoxy: x86 stable wrt bug #689510
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="x86"
media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
index 0f99c6cc4d2..1caadee14dc 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc ~x86 ~amd64-fbsd"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-07-13 10:36 Sergei Trofimovich
0 siblings, 0 replies; 152+ messages in thread
From: Sergei Trofimovich @ 2019-07-13 10:36 UTC (permalink / raw
To: gentoo-commits
commit: f45874f2241a41501fa70239f4cd66a7ce6fcb2e
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Sat Jul 13 10:10:42 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Jul 13 10:36:32 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f45874f2
media-libs/libepoxy: stable 1.5.3-r1 for hppa, bug #689510
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
index 1caadee14dc..7176ab35523 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-fbsd"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-07-14 9:11 Sergei Trofimovich
0 siblings, 0 replies; 152+ messages in thread
From: Sergei Trofimovich @ 2019-07-14 9:11 UTC (permalink / raw
To: gentoo-commits
commit: 01551127ec96ebb933ff8cf65edd4b491176591f
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 14 09:08:34 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun Jul 14 09:10:59 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01551127
media-libs/libepoxy: stable 1.5.3-r1 for ia64, bug #689510
Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
index 7176ab35523..708ea44d770 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-fbsd"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-07-17 10:18 Mikle Kolyada
0 siblings, 0 replies; 152+ messages in thread
From: Mikle Kolyada @ 2019-07-17 10:18 UTC (permalink / raw
To: gentoo-commits
commit: 18220779c0bdc173302ba46d1093270ab054e89c
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 17 10:16:08 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed Jul 17 10:16:08 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18220779
media-libs/libepoxy: amd64 stable wrt bug #689510
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
index 708ea44d770..5507151c5e5 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-fbsd"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-07-17 14:03 Agostino Sarubbo
0 siblings, 0 replies; 152+ messages in thread
From: Agostino Sarubbo @ 2019-07-17 14:03 UTC (permalink / raw
To: gentoo-commits
commit: a27b7148df3a515065b40b081bb934b0d204c78d
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 17 14:02:53 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jul 17 14:02:53 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a27b7148
media-libs/libepoxy: s390 stable wrt bug #689510
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="s390"
media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
index 5507151c5e5..8362a98f49b 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-fbsd"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 s390 sparc x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-07-18 10:47 Agostino Sarubbo
0 siblings, 0 replies; 152+ messages in thread
From: Agostino Sarubbo @ 2019-07-18 10:47 UTC (permalink / raw
To: gentoo-commits
commit: aa94d6cb28a7f7996c46c98733f9f7e08b16a7bc
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 18 10:46:19 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jul 18 10:46:19 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa94d6cb
media-libs/libepoxy: ppc stable wrt bug #689510
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc"
media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
index 8362a98f49b..d2efef86fdc 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 s390 sparc x86 ~amd64-fbsd"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ~ppc64 s390 sparc x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-07-18 11:33 Agostino Sarubbo
0 siblings, 0 replies; 152+ messages in thread
From: Agostino Sarubbo @ 2019-07-18 11:33 UTC (permalink / raw
To: gentoo-commits
commit: b937754d29243c886aa0a5a950a4be581dd3aaa1
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 18 11:32:29 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jul 18 11:32:29 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b937754d
media-libs/libepoxy: ppc64 stable wrt bug #689510
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc64"
media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
index d2efef86fdc..4d4e3841357 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ~ppc64 s390 sparc x86 ~amd64-fbsd"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-07-19 11:33 Agostino Sarubbo
0 siblings, 0 replies; 152+ messages in thread
From: Agostino Sarubbo @ 2019-07-19 11:33 UTC (permalink / raw
To: gentoo-commits
commit: 4ca24af59482cb91c8169d916d737df58f178c23
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 19 11:32:09 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jul 19 11:32:09 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ca24af5
media-libs/libepoxy: alpha stable wrt bug #689510
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="alpha"
media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
index 4d4e3841357..340f201c37b 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd"
+ KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-07-21 17:13 Aaron Bauman
0 siblings, 0 replies; 152+ messages in thread
From: Aaron Bauman @ 2019-07-21 17:13 UTC (permalink / raw
To: gentoo-commits
commit: bd1cba37b49c17f039cf53027555bd72cc156eca
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 21 17:10:07 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun Jul 21 17:10:07 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd1cba37
media-libs/libepoxy: arm64 stable (bug #689510)
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="arm64"
media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
index 340f201c37b..993932b3700 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd"
+ KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-07-28 13:05 Mikle Kolyada
0 siblings, 0 replies; 152+ messages in thread
From: Mikle Kolyada @ 2019-07-28 13:05 UTC (permalink / raw
To: gentoo-commits
commit: e9e4831177b91b0629b47e16236089b3bcea560e
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 28 13:04:34 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Jul 28 13:05:23 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9e48311
media-libs/libepoxy: arm stable wrt bug #689510
Package-Manager: Portage-2.3.66, Repoman-2.3.16
RepoMan-Options: --include-arches="arm"
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
index 993932b3700..9733adb8ca9 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd"
+ KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-07-28 16:40 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2019-07-28 16:40 UTC (permalink / raw
To: gentoo-commits
commit: 9b2a11bd281de837c34e83d36dc0d8ae4aa44bd0
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 22 17:18:28 2019 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Jul 28 16:38:14 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b2a11bd
media-libs/libepoxy: Drop old versions
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.3.ebuild | 60 -------------------------------
1 file changed, 60 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3.ebuild b/media-libs/libepoxy/libepoxy-1.5.3.ebuild
deleted file mode 100644
index 858276b1405..00000000000
--- a/media-libs/libepoxy/libepoxy-1.5.3.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
-
-if [[ ${PV} = 9999* ]]; then
- GIT_ECLASS="git-r3"
-fi
-
-PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
-PYTHON_REQ_USE='xml(+)'
-inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
-
-DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-if [[ ${PV} = 9999* ]]; then
- SRC_URI=""
-else
- KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd"
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test +X"
-
-RDEPEND="media-libs/mesa[egl,${MULTILIB_USEDEP}]"
-DEPEND="${PYTHON_DEPS}
- ${RDEPEND}
- >=dev-util/meson-0.47.0
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
- virtual/pkgconfig"
-
-src_unpack() {
- default
- [[ $PV = 9999* ]] && git-r3_src_unpack
-}
-
-multilib_src_configure() {
- local emesonargs=(
- -Degl=yes
- -Dglx=$(usex X)
- -Dx11=$(usex X true false)
- )
- meson_src_configure
-}
-
-multilib_src_compile() {
- meson_src_compile
-}
-
-multilib_src_test() {
- meson_src_test
-}
-
-multilib_src_install() {
- meson_src_install
-}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-08-17 18:50 James Le Cuirot
0 siblings, 0 replies; 152+ messages in thread
From: James Le Cuirot @ 2019-08-17 18:50 UTC (permalink / raw
To: gentoo-commits
commit: 7ea08e67beedbe85b1f72c0c8e8f71e1ce0af7bb
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 17 18:05:12 2019 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Aug 17 18:50:01 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ea08e67
media-libs/libepoxy: Don't build tests unless USE=test is enabled
They actually fail to build on my ARM system but that's another story.
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild | 1 +
media-libs/libepoxy/libepoxy-9999.ebuild | 1 +
2 files changed, 2 insertions(+)
diff --git a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
index 9733adb8ca9..a4335f623af 100644
--- a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
@@ -43,6 +43,7 @@ multilib_src_configure() {
-Degl=$(usex egl)
-Dglx=$(usex X)
-Dx11=$(usex X true false)
+ -Dtests=$(usex test true false)
)
meson_src_configure
}
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 4bdbc19dd23..c8ed8a6047e 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -43,6 +43,7 @@ multilib_src_configure() {
-Degl=$(usex egl)
-Dglx=$(usex X)
-Dx11=$(usex X true false)
+ -Dtests=$(usex test true false)
)
meson_src_configure
}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-11-26 3:59 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2019-11-26 3:59 UTC (permalink / raw
To: gentoo-commits
commit: c1b0a0094351c9e0652f8cbed678029df67c3be4
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 26 03:53:42 2019 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Nov 26 03:59:12 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1b0a009
media-libs/libepoxy: Bump to EAPI=7
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-9999.ebuild | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 4c04916e719..2516bc11192 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
@@ -27,10 +27,9 @@ SLOT="0"
IUSE="+egl test +X"
RDEPEND="egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
-DEPEND="${PYTHON_DEPS}
- ${RDEPEND}
- >=dev-util/meson-0.47.0
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
+DEPEND="X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
+ ${RDEPEND}"
+BDEPEND="${PYTHON_DEPS}
virtual/pkgconfig"
src_unpack() {
@@ -42,8 +41,8 @@ multilib_src_configure() {
local emesonargs=(
-Degl=$(usex egl)
-Dglx=$(usex X)
- -Dx11=$(usex X true false)
- -Dtests=$(usex test true false)
+ $(meson_use X x11)
+ $(meson_use test tests)
)
meson_src_configure
}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-11-26 3:59 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2019-11-26 3:59 UTC (permalink / raw
To: gentoo-commits
commit: 39ac6f56fa3385346f4951f11b2cde3250452abd
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 26 03:45:24 2019 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Nov 26 03:59:12 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39ac6f56
media-libs/libepoxy: Propagate ~s390 keyword
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 6c2f3fa8e69..4c04916e719 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-11-26 3:59 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2019-11-26 3:59 UTC (permalink / raw
To: gentoo-commits
commit: 3152205908d6d568687064b3b8a4c3f3833a28b0
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 26 03:44:22 2019 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Nov 26 03:59:12 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31522059
media-libs/libepoxy: Version bump to 1.5.4
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/libepoxy-1.5.4.ebuild | 60 +++++++++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 6be52074314..fd512f30368 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1 +1,2 @@
DIST libepoxy-1.5.3.tar.gz 326768 BLAKE2B 053665429a249adca4c9b3d57797949e3a0ffd0ed3f1c66cb8becfb884431e44a4cccb6b2fd3788a86ee01268ebad3cc36e67e391d2aa5cdea28837a162be9ad SHA512 e831f4f918f08fd5f799501efc0e23b8d404478651634f5e7b35f8ebcc29d91abc447ab20da062dde5be75e18cb39ffea708688e6534f7ab257b949f9c53ddc8
+DIST libepoxy-1.5.4.tar.gz 337615 BLAKE2B 2793fde6da59079dfadc653c9f0712b0bd2ca1455a8cda7982bce61c35a3629641a30a76db059af635c1fa0076b4e6c56874b199b41d548afbbad8f6e43384e3 SHA512 c8b03f0a39df320fdd163a34c35f9ffbed51bc0174fd89a7dc4b3ab2439413087e1e1a2fe57418520074abd435051cbf03eb2a7bf8897da1712bbbc69cf27cc5
diff --git a/media-libs/libepoxy/libepoxy-1.5.4.ebuild b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
new file mode 100644
index 00000000000..2516bc11192
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
+
+if [[ ${PV} = 9999* ]]; then
+ GIT_ECLASS="git-r3"
+fi
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
+PYTHON_REQ_USE='xml(+)'
+inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
+
+DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+if [[ ${PV} = 9999* ]]; then
+ SRC_URI=""
+else
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+egl test +X"
+
+RDEPEND="egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
+DEPEND="X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
+ ${RDEPEND}"
+BDEPEND="${PYTHON_DEPS}
+ virtual/pkgconfig"
+
+src_unpack() {
+ default
+ [[ $PV = 9999* ]] && git-r3_src_unpack
+}
+
+multilib_src_configure() {
+ local emesonargs=(
+ -Degl=$(usex egl)
+ -Dglx=$(usex X)
+ $(meson_use X x11)
+ $(meson_use test tests)
+ )
+ meson_src_configure
+}
+
+multilib_src_compile() {
+ meson_src_compile
+}
+
+multilib_src_test() {
+ meson_src_test
+}
+
+multilib_src_install() {
+ meson_src_install
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2019-11-26 20:41 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2019-11-26 20:41 UTC (permalink / raw
To: gentoo-commits
commit: f10454389262ad7a832d5fa82c54ff04992237e5
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 26 20:40:58 2019 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Nov 26 20:41:27 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1045438
media-libs/libepoxy: Add RESTRICT="!test? ( test )"
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.4.ebuild | 1 +
media-libs/libepoxy/libepoxy-9999.ebuild | 1 +
2 files changed, 2 insertions(+)
diff --git a/media-libs/libepoxy/libepoxy-1.5.4.ebuild b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
index 2516bc11192..66722815106 100644
--- a/media-libs/libepoxy/libepoxy-1.5.4.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
@@ -24,6 +24,7 @@ fi
LICENSE="MIT"
SLOT="0"
+RESTRICT="!test? ( test )"
IUSE="+egl test +X"
RDEPEND="egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 2516bc11192..66722815106 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -24,6 +24,7 @@ fi
LICENSE="MIT"
SLOT="0"
+RESTRICT="!test? ( test )"
IUSE="+egl test +X"
RDEPEND="egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2020-01-03 12:00 Agostino Sarubbo
0 siblings, 0 replies; 152+ messages in thread
From: Agostino Sarubbo @ 2020-01-03 12:00 UTC (permalink / raw
To: gentoo-commits
commit: 62c2aad455f2462fcbfb522022aa6ec3e8d1342f
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 3 11:59:50 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jan 3 11:59:50 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62c2aad4
media-libs/libepoxy: amd64 stable wrt bug #704592
Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.4.ebuild b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
index 66722815106..155d65b3d67 100644
--- a/media-libs/libepoxy/libepoxy-1.5.4.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.4.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/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2020-01-03 13:35 Agostino Sarubbo
0 siblings, 0 replies; 152+ messages in thread
From: Agostino Sarubbo @ 2020-01-03 13:35 UTC (permalink / raw
To: gentoo-commits
commit: f24af31d464cc8342f17c8f774b6e9ce8693d80c
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 3 13:35:21 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jan 3 13:35:21 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f24af31d
media-libs/libepoxy: sparc stable wrt bug #704592
Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.4.ebuild b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
index 155d65b3d67..fad84fa5eed 100644
--- a/media-libs/libepoxy/libepoxy-1.5.4.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc ~x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2020-01-03 13:42 Agostino Sarubbo
0 siblings, 0 replies; 152+ messages in thread
From: Agostino Sarubbo @ 2020-01-03 13:42 UTC (permalink / raw
To: gentoo-commits
commit: cb182d41c0a0b1770d7382a30f1588282ab9e97e
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 3 13:41:29 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jan 3 13:41:29 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb182d41
media-libs/libepoxy: ppc stable wrt bug #704592
Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.4.ebuild b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
index fad84fa5eed..73f24fb552c 100644
--- a/media-libs/libepoxy/libepoxy-1.5.4.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc ~x86"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 sparc ~x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2020-01-03 13:44 Agostino Sarubbo
0 siblings, 0 replies; 152+ messages in thread
From: Agostino Sarubbo @ 2020-01-03 13:44 UTC (permalink / raw
To: gentoo-commits
commit: 376a83f7ee9268e4b5cefcd6437d00c845a9916e
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 3 13:44:07 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jan 3 13:44:07 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=376a83f7
media-libs/libepoxy: ppc64 stable wrt bug #704592
Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.4.ebuild b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
index 73f24fb552c..4b85b28355d 100644
--- a/media-libs/libepoxy/libepoxy-1.5.4.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 sparc ~x86"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc ~x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2020-01-03 13:56 Agostino Sarubbo
0 siblings, 0 replies; 152+ messages in thread
From: Agostino Sarubbo @ 2020-01-03 13:56 UTC (permalink / raw
To: gentoo-commits
commit: e2e1ac3e8557aa9be85404e199fbd2658e5a7237
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 3 13:56:12 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jan 3 13:56:12 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2e1ac3e
media-libs/libepoxy: ia64 stable wrt bug #704592
Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.4.ebuild b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
index 4b85b28355d..58539180f08 100644
--- a/media-libs/libepoxy/libepoxy-1.5.4.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc ~x86"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 sparc ~x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2020-01-03 14:34 Agostino Sarubbo
0 siblings, 0 replies; 152+ messages in thread
From: Agostino Sarubbo @ 2020-01-03 14:34 UTC (permalink / raw
To: gentoo-commits
commit: 9dcc5f160e5ee313206b5c52ec3894bc8eef9c81
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 3 14:34:15 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jan 3 14:34:15 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dcc5f16
media-libs/libepoxy: x86 stable wrt bug #704592
Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.4.ebuild b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
index 58539180f08..680b1befbba 100644
--- a/media-libs/libepoxy/libepoxy-1.5.4.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 sparc ~x86"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 sparc x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2020-01-03 16:14 Agostino Sarubbo
0 siblings, 0 replies; 152+ messages in thread
From: Agostino Sarubbo @ 2020-01-03 16:14 UTC (permalink / raw
To: gentoo-commits
commit: ee9815f9fcd64238f7fa9a4efc233432dd6daa15
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 3 16:14:35 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jan 3 16:14:35 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee9815f9
media-libs/libepoxy: arm stable wrt bug #704592
Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="arm"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.4.ebuild b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
index 680b1befbba..bb355d7d261 100644
--- a/media-libs/libepoxy/libepoxy-1.5.4.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 sparc x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2020-01-04 10:22 Sergei Trofimovich
0 siblings, 0 replies; 152+ messages in thread
From: Sergei Trofimovich @ 2020-01-04 10:22 UTC (permalink / raw
To: gentoo-commits
commit: 21973962651727fca765cab21813e963591b6a1b
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Sat Jan 4 09:12:41 2020 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Jan 4 10:22:46 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21973962
media-libs/libepoxy: stable 1.5.4 for hppa, bug #704592
Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.4.ebuild b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
index bb355d7d261..2de790199a2 100644
--- a/media-libs/libepoxy/libepoxy-1.5.4.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2020-01-08 0:33 Aaron Bauman
0 siblings, 0 replies; 152+ messages in thread
From: Aaron Bauman @ 2020-01-08 0:33 UTC (permalink / raw
To: gentoo-commits
commit: e5fc12e59ef08abf51e9f53435cff9db5728aa34
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 8 00:28:20 2020 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Jan 8 00:28:20 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5fc12e5
media-libs/libepoxy: arm64 stable (bug #704592)
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.84, Repoman-2.3.20
media-libs/libepoxy/libepoxy-1.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.4.ebuild b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
index c5a5f4ec46c..d3f97708c15 100644
--- a/media-libs/libepoxy/libepoxy-1.5.4.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
SRC_URI=""
else
- KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2020-01-26 21:10 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2020-01-26 21:10 UTC (permalink / raw
To: gentoo-commits
commit: 2dea7ef1bca68bdc10a9316938abc0e2a8bb2c0a
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 26 21:04:22 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Jan 26 21:09:55 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dea7ef1
media-libs/libepoxy: Drop old versions
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/Manifest | 1 -
media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild | 62 ----------------------------
2 files changed, 63 deletions(-)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index fd512f30368..b422cf65810 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,2 +1 @@
-DIST libepoxy-1.5.3.tar.gz 326768 BLAKE2B 053665429a249adca4c9b3d57797949e3a0ffd0ed3f1c66cb8becfb884431e44a4cccb6b2fd3788a86ee01268ebad3cc36e67e391d2aa5cdea28837a162be9ad SHA512 e831f4f918f08fd5f799501efc0e23b8d404478651634f5e7b35f8ebcc29d91abc447ab20da062dde5be75e18cb39ffea708688e6534f7ab257b949f9c53ddc8
DIST libepoxy-1.5.4.tar.gz 337615 BLAKE2B 2793fde6da59079dfadc653c9f0712b0bd2ca1455a8cda7982bce61c35a3629641a30a76db059af635c1fa0076b4e6c56874b199b41d548afbbad8f6e43384e3 SHA512 c8b03f0a39df320fdd163a34c35f9ffbed51bc0174fd89a7dc4b3ab2439413087e1e1a2fe57418520074abd435051cbf03eb2a7bf8897da1712bbbc69cf27cc5
diff --git a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
deleted file mode 100644
index 17331b6e79c..00000000000
--- a/media-libs/libepoxy/libepoxy-1.5.3-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
-
-if [[ ${PV} = 9999* ]]; then
- GIT_ECLASS="git-r3"
-fi
-
-PYTHON_COMPAT=( python{2_7,3_6,3_7} )
-PYTHON_REQ_USE='xml(+)'
-inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
-
-DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-if [[ ${PV} = 9999* ]]; then
- SRC_URI=""
-else
- KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86"
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+egl test +X"
-RESTRICT="!test? ( test )"
-
-RDEPEND="egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
-DEPEND="${PYTHON_DEPS}
- ${RDEPEND}
- >=dev-util/meson-0.47.0
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
- virtual/pkgconfig"
-
-src_unpack() {
- default
- [[ $PV = 9999* ]] && git-r3_src_unpack
-}
-
-multilib_src_configure() {
- local emesonargs=(
- -Degl=$(usex egl)
- -Dglx=$(usex X)
- -Dx11=$(usex X true false)
- -Dtests=$(usex test true false)
- )
- meson_src_configure
-}
-
-multilib_src_compile() {
- meson_src_compile
-}
-
-multilib_src_test() {
- meson_src_test
-}
-
-multilib_src_install() {
- meson_src_install
-}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2020-04-17 15:56 Andreas Sturmlechner
0 siblings, 0 replies; 152+ messages in thread
From: Andreas Sturmlechner @ 2020-04-17 15:56 UTC (permalink / raw
To: gentoo-commits
commit: 73733bd026f26e84f2e57fe38767e392e945118c
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 17 15:50:39 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Apr 17 15:56:39 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73733bd0
media-libs/libepoxy: python3_8 support, minor cleanup
Tests passed.
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.4.ebuild | 35 +++++++++++++------------------
media-libs/libepoxy/libepoxy-9999.ebuild | 35 +++++++++++++------------------
2 files changed, 28 insertions(+), 42 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.4.ebuild b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
index 02f1bc297cf..889f0383641 100644
--- a/media-libs/libepoxy/libepoxy-1.5.4.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
@@ -3,41 +3,34 @@
EAPI=7
-EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
-
-if [[ ${PV} = 9999* ]]; then
- GIT_ECLASS="git-r3"
-fi
-
-PYTHON_COMPAT=( python{3_6,3_7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
PYTHON_REQ_USE='xml(+)'
-inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
+inherit meson multilib-minimal python-any-r1
-DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
-HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
- SRC_URI=""
+ EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
+ inherit git-r3
else
- KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
fi
+DESCRIPTION="Library for handling OpenGL function pointer management"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+
LICENSE="MIT"
SLOT="0"
-RESTRICT="!test? ( test )"
IUSE="+egl test +X"
-RDEPEND="egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
-DEPEND="X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
- ${RDEPEND}"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
BDEPEND="${PYTHON_DEPS}
virtual/pkgconfig"
-src_unpack() {
- default
- [[ $PV = 9999* ]] && git-r3_src_unpack
-}
-
multilib_src_configure() {
local emesonargs=(
-Degl=$(usex egl)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 7d68a7cdbcf..17b8095b0f3 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -3,41 +3,34 @@
EAPI=7
-EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
-
-if [[ ${PV} = 9999* ]]; then
- GIT_ECLASS="git-r3"
-fi
-
-PYTHON_COMPAT=( python{3_6,3_7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
PYTHON_REQ_USE='xml(+)'
-inherit ${GIT_ECLASS} meson multilib-minimal python-any-r1
+inherit meson multilib-minimal python-any-r1
-DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
-HOMEPAGE="https://github.com/anholt/libepoxy"
if [[ ${PV} = 9999* ]]; then
- SRC_URI=""
+ EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
+ inherit git-r3
else
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
fi
+DESCRIPTION="Library for handling OpenGL function pointer management"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+
LICENSE="MIT"
SLOT="0"
-RESTRICT="!test? ( test )"
IUSE="+egl test +X"
-RDEPEND="egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
-DEPEND="X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
- ${RDEPEND}"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
BDEPEND="${PYTHON_DEPS}
virtual/pkgconfig"
-src_unpack() {
- default
- [[ $PV = 9999* ]] && git-r3_src_unpack
-}
-
multilib_src_configure() {
local emesonargs=(
-Degl=$(usex egl)
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2020-10-06 3:44 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2020-10-06 3:44 UTC (permalink / raw
To: gentoo-commits
commit: ab0b9e9aed240ae0ad98f576f6dcbc68bc34c51c
Author: Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Mon Oct 5 20:54:42 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Oct 6 03:36:26 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab0b9e9a
media-libs/libepoxy: python3_9
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/17808
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.4.ebuild | 2 +-
media-libs/libepoxy/libepoxy-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.4.ebuild b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
index 889f0383641..0d6748e1bdb 100644
--- a/media-libs/libepoxy/libepoxy-1.5.4.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
PYTHON_REQ_USE='xml(+)'
inherit meson multilib-minimal python-any-r1
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 17b8095b0f3..329b128e948 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
PYTHON_REQ_USE='xml(+)'
inherit meson multilib-minimal python-any-r1
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2020-12-24 4:30 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2020-12-24 4:30 UTC (permalink / raw
To: gentoo-commits
commit: fc4f8c51d06b85a4f495bdf549c0883df12afc34
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 24 04:24:53 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Dec 24 04:30:47 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc4f8c51
media-libs/libepoxy: Version bump to 1.5.5
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/libepoxy-1.5.5.ebuild | 54 +++++++++++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index b422cf65810..4e8da22a9e1 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1 +1,2 @@
DIST libepoxy-1.5.4.tar.gz 337615 BLAKE2B 2793fde6da59079dfadc653c9f0712b0bd2ca1455a8cda7982bce61c35a3629641a30a76db059af635c1fa0076b4e6c56874b199b41d548afbbad8f6e43384e3 SHA512 c8b03f0a39df320fdd163a34c35f9ffbed51bc0174fd89a7dc4b3ab2439413087e1e1a2fe57418520074abd435051cbf03eb2a7bf8897da1712bbbc69cf27cc5
+DIST libepoxy-1.5.5.tar.gz 332057 BLAKE2B bf9a1e089c620e710caa7d4b7d5d0ec0cef186c7881b1a61aa22f58d8e023706087c766ad970ea8950752d87d2f32d12e2ded3137502f35991afb5b4fb3648cd SHA512 9056840d887f06c6422f61e65ea02511ed37b866a234d49bf78dc5f2f46e8dd9f029405387da14dced639e6a5740b5c56ab6d88ca23ea3270fc6db6a570b0c45
diff --git a/media-libs/libepoxy/libepoxy-1.5.5.ebuild b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
new file mode 100644
index 00000000000..ecd6c30c496
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+PYTHON_REQ_USE='xml(+)'
+inherit meson multilib-minimal python-any-r1 virtualx
+
+if [[ ${PV} = 9999* ]]; then
+ EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+fi
+
+DESCRIPTION="Library for handling OpenGL function pointer management"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+egl test +X"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
+BDEPEND="${PYTHON_DEPS}
+ virtual/pkgconfig"
+
+multilib_src_configure() {
+ local emesonargs=(
+ -Degl=$(usex egl)
+ -Dglx=$(usex X)
+ $(meson_use X x11)
+ $(meson_use test tests)
+ )
+ meson_src_configure
+}
+
+multilib_src_compile() {
+ meson_src_compile
+}
+
+multilib_src_test() {
+ virtx meson_src_test
+}
+
+multilib_src_install() {
+ meson_src_install
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2020-12-24 4:30 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2020-12-24 4:30 UTC (permalink / raw
To: gentoo-commits
commit: 8ecf93aeaa8d339d74dd99f356fd84a77e78a108
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 24 04:27:56 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Dec 24 04:30:47 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ecf93ae
media-libs/libepoxy: Use virtualx for running tests
Otherwise most of the tests skip.
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 329b128e948..ecd6c30c496 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -5,7 +5,7 @@ EAPI=7
PYTHON_COMPAT=( python3_{6,7,8,9} )
PYTHON_REQ_USE='xml(+)'
-inherit meson multilib-minimal python-any-r1
+inherit meson multilib-minimal python-any-r1 virtualx
if [[ ${PV} = 9999* ]]; then
EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
@@ -46,7 +46,7 @@ multilib_src_compile() {
}
multilib_src_test() {
- meson_src_test
+ virtx meson_src_test
}
multilib_src_install() {
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2020-12-27 18:55 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2020-12-27 18:55 UTC (permalink / raw
To: gentoo-commits
commit: 8cc60e2d3975139463c02924340188aa917b6069
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 27 18:54:43 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Dec 27 18:54:54 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cc60e2d
media-libs/libepoxy: Propagate ~riscv keywords
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.5.ebuild | 2 +-
media-libs/libepoxy/libepoxy-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.5.ebuild b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
index ecd6c30c496..6ffc5543022 100644
--- a/media-libs/libepoxy/libepoxy-1.5.5.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index ecd6c30c496..6ffc5543022 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-03-09 10:30 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2021-03-09 10:30 UTC (permalink / raw
To: gentoo-commits
commit: fa6382bf83937a8920e911770b3e3944efe994b2
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 9 10:30:21 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 9 10:30:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa6382bf
media-libs/libepoxy: Stabilize 1.5.5 arm, #774921
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.5.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.5.ebuild b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
index 9b903d1590d..26ed6416db9 100644
--- a/media-libs/libepoxy/libepoxy-1.5.5.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.5.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
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-03-09 10:31 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2021-03-09 10:31 UTC (permalink / raw
To: gentoo-commits
commit: 61beef1e58a0798717471e73d7844fed14bd556a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 9 10:31:26 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 9 10:31:26 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61beef1e
media-libs/libepoxy: Stabilize 1.5.5 arm64, #774921
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.5.ebuild b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
index 26ed6416db9..a5212c5a4f4 100644
--- a/media-libs/libepoxy/libepoxy-1.5.5.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-03-09 11:23 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2021-03-09 11:23 UTC (permalink / raw
To: gentoo-commits
commit: 77baf9331ccbcfa9939d35ef58b6e4ba305ba725
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 9 11:22:56 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 9 11:22:56 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77baf933
media-libs/libepoxy: Stabilize 1.5.5 amd64, #774921
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.5.ebuild b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
index a5212c5a4f4..3ebac73cd32 100644
--- a/media-libs/libepoxy/libepoxy-1.5.5.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-03-09 11:31 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2021-03-09 11:31 UTC (permalink / raw
To: gentoo-commits
commit: a6684916c26324ae2fe8c10c3e58aee1d199e427
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 9 11:30:29 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 9 11:30:29 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6684916
media-libs/libepoxy: Stabilize 1.5.5 x86, #774921
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.5.ebuild b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
index 3ebac73cd32..2c9831ede9c 100644
--- a/media-libs/libepoxy/libepoxy-1.5.5.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-03-16 18:10 Sergei Trofimovich
0 siblings, 0 replies; 152+ messages in thread
From: Sergei Trofimovich @ 2021-03-16 18:10 UTC (permalink / raw
To: gentoo-commits
commit: e4aafe4ea1194cc051e3c0f5f04a46ac2b493744
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Tue Mar 16 16:05:33 2021 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Tue Mar 16 18:10:20 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4aafe4e
media-libs/libepoxy: stable 1.5.5 for sparc, bug #774921
Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.5.ebuild b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
index 2c9831ede9c..7813206efec 100644
--- a/media-libs/libepoxy/libepoxy-1.5.5.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-03-25 23:42 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2021-03-25 23:42 UTC (permalink / raw
To: gentoo-commits
commit: 80b4e237eca094bc85d4bfa6ca9e26ded89fcb94
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 25 23:41:37 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 25 23:41:37 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80b4e237
media-libs/libepoxy: Stabilize 1.5.5 ppc, #774921
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.5.ebuild b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
index 21354889da8..5204c05212a 100644
--- a/media-libs/libepoxy/libepoxy-1.5.5.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-03-25 23:42 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2021-03-25 23:42 UTC (permalink / raw
To: gentoo-commits
commit: f539352bc8bd27783a3d5e11a290e44657f90e26
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 25 23:40:57 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 25 23:40:57 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f539352b
media-libs/libepoxy: Stabilize 1.5.5 ppc64, #774921
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.5.ebuild b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
index 7813206efec..21354889da8 100644
--- a/media-libs/libepoxy/libepoxy-1.5.5.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-04-30 19:08 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2021-04-30 19:08 UTC (permalink / raw
To: gentoo-commits
commit: a58239a3436889c224f5213c4da91fb9ac181c17
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 30 18:50:35 2021 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Apr 30 19:08:13 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a58239a3
media-libs/libepoxy: Version bump to 1.5.7
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/libepoxy-1.5.7.ebuild | 54 +++++++++++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 4e8da22a9e1..56d559e001e 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,2 +1,3 @@
DIST libepoxy-1.5.4.tar.gz 337615 BLAKE2B 2793fde6da59079dfadc653c9f0712b0bd2ca1455a8cda7982bce61c35a3629641a30a76db059af635c1fa0076b4e6c56874b199b41d548afbbad8f6e43384e3 SHA512 c8b03f0a39df320fdd163a34c35f9ffbed51bc0174fd89a7dc4b3ab2439413087e1e1a2fe57418520074abd435051cbf03eb2a7bf8897da1712bbbc69cf27cc5
DIST libepoxy-1.5.5.tar.gz 332057 BLAKE2B bf9a1e089c620e710caa7d4b7d5d0ec0cef186c7881b1a61aa22f58d8e023706087c766ad970ea8950752d87d2f32d12e2ded3137502f35991afb5b4fb3648cd SHA512 9056840d887f06c6422f61e65ea02511ed37b866a234d49bf78dc5f2f46e8dd9f029405387da14dced639e6a5740b5c56ab6d88ca23ea3270fc6db6a570b0c45
+DIST libepoxy-1.5.7.tar.gz 331868 BLAKE2B 95bb7637f4254aaff051ca8c896e0aa80cfbeca6e12ae87515e97ebeb2f40a41c60c3a0a7a106d8a375eb3d5a77e363442afb4644725e1d8491a335e70998c51 SHA512 7f7cda8eeb2d93d56d5d8ad9f76e186285d024b6f9b211db89c18d5bdfd1e85e7ec08c421913877a153edc8c25ecbccc205303d57d19bb8f98f4c5f93ed492bb
diff --git a/media-libs/libepoxy/libepoxy-1.5.7.ebuild b/media-libs/libepoxy/libepoxy-1.5.7.ebuild
new file mode 100644
index 00000000000..ec9f392345c
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.5.7.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_REQ_USE='xml(+)'
+inherit meson multilib-minimal python-any-r1 virtualx
+
+if [[ ${PV} = 9999* ]]; then
+ EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
+
+DESCRIPTION="Library for handling OpenGL function pointer management"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+egl test +X"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
+BDEPEND="${PYTHON_DEPS}
+ virtual/pkgconfig"
+
+multilib_src_configure() {
+ local emesonargs=(
+ -Degl=$(usex egl)
+ -Dglx=$(usex X)
+ $(meson_use X x11)
+ $(meson_use test tests)
+ )
+ meson_src_configure
+}
+
+multilib_src_compile() {
+ meson_src_compile
+}
+
+multilib_src_test() {
+ virtx meson_src_test
+}
+
+multilib_src_install() {
+ meson_src_install
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-05-26 3:56 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2021-05-26 3:56 UTC (permalink / raw
To: gentoo-commits
commit: 0e1b142c5f9da94e7cf1d11b5d889608f4ac3776
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed May 26 03:56:02 2021 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Wed May 26 03:56:18 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e1b142c
media-libs/libepoxy: Drop old versions
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/Manifest | 2 --
media-libs/libepoxy/libepoxy-1.5.4.ebuild | 54 -------------------------------
media-libs/libepoxy/libepoxy-1.5.7.ebuild | 54 -------------------------------
3 files changed, 110 deletions(-)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 43cfc4f8ca1..86712d093c5 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,4 +1,2 @@
-DIST libepoxy-1.5.4.tar.gz 337615 BLAKE2B 2793fde6da59079dfadc653c9f0712b0bd2ca1455a8cda7982bce61c35a3629641a30a76db059af635c1fa0076b4e6c56874b199b41d548afbbad8f6e43384e3 SHA512 c8b03f0a39df320fdd163a34c35f9ffbed51bc0174fd89a7dc4b3ab2439413087e1e1a2fe57418520074abd435051cbf03eb2a7bf8897da1712bbbc69cf27cc5
DIST libepoxy-1.5.5.tar.gz 332057 BLAKE2B bf9a1e089c620e710caa7d4b7d5d0ec0cef186c7881b1a61aa22f58d8e023706087c766ad970ea8950752d87d2f32d12e2ded3137502f35991afb5b4fb3648cd SHA512 9056840d887f06c6422f61e65ea02511ed37b866a234d49bf78dc5f2f46e8dd9f029405387da14dced639e6a5740b5c56ab6d88ca23ea3270fc6db6a570b0c45
-DIST libepoxy-1.5.7.tar.gz 331868 BLAKE2B 95bb7637f4254aaff051ca8c896e0aa80cfbeca6e12ae87515e97ebeb2f40a41c60c3a0a7a106d8a375eb3d5a77e363442afb4644725e1d8491a335e70998c51 SHA512 7f7cda8eeb2d93d56d5d8ad9f76e186285d024b6f9b211db89c18d5bdfd1e85e7ec08c421913877a153edc8c25ecbccc205303d57d19bb8f98f4c5f93ed492bb
DIST libepoxy-1.5.8.tar.gz 331848 BLAKE2B 0c4bca1a551a2c5908b4edc0176809cb9aebc22c688604c372a067d93347751dbe47354de8a8b8139cd02d8f0a444fe5a3f0b88759d75e1e85f17a6ba860a00b SHA512 352ad43014841d0b03a6da968b08d98aeb0332b9c6d1357650d83ef143db1194ae0fa68d274e4f160c76bae2fb4d2230599e9d9f6cae58f36f4b7f065e9277f0
diff --git a/media-libs/libepoxy/libepoxy-1.5.4.ebuild b/media-libs/libepoxy/libepoxy-1.5.4.ebuild
deleted file mode 100644
index 51ad78cfbc5..00000000000
--- a/media-libs/libepoxy/libepoxy-1.5.4.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-PYTHON_REQ_USE='xml(+)'
-inherit meson multilib-minimal python-any-r1
-
-if [[ ${PV} = 9999* ]]; then
- EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
-fi
-
-DESCRIPTION="Library for handling OpenGL function pointer management"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+egl test +X"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
-BDEPEND="${PYTHON_DEPS}
- virtual/pkgconfig"
-
-multilib_src_configure() {
- local emesonargs=(
- -Degl=$(usex egl)
- -Dglx=$(usex X)
- $(meson_use X x11)
- $(meson_use test tests)
- )
- meson_src_configure
-}
-
-multilib_src_compile() {
- meson_src_compile
-}
-
-multilib_src_test() {
- meson_src_test
-}
-
-multilib_src_install() {
- meson_src_install
-}
diff --git a/media-libs/libepoxy/libepoxy-1.5.7.ebuild b/media-libs/libepoxy/libepoxy-1.5.7.ebuild
deleted file mode 100644
index ec9f392345c..00000000000
--- a/media-libs/libepoxy/libepoxy-1.5.7.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-PYTHON_REQ_USE='xml(+)'
-inherit meson multilib-minimal python-any-r1 virtualx
-
-if [[ ${PV} = 9999* ]]; then
- EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-fi
-
-DESCRIPTION="Library for handling OpenGL function pointer management"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+egl test +X"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
-BDEPEND="${PYTHON_DEPS}
- virtual/pkgconfig"
-
-multilib_src_configure() {
- local emesonargs=(
- -Degl=$(usex egl)
- -Dglx=$(usex X)
- $(meson_use X x11)
- $(meson_use test tests)
- )
- meson_src_configure
-}
-
-multilib_src_compile() {
- meson_src_compile
-}
-
-multilib_src_test() {
- virtx meson_src_test
-}
-
-multilib_src_install() {
- meson_src_install
-}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-05-26 3:56 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2021-05-26 3:56 UTC (permalink / raw
To: gentoo-commits
commit: fbf861c3c753458ce6156e4f61e003b3a759a061
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed May 26 03:52:56 2021 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Wed May 26 03:56:17 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbf861c3
media-libs/libepoxy: Version bump to 1.5.8
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/libepoxy-1.5.8.ebuild | 54 +++++++++++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 56d559e001e..43cfc4f8ca1 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,3 +1,4 @@
DIST libepoxy-1.5.4.tar.gz 337615 BLAKE2B 2793fde6da59079dfadc653c9f0712b0bd2ca1455a8cda7982bce61c35a3629641a30a76db059af635c1fa0076b4e6c56874b199b41d548afbbad8f6e43384e3 SHA512 c8b03f0a39df320fdd163a34c35f9ffbed51bc0174fd89a7dc4b3ab2439413087e1e1a2fe57418520074abd435051cbf03eb2a7bf8897da1712bbbc69cf27cc5
DIST libepoxy-1.5.5.tar.gz 332057 BLAKE2B bf9a1e089c620e710caa7d4b7d5d0ec0cef186c7881b1a61aa22f58d8e023706087c766ad970ea8950752d87d2f32d12e2ded3137502f35991afb5b4fb3648cd SHA512 9056840d887f06c6422f61e65ea02511ed37b866a234d49bf78dc5f2f46e8dd9f029405387da14dced639e6a5740b5c56ab6d88ca23ea3270fc6db6a570b0c45
DIST libepoxy-1.5.7.tar.gz 331868 BLAKE2B 95bb7637f4254aaff051ca8c896e0aa80cfbeca6e12ae87515e97ebeb2f40a41c60c3a0a7a106d8a375eb3d5a77e363442afb4644725e1d8491a335e70998c51 SHA512 7f7cda8eeb2d93d56d5d8ad9f76e186285d024b6f9b211db89c18d5bdfd1e85e7ec08c421913877a153edc8c25ecbccc205303d57d19bb8f98f4c5f93ed492bb
+DIST libepoxy-1.5.8.tar.gz 331848 BLAKE2B 0c4bca1a551a2c5908b4edc0176809cb9aebc22c688604c372a067d93347751dbe47354de8a8b8139cd02d8f0a444fe5a3f0b88759d75e1e85f17a6ba860a00b SHA512 352ad43014841d0b03a6da968b08d98aeb0332b9c6d1357650d83ef143db1194ae0fa68d274e4f160c76bae2fb4d2230599e9d9f6cae58f36f4b7f065e9277f0
diff --git a/media-libs/libepoxy/libepoxy-1.5.8.ebuild b/media-libs/libepoxy/libepoxy-1.5.8.ebuild
new file mode 100644
index 00000000000..9b903d1590d
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.5.8.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_REQ_USE='xml(+)'
+inherit meson multilib-minimal python-any-r1 virtualx
+
+if [[ ${PV} = 9999* ]]; then
+ EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
+
+DESCRIPTION="Library for handling OpenGL function pointer management"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+egl test +X"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
+BDEPEND="${PYTHON_DEPS}
+ virtual/pkgconfig"
+
+multilib_src_configure() {
+ local emesonargs=(
+ -Degl=$(usex egl)
+ -Dglx=$(usex X)
+ $(meson_use X x11)
+ $(meson_use test tests)
+ )
+ meson_src_configure
+}
+
+multilib_src_compile() {
+ meson_src_compile
+}
+
+multilib_src_test() {
+ virtx meson_src_test
+}
+
+multilib_src_install() {
+ meson_src_install
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-06-04 1:14 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2021-06-04 1:14 UTC (permalink / raw
To: gentoo-commits
commit: ca866571506b7af0656200c221ede960f6939db2
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Fri May 28 01:13:55 2021 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Fri Jun 4 01:14:10 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca866571
media-libs/libepoxy: Switch to meson-multilib
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.5.ebuild | 10 +---------
media-libs/libepoxy/libepoxy-1.5.8.ebuild | 12 ++----------
media-libs/libepoxy/libepoxy-9999.ebuild | 12 ++----------
3 files changed, 5 insertions(+), 29 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.5.ebuild b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
index 5204c05212a..62036c1ad5b 100644
--- a/media-libs/libepoxy/libepoxy-1.5.5.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.5.ebuild
@@ -5,7 +5,7 @@ EAPI=7
PYTHON_COMPAT=( python3_{7,8,9} )
PYTHON_REQ_USE='xml(+)'
-inherit meson multilib-minimal python-any-r1 virtualx
+inherit meson-multilib python-any-r1 virtualx
if [[ ${PV} = 9999* ]]; then
EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
@@ -41,14 +41,6 @@ multilib_src_configure() {
meson_src_configure
}
-multilib_src_compile() {
- meson_src_compile
-}
-
multilib_src_test() {
virtx meson_src_test
}
-
-multilib_src_install() {
- meson_src_install
-}
diff --git a/media-libs/libepoxy/libepoxy-1.5.8.ebuild b/media-libs/libepoxy/libepoxy-1.5.8.ebuild
index 9b903d1590d..8557aa03d5c 100644
--- a/media-libs/libepoxy/libepoxy-1.5.8.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.8.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7,8,9} )
PYTHON_REQ_USE='xml(+)'
-inherit meson multilib-minimal python-any-r1 virtualx
+inherit meson-multilib python-any-r1 virtualx
if [[ ${PV} = 9999* ]]; then
EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
@@ -41,14 +41,6 @@ multilib_src_configure() {
meson_src_configure
}
-multilib_src_compile() {
- meson_src_compile
-}
-
multilib_src_test() {
virtx meson_src_test
}
-
-multilib_src_install() {
- meson_src_install
-}
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 9b903d1590d..8557aa03d5c 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7,8,9} )
PYTHON_REQ_USE='xml(+)'
-inherit meson multilib-minimal python-any-r1 virtualx
+inherit meson-multilib python-any-r1 virtualx
if [[ ${PV} = 9999* ]]; then
EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
@@ -41,14 +41,6 @@ multilib_src_configure() {
meson_src_configure
}
-multilib_src_compile() {
- meson_src_compile
-}
-
multilib_src_test() {
virtx meson_src_test
}
-
-multilib_src_install() {
- meson_src_install
-}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-08-19 19:48 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2021-08-19 19:48 UTC (permalink / raw
To: gentoo-commits
commit: 76373f37a1302ee8aa4ae61c7c04f820b5b76b8b
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 19 19:45:51 2021 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Aug 19 19:47:40 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76373f37
media-libs/libepoxy: Drop old versions
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/Manifest | 1 -
media-libs/libepoxy/libepoxy-1.5.8.ebuild | 46 -------------------------------
2 files changed, 47 deletions(-)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index ce70e4e36e8..2868a48ec64 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,3 +1,2 @@
DIST libepoxy-1.5.5.tar.gz 332057 BLAKE2B bf9a1e089c620e710caa7d4b7d5d0ec0cef186c7881b1a61aa22f58d8e023706087c766ad970ea8950752d87d2f32d12e2ded3137502f35991afb5b4fb3648cd SHA512 9056840d887f06c6422f61e65ea02511ed37b866a234d49bf78dc5f2f46e8dd9f029405387da14dced639e6a5740b5c56ab6d88ca23ea3270fc6db6a570b0c45
-DIST libepoxy-1.5.8.tar.gz 331848 BLAKE2B 0c4bca1a551a2c5908b4edc0176809cb9aebc22c688604c372a067d93347751dbe47354de8a8b8139cd02d8f0a444fe5a3f0b88759d75e1e85f17a6ba860a00b SHA512 352ad43014841d0b03a6da968b08d98aeb0332b9c6d1357650d83ef143db1194ae0fa68d274e4f160c76bae2fb4d2230599e9d9f6cae58f36f4b7f065e9277f0
DIST libepoxy-1.5.9.tar.gz 331982 BLAKE2B 2bac6dae7fa2fcc70c1a5cacb1e6b6d21aaf65a65792d3c60eb0745acc4967092136aad1fbba6009a8c8e9bb1091a5d0a38fca05e63be2b9141d9c7e3042b426 SHA512 2b7c269063dc1c156c1a2a525e27a0a323baaa7fa4ac091536e4cc5fc4c247efe9770d7979dbddb54deb14853008bb6f4d67fddd26d87cbd264eb1e6e65bc5a8
diff --git a/media-libs/libepoxy/libepoxy-1.5.8.ebuild b/media-libs/libepoxy/libepoxy-1.5.8.ebuild
deleted file mode 100644
index 8557aa03d5c..00000000000
--- a/media-libs/libepoxy/libepoxy-1.5.8.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-PYTHON_REQ_USE='xml(+)'
-inherit meson-multilib python-any-r1 virtualx
-
-if [[ ${PV} = 9999* ]]; then
- EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-fi
-
-DESCRIPTION="Library for handling OpenGL function pointer management"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+egl test +X"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
-BDEPEND="${PYTHON_DEPS}
- virtual/pkgconfig"
-
-multilib_src_configure() {
- local emesonargs=(
- -Degl=$(usex egl)
- -Dglx=$(usex X)
- $(meson_use X x11)
- $(meson_use test tests)
- )
- meson_src_configure
-}
-
-multilib_src_test() {
- virtx meson_src_test
-}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-08-19 19:48 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2021-08-19 19:48 UTC (permalink / raw
To: gentoo-commits
commit: 24aa3966b4752654fc66dab5ce8e1188bc877976
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 19 19:46:37 2021 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Aug 19 19:47:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24aa3966
media-libs/libepoxy: Add Python 3.10 compatibility
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 8557aa03d5c..e29ce87c328 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{7..10} )
PYTHON_REQ_USE='xml(+)'
inherit meson-multilib python-any-r1 virtualx
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-08-19 19:48 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2021-08-19 19:48 UTC (permalink / raw
To: gentoo-commits
commit: 7921852d2572d6f7569d030faa52ea9b9ac1bba4
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 19 19:41:20 2021 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Aug 19 19:47:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7921852d
media-libs/libepoxy: Version bump to 1.5.9
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/libepoxy-1.5.9.ebuild | 46 +++++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 86712d093c5..ce70e4e36e8 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,2 +1,3 @@
DIST libepoxy-1.5.5.tar.gz 332057 BLAKE2B bf9a1e089c620e710caa7d4b7d5d0ec0cef186c7881b1a61aa22f58d8e023706087c766ad970ea8950752d87d2f32d12e2ded3137502f35991afb5b4fb3648cd SHA512 9056840d887f06c6422f61e65ea02511ed37b866a234d49bf78dc5f2f46e8dd9f029405387da14dced639e6a5740b5c56ab6d88ca23ea3270fc6db6a570b0c45
DIST libepoxy-1.5.8.tar.gz 331848 BLAKE2B 0c4bca1a551a2c5908b4edc0176809cb9aebc22c688604c372a067d93347751dbe47354de8a8b8139cd02d8f0a444fe5a3f0b88759d75e1e85f17a6ba860a00b SHA512 352ad43014841d0b03a6da968b08d98aeb0332b9c6d1357650d83ef143db1194ae0fa68d274e4f160c76bae2fb4d2230599e9d9f6cae58f36f4b7f065e9277f0
+DIST libepoxy-1.5.9.tar.gz 331982 BLAKE2B 2bac6dae7fa2fcc70c1a5cacb1e6b6d21aaf65a65792d3c60eb0745acc4967092136aad1fbba6009a8c8e9bb1091a5d0a38fca05e63be2b9141d9c7e3042b426 SHA512 2b7c269063dc1c156c1a2a525e27a0a323baaa7fa4ac091536e4cc5fc4c247efe9770d7979dbddb54deb14853008bb6f4d67fddd26d87cbd264eb1e6e65bc5a8
diff --git a/media-libs/libepoxy/libepoxy-1.5.9.ebuild b/media-libs/libepoxy/libepoxy-1.5.9.ebuild
new file mode 100644
index 00000000000..e29ce87c328
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.5.9.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..10} )
+PYTHON_REQ_USE='xml(+)'
+inherit meson-multilib python-any-r1 virtualx
+
+if [[ ${PV} = 9999* ]]; then
+ EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
+
+DESCRIPTION="Library for handling OpenGL function pointer management"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+egl test +X"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+ X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
+BDEPEND="${PYTHON_DEPS}
+ virtual/pkgconfig"
+
+multilib_src_configure() {
+ local emesonargs=(
+ -Degl=$(usex egl)
+ -Dglx=$(usex X)
+ $(meson_use X x11)
+ $(meson_use test tests)
+ )
+ meson_src_configure
+}
+
+multilib_src_test() {
+ virtx meson_src_test
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-10-31 0:19 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2021-10-31 0:19 UTC (permalink / raw
To: gentoo-commits
commit: cd3c514678ed08b63a77713a6ad552e01ca71a5a
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 22 05:38:08 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 31 00:19:18 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd3c5146
media-libs/libepoxy: Set USE-defaults for mesa[egl,gbm]
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/{libepoxy-1.5.5.ebuild => libepoxy-1.5.5-r1.ebuild} | 2 +-
media-libs/libepoxy/{libepoxy-1.5.9.ebuild => libepoxy-1.5.9-r1.ebuild} | 2 +-
media-libs/libepoxy/libepoxy-9999.ebuild | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.5.ebuild b/media-libs/libepoxy/libepoxy-1.5.5-r1.ebuild
similarity index 94%
rename from media-libs/libepoxy/libepoxy-1.5.5.ebuild
rename to media-libs/libepoxy/libepoxy-1.5.5-r1.ebuild
index 62036c1ad5b..332bb0aabe7 100644
--- a/media-libs/libepoxy/libepoxy-1.5.5.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.5-r1.ebuild
@@ -25,7 +25,7 @@ IUSE="+egl test +X"
RESTRICT="!test? ( test )"
RDEPEND="
- egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
+ egl? ( media-libs/mesa[egl(+),${MULTILIB_USEDEP}] )"
DEPEND="${RDEPEND}
X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
BDEPEND="${PYTHON_DEPS}
diff --git a/media-libs/libepoxy/libepoxy-1.5.9.ebuild b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
similarity index 94%
rename from media-libs/libepoxy/libepoxy-1.5.9.ebuild
rename to media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
index e29ce87c328..8a0359a68ec 100644
--- a/media-libs/libepoxy/libepoxy-1.5.9.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
@@ -25,7 +25,7 @@ IUSE="+egl test +X"
RESTRICT="!test? ( test )"
RDEPEND="
- egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
+ egl? ( media-libs/mesa[egl(+),${MULTILIB_USEDEP}] )"
DEPEND="${RDEPEND}
X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
BDEPEND="${PYTHON_DEPS}
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index e29ce87c328..8a0359a68ec 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -25,7 +25,7 @@ IUSE="+egl test +X"
RESTRICT="!test? ( test )"
RDEPEND="
- egl? ( media-libs/mesa[egl,${MULTILIB_USEDEP}] )"
+ egl? ( media-libs/mesa[egl(+),${MULTILIB_USEDEP}] )"
DEPEND="${RDEPEND}
X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
BDEPEND="${PYTHON_DEPS}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-11-07 22:10 Jakov Smolić
0 siblings, 0 replies; 152+ messages in thread
From: Jakov Smolić @ 2021-11-07 22:10 UTC (permalink / raw
To: gentoo-commits
commit: b1651e79e727f42d91a0ff0e7b8ee0878eb1d100
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 7 22:10:14 2021 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Nov 7 22:10:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1651e79
media-libs/libepoxy: Stabilize 1.5.9-r1 amd64, #822339
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
index 8a0359a68ec..198ea0f6d45 100644
--- a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-11-12 20:51 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2021-11-12 20:51 UTC (permalink / raw
To: gentoo-commits
commit: 6dfd1dddde4b452dfb1089e9d82cd002609edb87
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Wed Nov 10 21:13:09 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 12 20:51:11 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dfd1ddd
media-libs/libepoxy: stable 1.5.9-r1 for sparc, bug #822339
Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
index 198ea0f6d45..039349f53a0 100644
--- a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-11-15 1:12 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2021-11-15 1:12 UTC (permalink / raw
To: gentoo-commits
commit: 8643c2c7b43ec7547a00205fa61648ec4bd41190
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 15 01:11:57 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Nov 15 01:11:57 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8643c2c7
media-libs/libepoxy: Stabilize 1.5.9-r1 arm, #822339
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
index 039349f53a02..30f8c78b81fb 100644
--- a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
+ KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-11-15 8:38 Jakov Smolić
0 siblings, 0 replies; 152+ messages in thread
From: Jakov Smolić @ 2021-11-15 8:38 UTC (permalink / raw
To: gentoo-commits
commit: 4a64c0bd3cae9f1a89195fd52db58f4ab89ae127
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 15 08:37:52 2021 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Nov 15 08:37:52 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a64c0bd
media-libs/libepoxy: Stabilize 1.5.9-r1 x86, #822339
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
index 30f8c78b81fb..3e54bc9d9901 100644
--- a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
+ KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-11-17 7:49 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2021-11-17 7:49 UTC (permalink / raw
To: gentoo-commits
commit: 8614101bbbc3ae7a2578bb6e1d509fc7bcf38fef
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 17 07:47:44 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 17 07:48:38 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8614101b
media-libs/libepoxy: Stabilize 1.5.9-r1 arm64, #822339
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
index 3e54bc9d9901..64ba5d7b57ac 100644
--- a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-11-17 16:51 Arthur Zamarin
0 siblings, 0 replies; 152+ messages in thread
From: Arthur Zamarin @ 2021-11-17 16:51 UTC (permalink / raw
To: gentoo-commits
commit: 58292890d32833826d18be97d4ce33c52a7d0e91
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 17 16:51:05 2021 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 17 16:51:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58292890
media-libs/libepoxy: Stabilize 1.5.9-r1 ppc, #822339
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
index 64ba5d7b57ac..bf50c2babd6f 100644
--- a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-11-17 22:55 Georgy Yakovlev
0 siblings, 0 replies; 152+ messages in thread
From: Georgy Yakovlev @ 2021-11-17 22:55 UTC (permalink / raw
To: gentoo-commits
commit: d5e12e7fdcfc9eec1ae124b025513edee52b919f
Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 17 21:24:37 2021 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Wed Nov 17 22:54:42 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5e12e7f
media-libs/libepoxy: Stabilize 1.5.9-r1 ppc64, #822339
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
index bf50c2babd6f..0ff0d579c605 100644
--- a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2021-11-18 7:48 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2021-11-18 7:48 UTC (permalink / raw
To: gentoo-commits
commit: 436245e5cbf62344d0a15e158fe049dd20a56a2f
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 18 07:45:17 2021 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Nov 18 07:46:50 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=436245e5
media-libs/libepoxy: Drop old versions
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/Manifest | 1 -
media-libs/libepoxy/libepoxy-1.5.5-r1.ebuild | 46 ----------------------------
2 files changed, 47 deletions(-)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 2868a48ec643..7f9272737a8e 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1,2 +1 @@
-DIST libepoxy-1.5.5.tar.gz 332057 BLAKE2B bf9a1e089c620e710caa7d4b7d5d0ec0cef186c7881b1a61aa22f58d8e023706087c766ad970ea8950752d87d2f32d12e2ded3137502f35991afb5b4fb3648cd SHA512 9056840d887f06c6422f61e65ea02511ed37b866a234d49bf78dc5f2f46e8dd9f029405387da14dced639e6a5740b5c56ab6d88ca23ea3270fc6db6a570b0c45
DIST libepoxy-1.5.9.tar.gz 331982 BLAKE2B 2bac6dae7fa2fcc70c1a5cacb1e6b6d21aaf65a65792d3c60eb0745acc4967092136aad1fbba6009a8c8e9bb1091a5d0a38fca05e63be2b9141d9c7e3042b426 SHA512 2b7c269063dc1c156c1a2a525e27a0a323baaa7fa4ac091536e4cc5fc4c247efe9770d7979dbddb54deb14853008bb6f4d67fddd26d87cbd264eb1e6e65bc5a8
diff --git a/media-libs/libepoxy/libepoxy-1.5.5-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.5-r1.ebuild
deleted file mode 100644
index 332bb0aabe74..000000000000
--- a/media-libs/libepoxy/libepoxy-1.5.5-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-PYTHON_REQ_USE='xml(+)'
-inherit meson-multilib python-any-r1 virtualx
-
-if [[ ${PV} = 9999* ]]; then
- EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
-fi
-
-DESCRIPTION="Library for handling OpenGL function pointer management"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+egl test +X"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- egl? ( media-libs/mesa[egl(+),${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
-BDEPEND="${PYTHON_DEPS}
- virtual/pkgconfig"
-
-multilib_src_configure() {
- local emesonargs=(
- -Degl=$(usex egl)
- -Dglx=$(usex X)
- $(meson_use X x11)
- $(meson_use test tests)
- )
- meson_src_configure
-}
-
-multilib_src_test() {
- virtx meson_src_test
-}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2022-03-26 1:18 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2022-03-26 1:18 UTC (permalink / raw
To: gentoo-commits
commit: ef94e311cba0fcefa5a03896bc794b75fcef5321
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 26 01:15:37 2022 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Mar 26 01:18:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef94e311
media-libs/libepoxy: Version bump to 1.5.10
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/Manifest | 1 +
media-libs/libepoxy/{libepoxy-9999.ebuild => libepoxy-1.5.10.ebuild} | 4 ++--
media-libs/libepoxy/libepoxy-9999.ebuild | 4 ++--
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/media-libs/libepoxy/Manifest b/media-libs/libepoxy/Manifest
index 7f9272737a8e..9374c3fadf8f 100644
--- a/media-libs/libepoxy/Manifest
+++ b/media-libs/libepoxy/Manifest
@@ -1 +1,2 @@
+DIST libepoxy-1.5.10.tar.gz 332078 BLAKE2B d56b45a8fc38901fdb23c50b569a667fce8ca289103a8d7ca19f96a76c75d3c2ff9d6959ed2ed47bd64806add95dafe42dc85dfc5bc60af14b5500b70070e008 SHA512 6786f31c6e2865e68a90eb912900a86bf56fd3df4d78a477356886ac3b6ef52ac887b9c7a77aa027525f868ae9e88b12e5927ba56069c2e115acd631fca3abee
DIST libepoxy-1.5.9.tar.gz 331982 BLAKE2B 2bac6dae7fa2fcc70c1a5cacb1e6b6d21aaf65a65792d3c60eb0745acc4967092136aad1fbba6009a8c8e9bb1091a5d0a38fca05e63be2b9141d9c7e3042b426 SHA512 2b7c269063dc1c156c1a2a525e27a0a323baaa7fa4ac091536e4cc5fc4c247efe9770d7979dbddb54deb14853008bb6f4d67fddd26d87cbd264eb1e6e65bc5a8
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-1.5.10.ebuild
similarity index 93%
copy from media-libs/libepoxy/libepoxy-9999.ebuild
copy to media-libs/libepoxy/libepoxy-1.5.10.ebuild
index 8a0359a68ecb..e6be2aed6eca 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{7..10} )
+PYTHON_COMPAT=( python3_{8..10} )
PYTHON_REQ_USE='xml(+)'
inherit meson-multilib python-any-r1 virtualx
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 8a0359a68ecb..e6be2aed6eca 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_{7..10} )
+PYTHON_COMPAT=( python3_{8..10} )
PYTHON_REQ_USE='xml(+)'
inherit meson-multilib python-any-r1 virtualx
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2022-05-07 17:55 Jakov Smolić
0 siblings, 0 replies; 152+ messages in thread
From: Jakov Smolić @ 2022-05-07 17:55 UTC (permalink / raw
To: gentoo-commits
commit: 161adcd834e903083ba1dadd6b18d773981d117b
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat May 7 17:53:02 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat May 7 17:55:27 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=161adcd8
media-libs/libepoxy: Stabilize 1.5.10 x86, #843167
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10.ebuild b/media-libs/libepoxy/libepoxy-1.5.10.ebuild
index 733e88d83527..2992be1cda95 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2022-05-08 7:34 WANG Xuerui
0 siblings, 0 replies; 152+ messages in thread
From: WANG Xuerui @ 2022-05-08 7:34 UTC (permalink / raw
To: gentoo-commits
commit: 651c7ec5327d066b6ccc780133ad30a0b5775f00
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Sun May 8 07:25:08 2022 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Sun May 8 07:33:56 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=651c7ec5
media-libs/libepoxy: forward ~loong
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
media-libs/libepoxy/libepoxy-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index e6be2aed6eca..9af6e42c5e71 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2022-05-08 7:34 WANG Xuerui
0 siblings, 0 replies; 152+ messages in thread
From: WANG Xuerui @ 2022-05-08 7:34 UTC (permalink / raw
To: gentoo-commits
commit: 3209e50e37891c8d702c11c36a45c6f472a7791b
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Sun May 8 07:23:13 2022 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Sun May 8 07:33:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3209e50e
media-libs/libepoxy: keyword 1.5.9-r1 for ~loong
Tests passed on real hardware with minor tweak; test/dlwrap.c needs to
be taught that "GLIBC_2.36" is also a possible version for dlsym. As the
loong glibc port is yet to be merged, the version could change, so not
submitting it at the moment; glx_alias_prefer_same_name and glx_gles2
are expected to fail.
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
index 653d6c7f0851..486240d79bdb 100644
--- a/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.9-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2022-05-08 8:06 WANG Xuerui
0 siblings, 0 replies; 152+ messages in thread
From: WANG Xuerui @ 2022-05-08 8:06 UTC (permalink / raw
To: gentoo-commits
commit: bb1770e13597ee6c6123501877f273230690d450
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Sun May 8 08:05:36 2022 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Sun May 8 08:06:09 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb1770e1
media-libs/libepoxy: keyword 1.5.10 for ~loong
Tests passed on real hardware.
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10.ebuild b/media-libs/libepoxy/libepoxy-1.5.10.ebuild
index 2992be1cda95..92a8766cff7c 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2022-05-08 23:01 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2022-05-08 23:01 UTC (permalink / raw
To: gentoo-commits
commit: fe581aefe5bdafcaa3d12c901a86153abc53eead
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 8 23:00:57 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 8 23:00:57 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe581aef
media-libs/libepoxy: Stabilize 1.5.10 arm64, #843167
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10.ebuild b/media-libs/libepoxy/libepoxy-1.5.10.ebuild
index 92a8766cff7c..61eb06993206 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+ KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2022-05-10 16:19 Arthur Zamarin
0 siblings, 0 replies; 152+ messages in thread
From: Arthur Zamarin @ 2022-05-10 16:19 UTC (permalink / raw
To: gentoo-commits
commit: 446c23f5ba320bc86244dba5360810b8e4f5e287
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue May 10 16:18:42 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue May 10 16:18:42 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=446c23f5
media-libs/libepoxy: Stabilize 1.5.10 hppa, #843167
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10.ebuild b/media-libs/libepoxy/libepoxy-1.5.10.ebuild
index 61eb06993206..2f254719a4f5 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+ KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2022-05-25 18:00 Jakov Smolić
0 siblings, 0 replies; 152+ messages in thread
From: Jakov Smolić @ 2022-05-25 18:00 UTC (permalink / raw
To: gentoo-commits
commit: 5c71bd0bc1c975b2f7ccbab564bfc455d98d36b0
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed May 25 18:00:02 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed May 25 18:00:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c71bd0b
media-libs/libepoxy: Stabilize 1.5.10 sparc, #843167
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10.ebuild b/media-libs/libepoxy/libepoxy-1.5.10.ebuild
index fbb868ca6be1..0c07152c2f90 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2022-05-28 1:35 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2022-05-28 1:35 UTC (permalink / raw
To: gentoo-commits
commit: beb6cb5186c39ca67d4399db26fba369ffb93505
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 28 01:34:36 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 28 01:34:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beb6cb51
media-libs/libepoxy: Stabilize 1.5.10 ppc64, #843167
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10.ebuild b/media-libs/libepoxy/libepoxy-1.5.10.ebuild
index 0c07152c2f90..c5d061d1589a 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2022-06-19 8:34 Joonas Niilola
0 siblings, 0 replies; 152+ messages in thread
From: Joonas Niilola @ 2022-06-19 8:34 UTC (permalink / raw
To: gentoo-commits
commit: 8b0239abebc796aa7e4693c4ba04ac3df6c45141
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 17 14:19:02 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jun 19 08:34:23 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b0239ab
media-libs/libepoxy: enable py3.11
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild | 2 +-
media-libs/libepoxy/libepoxy-9999.ebuild | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
index b23a8faa254c..bd71baf5f2e5 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
PYTHON_REQ_USE='xml(+)'
inherit meson-multilib python-any-r1 virtualx
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index f54d1c9ccf97..bd71baf5f2e5 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -1,9 +1,9 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
PYTHON_REQ_USE='xml(+)'
inherit meson-multilib python-any-r1 virtualx
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2022-08-15 14:33 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2022-08-15 14:33 UTC (permalink / raw
To: gentoo-commits
commit: 3ea63591fadf8c49f87e8e51f11cfb58139d05ef
Author: matoro <matoro <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Sat Aug 6 16:42:34 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 15 14:33:04 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ea63591
media-libs/libepoxy: Stabilize 1.5.10-r1 sparc, #861023
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
index e8328735b69c..80cf73a3ee05 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2022-08-15 18:03 Arthur Zamarin
0 siblings, 0 replies; 152+ messages in thread
From: Arthur Zamarin @ 2022-08-15 18:03 UTC (permalink / raw
To: gentoo-commits
commit: ecc0bc696b0c4899024f3e53614f3b04ed5d7b91
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 15 18:03:09 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 15 18:03:09 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecc0bc69
media-libs/libepoxy: Stabilize 1.5.10-r1 arm, #861023
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
index 80cf73a3ee05..aff915cb5ea2 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2022-08-15 19:39 Arthur Zamarin
0 siblings, 0 replies; 152+ messages in thread
From: Arthur Zamarin @ 2022-08-15 19:39 UTC (permalink / raw
To: gentoo-commits
commit: 00b93d21622e9e6ee6f44b70c372a1e54ffe6a14
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 15 19:39:15 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 15 19:39:15 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00b93d21
media-libs/libepoxy: Stabilize 1.5.10-r1 ppc, #861023
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
index 0d26d3c8ce07..1fcf7aa5ab68 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2022-08-17 5:57 Arthur Zamarin
0 siblings, 0 replies; 152+ messages in thread
From: Arthur Zamarin @ 2022-08-17 5:57 UTC (permalink / raw
To: gentoo-commits
commit: e34f8f12887c829ba618097f81f9b84a910f3d35
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 17 05:56:52 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 17 05:56:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e34f8f12
media-libs/libepoxy: Stabilize 1.5.10-r1 hppa, #861023
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
index 1fcf7aa5ab68..148f1d8df4c8 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2022-08-17 16:11 Arthur Zamarin
0 siblings, 0 replies; 152+ messages in thread
From: Arthur Zamarin @ 2022-08-17 16:11 UTC (permalink / raw
To: gentoo-commits
commit: 3d01b0e7245dd82536d202736bb897372067a18d
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 17 16:10:48 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 17 16:10:48 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d01b0e7
media-libs/libepoxy: Stabilize 1.5.10-r1 arm64, #861023
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
index 148f1d8df4c8..ce35615f8453 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2023-08-16 15:09 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2023-08-16 15:09 UTC (permalink / raw
To: gentoo-commits
commit: 88c22a7210237453c497e056516e91307064495e
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 15 23:53:53 2023 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Wed Aug 16 15:09:13 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88c22a72
media-libs/libepoxy: Drop stable hppa keywords
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
index 806a737209f9..813ccbf71803 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2023-08-29 17:49 Arthur Zamarin
0 siblings, 0 replies; 152+ messages in thread
From: Arthur Zamarin @ 2023-08-29 17:49 UTC (permalink / raw
To: gentoo-commits
commit: e845ed1ed80ccf2b06009e04650d8e0231361315
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 29 17:47:28 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 29 17:47:28 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e845ed1e
media-libs/libepoxy: Stabilize 1.5.10-r2 amd64, #913215
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
index 2bb7e5c4c156..e47e6d087cc9 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2023-08-29 17:49 Arthur Zamarin
0 siblings, 0 replies; 152+ messages in thread
From: Arthur Zamarin @ 2023-08-29 17:49 UTC (permalink / raw
To: gentoo-commits
commit: 11d933ed695570e2b8702c81c1cd482218caa5f7
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 29 17:48:05 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 29 17:48:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11d933ed
media-libs/libepoxy: Stabilize 1.5.10-r2 arm64, #913215
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
index e47e6d087cc9..5486fdce4c27 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2023-08-29 17:55 Arthur Zamarin
0 siblings, 0 replies; 152+ messages in thread
From: Arthur Zamarin @ 2023-08-29 17:55 UTC (permalink / raw
To: gentoo-commits
commit: 1c6c2260e9e76fc4d3d50d20b5ebaae2331998d9
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 29 17:54:11 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 29 17:54:52 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c6c2260
media-libs/libepoxy: Stabilize 1.5.10-r2 ppc, #913215
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
index 5486fdce4c27..fcaa7e8d3641 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2023-08-31 18:37 Arthur Zamarin
0 siblings, 0 replies; 152+ messages in thread
From: Arthur Zamarin @ 2023-08-31 18:37 UTC (permalink / raw
To: gentoo-commits
commit: c02d5ebb6068f01ef6dec0f40307849bbf8abf7c
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 31 18:37:16 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 31 18:37:16 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c02d5ebb
media-libs/libepoxy: Stabilize 1.5.10-r2 x86, #913215
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
index fefeeb0ff540..c36f46c80a0c 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2023-08-31 18:39 Arthur Zamarin
0 siblings, 0 replies; 152+ messages in thread
From: Arthur Zamarin @ 2023-08-31 18:39 UTC (permalink / raw
To: gentoo-commits
commit: dc46826b9ec2dda72fb2394daca822b1b7d9d479
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 31 18:38:10 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 31 18:38:10 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc46826b
media-libs/libepoxy: Stabilize 1.5.10-r2 sparc, #913215
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
index c36f46c80a0c..467d5a52e053 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2023-08-31 18:39 Arthur Zamarin
0 siblings, 0 replies; 152+ messages in thread
From: Arthur Zamarin @ 2023-08-31 18:39 UTC (permalink / raw
To: gentoo-commits
commit: 46313bc6bbb443b62fbc8307889ac00ee200d4d5
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 31 18:38:26 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 31 18:38:26 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46313bc6
media-libs/libepoxy: Stabilize 1.5.10-r2 ppc64, #913215
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
index 467d5a52e053..a964a3208c61 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2023-09-05 20:28 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2023-09-05 20:28 UTC (permalink / raw
To: gentoo-commits
commit: 337e1c17b4642e8e8af3e1b3d583eb036e8fc66d
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 5 19:15:36 2023 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Sep 5 20:28:35 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=337e1c17
media-libs/libepoxy: Drop old versions
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild | 48 ---------------------------
1 file changed, 48 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
deleted file mode 100644
index 813ccbf71803..000000000000
--- a/media-libs/libepoxy/libepoxy-1.5.10-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-PYTHON_REQ_USE='xml(+)'
-inherit meson-multilib python-any-r1 virtualx
-
-if [[ ${PV} = 9999* ]]; then
- EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
-fi
-
-DESCRIPTION="Library for handling OpenGL function pointer management"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+egl test +X"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- egl? ( media-libs/mesa[egl(+),${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
-BDEPEND="${PYTHON_DEPS}
- virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}"/libepoxy-1.5.10-use-opengl.pc-without-x.patch )
-
-multilib_src_configure() {
- local emesonargs=(
- -Degl=$(usex egl)
- -Dglx=$(usex X)
- $(meson_use X x11)
- $(meson_use test tests)
- )
- meson_src_configure
-}
-
-multilib_src_test() {
- virtx meson_src_test
-}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2024-04-21 22:40 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2024-04-21 22:40 UTC (permalink / raw
To: gentoo-commits
commit: 8a8423e5c9f9fda0b7710326ebff9ccb561b5991
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 21 22:29:30 2024 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Apr 21 22:40:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a8423e5
media-libs/libepoxy: Add Python 3.12 compatibility
Bug: https://bugs.gentoo.org/919911
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 0016899e1df5..5bc5cc5fd964 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
PYTHON_REQ_USE='xml(+)'
inherit meson-multilib python-any-r1 virtualx
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2024-04-21 22:40 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2024-04-21 22:40 UTC (permalink / raw
To: gentoo-commits
commit: 65874513a2b51ba7bf7ba0b053ba6b2f8732e458
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 21 22:30:30 2024 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Apr 21 22:40:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65874513
media-libs/libepoxy: RDEPEND on libglvnd[X?]
And remove IUSE=+egl at the same time since libglvnd always provides libEGL.
Bug: https://bugs.gentoo.org/929993
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-9999.ebuild | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 5bc5cc5fd964..5e82b138f474 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -20,12 +20,13 @@ HOMEPAGE="https://github.com/anholt/libepoxy"
LICENSE="MIT"
SLOT="0"
-IUSE="+egl test +X"
+IUSE="test +X"
RESTRICT="!test? ( test )"
RDEPEND="
- egl? ( media-libs/mesa[egl(+),${MULTILIB_USEDEP}] )"
+ media-libs/libglvnd[X?,${MULTILIB_USEDEP}]
+"
DEPEND="${RDEPEND}
X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
BDEPEND="${PYTHON_DEPS}
@@ -35,7 +36,7 @@ PATCHES=( "${FILESDIR}"/libepoxy-1.5.10-use-opengl.pc-without-x.patch )
multilib_src_configure() {
local emesonargs=(
- -Degl=$(usex egl)
+ -Degl=yes
-Dglx=$(usex X)
$(meson_use X x11)
$(meson_use test tests)
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2024-04-21 22:40 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2024-04-21 22:40 UTC (permalink / raw
To: gentoo-commits
commit: 4a8fd664dc57be91be04abb0f82c20c31c8a5e4c
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 21 22:30:53 2024 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Apr 21 22:40:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a8fd664
media-libs/libepoxy: Depend on xorg-proto
Bug: https://bugs.gentoo.org/930239
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-9999.ebuild | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 5e82b138f474..bd74879a1c01 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -28,9 +28,14 @@ RDEPEND="
media-libs/libglvnd[X?,${MULTILIB_USEDEP}]
"
DEPEND="${RDEPEND}
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
+ X? (
+ x11-base/xorg-proto
+ x11-libs/libX11[${MULTILIB_USEDEP}]
+ )
+"
BDEPEND="${PYTHON_DEPS}
- virtual/pkgconfig"
+ virtual/pkgconfig
+"
PATCHES=( "${FILESDIR}"/libepoxy-1.5.10-use-opengl.pc-without-x.patch )
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2024-04-21 22:40 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2024-04-21 22:40 UTC (permalink / raw
To: gentoo-commits
commit: e0a1a43dab801e160832a874c8d305e88956943a
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 21 22:33:18 2024 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Apr 21 22:40:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0a1a43d
media-libs/libepoxy: Revbump
Closes: https://bugs.gentoo.org/930239
Closes: https://bugs.gentoo.org/919911
Closes: https://bugs.gentoo.org/929993
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild | 54 +++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
new file mode 100644
index 000000000000..2abe9d8c340e
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_REQ_USE='xml(+)'
+inherit meson-multilib python-any-r1 virtualx
+
+if [[ ${PV} = 9999* ]]; then
+ EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
+
+DESCRIPTION="Library for handling OpenGL function pointer management"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test +X"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ media-libs/libglvnd[X?,${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}
+ X? (
+ x11-base/xorg-proto
+ x11-libs/libX11[${MULTILIB_USEDEP}]
+ )
+"
+BDEPEND="${PYTHON_DEPS}
+ virtual/pkgconfig
+"
+
+PATCHES=( "${FILESDIR}"/libepoxy-1.5.10-libopengl-fallback.patch )
+
+multilib_src_configure() {
+ local emesonargs=(
+ -Degl=yes
+ -Dglx=$(usex X)
+ $(meson_use X x11)
+ $(meson_use test tests)
+ )
+ meson_src_configure
+}
+
+multilib_src_test() {
+ virtx meson_src_test
+}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2024-05-09 18:20 Arthur Zamarin
0 siblings, 0 replies; 152+ messages in thread
From: Arthur Zamarin @ 2024-05-09 18:20 UTC (permalink / raw
To: gentoo-commits
commit: 717149eafdfbe50a88c5750a398b0059b2908e66
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu May 9 18:20:53 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu May 9 18:20:53 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=717149ea
media-libs/libepoxy: Stabilize 1.5.10-r3 sparc, #931637
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
index 2abe9d8c340e..2ac2bafa654f 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2024-05-09 19:43 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2024-05-09 19:43 UTC (permalink / raw
To: gentoo-commits
commit: a75edb9246633054b1530884519557ca642865d4
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May 9 19:43:27 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 9 19:43:27 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a75edb92
media-libs/libepoxy: Stabilize 1.5.10-r3 x86, #931637
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
index 2ac2bafa654f..777a7ce5e495 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2024-05-09 19:43 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2024-05-09 19:43 UTC (permalink / raw
To: gentoo-commits
commit: c3905c4f0e189e84f12dee02ccf327927592cef1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May 9 19:43:28 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 9 19:43:28 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3905c4f
media-libs/libepoxy: Stabilize 1.5.10-r3 amd64, #931637
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
index 777a7ce5e495..23a673de3496 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2024-05-09 19:45 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2024-05-09 19:45 UTC (permalink / raw
To: gentoo-commits
commit: 5193760bde6601f9abe3362648789238c5b80502
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May 9 19:45:11 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 9 19:45:11 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5193760b
media-libs/libepoxy: Stabilize 1.5.10-r3 arm64, #931637
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
index 56007e5d0cc9..12f5d5e9487d 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2024-05-09 19:45 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2024-05-09 19:45 UTC (permalink / raw
To: gentoo-commits
commit: 011e50a8455a4018a4bfbcb807227fd2bf59c4b4
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May 9 19:45:10 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 9 19:45:10 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=011e50a8
media-libs/libepoxy: Stabilize 1.5.10-r3 arm, #931637
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
index 23a673de3496..56007e5d0cc9 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2024-05-09 20:19 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2024-05-09 20:19 UTC (permalink / raw
To: gentoo-commits
commit: e68afc243bf1251377b4a990ed39d9e627dd47a8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May 9 20:19:13 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 9 20:19:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e68afc24
media-libs/libepoxy: Stabilize 1.5.10-r3 ppc64, #931637
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
index c92607ab32e7..1b42aadccfd8 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2024-05-09 20:19 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2024-05-09 20:19 UTC (permalink / raw
To: gentoo-commits
commit: 5b58ad80c96797fe14ca3ddddedf6a86a6148f22
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May 9 20:19:12 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 9 20:19:12 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b58ad80
media-libs/libepoxy: Stabilize 1.5.10-r3 ppc, #931637
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
index 12f5d5e9487d..c92607ab32e7 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = 9999* ]]; then
inherit git-r3
else
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86"
+ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 sparc x86"
fi
DESCRIPTION="Library for handling OpenGL function pointer management"
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2024-05-15 18:36 Matt Turner
0 siblings, 0 replies; 152+ messages in thread
From: Matt Turner @ 2024-05-15 18:36 UTC (permalink / raw
To: gentoo-commits
commit: 61bfc86517ed773d9e5879608cb84c414bb7a796
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Wed May 15 18:25:11 2024 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Wed May 15 18:35:39 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61bfc865
media-libs/libepoxy: Drop old versions
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild | 48 ---------------------------
1 file changed, 48 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
deleted file mode 100644
index a964a3208c61..000000000000
--- a/media-libs/libepoxy/libepoxy-1.5.10-r2.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-PYTHON_REQ_USE='xml(+)'
-inherit meson-multilib python-any-r1 virtualx
-
-if [[ ${PV} = 9999* ]]; then
- EGIT_REPO_URI="https://github.com/anholt/${PN}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
-fi
-
-DESCRIPTION="Library for handling OpenGL function pointer management"
-HOMEPAGE="https://github.com/anholt/libepoxy"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+egl test +X"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- egl? ( media-libs/mesa[egl(+),${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
- X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
-BDEPEND="${PYTHON_DEPS}
- virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}"/libepoxy-1.5.10-libopengl-fallback.patch )
-
-multilib_src_configure() {
- local emesonargs=(
- -Degl=$(usex egl)
- -Dglx=$(usex X)
- $(meson_use X x11)
- $(meson_use test tests)
- )
- meson_src_configure
-}
-
-multilib_src_test() {
- virtx meson_src_test
-}
^ permalink raw reply related [flat|nested] 152+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/
@ 2024-10-07 2:52 Sam James
0 siblings, 0 replies; 152+ messages in thread
From: Sam James @ 2024-10-07 2:52 UTC (permalink / raw
To: gentoo-commits
commit: fbb9085c48d0ef392df4e03c98bbc00af0263320
Author: Sasha Finkelstein <fnkl.kernel <AT> gmail <DOT> com>
AuthorDate: Sat Oct 5 15:03:56 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 7 02:50:12 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbb9085c
media-libs/libepoxy: Add python3_13 compat
Signed-off-by: Sasha Finkelstein <fnkl.kernel <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild | 2 +-
media-libs/libepoxy/libepoxy-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
index dd492c3dbbc5..25409031ee3c 100644
--- a/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.10-r3.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
PYTHON_REQ_USE='xml(+)'
inherit meson-multilib python-any-r1 virtualx
diff --git a/media-libs/libepoxy/libepoxy-9999.ebuild b/media-libs/libepoxy/libepoxy-9999.ebuild
index 9595496ab525..7b4135df050b 100644
--- a/media-libs/libepoxy/libepoxy-9999.ebuild
+++ b/media-libs/libepoxy/libepoxy-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
PYTHON_REQ_USE='xml(+)'
inherit meson-multilib python-any-r1 virtualx
^ permalink raw reply related [flat|nested] 152+ messages in thread
end of thread, other threads:[~2024-10-07 2:52 UTC | newest]
Thread overview: 152+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-09 23:11 [gentoo-commits] repo/gentoo:master commit in: media-libs/libepoxy/ Sergei Trofimovich
-- strict thread matches above, loose matches on Subject: below --
2024-10-07 2:52 Sam James
2024-05-15 18:36 Matt Turner
2024-05-09 20:19 Sam James
2024-05-09 20:19 Sam James
2024-05-09 19:45 Sam James
2024-05-09 19:45 Sam James
2024-05-09 19:43 Sam James
2024-05-09 19:43 Sam James
2024-05-09 18:20 Arthur Zamarin
2024-04-21 22:40 Matt Turner
2024-04-21 22:40 Matt Turner
2024-04-21 22:40 Matt Turner
2024-04-21 22:40 Matt Turner
2023-09-05 20:28 Matt Turner
2023-08-31 18:39 Arthur Zamarin
2023-08-31 18:39 Arthur Zamarin
2023-08-31 18:37 Arthur Zamarin
2023-08-29 17:55 Arthur Zamarin
2023-08-29 17:49 Arthur Zamarin
2023-08-29 17:49 Arthur Zamarin
2023-08-16 15:09 Matt Turner
2022-08-17 16:11 Arthur Zamarin
2022-08-17 5:57 Arthur Zamarin
2022-08-15 19:39 Arthur Zamarin
2022-08-15 18:03 Arthur Zamarin
2022-08-15 14:33 Sam James
2022-06-19 8:34 Joonas Niilola
2022-05-28 1:35 Sam James
2022-05-25 18:00 Jakov Smolić
2022-05-10 16:19 Arthur Zamarin
2022-05-08 23:01 Sam James
2022-05-08 8:06 WANG Xuerui
2022-05-08 7:34 WANG Xuerui
2022-05-08 7:34 WANG Xuerui
2022-05-07 17:55 Jakov Smolić
2022-03-26 1:18 Matt Turner
2021-11-18 7:48 Matt Turner
2021-11-17 22:55 Georgy Yakovlev
2021-11-17 16:51 Arthur Zamarin
2021-11-17 7:49 Sam James
2021-11-15 8:38 Jakov Smolić
2021-11-15 1:12 Sam James
2021-11-12 20:51 Sam James
2021-11-07 22:10 Jakov Smolić
2021-10-31 0:19 Sam James
2021-08-19 19:48 Matt Turner
2021-08-19 19:48 Matt Turner
2021-08-19 19:48 Matt Turner
2021-06-04 1:14 Matt Turner
2021-05-26 3:56 Matt Turner
2021-05-26 3:56 Matt Turner
2021-04-30 19:08 Matt Turner
2021-03-25 23:42 Sam James
2021-03-25 23:42 Sam James
2021-03-16 18:10 Sergei Trofimovich
2021-03-09 11:31 Sam James
2021-03-09 11:23 Sam James
2021-03-09 10:31 Sam James
2021-03-09 10:30 Sam James
2020-12-27 18:55 Matt Turner
2020-12-24 4:30 Matt Turner
2020-12-24 4:30 Matt Turner
2020-10-06 3:44 Matt Turner
2020-04-17 15:56 Andreas Sturmlechner
2020-01-26 21:10 Matt Turner
2020-01-08 0:33 Aaron Bauman
2020-01-04 10:22 Sergei Trofimovich
2020-01-03 16:14 Agostino Sarubbo
2020-01-03 14:34 Agostino Sarubbo
2020-01-03 13:56 Agostino Sarubbo
2020-01-03 13:44 Agostino Sarubbo
2020-01-03 13:42 Agostino Sarubbo
2020-01-03 13:35 Agostino Sarubbo
2020-01-03 12:00 Agostino Sarubbo
2019-11-26 20:41 Matt Turner
2019-11-26 3:59 Matt Turner
2019-11-26 3:59 Matt Turner
2019-11-26 3:59 Matt Turner
2019-08-17 18:50 James Le Cuirot
2019-07-28 16:40 Matt Turner
2019-07-28 13:05 Mikle Kolyada
2019-07-21 17:13 Aaron Bauman
2019-07-19 11:33 Agostino Sarubbo
2019-07-18 11:33 Agostino Sarubbo
2019-07-18 10:47 Agostino Sarubbo
2019-07-17 14:03 Agostino Sarubbo
2019-07-17 10:18 Mikle Kolyada
2019-07-14 9:11 Sergei Trofimovich
2019-07-13 10:36 Sergei Trofimovich
2019-07-10 10:30 Agostino Sarubbo
2019-07-01 16:18 Matt Turner
2019-03-04 18:46 Matt Turner
2019-02-28 17:05 Mikle Kolyada
2018-11-29 5:17 Matt Turner
2018-11-27 20:30 Matt Turner
2018-11-17 14:57 Mikle Kolyada
2018-11-15 0:31 Matt Turner
2018-11-10 17:23 Matt Turner
2018-11-07 22:41 Sergei Trofimovich
2018-11-04 4:35 Matt Turner
2018-11-03 14:36 Mikle Kolyada
2018-10-06 20:32 Matt Turner
2018-10-06 20:32 Matt Turner
2018-07-24 0:02 Matt Turner
2018-06-06 20:33 Michał Górny
2018-05-29 19:08 Matt Turner
2018-05-29 19:08 Matt Turner
2018-05-23 6:53 Matt Turner
2018-05-20 18:37 Matt Turner
2018-05-13 11:30 Markus Meier
2018-05-08 6:24 Sergei Trofimovich
2018-05-06 20:45 Matt Turner
2018-05-06 19:40 Sergei Trofimovich
2018-05-06 19:23 Matt Turner
2018-05-06 12:26 Mikle Kolyada
2018-04-25 17:49 Matt Turner
2018-03-19 19:51 Sergei Trofimovich
2018-03-02 10:01 Michał Górny
2018-03-02 10:01 Michał Górny
2018-03-01 13:25 Mart Raudsepp
2018-03-01 6:50 Matt Turner
2018-03-01 6:50 Matt Turner
2018-03-01 6:50 Matt Turner
2018-03-01 6:50 Matt Turner
2018-03-01 6:50 Matt Turner
2018-02-22 19:02 Michał Górny
2017-12-10 10:17 Pacho Ramos
2017-09-16 19:34 Matt Turner
2017-07-30 9:38 Michał Górny
2017-06-24 8:40 Markus Meier
2017-06-21 4:07 Matt Turner
2017-06-04 19:20 Tobias Klausmann
2017-05-31 13:06 Agostino Sarubbo
2017-05-22 22:32 Matt Turner
2017-05-22 22:32 Matt Turner
2017-05-22 22:32 Matt Turner
2017-03-16 16:59 Matt Turner
2017-03-05 17:26 Matt Turner
2017-03-04 7:50 Matt Turner
2017-03-04 7:50 Matt Turner
2017-03-04 7:50 Matt Turner
2017-02-09 12:51 Matt Turner
2017-02-09 12:51 Matt Turner
2017-02-09 12:51 Matt Turner
2016-07-04 17:36 Chí-Thanh Christopher Nguyễn
2016-03-04 3:59 Stephen Klimaszewski
2016-02-03 5:10 Ian Delaney
2015-12-19 19:59 Markus Meier
2015-09-26 5:39 Matt Turner
2015-09-26 5:39 Matt Turner
2015-08-31 21:24 Matt Turner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox