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 5D0DF138334 for ; Thu, 19 Dec 2019 21:52:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0027FE08A5; Thu, 19 Dec 2019 21:52:00 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [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 C8FA8E085D for ; Thu, 19 Dec 2019 21:52:00 +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 566D134D6E3 for ; Thu, 19 Dec 2019 21:51:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D43708C8 for ; Thu, 19 Dec 2019 21:51:57 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1576792252.56d48589544ae18f869f490a1c3fadfa357e732b.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/sebastian-type/, dev-php/sebastian-type/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/sebastian-type/Manifest dev-php/sebastian-type/files/autoload.php dev-php/sebastian-type/metadata.xml dev-php/sebastian-type/sebastian-type-1.1.3.ebuild X-VCS-Directories: dev-php/sebastian-type/files/ dev-php/sebastian-type/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 56d48589544ae18f869f490a1c3fadfa357e732b X-VCS-Branch: master Date: Thu, 19 Dec 2019 21:51:57 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5a2113ed-fcc6-4bc8-a37e-cb146251ee2e X-Archives-Hash: 146e948bb0fc84131410e2846d33acdf commit: 56d48589544ae18f869f490a1c3fadfa357e732b Author: Brian Evans gentoo org> AuthorDate: Thu Dec 19 20:23:29 2019 +0000 Commit: Brian Evans gentoo org> CommitDate: Thu Dec 19 21:50:52 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56d48589 dev-php/sebastian-type: New Package Required for now phpunit Signed-off-by: Brian Evans gentoo.org> dev-php/sebastian-type/Manifest | 1 + dev-php/sebastian-type/files/autoload.php | 24 +++++++++++++++++++ dev-php/sebastian-type/metadata.xml | 11 +++++++++ dev-php/sebastian-type/sebastian-type-1.1.3.ebuild | 27 ++++++++++++++++++++++ 4 files changed, 63 insertions(+) diff --git a/dev-php/sebastian-type/Manifest b/dev-php/sebastian-type/Manifest new file mode 100644 index 00000000000..922b2aba231 --- /dev/null +++ b/dev-php/sebastian-type/Manifest @@ -0,0 +1 @@ +DIST sebastian-type-1.1.3.tar.gz 19031 BLAKE2B 5e0d191cbc9315661f226aca14849ac4afa6d9e1dc59ca6033c60e425c94ee8b9ad49ab1c2b94c7814654bbadbaadd0164fadb1494f88c9521b2583985ba0281 SHA512 27b455c7a5f1125c916ea56fd933ef9ffa659b3fa6addf8d2c5956e4efef5bd8ffadc686e5dddfc50ba09a300c8148af7dded4249f404e15923e77102ab777fc diff --git a/dev-php/sebastian-type/files/autoload.php b/dev-php/sebastian-type/files/autoload.php new file mode 100644 index 00000000000..91b60dbf64b --- /dev/null +++ b/dev-php/sebastian-type/files/autoload.php @@ -0,0 +1,24 @@ + '/CallableType.php', + 'sebastianbergmann\type\genericobjecttype' => '/GenericObjectType.php', + 'sebastianbergmann\type\iterabletype' => '/IterableType.php', + 'sebastianbergmann\type\nulltype' => '/NullType.php', + 'sebastianbergmann\type\objecttype' => '/ObjectType.php', + 'sebastianbergmann\type\simpletype' => '/SimpleType.php', + 'sebastianbergmann\type\type' => '/Type.php', + 'sebastianbergmann\type\typename' => '/TypeName.php', + 'sebastianbergmann\type\unknowntype' => '/UnknownType.php', + 'sebastianbergmann\type\voidtype' => '/VoidType.php', + 'sebastianbergmann\type\exception' => '/exception/Exception.php', + 'sebastianbergmann\type\runtimeexception' => '/exception/RuntimeException.php', + ], + __DIR__ +); diff --git a/dev-php/sebastian-type/metadata.xml b/dev-php/sebastian-type/metadata.xml new file mode 100644 index 00000000000..59391408bb9 --- /dev/null +++ b/dev-php/sebastian-type/metadata.xml @@ -0,0 +1,11 @@ + + + + + php-bugs@gentoo.org + PHP + + + sebastianbergmann/type + + diff --git a/dev-php/sebastian-type/sebastian-type-1.1.3.ebuild b/dev-php/sebastian-type/sebastian-type-1.1.3.ebuild new file mode 100644 index 00000000000..b9d9a3f6694 --- /dev/null +++ b/dev-php/sebastian-type/sebastian-type-1.1.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN="type" + +DESCRIPTION="Collection of value objects that represent the types of the PHP type system" +HOMEPAGE="http://phpunit.de" +SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +S="${WORKDIR}/${MY_PN}-${PV}" + +RDEPEND="dev-php/fedora-autoloader + >=dev-lang/php-7.2:*" + +src_install() { + insinto /usr/share/php/SebastianBergmann + doins -r src/* + insinto /usr/share/php/SebastianBergmann/Type + doins "${FILESDIR}/autoload.php" +}