Skip to content

Commit

Permalink
dev-php/phar-io-version: new package
Browse files Browse the repository at this point in the history
Package-Manager: Portage-2.3.13, Repoman-2.3.3

Signed-off-by: Michael Orlitzky <[email protected]>
  • Loading branch information
kitsunenokenja authored and orlitzky committed Feb 13, 2018
1 parent 3fe58b8 commit 9db6441
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions dev-php/phar-io-version/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST phar-io-version-1.0.1.tar.gz 8686 BLAKE2B 2cb7208f24ebce981b1b487170d8f07fd43c6dc53782e2797c3172736255e29863aa832d8e63f59e9f941fc154a1e3ebc6452437641f92521f84ddfdf2d3e6ec SHA512 c3bd6e7426bbac99c2b7028d86429f954daafebb7aea3c969305035ce5fc98c3d718f34efbf36658442bb4f60518dbb8217c314f2a3afd429e037120cc7428d9
8 changes: 8 additions & 0 deletions dev-php/phar-io-version/files/autoload.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php
/* Autoloader for dev-php/phar-io-version */

if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
}

\Fedora\Autoloader\Autoload::addPsr4('PharIo\\Version\\', __DIR__);
11 changes: 11 additions & 0 deletions dev-php/phar-io-version/metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>[email protected]</email>
<name>PHP</name>
</maintainer>
<upstream>
<remote-id type="github">phar-io/version</remote-id>
</upstream>
</pkgmetadata>
27 changes: 27 additions & 0 deletions dev-php/phar-io-version/phar-io-version-1.0.1.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

MY_PN="version"

DESCRIPTION="Library for handling version information and constraints"
HOMEPAGE="https://github.com/phar-io/version"
SRC_URI="https://github.com/phar-io/${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-5.6"

src_install() {
insinto /usr/share/php/PharIo/Version
doins -r src/*
doins "${FILESDIR}/autoload.php"
dodoc README.md
}

0 comments on commit 9db6441

Please sign in to comment.