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-util/kdevelop-php: 24.05.0 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
54 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,2 +1,3 @@ | ||
DIST kdev-php-24.02.2.tar.xz 1090444 BLAKE2B 45b4eee5ea0465719b8d14ccc3bbae2021e911b5e5d0ca44ea32397f05a7c0967a0366ba1bf5f3a089e72917b576c4749119bc96ab3e7bc7bc063e4947d572a8 SHA512 f28eb7cbf0a057e0f8eea6112820d0659fd61ef611e03d8850cf8b0782acd9048d5a434d3a3fd26e6e9c0fff094a9f09cc1e4f8bea5e775dd4e2be442f878680 | ||
DIST kdev-php-24.04.90.tar.xz 1090156 BLAKE2B ff37667f60c13728b4317cac7deebe28836ccbb7f77afdad4796036c79f399d38c954c5e180f608ec3b2cdbf8be590d11af6f191442382feea6269e186d061fc SHA512 06654b7d943a35ba8c7989ba58c21c3bf392e1da6ccf656001b67cdb305ceafe202ae14ee85098f5816c906c9c06d33ac5e3315e3c98d73dc0d01660c152b27a | ||
DIST kdev-php-24.05.0.tar.xz 1090236 BLAKE2B e8d3ba8ca698f3c46689444c1df78ba81fd7f557cacfccd1603914c108503db2f7b836ab6148170c188c6228d68f4aa6efc45f23c7c6bcc81c226e07905ee148 SHA512 8988e1cc219cde791a342a43031b8d9246e17c0103fd6a63650b73b1001c4ea7dd85306f37a91b2f8b26dd0395533b651298318d6947783b85a2218da07508ca |
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,53 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
ECM_HANDBOOK="forceoptional" | ||
ECM_HANDBOOK_DIR="docs" | ||
ECM_TEST="true" | ||
KDE_ORG_CATEGORY="kdevelop" | ||
KDE_ORG_NAME="kdev-php" | ||
KFMIN=5.115.0 | ||
QTMIN=5.15.12 | ||
inherit ecm gear.kde.org | ||
|
||
DESCRIPTION="PHP plugin for KDevelop" | ||
HOMEPAGE="https://www.kdevelop.org/" | ||
|
||
LICENSE="GPL-2 LGPL-2" | ||
SLOT="5" | ||
KEYWORDS="~amd64 ~arm64 ~x86" | ||
IUSE="" | ||
|
||
# remaining tests fail for some, bug 668530 | ||
RESTRICT="test" | ||
|
||
DEPEND=" | ||
>=dev-qt/qtgui-${QTMIN}:5 | ||
>=dev-qt/qtwidgets-${QTMIN}:5 | ||
dev-util/kdevelop-pg-qt:5 | ||
dev-util/kdevelop:5= | ||
>=kde-frameworks/kcmutils-${KFMIN}:5 | ||
>=kde-frameworks/kconfig-${KFMIN}:5 | ||
>=kde-frameworks/kconfigwidgets-${KFMIN}:5 | ||
>=kde-frameworks/kcoreaddons-${KFMIN}:5 | ||
>=kde-frameworks/ki18n-${KFMIN}:5 | ||
>=kde-frameworks/kio-${KFMIN}:5 | ||
>=kde-frameworks/ktexteditor-${KFMIN}:5 | ||
>=kde-frameworks/kwidgetsaddons-${KFMIN}:5 | ||
>=kde-frameworks/kxmlgui-${KFMIN}:5 | ||
>=kde-frameworks/threadweaver-${KFMIN}:5 | ||
" | ||
RDEPEND="${DEPEND}" | ||
BDEPEND=" | ||
test? ( dev-util/kdevelop:5[test] ) | ||
" | ||
|
||
src_test() { | ||
# tests hang, bug 667922 | ||
local myctestargs=( | ||
-E "(completionbenchmark|duchain_multiplefiles)" | ||
) | ||
ecm_src_test | ||
} |