diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-09-06 17:52:52 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-09-06 17:52:52 +0000 |
commit | 3a1af9ed44e531d47a0e9d326924acfa79d79d71 (patch) | |
tree | 5486934242cd7bf117d6c70166eb168a543d0bb3 /app-editors | |
parent | Revert to using a single, compressed patch file. (diff) | |
download | gentoo-2-3a1af9ed44e531d47a0e9d326924acfa79d79d71.tar.gz gentoo-2-3a1af9ed44e531d47a0e9d326924acfa79d79d71.tar.bz2 gentoo-2-3a1af9ed44e531d47a0e9d326924acfa79d79d71.zip |
Revert to using a single, compressed patch file.
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 4F064CA3)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/vim/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/vim/vim-7.4.430.ebuild | 36 | ||||
-rw-r--r-- | app-editors/vim/vim-9999.ebuild | 36 |
3 files changed, 31 insertions, 47 deletions
diff --git a/app-editors/vim/ChangeLog b/app-editors/vim/ChangeLog index f8e10f2f6bb4..fbe8878d7175 100644 --- a/app-editors/vim/ChangeLog +++ b/app-editors/vim/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-editors/vim # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/ChangeLog,v 1.468 2014/09/05 22:35:05 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/ChangeLog,v 1.469 2014/09/06 17:52:52 radhermit Exp $ + + 06 Sep 2014; Tim Harder <radhermit@gentoo.org> vim-7.4.430.ebuild, + vim-9999.ebuild: + Revert to using a single, compressed patch file. *vim-7.4.430 (05 Sep 2014) diff --git a/app-editors/vim/vim-7.4.430.ebuild b/app-editors/vim/vim-7.4.430.ebuild index 04d38da80a8a..43fc1f3614f0 100644 --- a/app-editors/vim/vim-7.4.430.ebuild +++ b/app-editors/vim/vim-7.4.430.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/vim-7.4.430.ebuild,v 1.1 2014/09/05 22:35:05 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/vim-7.4.430.ebuild,v 1.2 2014/09/06 17:52:52 radhermit Exp $ EAPI=5 VIM_VERSION="7.4" @@ -8,22 +8,14 @@ PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} ) PYTHON_REQ_USE=threads inherit eutils vim-doc flag-o-matic fdo-mime versionator bash-completion-r1 python-single-r1 -# Used for setting SRC_URI (when $1 is non-zero) and for outputting the patch names (for src_prepare) -vim_src_uri_patches() { - local i - for (( i=1; i <= $(get_version_component_range 3); i++ )); do - printf "${1:+${VIM_BASE_URI}/patches/${VIM_VERSION}/${VIM_VERSION}.%03d -> } vim-${VIM_VERSION}.%03d.patch\n" ${1:+"${i}"} "${i}" - done -} - if [[ ${PV} == 9999* ]] ; then inherit mercurial EHG_REPO_URI="https://vim.googlecode.com/hg/" EHG_PROJECT="vim" else - VIM_BASE_URI="${VIM_BASE_URI:-ftp://ftp.vim.org/pub/vim}" - SRC_URI="${VIM_BASE_URI}/unix/vim-${VIM_VERSION}.tar.bz2 - $(vim_src_uri_patches SRC_URI) + VIM_ORG_PATCHES="vim-patches-${PV}.patch.bz2" + SRC_URI="ftp://ftp.vim.org/pub/vim/unix/vim-${VIM_VERSION}.tar.bz2 + http://dev.gentoo.org/~radhermit/vim/${VIM_ORG_PATCHES} http://dev.gentoo.org/~radhermit/vim/vim-${VIM_VERSION}-gentoo-patches.tar.bz2" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi @@ -85,18 +77,16 @@ pkg_setup() { src_prepare() { if [[ ${PV} != 9999* ]] ; then - # Apply any patches available from vim.org for this version - local p patches - for p in $(vim_src_uri_patches); do - patches+=( "${DISTDIR}"/${p} ) - done - - # Gentoo patches to fix runtime issues, cross-compile errors, etc - for p in "${WORKDIR}"/patches/*; do - patches+=( "${p}" ) - done + if [[ -f "${WORKDIR}"/${VIM_ORG_PATCHES%.bz2} ]] ; then + # Apply any patches available from vim.org for this version + epatch "${WORKDIR}"/${VIM_ORG_PATCHES%.bz2} + fi - epatch "${patches[@]}" + if [[ -d "${WORKDIR}"/patches/ ]]; then + # Gentoo patches to fix runtime issues, cross-compile errors, etc + EPATCH_SUFFIX="patch" EPATCH_FORCE="yes" \ + epatch "${WORKDIR}"/patches/ + fi fi # Fixup a script to use awk instead of nawk diff --git a/app-editors/vim/vim-9999.ebuild b/app-editors/vim/vim-9999.ebuild index 26010c8d636b..ba7eb19a92f9 100644 --- a/app-editors/vim/vim-9999.ebuild +++ b/app-editors/vim/vim-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/vim-9999.ebuild,v 1.13 2014/09/05 22:35:05 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/vim-9999.ebuild,v 1.14 2014/09/06 17:52:52 radhermit Exp $ EAPI=5 VIM_VERSION="7.4" @@ -8,22 +8,14 @@ PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} ) PYTHON_REQ_USE=threads inherit eutils vim-doc flag-o-matic fdo-mime versionator bash-completion-r1 python-single-r1 -# Used for setting SRC_URI (when $1 is non-zero) and for outputting the patch names (for src_prepare) -vim_src_uri_patches() { - local i - for (( i=1; i <= $(get_version_component_range 3); i++ )); do - printf "${1:+${VIM_BASE_URI}/patches/${VIM_VERSION}/${VIM_VERSION}.%03d -> } vim-${VIM_VERSION}.%03d.patch\n" ${1:+"${i}"} "${i}" - done -} - if [[ ${PV} == 9999* ]] ; then inherit mercurial EHG_REPO_URI="https://vim.googlecode.com/hg/" EHG_PROJECT="vim" else - VIM_BASE_URI="${VIM_BASE_URI:-ftp://ftp.vim.org/pub/vim}" - SRC_URI="${VIM_BASE_URI}/unix/vim-${VIM_VERSION}.tar.bz2 - $(vim_src_uri_patches SRC_URI) + VIM_ORG_PATCHES="vim-patches-${PV}.patch.bz2" + SRC_URI="ftp://ftp.vim.org/pub/vim/unix/vim-${VIM_VERSION}.tar.bz2 + http://dev.gentoo.org/~radhermit/vim/${VIM_ORG_PATCHES} http://dev.gentoo.org/~radhermit/vim/vim-${VIM_VERSION}-gentoo-patches.tar.bz2" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi @@ -85,18 +77,16 @@ pkg_setup() { src_prepare() { if [[ ${PV} != 9999* ]] ; then - # Apply any patches available from vim.org for this version - local p patches - for p in $(vim_src_uri_patches); do - patches+=( "${DISTDIR}"/${p} ) - done - - # Gentoo patches to fix runtime issues, cross-compile errors, etc - for p in "${WORKDIR}"/patches/*; do - patches+=( "${p}" ) - done + if [[ -f "${WORKDIR}"/${VIM_ORG_PATCHES%.bz2} ]] ; then + # Apply any patches available from vim.org for this version + epatch "${WORKDIR}"/${VIM_ORG_PATCHES%.bz2} + fi - epatch "${patches[@]}" + if [[ -d "${WORKDIR}"/patches/ ]]; then + # Gentoo patches to fix runtime issues, cross-compile errors, etc + EPATCH_SUFFIX="patch" EPATCH_FORCE="yes" \ + epatch "${WORKDIR}"/patches/ + fi fi # Fixup a script to use awk instead of nawk |