Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/
Date: Tue, 24 Oct 2017 21:38:00
Message-Id: 1508881066.ad31a73ff9020b748e422c8a94d0a74cd78b6cf6.monsieurp@gentoo
1 commit: ad31a73ff9020b748e422c8a94d0a74cd78b6cf6
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 24 20:45:53 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 24 21:37:46 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad31a73f
7
8 app-editors/vim-core: remove version_is_at_least ifs.
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 app-editors/vim-core/vim-core-8.0.1188.ebuild | 12 ++++--------
13 1 file changed, 4 insertions(+), 8 deletions(-)
14
15 diff --git a/app-editors/vim-core/vim-core-8.0.1188.ebuild b/app-editors/vim-core/vim-core-8.0.1188.ebuild
16 index 358da58e059..e383fc5b1c0 100644
17 --- a/app-editors/vim-core/vim-core-8.0.1188.ebuild
18 +++ b/app-editors/vim-core/vim-core-8.0.1188.ebuild
19 @@ -85,16 +85,12 @@ src_prepare() {
20 "${S}"/src/po/Makefile || die "sed failed"
21 fi
22
23 - if version_is_at_least 7.3.122; then
24 - cp -v "${S}"/src/config.mk.dist "${S}"/src/auto/config.mk || die "cp failed"
25 - fi
26 + cp -v "${S}"/src/config.mk.dist "${S}"/src/auto/config.mk || die "cp failed"
27
28 # Bug #378107 - Build properly with >=perl-core/ExtUtils-ParseXS-3.20.0
29 - if version_is_at_least 7.3 ; then
30 - sed -i -e \
31 - "s:\\\$(PERLLIB)/ExtUtils/xsubpp:${EPREFIX}/usr/bin/xsubpp:" \
32 - "${S}"/src/Makefile || die 'sed for ExtUtils-ParseXS failed'
33 - fi
34 + sed -i -e \
35 + "s:\\\$(PERLLIB)/ExtUtils/xsubpp:${EPREFIX}/usr/bin/xsubpp:" \
36 + "${S}"/src/Makefile || die 'sed for ExtUtils-ParseXS failed'
37
38 eapply_user
39 }