diff options
author | Johannes Huber <johu@gentoo.org> | 2017-03-18 22:30:44 +0100 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2017-03-18 22:41:53 +0100 |
commit | 0b33f266ad4473a8b1a4090411d1222aa03e3c5b (patch) | |
tree | 136bcc348ea332e7081cbd7f9a70e69089cda793 /eclass/kde5.eclass | |
parent | dev-python/PyPDF2: 1.26.0 version bump, add py3{5,6}, fix tests, EAPI 6 (diff) | |
download | gentoo-0b33f266ad4473a8b1a4090411d1222aa03e3c5b.tar.gz gentoo-0b33f266ad4473a8b1a4090411d1222aa03e3c5b.tar.bz2 gentoo-0b33f266ad4473a8b1a4090411d1222aa03e3c5b.zip |
kde5.eclass: Drop KDevelop 5.0.0 release workaround
Is not needed anymore and breaks 5.1.0
Diffstat (limited to 'eclass/kde5.eclass')
-rw-r--r-- | eclass/kde5.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index 2d9151f95ad0..106383bb05c3 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -241,9 +241,9 @@ fi if [[ -n ${KDEBASE} && ${KDEBASE} = kdevelop && ${KDE_BUILD_TYPE} = release ]]; then if [[ -n ${KMNAME} ]]; then - S=${WORKDIR}/${KMNAME}-${PV%.0} # kdevelop missing trailing .0 in first release + S=${WORKDIR}/${KMNAME}-${PV} else - S=${WORKDIR}/${PN}-${PV%.0} # kdevelop missing trailing .0 in first release + S=${WORKDIR}/${P} fi fi @@ -326,7 +326,7 @@ _calculate_src_uri() { RESTRICT+=" mirror" ;; *) - SRC_URI="mirror://kde/stable/${_kdebase}/${PV}/src/${_kmname}-${PV%.0}.tar.xz" ;; + SRC_URI="mirror://kde/stable/${_kdebase}/${PV}/src/${_kmname}-${PV}.tar.xz" ;; esac unset _kdebase fi |