diff options
author | 2022-05-18 14:34:43 +0200 | |
---|---|---|
committer | 2022-05-18 14:46:10 +0200 | |
commit | 15c848fb1188b3ee3704eaf2670332568507a370 (patch) | |
tree | 959da9f9607090e1afd6eb9633541617bc0df49d /sci-mathematics | |
parent | sci-libs/NNPACK: add to tree (diff) | |
download | gentoo-15c848fb1188b3ee3704eaf2670332568507a370.tar.gz gentoo-15c848fb1188b3ee3704eaf2670332568507a370.tar.bz2 gentoo-15c848fb1188b3ee3704eaf2670332568507a370.zip |
sci-mathematics/rkward: 0.7.3 version bump
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/rkward/Manifest | 1 | ||||
-rw-r--r-- | sci-mathematics/rkward/rkward-0.7.3.ebuild | 57 |
2 files changed, 58 insertions, 0 deletions
diff --git a/sci-mathematics/rkward/Manifest b/sci-mathematics/rkward/Manifest index 3350fd01d471..4335505a63bf 100644 --- a/sci-mathematics/rkward/Manifest +++ b/sci-mathematics/rkward/Manifest @@ -1 +1,2 @@ DIST rkward-0.7.2.tar.gz 6307769 BLAKE2B df72d5d03ecbb57cb08787cc27e66cfacca517a08ca10190c1bb0d627f991dab6b79e9399b0b6c38a545d370d0ecdc8fc5796c1e046a0aac20c0485405a2d72c SHA512 af872b59dea8535eb6ddc0b3db56c45114fc64b0b657e5c8373eb2f7b3a63aa13f9e3c8f6050ff3eff0126df595ed30e1d1e66b91c19b7ba950838613798cb6d +DIST rkward-0.7.3.tar.gz 5486401 BLAKE2B 0410c29b79567e3e1b8e1947fa89c2b696a67396a51bf6a0bb5ddee485ee295e66cf20442b5b585f272bb4a6afa77c3217997b2a02752cd7b0bc945d9f099a35 SHA512 dc93b88653c6303fdbe82406837534118ad56eec9a95613b1da8a5711d3f7cc798bb8e0d15955584a8c143c1944469a0e80728b5e5e46edef2d23e9d818782ec diff --git a/sci-mathematics/rkward/rkward-0.7.3.ebuild b/sci-mathematics/rkward/rkward-0.7.3.ebuild new file mode 100644 index 000000000000..50f6382445ec --- /dev/null +++ b/sci-mathematics/rkward/rkward-0.7.3.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_HANDBOOK="forceoptional" +inherit ecm kde.org optfeature + +DESCRIPTION="IDE for the R-project" +HOMEPAGE="https://rkward.kde.org/" + +if [[ ${KDE_BUILD_TYPE} = release ]]; then + SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.gz" + KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +fi + +LICENSE="GPL-2+ LGPL-2" +SLOT="5" +IUSE="" + +DEPEND=" + dev-lang/R + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtprintsupport:5 + dev-qt/qtscript:5 + dev-qt/qtwebengine:5[widgets] + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + kde-frameworks/karchive:5 + kde-frameworks/kcompletion:5 + kde-frameworks/kconfig:5 + kde-frameworks/kconfigwidgets:5 + kde-frameworks/kcoreaddons:5 + kde-frameworks/kcrash:5 + kde-frameworks/ki18n:5 + kde-frameworks/kio:5 + kde-frameworks/kjobwidgets:5 + kde-frameworks/knotifications:5 + kde-frameworks/kparts:5 + kde-frameworks/kservice:5 + kde-frameworks/ktexteditor:5 + kde-frameworks/kwidgetsaddons:5 + kde-frameworks/kwindowsystem:5 + kde-frameworks/kxmlgui:5 +" +RDEPEND="${DEPEND}" +BDEPEND="sys-devel/gettext" + +pkg_postinst() { + if [[ -z "${REPLACING_VERSIONS}" ]]; then + optfeature "kate plugins support" "kde-apps/kate:${SLOT}" + optfeature "prendering (or previewing) R markdown (.Rmd) files" "app-text/pandoc" + optfeature "managing citations while writing articles" "app-text/kbibtex" + fi + ecm_pkg_postinst +} |