mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 20:43:38 +02:00
soapui: a new tool for SOAP testing
This commit is contained in:
parent
c760265d3b
commit
8dedef8e21
2 changed files with 39 additions and 0 deletions
2
dev-util/soapui/Manifest
Normal file
2
dev-util/soapui/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST SoapUI-5.0.0-linux-bin.tar.gz 49674791 SHA256 0bd9505dac3ad40a5afeab3f0ba80663799068573119f3a1f611bf4a655686db SHA512 5b266be1bc2aa3ae3d6007fdc24e44b08addf2b36c9232707fa5880a37232202b133a15d2d0232d0e7c5e830d03cdc68c4157bd457c879ba7416cf7459488b21 WHIRLPOOL b255cce905e9e70f8725a886adbfef9dda166375bb20d40884c8d2f3b1f49f914d34157362c2a904a044a9cb87881add7577ecebe9bf14bf9a05b14668710074
|
||||
EBUILD soapui-5.0.0.ebuild 1047 SHA256 ee151eae936271af461a758dfe53d50cf322b4fadba9d5a4040ba4381ad400cc SHA512 31c444a52e987097411b94ed72703be5041d4a14b7c76a891dcfb82dfd31268ed9b02d5c0898afd12fc540a6f7778217f4a35500daf961904d6ab508cb1f890f WHIRLPOOL 4a82dba16b475735ea5b23e16a6fcb57aacb1282a882f934ca61b8f33553801d66b85b8258fc8d97b2f2ea51208b6a79415372acee1e11642974d17a75f82caf
|
||||
37
dev-util/soapui/soapui-5.0.0.ebuild
Normal file
37
dev-util/soapui/soapui-5.0.0.ebuild
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
DESCRIPTION="The Swiss-Army Knife for SOAP Testing"
|
||||
HOMEPAGE="http://www.soapui.org/"
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
SRC_URI="http://sourceforge.net/projects/${PN}/files/${PN}/${PV}/SoapUI-${PV}-linux-bin.tar.gz"
|
||||
RESTRICT="strip mirror"
|
||||
RDEPEND=">=virtual/jre-1.6"
|
||||
|
||||
INSTALLDIR="/opt/SoapUI"
|
||||
S="${WORKDIR}/SoapUI-${PV}"
|
||||
|
||||
src_install() {
|
||||
# application
|
||||
insinto ${INSTALLDIR}
|
||||
doins -r Tutorials bin lib wsi-test-tools soapui-settings.xml
|
||||
|
||||
# binaries
|
||||
chmod 755 "${D}/${INSTALLDIR}/bin/loadtestrunner.sh"
|
||||
chmod 755 "${D}/${INSTALLDIR}/bin/mockservicerunner.sh"
|
||||
chmod 755 "${D}/${INSTALLDIR}/bin/securitytestrunner.sh"
|
||||
chmod 755 "${D}/${INSTALLDIR}/bin/soapui.sh"
|
||||
chmod 755 "${D}/${INSTALLDIR}/bin/testrunner.sh"
|
||||
chmod 755 "${D}/${INSTALLDIR}/bin/toolrunner.sh"
|
||||
chmod 755 "${D}/${INSTALLDIR}/bin/wargenerator.sh"
|
||||
|
||||
# default docs
|
||||
dodoc README.md
|
||||
dodoc LICENSE.txt
|
||||
dodoc RELEASENOTES.txt
|
||||
}
|
||||
Loading…
Reference in a new issue