diff options
author | ormorph <roma251078@mail.ru> | 2021-11-15 22:06:35 +0300 |
---|---|---|
committer | ormorph <roma251078@mail.ru> | 2021-11-16 00:22:50 +0300 |
commit | 9f59a1d0c834bc706d6e74f0a0dc9f026e935b41 (patch) | |
tree | dbe2babfd8aea5f985063e94dcfa22679c93526f /trinity-apps/tdesvn | |
parent | ffbff856abb47b6fb62cdd430211c67f67478c5b (diff) | |
download | tde-packaging-gentoo-9f59a1d0c834bc706d6e74f0a0dc9f026e935b41.tar.gz tde-packaging-gentoo-9f59a1d0c834bc706d6e74f0a0dc9f026e935b41.zip |
Added ebuilds for stable version 14.0.11
Signed-off-by: ormorph <roma251078@mail.ru>
Diffstat (limited to 'trinity-apps/tdesvn')
-rw-r--r-- | trinity-apps/tdesvn/Manifest | 1 | ||||
-rw-r--r-- | trinity-apps/tdesvn/tdesvn-14.0.11.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/trinity-apps/tdesvn/Manifest b/trinity-apps/tdesvn/Manifest index 70c91e41..384e9c08 100644 --- a/trinity-apps/tdesvn/Manifest +++ b/trinity-apps/tdesvn/Manifest @@ -1 +1,2 @@ +DIST tdesvn-trinity-14.0.11.tar.xz 1378944 BLAKE2B adeea66db5b41515565c5a568bafee84ce551b5f88dce25df31e00ddf1233e80d3228f4ed4a3a5538756855932211968a37e6a178eae24b91743437c949b0c99 SHA512 da985495704ff7e3a1aa193e85432055b2773227086dea4f05b34c401a95f65ac6eee49ce86c327e7f1e7d42186fb3a41c05ec165f40a49d98bb5654f48dc26e DIST tdesvn-trinity-14.0.8.tar.xz 1384720 BLAKE2B a395fd4f5c7610232ba9c239b5a56995164c5d8181315147c73711cc965cb9b8d6173a29bfaa78e40b300601a1e827c2ba9b9a72cc2395e92afa6493a3d89ec8 SHA512 a7d582bd81a9309ebc45332f69e5c2a30aa87d9787eca400057341f68ff53578bf4422f09ec11dae1db45eeaa7ae0d83e992b26e6ce2be2ba35fdf176a874684 diff --git a/trinity-apps/tdesvn/tdesvn-14.0.11.ebuild b/trinity-apps/tdesvn/tdesvn-14.0.11.ebuild new file mode 100644 index 00000000..fc0c1930 --- /dev/null +++ b/trinity-apps/tdesvn/tdesvn-14.0.11.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2021 Gentoo Authors +# Copyright 2021 The Trinity Desktop Project +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +TRINITY_EXTRAGEAR_PACKAGING="yes" +TRINITY_HANDBOOK="optional" + +TRINITY_LANGS="ca cs de es fr gl it ja lt nl pa ru sv" +TRINITY_MODULE_TYPE="applications/development" +inherit trinity-base-2 + +DESCRIPTION="Subversion client with tight TDE integration" +HOMEPAGE="https://trinitydesktop.org/" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="14" +if [[ ${PV} != *9999* ]] ; then + KEYWORDS="~amd64 ~x86" +fi +IUSE="test" + +RESTRICT+=" !test? ( test )" + +DEPEND="dev-vcs/subversion" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTS="$(usex test)" + ) + trinity-base-2_src_configure +} |