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 3FC71138335 for ; Thu, 20 Sep 2018 12:00:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2FC8E08F4; Thu, 20 Sep 2018 12:00:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 A5146E08F4 for ; Thu, 20 Sep 2018 12:00:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 4DD23335D06 for ; Thu, 20 Sep 2018 12:00:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 513B63DF for ; Thu, 20 Sep 2018 12:00:35 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1537444818.089c91791a8f2268e456772950a35fd4ef62777b.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/phar-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/phar-utils/Manifest dev-php/phar-utils/phar-utils-1.0.1.ebuild X-VCS-Directories: dev-php/phar-utils/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 089c91791a8f2268e456772950a35fd4ef62777b X-VCS-Branch: master Date: Thu, 20 Sep 2018 12:00:35 +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: cd7e1a24-8983-41a0-955c-b7ae81357655 X-Archives-Hash: 73d326de75494e3128aa820069dd75b8 commit: 089c91791a8f2268e456772950a35fd4ef62777b Author: Tomas Mozes gmail com> AuthorDate: Fri Sep 7 11:14:53 2018 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Thu Sep 20 12:00:18 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=089c9179 dev-php/phar-utils: bump to 1.0.1 Signed-off-by: Tomáš Mózes gmail.com> Package-Manager: Portage-2.3.49, Repoman-2.3.10 dev-php/phar-utils/Manifest | 1 + dev-php/phar-utils/phar-utils-1.0.1.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/dev-php/phar-utils/Manifest b/dev-php/phar-utils/Manifest index 0446b10eaec..0015d97693c 100644 --- a/dev-php/phar-utils/Manifest +++ b/dev-php/phar-utils/Manifest @@ -1 +1,2 @@ DIST phar-utils-1.0.0.tar.gz 3152 BLAKE2B c4dfd3d659989bc22adcc14c79e28d623753988742d2fdd178dfd98590b629083ad85c9f112ab23c6213fa70cdad838ebbdc01c45551892ed9a20a3374abd28c SHA512 bf3d7074a3f1101a7f03e8fb8a5bc1456674bf2f9ded6a5fc5fb2f892c1cc3c4643fab6c003851ed12ea16ce6390f482cf897beee7d7c38922b6c54c90b0934e +DIST phar-utils-1.0.1.tar.gz 3251 BLAKE2B 4d12701c53c3a17a141dd35210bbac16b84be7bb6d87b459d13114b09188487f86aedc13afbf510a2e01741a72e1929e25ee5204b729fa5b23801e429f844a58 SHA512 a1fb09b712add948f7b5c19e2f9e81869c76f91dd7d41c981b3f06870a6f7a15d0c413338751587642e3dc538e181336b9fe80f61148ce304025434e9d01d6bd diff --git a/dev-php/phar-utils/phar-utils-1.0.1.ebuild b/dev-php/phar-utils/phar-utils-1.0.1.ebuild new file mode 100644 index 00000000000..9ed73f9e628 --- /dev/null +++ b/dev-php/phar-utils/phar-utils-1.0.1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="PHAR file format utilities, for when PHP phars you up" +HOMEPAGE="https://github.com/Seldaek/phar-utils" +SRC_URI="https://github.com/Seldaek/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-lang/php:*[phar] + dev-php/fedora-autoloader" + +src_install() { + insinto "/usr/share/php/Seld/PharUtils" + doins -r src/. "${FILESDIR}"/autoload.php + dodoc README.md +}