forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-php/simpletest: Version bump with moving to Github
Package-Manager: Portage-2.3.6, Repoman-2.3.2
- Loading branch information
Brian Evans
committed
Jul 10, 2017
1 parent
626ea70
commit 5bf6326
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST simpletest-1.1.7.tar.gz 763745 SHA256 e3c4acf1748adae79200de2bb5b810fe9bf4ea4903ae62470319caebf1d45119 SHA512 105ce73a36bb3885ee27052b5bc7fde775ec04afc725ab45c79cf103639e9c7d8bd7f9e279f5b07ad5d1e9ccf3797741506e3bf07b57283b5f1b3f39901ad852 WHIRLPOOL c6191a1ffe3fe1796ccde4fd61716d5657a054af0b15bbeb6fa8c82dd03f89dd60f83477fa294ac706939f1472c597e146caab1dbb287c408a85e842bd88775b | ||
DIST simpletest_1.1.0.tar.gz 287537 SHA256 c9843becf2cec9022e11a05c8e95ae9e8d23624054c5c4e8e2b68f153e98d665 SHA512 e6d4673ba33af2296e57c0deea56871dd9c55014d0169f0a35325659f73b6596300f8bbf0956b7ee53924bcc967de38e224e3110d8e1d7e57c4f6068a66a5a1f WHIRLPOOL 7c141c640856aa462b2aaadb6b8cf8a499b6cbe250ccf251af9f6a13971debd2888df2b1c8d16f9f156b3b63ea192c9f903b53f9e53670911d099bcb9f90e46c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
KEYWORDS="~amd64 ~x86" | ||
|
||
DESCRIPTION="A PHP testing framework" | ||
HOMEPAGE="http://www.simpletest.org/" | ||
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
LICENSE="LGPL-2.1" | ||
SLOT="0" | ||
IUSE="" | ||
|
||
DEPEND="" | ||
RDEPEND="dev-lang/php:*" | ||
|
||
src_install() { | ||
local DOCS=( docs HELP_MY_TESTS_DONT_WORK_ANYMORE README.md TODO.xml ) | ||
einstalldocs | ||
|
||
insinto "/usr/share/php/${PN}" | ||
doins -r *.php extensions packages tutorials | ||
} |