holgersson-overlay/app-vim/vim-obsession/vim-obsession-1.0_p20210322.ebuild
Nils Freydank 5bd9b867c9
app-vim/vim-obsession: Bump to 1.0_p20210322
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Manifest-Sign-Key: 00EFD31F1B60D5DBADB831C1C0ECE6960E54475B
Signed-off-by: Nils Freydank <holgersson@posteo.de>
2021-03-27 10:39:08 +01:00

34 lines
866 B
Bash

# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit vim-plugin
COMMIT_ID="82c9ac5e130c92a46e043dd9cd9e5b48d15e286d"
DESCRIPTION="vim plugin: mksession automation tool"
HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=4472 https://github.com/tpope/vim-obsession"
LICENSE="vim"
IUSE="test"
RESTRICT="!test? ( test )"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/tpope/vim-obsession.git"
else
if [[ ${PV} == *_p* ]]; then
SRC_URI="https://github.com/tpope/vim-obsession/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/vim-obsession-${COMMIT_ID}"
KEYWORDS="~amd64 ~x86"
else
SRC_URI="https://github.com/tpope/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
fi
DOCS=(
README.markdown
CONTRIBUTING.markdown
)