From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BCFE6138334 for ; Mon, 22 Oct 2018 22:55:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB88FE096E; Mon, 22 Oct 2018 22:55:48 +0000 (UTC) Received: from smtp.gentoo.org (unknown [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 67780E096E for ; Mon, 22 Oct 2018 22:55:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9A4EF335CD5 for ; Mon, 22 Oct 2018 22:55:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA3B3447 for ; Mon, 22 Oct 2018 22:55:24 +0000 (UTC) From: "Luca Barbato" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Luca Barbato" Message-ID: <1540248875.bc30a9aef38e4aab2f90fb59a3a4ff470cbc1d39.lu_zero@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gmmlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/gmmlib/Manifest media-libs/gmmlib/gmmlib-18.3.0.ebuild media-libs/gmmlib/gmmlib-9999.ebuild media-libs/gmmlib/metadata.xml X-VCS-Directories: media-libs/gmmlib/ X-VCS-Committer: lu_zero X-VCS-Committer-Name: Luca Barbato X-VCS-Revision: bc30a9aef38e4aab2f90fb59a3a4ff470cbc1d39 X-VCS-Branch: master Date: Mon, 22 Oct 2018 22:55:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cf5d6521-e2dd-4de9-a875-6bd18f505fe3 X-Archives-Hash: eb118e383ac7cfa4a7900800674fdc2c commit: bc30a9aef38e4aab2f90fb59a3a4ff470cbc1d39 Author: Luca Barbato gentoo org> AuthorDate: Mon Oct 22 15:44:30 2018 +0000 Commit: Luca Barbato gentoo org> CommitDate: Mon Oct 22 22:54:35 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc30a9ae media-libs/gmmlib: New package Needed by the intel mediasdk dependency. Package-Manager: Portage-2.3.50, Repoman-2.3.11 Signed-off-by: Luca Barbato gentoo.org> media-libs/gmmlib/Manifest | 1 + media-libs/gmmlib/gmmlib-18.3.0.ebuild | 41 ++++++++++++++++++++++++++++++++++ media-libs/gmmlib/gmmlib-9999.ebuild | 41 ++++++++++++++++++++++++++++++++++ media-libs/gmmlib/metadata.xml | 7 ++++++ 4 files changed, 90 insertions(+) diff --git a/media-libs/gmmlib/Manifest b/media-libs/gmmlib/Manifest new file mode 100644 index 00000000000..9f6502ccf5e --- /dev/null +++ b/media-libs/gmmlib/Manifest @@ -0,0 +1 @@ +DIST intel-gmmlib-18.3.0.tar.gz 620491 BLAKE2B 555a733b42b8e4c40170db9ecabc25bb04779c3aba38b9141f021df1dbe83d74e385a3437d4a87577d9e5ff4df21ce618393909cd98fce4a59ec19aeff4eb44d SHA512 358598873556822be6748a282cd1447ca3e0bcaeb11c2bb8862414bac2ab8e57deee9581fa14bfe22d33d712e567db936332b7fe715dae9816b31121af934dec diff --git a/media-libs/gmmlib/gmmlib-18.3.0.ebuild b/media-libs/gmmlib/gmmlib-18.3.0.ebuild new file mode 100644 index 00000000000..f0dd8d2cd69 --- /dev/null +++ b/media-libs/gmmlib/gmmlib-18.3.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +if [[ ${PV} == *9999 ]] ; then + : ${EGIT_REPO_URI:="https://github.com/intel/gmmlib"} + if [[ ${PV%9999} != "" ]] ; then + : ${EGIT_BRANCH:="release/${PV%.9999}"} + fi + inherit git-r3 +fi + +DESCRIPTION="Intel Graphics Memory Management Library" +HOMEPAGE="https://github.com/intel/gmmlib" +if [[ ${PV} == *9999 ]] ; then + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://github.com/intel/gmmlib/archive/intel-${P}.tar.gz" + S="${WORKDIR}/${PN}-intel-${P}" + KEYWORDS="~amd64" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_configure() { +# once upstream makes this optional +# local mycmakeargs=( +# -DMEDIA_RUN_TEST_SUITE=OFF +# ) + + cmake-utils_src_configure +} diff --git a/media-libs/gmmlib/gmmlib-9999.ebuild b/media-libs/gmmlib/gmmlib-9999.ebuild new file mode 100644 index 00000000000..f0dd8d2cd69 --- /dev/null +++ b/media-libs/gmmlib/gmmlib-9999.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +if [[ ${PV} == *9999 ]] ; then + : ${EGIT_REPO_URI:="https://github.com/intel/gmmlib"} + if [[ ${PV%9999} != "" ]] ; then + : ${EGIT_BRANCH:="release/${PV%.9999}"} + fi + inherit git-r3 +fi + +DESCRIPTION="Intel Graphics Memory Management Library" +HOMEPAGE="https://github.com/intel/gmmlib" +if [[ ${PV} == *9999 ]] ; then + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://github.com/intel/gmmlib/archive/intel-${P}.tar.gz" + S="${WORKDIR}/${PN}-intel-${P}" + KEYWORDS="~amd64" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_configure() { +# once upstream makes this optional +# local mycmakeargs=( +# -DMEDIA_RUN_TEST_SUITE=OFF +# ) + + cmake-utils_src_configure +} diff --git a/media-libs/gmmlib/metadata.xml b/media-libs/gmmlib/metadata.xml new file mode 100644 index 00000000000..80088c21d0a --- /dev/null +++ b/media-libs/gmmlib/metadata.xml @@ -0,0 +1,7 @@ + + + + + media-video@gentoo.org + +