public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: media-libs/skia/
@ 2020-05-01  9:59 Andrew Ammerlaan
  0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2020-05-01  9:59 UTC (permalink / raw
  To: gentoo-commits

commit:     64def23e2b8cf1b4c810b6e2d95936f0c8bf803e
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed Apr 29 14:47:50 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Apr 30 19:17:22 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=64def23e

media-libs/skia: lift some restrictions

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 media-libs/skia/skia-80_p20191220-r1.ebuild | 157 ++++++++++++++++++++++++++++
 1 file changed, 157 insertions(+)

diff --git a/media-libs/skia/skia-80_p20191220-r1.ebuild b/media-libs/skia/skia-80_p20191220-r1.ebuild
new file mode 100644
index 0000000..708bfe3
--- /dev/null
+++ b/media-libs/skia/skia-80_p20191220-r1.ebuild
@@ -0,0 +1,157 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit ninja-utils python-any-r1
+
+#https://github.com/google/skia/blob/master/include/core/SkMilestone.h
+COMMIT="1c9ebb50024f80f3bf289838298e15185d8f6966"
+
+SRC_URI="https://github.com/google/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+DESCRIPTION="A complete 2D graphic library for drawing Text, Geometries, and Images"
+HOMEPAGE="
+	https://skia.org
+	https://github.com/google/skia
+"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+#IUSE="dawn expat gif jpeg png pdf webp zlib"
+#TODO: find out how to enable and link: angle egl ffmpeg fontconfig freetype gl harfbuzz heif icu lua opencl piex sfntly wuffs vulkan xps s
+
+#TODO: find out which deps are needed for gl/egl/vulkan/X/gif/xps
+#	ffmpeg? ( virtual/ffmpeg )
+#	heif? ( media-libs/libheif )
+#	icu? ( dev-libs/icu )
+#	virtual/opengl
+#	lua? ( dev-lang/lua )
+#	opencl? ( virtual/opencl )
+RDEPEND="
+	app-arch/bzip2
+	dev-libs/expat
+	dev-libs/libbsd
+	dev-libs/libpcre
+	media-gfx/graphite2
+	media-libs/fontconfig
+	media-libs/freetype
+	media-libs/harfbuzz
+	media-libs/libglvnd
+	media-libs/libjpeg-turbo
+	media-libs/libpng
+	media-libs/libwebp
+	sys-apps/util-linux
+	sys-libs/zlib
+	x11-libs/libxcb
+	x11-libs/libX11
+	x11-libs/libXau
+	x11-libs/libXdmcp
+"
+DEPEND="
+	${PYTHON_DEPS}
+	${RDEPEND}
+"
+BDEPEND="
+	dev-util/gn
+"
+
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+src_prepare() {
+	default
+	# https://chromium.googlesource.com/chromium/src/third_party/zlib
+	# https://github.com/jtkukunas/zlib
+	sed \
+		-e '/:zlib_x86/d' \
+		-e '/third_party("zlib_x86/,/^}/d' \
+		-i third_party/zlib/BUILD.gn
+
+	#remove questionable cflags
+	sed -i 's|-O3||g' gn/BUILD.gn || die
+	sed -i 's|-ffunction-sections||g' gn/BUILD.gn || die
+	sed -i 's|-fdata-sections||g' gn/BUILD.gn || die
+}
+
+src_configure() {
+	python_setup
+	tc-export AR CC CXX
+
+	local myconf_gn=()
+	passflags() {
+		local _f _x
+		_f=( ${1} )
+		_x="[$(printf '"%s", ' "${_f[@]}")]"
+		myconf_gn+=( extra_${2}="${_x}" )
+	}
+	passflags "${CFLAGS}" cflags_c
+	passflags "${CXXFLAGS}" cflags_cc
+	passflags "${CFLAGS}" ldflags
+
+	myconf_gn+=(
+		ar=\"${AR}\"
+		cc=\"${CC}\"
+		cxx=\"${CXX}\"
+		is_component_build=true
+		is_official_build=true
+		skia_use_dng_sdk=false
+		skia_use_metal=false
+		skia_use_sfntly=false
+	)
+#		skia_enable_pdf=$(usex pdf true false)
+#
+#		skia_use_dawn=$(usex dawn true false)
+#		skia_use_expat=$(usex expat true false)
+#		skia_use_libgifcodec=$(usex gif true false)
+#		skia_use_libjpeg_turbo_decode=$(usex jpeg true false)
+#		skia_use_libjpeg_turbo_encode=$(usex jpeg true false)
+#		skia_use_libpng_decode=$(usex png true false)
+#		skia_use_libpng_encode=$(usex png true false)
+#		skia_use_libwebp_decode=$(usex webp true false)
+#		skia_use_libwebp_encode=$(usex webp true false)
+#		skia_use_zlib=$(usex zlib true false)
+
+#		skia_use_angle=$(usex angle true false)
+#		skia_use_egl=$(usex egl true false)
+#		skia_use_fontconfig=$(usex fontconfig true false)
+#		skia_use_freetype=$(usex freetype true false)
+#		skia_use_ffmpeg=$(usex ffmpeg  true false)
+#		skia_use_gl=$(usex gl true false)
+#		skia_use_harfbuzz=$(usex harfbuzz true false)
+#		skia_use_icu=$(usex icu true false)
+#		skia_use_libheif=$(usex heif true false)
+#		skia_use_lua=$(usex lua true false)
+#		skia_use_opencl=$(usex opencl true false)
+#		skia_use_vulkan=$(usex vulkan true false)
+#		skia_use_x11=$(usex X true false)
+#		skia_use_xps=$(usex xps true false)
+#		skia_use_piex=$(usex piex true false)
+#		skia_use_sfntly=$(usex sfntly true false)
+#		skia_use_wuffs=$(usex wuffs true false)
+
+#	use freetype	&& myconf_gn+=( skia_use_system_freetype2=true )
+#	use harfbuzz	&& myconf_gn+=( skia_use_system_harfbuzz=true )
+#	use icu		&& myconf_gn+=( skia_use_system_icu=true )
+#	use jpeg	&& myconf_gn+=( skia_use_system_libjpeg_turbo=true )
+#	use lua		&& myconf_gn+=( skia_use_system_lua=true )
+#	use png		&& myconf_gn+=( skia_use_system_libpng=true )
+#	use webp	&& myconf_gn+=( skia_use_system_libwebp=true )
+#	use zlib	&& myconf_gn+=( skia_use_system_zlib=true )
+
+	myconf_gn="${myconf_gn[@]} ${EXTRA_GN}"
+	set -- gn gen --args="${myconf_gn% }" out/Release
+	echo "$@"
+	"$@" || die
+}
+
+src_compile() {
+	eninja -C out/Release
+}
+
+src_install() {
+	dolib.so out/Release/*.so
+	insinto "/usr/include/${PN}"
+	doins -r include/.
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/skia/
@ 2020-11-24 10:54 Andrew Ammerlaan
  0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2020-11-24 10:54 UTC (permalink / raw
  To: gentoo-commits

commit:     3b65672bf79705a9926cbceaa475a960b5e49294
Author:     Theo Anderson <telans <AT> posteo <DOT> de>
AuthorDate: Mon Nov 23 23:32:35 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Nov 23 23:32:35 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3b65672b

media-libs/skia: explicit inherit toolchain-funcs

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Theo Anderson <telans <AT> posteo.de>

 media-libs/skia/skia-80_p20191220-r1.ebuild | 2 +-
 media-libs/skia/skia-80_p20191220.ebuild    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/skia/skia-80_p20191220-r1.ebuild b/media-libs/skia/skia-80_p20191220-r1.ebuild
index 708bfe37..7f224415 100644
--- a/media-libs/skia/skia-80_p20191220-r1.ebuild
+++ b/media-libs/skia/skia-80_p20191220-r1.ebuild
@@ -5,7 +5,7 @@ EAPI="7"
 
 PYTHON_COMPAT=( python2_7 )
 
-inherit ninja-utils python-any-r1
+inherit ninja-utils python-any-r1 toolchain-funcs
 
 #https://github.com/google/skia/blob/master/include/core/SkMilestone.h
 COMMIT="1c9ebb50024f80f3bf289838298e15185d8f6966"

diff --git a/media-libs/skia/skia-80_p20191220.ebuild b/media-libs/skia/skia-80_p20191220.ebuild
index 7de65b68..938bcfe2 100644
--- a/media-libs/skia/skia-80_p20191220.ebuild
+++ b/media-libs/skia/skia-80_p20191220.ebuild
@@ -5,7 +5,7 @@ EAPI="7"
 
 PYTHON_COMPAT=( python2_7 )
 
-inherit ninja-utils python-any-r1
+inherit ninja-utils python-any-r1 toolchain-funcs
 
 #https://github.com/google/skia/blob/master/include/core/SkMilestone.h
 COMMIT="1c9ebb50024f80f3bf289838298e15185d8f6966"


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/skia/
@ 2020-12-23 10:24 Andrew Ammerlaan
  0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2020-12-23 10:24 UTC (permalink / raw
  To: gentoo-commits

commit:     f014db2c079312f4dc3063ce62176663d009de24
Author:     Theo Anderson <telans <AT> posteo <DOT> de>
AuthorDate: Wed Dec 23 07:15:11 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Wed Dec 23 07:15:11 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f014db2c

media-libs/skia: depend media-libs/libglvnd[X]

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Theo Anderson <telans <AT> posteo.de>

 media-libs/skia/skia-80_p20191220-r1.ebuild | 2 +-
 media-libs/skia/skia-80_p20191220.ebuild    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/skia/skia-80_p20191220-r1.ebuild b/media-libs/skia/skia-80_p20191220-r1.ebuild
index 7f224415..520dfec8 100644
--- a/media-libs/skia/skia-80_p20191220-r1.ebuild
+++ b/media-libs/skia/skia-80_p20191220-r1.ebuild
@@ -39,7 +39,7 @@ RDEPEND="
 	media-libs/fontconfig
 	media-libs/freetype
 	media-libs/harfbuzz
-	media-libs/libglvnd
+	media-libs/libglvnd[X]
 	media-libs/libjpeg-turbo
 	media-libs/libpng
 	media-libs/libwebp

diff --git a/media-libs/skia/skia-80_p20191220.ebuild b/media-libs/skia/skia-80_p20191220.ebuild
index 938bcfe2..05b6b963 100644
--- a/media-libs/skia/skia-80_p20191220.ebuild
+++ b/media-libs/skia/skia-80_p20191220.ebuild
@@ -39,7 +39,7 @@ RDEPEND="
 	media-libs/fontconfig
 	media-libs/freetype
 	media-libs/harfbuzz
-	media-libs/libglvnd
+	media-libs/libglvnd[X]
 	media-libs/libjpeg-turbo
 	media-libs/libpng
 	media-libs/libwebp


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/skia/
  2021-04-15 12:44 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
@ 2021-04-15 12:51 ` Andrew Ammerlaan
  0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2021-04-15 12:51 UTC (permalink / raw
  To: gentoo-commits

commit:     d064df47e06b35da71c0daf6b58f6466dd8b8a73
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Apr 15 12:43:41 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Apr 15 12:43:41 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d064df47

media-libs/skia: remove old

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 media-libs/skia/skia-80_p20191220.ebuild | 159 -------------------------------
 1 file changed, 159 deletions(-)

diff --git a/media-libs/skia/skia-80_p20191220.ebuild b/media-libs/skia/skia-80_p20191220.ebuild
deleted file mode 100644
index 05b6b9634..000000000
--- a/media-libs/skia/skia-80_p20191220.ebuild
+++ /dev/null
@@ -1,159 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit ninja-utils python-any-r1 toolchain-funcs
-
-#https://github.com/google/skia/blob/master/include/core/SkMilestone.h
-COMMIT="1c9ebb50024f80f3bf289838298e15185d8f6966"
-
-SRC_URI="https://github.com/google/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-DESCRIPTION="A complete 2D graphic library for drawing Text, Geometries, and Images"
-HOMEPAGE="
-	https://skia.org
-	https://github.com/google/skia
-"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-#IUSE="dawn expat gif jpeg png pdf webp zlib"
-#TODO: find out how to enable and link: angle egl ffmpeg fontconfig freetype gl harfbuzz heif icu lua opencl piex sfntly wuffs vulkan xps s
-
-#TODO: find out which deps are needed for gl/egl/vulkan/X/gif/xps
-#	ffmpeg? ( virtual/ffmpeg )
-#	heif? ( media-libs/libheif )
-#	icu? ( dev-libs/icu )
-#	virtual/opengl
-#	lua? ( dev-lang/lua )
-#	opencl? ( virtual/opencl )
-RDEPEND="
-	app-arch/bzip2
-	dev-libs/expat
-	dev-libs/libbsd
-	dev-libs/libpcre
-	media-gfx/graphite2
-	media-libs/fontconfig
-	media-libs/freetype
-	media-libs/harfbuzz
-	media-libs/libglvnd[X]
-	media-libs/libjpeg-turbo
-	media-libs/libpng
-	media-libs/libwebp
-	sys-apps/util-linux
-	sys-libs/zlib
-	x11-libs/libxcb
-	x11-libs/libX11
-	x11-libs/libXau
-	x11-libs/libXdmcp
-"
-DEPEND="
-	${PYTHON_DEPS}
-	${RDEPEND}
-"
-BDEPEND="
-	dev-util/gn
-"
-
-S="${WORKDIR}/${PN}-${COMMIT}"
-
-src_prepare() {
-	default
-	# https://chromium.googlesource.com/chromium/src/third_party/zlib
-	# https://github.com/jtkukunas/zlib
-	sed \
-		-e '/:zlib_x86/d' \
-		-e '/third_party("zlib_x86/,/^}/d' \
-		-i third_party/zlib/BUILD.gn
-
-	#remove questionable cflags
-	sed -i 's|-O3||g' gn/BUILD.gn || die
-	sed -i 's|-ffunction-sections||g' gn/BUILD.gn || die
-	sed -i 's|-fdata-sections||g' gn/BUILD.gn || die
-}
-
-src_configure() {
-	python_setup
-	tc-export AR CC CXX
-
-	local myconf_gn=()
-	passflags() {
-		local _f _x
-		_f=( ${1} )
-		_x="[$(printf '"%s", ' "${_f[@]}")]"
-		myconf_gn+=( extra_${2}="${_x}" )
-	}
-	passflags "${CFLAGS}" cflags_c
-	passflags "${CXXFLAGS}" cflags_cc
-	passflags "${CFLAGS}" ldflags
-
-	myconf_gn+=(
-		ar=\"${AR}\"
-		cc=\"${CC}\"
-		cxx=\"${CXX}\"
-		is_component_build=true
-		is_official_build=true
-		skia_use_direct3d=false
-		skia_use_dng_sdk=false
-		skia_use_fonthost_mac=false
-		skia_use_metal=false
-		skia_use_sfntly=false
-	)
-#		skia_enable_pdf=$(usex pdf true false)
-#
-#		skia_use_dawn=$(usex dawn true false)
-#		skia_use_expat=$(usex expat true false)
-#		skia_use_libgifcodec=$(usex gif true false)
-#		skia_use_libjpeg_turbo_decode=$(usex jpeg true false)
-#		skia_use_libjpeg_turbo_encode=$(usex jpeg true false)
-#		skia_use_libpng_decode=$(usex png true false)
-#		skia_use_libpng_encode=$(usex png true false)
-#		skia_use_libwebp_decode=$(usex webp true false)
-#		skia_use_libwebp_encode=$(usex webp true false)
-#		skia_use_zlib=$(usex zlib true false)
-
-#		skia_use_angle=$(usex angle true false)
-#		skia_use_egl=$(usex egl true false)
-#		skia_use_fontconfig=$(usex fontconfig true false)
-#		skia_use_freetype=$(usex freetype true false)
-#		skia_use_ffmpeg=$(usex ffmpeg  true false)
-#		skia_use_gl=$(usex gl true false)
-#		skia_use_harfbuzz=$(usex harfbuzz true false)
-#		skia_use_icu=$(usex icu true false)
-#		skia_use_libheif=$(usex heif true false)
-#		skia_use_lua=$(usex lua true false)
-#		skia_use_opencl=$(usex opencl true false)
-#		skia_use_vulkan=$(usex vulkan true false)
-#		skia_use_x11=$(usex X true false)
-#		skia_use_xps=$(usex xps true false)
-#		skia_use_piex=$(usex piex true false)
-#		skia_use_sfntly=$(usex sfntly true false)
-#		skia_use_wuffs=$(usex wuffs true false)
-
-#	use freetype	&& myconf_gn+=( skia_use_system_freetype2=true )
-#	use harfbuzz	&& myconf_gn+=( skia_use_system_harfbuzz=true )
-#	use icu		&& myconf_gn+=( skia_use_system_icu=true )
-#	use jpeg	&& myconf_gn+=( skia_use_system_libjpeg_turbo=true )
-#	use lua		&& myconf_gn+=( skia_use_system_lua=true )
-#	use png		&& myconf_gn+=( skia_use_system_libpng=true )
-#	use webp	&& myconf_gn+=( skia_use_system_libwebp=true )
-#	use zlib	&& myconf_gn+=( skia_use_system_zlib=true )
-
-	myconf_gn="${myconf_gn[@]} ${EXTRA_GN}"
-	set -- gn gen --args="${myconf_gn% }" out/Release
-	echo "$@"
-	"$@" || die
-}
-
-src_compile() {
-	eninja -C out/Release
-}
-
-src_install() {
-	dolib.so out/Release/*.so
-	insinto "/usr/include/${PN}"
-	doins -r include/.
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/skia/
@ 2021-04-15 12:51 Andrew Ammerlaan
  0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2021-04-15 12:51 UTC (permalink / raw
  To: gentoo-commits

commit:     ed485532fb1ac279611ac7057f699d01ade33288
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Thu Apr 15 12:40:19 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Apr 15 12:40:19 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ed485532

media-libs/skia: add missing dependency

Closes: https://bugs.gentoo.org/782943
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 media-libs/skia/skia-80_p20191220-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/skia/skia-80_p20191220-r1.ebuild b/media-libs/skia/skia-80_p20191220-r1.ebuild
index 520dfec8d..8f876a980 100644
--- a/media-libs/skia/skia-80_p20191220-r1.ebuild
+++ b/media-libs/skia/skia-80_p20191220-r1.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"
@@ -38,7 +38,7 @@ RDEPEND="
 	media-gfx/graphite2
 	media-libs/fontconfig
 	media-libs/freetype
-	media-libs/harfbuzz
+	media-libs/harfbuzz[icu]
 	media-libs/libglvnd[X]
 	media-libs/libjpeg-turbo
 	media-libs/libpng


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/skia/
@ 2021-04-24 23:19 Theo Anderson
  0 siblings, 0 replies; 10+ messages in thread
From: Theo Anderson @ 2021-04-24 23:19 UTC (permalink / raw
  To: gentoo-commits

commit:     2f8fec9c5ffc7a743e73f466dd650d4e57438513
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Apr 24 18:51:15 2021 +0000
Commit:     Theo Anderson <telans <AT> posteo <DOT> de>
CommitDate: Sat Apr 24 18:51:42 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2f8fec9c

media-libs/skia: try to respect ldflags

Closes: https://bugs.gentoo.org/780981
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 media-libs/skia/skia-80_p20191220-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/skia/skia-80_p20191220-r1.ebuild b/media-libs/skia/skia-80_p20191220-r1.ebuild
index 8f876a980..4b6788080 100644
--- a/media-libs/skia/skia-80_p20191220-r1.ebuild
+++ b/media-libs/skia/skia-80_p20191220-r1.ebuild
@@ -88,7 +88,7 @@ src_configure() {
 	}
 	passflags "${CFLAGS}" cflags_c
 	passflags "${CXXFLAGS}" cflags_cc
-	passflags "${CFLAGS}" ldflags
+	passflags "${LDFLAGS}" ldflags
 
 	myconf_gn+=(
 		ar=\"${AR}\"


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/skia/
@ 2021-05-05  8:33 Andrew Ammerlaan
  0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2021-05-05  8:33 UTC (permalink / raw
  To: gentoo-commits

commit:     4da611f5da2b7afc65290b95dcd4ab5c3168226c
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed May  5 07:32:20 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Wed May  5 07:32:54 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4da611f5

media-libs/skia: comaintainers welcome

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 media-libs/skia/metadata.xml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/media-libs/skia/metadata.xml b/media-libs/skia/metadata.xml
index 5a8da9408..9cad69888 100644
--- a/media-libs/skia/metadata.xml
+++ b/media-libs/skia/metadata.xml
@@ -1,7 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-
 <pkgmetadata>
+  <maintainer type="person">
+    <description>comaintainers welcome</description>
+    <email>lssndrbarbieri@gmail.com</email>
+    <name>Alessandro Barbieri</name>
+  </maintainer>
   <longdescription lang="en">
 Skia is an open source 2D graphics library which provides common APIs that work across a variety of hardware and software platforms. It serves as the graphics engine for Google Chrome and Chrome OS, Android, Mozilla Firefox and Firefox OS, and many other products.
 


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/skia/
@ 2022-05-30  6:39 Florian Schmaus
  0 siblings, 0 replies; 10+ messages in thread
From: Florian Schmaus @ 2022-05-30  6:39 UTC (permalink / raw
  To: gentoo-commits

commit:     8735d9ef019819a26f54c8432723dec8dda93f56
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun May 29 21:00:32 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun May 29 21:04:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8735d9ef

media-libs/skia: enable py3.10, py3.11

Closes: https://bugs.gentoo.org/848384
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

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

diff --git a/media-libs/skia/skia-97-r1.ebuild b/media-libs/skia/skia-97-r1.ebuild
index fd289b368..4c190e20b 100644
--- a/media-libs/skia/skia-97-r1.ebuild
+++ b/media-libs/skia/skia-97-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_9 )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit ninja-utils python-any-r1 toolchain-funcs
 


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/skia/
@ 2022-05-30  6:39 Florian Schmaus
  0 siblings, 0 replies; 10+ messages in thread
From: Florian Schmaus @ 2022-05-30  6:39 UTC (permalink / raw
  To: gentoo-commits

commit:     4298d9fab1b98cf542a633f700f4191df54df855
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun May 29 20:59:03 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun May 29 21:04:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4298d9fa

media-libs/skia: drop 97

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 media-libs/skia/skia-97.ebuild | 151 -----------------------------------------
 1 file changed, 151 deletions(-)

diff --git a/media-libs/skia/skia-97.ebuild b/media-libs/skia/skia-97.ebuild
deleted file mode 100644
index ff47d59f2..000000000
--- a/media-libs/skia/skia-97.ebuild
+++ /dev/null
@@ -1,151 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_9 )
-
-inherit ninja-utils python-any-r1 toolchain-funcs
-
-#https://github.com/google/skia/blob/master/include/core/SkMilestone.h
-COMMIT="f2093bf1b076210bd017f237eaab84ea4d3d6771"
-
-SRC_URI="https://github.com/google/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-DESCRIPTION="A complete 2D graphic library for drawing Text, Geometries, and Images"
-HOMEPAGE="
-	https://skia.org
-	https://github.com/google/skia
-"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-#IUSE="dawn expat gif jpeg png pdf webp zlib"
-#TODO: find out how to enable and link: angle egl ffmpeg fontconfig freetype gl harfbuzz heif icu lua opencl piex sfntly wuffs vulkan xps s
-
-#TODO: find out which deps are needed for gl/egl/vulkan/X/gif/xps
-#	ffmpeg? ( virtual/ffmpeg )
-#	heif? ( media-libs/libheif )
-#	icu? ( dev-libs/icu )
-#	virtual/opengl
-#	lua? ( dev-lang/lua )
-#	opencl? ( virtual/opencl )
-RDEPEND="
-	app-arch/bzip2
-	dev-libs/expat
-	dev-libs/libbsd
-	dev-libs/libpcre
-	media-gfx/graphite2
-	media-libs/fontconfig
-	media-libs/freetype
-	media-libs/harfbuzz[icu]
-	media-libs/libglvnd[X]
-	media-libs/libjpeg-turbo
-	media-libs/libpng
-	media-libs/libwebp
-	sys-apps/util-linux
-	sys-libs/zlib
-	x11-libs/libxcb
-	x11-libs/libX11
-	x11-libs/libXau
-	x11-libs/libXdmcp
-"
-DEPEND="
-	${PYTHON_DEPS}
-	${RDEPEND}
-"
-BDEPEND="
-	dev-util/gn
-"
-
-S="${WORKDIR}/${PN}-${COMMIT}"
-
-src_prepare() {
-	default
-	# https://chromium.googlesource.com/chromium/src/third_party/zlib
-	# https://github.com/jtkukunas/zlib
-	sed -e '/:zlib_x86/d' \
-		-e '/third_party("zlib_x86/,/^}/d' \
-		-i third_party/zlib/BUILD.gn
-}
-
-src_configure() {
-	python_setup
-	tc-export AR CC CXX
-
-	local myconf_gn=()
-	passflags() {
-		local _f _x
-		_f=( ${1} )
-		_x="[$(printf '"%s", ' "${_f[@]}")]"
-		myconf_gn+=( extra_${2}="${_x}" )
-	}
-	passflags "${CFLAGS}" cflags_c
-	passflags "${CXXFLAGS}" cflags_cc
-	passflags "${LDFLAGS}" ldflags
-
-	myconf_gn+=(
-		ar=\"${AR}\"
-		cc=\"${CC}\"
-		cxx=\"${CXX}\"
-		is_component_build=true
-		is_official_build=true
-		skia_use_dng_sdk=false
-		skia_use_metal=false
-		skia_use_sfntly=false
-		skia_use_zlib=false # disable to build
-	)
-#		skia_enable_pdf=$(usex pdf true false)
-#
-#		skia_use_dawn=$(usex dawn true false)
-#		skia_use_expat=$(usex expat true false)
-#		skia_use_libgifcodec=$(usex gif true false)
-#		skia_use_libjpeg_turbo_decode=$(usex jpeg true false)
-#		skia_use_libjpeg_turbo_encode=$(usex jpeg true false)
-#		skia_use_libpng_decode=$(usex png true false)
-#		skia_use_libpng_encode=$(usex png true false)
-#		skia_use_libwebp_decode=$(usex webp true false)
-#		skia_use_libwebp_encode=$(usex webp true false)
-
-#		skia_use_angle=$(usex angle true false)
-#		skia_use_egl=$(usex egl true false)
-#		skia_use_fontconfig=$(usex fontconfig true false)
-#		skia_use_freetype=$(usex freetype true false)
-#		skia_use_ffmpeg=$(usex ffmpeg  true false)
-#		skia_use_gl=$(usex gl true false)
-#		skia_use_harfbuzz=$(usex harfbuzz true false)
-#		skia_use_icu=$(usex icu true false)
-#		skia_use_libheif=$(usex heif true false)
-#		skia_use_lua=$(usex lua true false)
-#		skia_use_opencl=$(usex opencl true false)
-#		skia_use_vulkan=$(usex vulkan true false)
-#		skia_use_x11=$(usex X true false)
-#		skia_use_xps=$(usex xps true false)
-#		skia_use_piex=$(usex piex true false)
-#		skia_use_sfntly=$(usex sfntly true false)
-#		skia_use_wuffs=$(usex wuffs true false)
-
-#	use freetype	&& myconf_gn+=( skia_use_system_freetype2=true )
-#	use harfbuzz	&& myconf_gn+=( skia_use_system_harfbuzz=true )
-#	use icu		&& myconf_gn+=( skia_use_system_icu=true )
-#	use jpeg	&& myconf_gn+=( skia_use_system_libjpeg_turbo=true )
-#	use lua		&& myconf_gn+=( skia_use_system_lua=true )
-#	use png		&& myconf_gn+=( skia_use_system_libpng=true )
-#	use webp	&& myconf_gn+=( skia_use_system_libwebp=true )
-#	use zlib	&& myconf_gn+=( skia_use_system_zlib=true )
-
-	myconf_gn="${myconf_gn[@]} ${EXTRA_GN}"
-	set -- gn gen --args="${myconf_gn% }" out/Release
-	echo "$@"
-	"$@" || die
-}
-
-src_compile() {
-	eninja -C out/Release
-}
-
-src_install() {
-	dolib.so out/Release/*.so
-	insinto "/usr/include/${PN}"
-	doins -r include/.
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: media-libs/skia/
@ 2022-05-30  6:39 Florian Schmaus
  0 siblings, 0 replies; 10+ messages in thread
From: Florian Schmaus @ 2022-05-30  6:39 UTC (permalink / raw
  To: gentoo-commits

commit:     3c6a43c6e1c3baa9ac5053aad4c5abb50207f306
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun May 29 21:01:27 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun May 29 21:04:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3c6a43c6

media-libs/skia: add subslot

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 media-libs/skia/Manifest                                 | 2 +-
 media-libs/skia/{skia-97-r1.ebuild => skia-97-r2.ebuild} | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/skia/Manifest b/media-libs/skia/Manifest
index 184ea284c..3595db41e 100644
--- a/media-libs/skia/Manifest
+++ b/media-libs/skia/Manifest
@@ -1 +1 @@
-DIST skia-97.tar.gz 55736513 BLAKE2B a3fddcab23b395e884b64179577c0e88b22c5580c484b79ce11a598ea8822fe797248071ca638541c9146f6752d93e99d9effb7e3499cf1f1efd75e375f9d3d5 SHA512 c30cd68fd69cbe998c04db8a9d7d201fefa2e72541745a1216a51bde809152c11f53fd3ba66a5c7bfb971c090e5eecc2be50a3cf013645052c2c447bf70d5f7a
+DIST skia-97.gh.tar.gz 55736513 BLAKE2B a3fddcab23b395e884b64179577c0e88b22c5580c484b79ce11a598ea8822fe797248071ca638541c9146f6752d93e99d9effb7e3499cf1f1efd75e375f9d3d5 SHA512 c30cd68fd69cbe998c04db8a9d7d201fefa2e72541745a1216a51bde809152c11f53fd3ba66a5c7bfb971c090e5eecc2be50a3cf013645052c2c447bf70d5f7a

diff --git a/media-libs/skia/skia-97-r1.ebuild b/media-libs/skia/skia-97-r2.ebuild
similarity index 99%
rename from media-libs/skia/skia-97-r1.ebuild
rename to media-libs/skia/skia-97-r2.ebuild
index 4c190e20b..6dbe9973c 100644
--- a/media-libs/skia/skia-97-r1.ebuild
+++ b/media-libs/skia/skia-97-r2.ebuild
@@ -15,12 +15,12 @@ HOMEPAGE="
 	https://skia.org
 	https://github.com/google/skia
 "
-SRC_URI="https://github.com/google/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/google/${PN}/archive/${COMMIT}.tar.gz -> ${P}.gh.tar.gz"
 S="${WORKDIR}/${PN}-${COMMIT}"
 
 KEYWORDS="~amd64"
 LICENSE="BSD"
-SLOT="0"
+SLOT="0/${PV}"
 IUSE="+ccpr debug ffmpeg +fontconfig +freetype gpu +harfbuzz +icu jit +jpeg +lottie lua opencl +opengl +pdf +png +rive svg vulkan +webp +zlib +X +xml"
 #TODO: find out how to enable and link: angle dawn piex sfntly wuffs
 


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2022-05-30  6:39 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-23 10:24 [gentoo-commits] repo/proj/guru:master commit in: media-libs/skia/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2022-05-30  6:39 Florian Schmaus
2022-05-30  6:39 Florian Schmaus
2022-05-30  6:39 Florian Schmaus
2021-05-05  8:33 Andrew Ammerlaan
2021-04-24 23:19 Theo Anderson
2021-04-15 12:51 Andrew Ammerlaan
2021-04-15 12:44 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-04-15 12:51 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-11-24 10:54 Andrew Ammerlaan
2020-05-01  9:59 Andrew Ammerlaan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox