summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Evans <grknight@gentoo.org>2019-12-30 09:30:11 -0500
committerBrian Evans <grknight@gentoo.org>2019-12-30 10:09:06 -0500
commite076f731e9bcd5300fe420578e1f782464bae510 (patch)
tree9856ced616ad0e3140259319860112f13740f075 /dev-php
parentdev-php/pecl-ssh2: Remove masked version (diff)
downloadgentoo-e076f731e9bcd5300fe420578e1f782464bae510.tar.gz
gentoo-e076f731e9bcd5300fe420578e1f782464bae510.tar.bz2
gentoo-e076f731e9bcd5300fe420578e1f782464bae510.zip
dev-php/pecl-stomp: Remove masked version
Bug: https://bugs.gentoo.org/651784 Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'dev-php')
-rw-r--r--dev-php/pecl-stomp/Manifest1
-rw-r--r--dev-php/pecl-stomp/pecl-stomp-1.0.9-r1.ebuild52
2 files changed, 0 insertions, 53 deletions
diff --git a/dev-php/pecl-stomp/Manifest b/dev-php/pecl-stomp/Manifest
index 58e50af8cb0b..5b21b5de59df 100644
--- a/dev-php/pecl-stomp/Manifest
+++ b/dev-php/pecl-stomp/Manifest
@@ -1,2 +1 @@
-DIST stomp-1.0.9.tgz 23166 BLAKE2B 804fbe2703f5035a8faa744cddc84de5249b74186c22ab5e26c075a2f241262cadd237c7f566262fcdc25def846968a7788d80817743cdf53eb255cbc25053e1 SHA512 e3ab5bfb03c29edde63de4006b448e0204efbac5817b1443ee5b1a0249c2f96d58443847b878e838108b66e5307f6e803f807aff7430af748af4994bfca5199a
DIST stomp-2.0.2.tgz 23609 BLAKE2B b6ed89b5b8fd0bb501b2337e87107797eedc6ac53c81ba86d2e755cfa2dd716bf4e409cee623430791e0b4854833ef44ed7f6f9e1d89fcd2250d598af0dcaea6 SHA512 577a781b45ef394cd833fb69c808da9b8a8ff69b31b1093c5eef3f7b5d1b37cd0b45c32a03883f56f86213e32bb18aaf0a80010c6bec7efa7239ea48bc57b4b4
diff --git a/dev-php/pecl-stomp/pecl-stomp-1.0.9-r1.ebuild b/dev-php/pecl-stomp/pecl-stomp-1.0.9-r1.ebuild
deleted file mode 100644
index d8aef480451f..000000000000
--- a/dev-php/pecl-stomp/pecl-stomp-1.0.9-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_PHP="php5-6 php7-1 php7-2 php7-3"
-PHP_EXT_NAME="stomp"
-DOCS=( CREDITS doc/classes.php doc/functions.php )
-
-inherit php-ext-pecl-r3
-
-USE_PHP="php5-6"
-
-KEYWORDS="~amd64 ~x86"
-
-DESCRIPTION="PHP extension to communicate with Stomp message brokers"
-LICENSE="PHP-3.01"
-SLOT="0"
-IUSE="examples ssl"
-
-DEPEND="${DEPEND}
- php_targets_php5-6? ( dev-lang/php:5.6[ssl?] )
-"
-
-RDEPEND="${DEPEND}"
-PDEPEND="
- php_targets_php7-1? ( dev-php/pecl-stomp:7 )
- php_targets_php7-2? ( dev-php/pecl-stomp:7 )
- php_targets_php7-3? ( dev-php/pecl-stomp:7 )
-"
-
-src_prepare() {
- if use php_targets_php5-6 ; then
- php-ext-source-r3_src_prepare
- else
- default_src_prepare
- fi
-}
-
-src_configure() {
- local PHP_EXT_ECONF_ARGS=(
- --enable-stomp
- --with-openssl-dir=$(usex ssl "${EPREFIX}/usr")
- )
- php-ext-source-r3_src_configure
-}
-
-src_install() {
- if use php_targets_php5-6 ; then
- php-ext-pecl-r3_src_install
- fi
-}