diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-11-11 15:43:43 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-11-29 17:51:53 +0100 |
commit | bd3ef27b288bb92f7ec19a043f5dd1d3a84d072c (patch) | |
tree | 9c47741120d5ab1c8a29e0e47afb2a72080b63c9 /eclass | |
parent | profiles: Mask KDE Gear 21.12 RC (diff) | |
download | gentoo-bd3ef27b288bb92f7ec19a043f5dd1d3a84d072c.tar.gz gentoo-bd3ef27b288bb92f7ec19a043f5dd1d3a84d072c.tar.bz2 gentoo-bd3ef27b288bb92f7ec19a043f5dd1d3a84d072c.zip |
kde.org.eclass: Drop obsolete kdevelop* quirks, keep 5.6.2 supported
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde.org.eclass | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass index 9e357001a970..4128e1238d29 100644 --- a/eclass/kde.org.eclass +++ b/eclass/kde.org.eclass @@ -222,14 +222,8 @@ _kde.org_calculate_src_uri() { ;; esac - if [[ ${PN} == kdevelop* ]]; then - case ${PV} in - *.*.[6-9]? ) - _src_uri+="unstable/kdevelop/${PV}/src/" - RESTRICT+=" mirror" - ;; - *) _src_uri+="stable/kdevelop/${PV}/src/" ;; - esac + if [[ ${PN} == kdevelop* && ${PV} == 5.6.2 ]]; then + _src_uri+="stable/kdevelop/${PV}/src/" fi if [[ -n ${KDE_ORG_COMMIT} ]]; then @@ -272,10 +266,6 @@ _kde.org_calculate_live_repo() { EGIT_BRANCH="Plasma/$(ver_cut 1-2)" fi - if [[ ${PV} != 9999 && ${PN} == kdevelop* ]]; then - EGIT_BRANCH="$(ver_cut 1-2)" - fi - # @ECLASS-VARIABLE: EGIT_REPONAME # @DESCRIPTION: # This variable allows overriding of default repository |