diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-05-14 11:09:11 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-05-14 11:09:11 +0100 |
commit | deba8115d2c2af26df42966b91ef04ff4dd79cde (patch) | |
tree | 9a48f42594e1a9e6b2020d5535a784314434d7a7 /dev-vcs/git-tools | |
parent | 38423c67c8a23f6a1bc42038193182e2da3116eb (diff) |
gentoo resync : 14.05.2020
Diffstat (limited to 'dev-vcs/git-tools')
-rw-r--r-- | dev-vcs/git-tools/Manifest | 2 | ||||
-rw-r--r-- | dev-vcs/git-tools/git-tools-2019.11.ebuild | 29 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-vcs/git-tools/Manifest b/dev-vcs/git-tools/Manifest index 4a1e3e073395..544ef131e2e2 100644 --- a/dev-vcs/git-tools/Manifest +++ b/dev-vcs/git-tools/Manifest @@ -1,3 +1,5 @@ DIST git-tools-2017.10.tar.gz 28049 BLAKE2B 64b5f90468226dbeb4222f0f7be77846deffa836d6743e970c9bffced699c563712c24851e112a922faf3ae4b56ecc8daf0f5f772936c43a95c3907a244a6efa SHA512 60b3006de64a4c26f00241b60d45ef8258999dabfc0a8ad1c7d6d6b386dc56caf8c3b6cd0edbce5e27277c8f900b736fe1e26c6a68ee2179f563d00d65fd7cfe +DIST git-tools-2019.11.tar.gz 28769 BLAKE2B 97dc7dd238b921075cd82cce9a0368309c9cbfd946715063cc05d0638987c81ae81dda10a6a24f8753a6e84bd558c86efea0bbc743d0a63265187924b66536d7 SHA512 091186d78f69bbc5c7b4673d1a3018d642aaf1b6820d7d995712bb41e9da861576f1ad780c5d2380ba75f80843e7cf101bc9e2409bd36f7dcbdb78fe923a8736 EBUILD git-tools-2017.10.ebuild 936 BLAKE2B 634983cfc5e3a337777ab213ee3beca935af032bbf6aef2fcb13ab5e69d75402b662d5e6b015904f5c00f73f7e832abf53d601827105921cc6a642ec98fef1c4 SHA512 5d1d82e5412551d992996a7ba13033dc63f3b86b8fa55e58ca89e523efe110e03987411217bff893fe456d6b75459214d9f1215ddbf27ec9b5e1cd3110bd092f +EBUILD git-tools-2019.11.ebuild 942 BLAKE2B d50db16342bb66bb244bfc01cb7eb2ce50be3ecaa110fb449047290ef096c9ead9742dcc8eb3c7292d9dbe964c847351a61c3236328fde865e08c6d64d4b5314 SHA512 06b86ba996ffe2563987daf7082c0cdb8d1ad7b9d61718deeff1be973ea1926565301c66503f901361ad21de26c395ecf318e7a36c2611abcb050c1e3021e8d6 MISC metadata.xml 303 BLAKE2B 1186af6cb426673a5bc636e1b9aa02377c0cff46fe7bd3313ce8499ec3d53faba66ed52834cd98ecd3a097d20e770adfd0222df5750709861bdea30f2f8816c8 SHA512 1d21c90c1bc801085cf2bba4e75f1413fd232853d651f6db511270eb5ed7d9c2648d1b4e94808ff7ab87299fbebed167793e0563fdcce5bedcc6ae8c8c945a19 diff --git a/dev-vcs/git-tools/git-tools-2019.11.ebuild b/dev-vcs/git-tools/git-tools-2019.11.ebuild new file mode 100644 index 000000000000..37ed8e1ea2d2 --- /dev/null +++ b/dev-vcs/git-tools/git-tools-2019.11.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8} ) +inherit python-r1 + +DESCRIPTION="Assorted git-related scripts" +HOMEPAGE="https://github.com/MestreLion/git-tools" +SRC_URI="https://github.com/MestreLion/git-tools/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${DEPEND} + >=dev-vcs/git-2.5 + >=app-shells/bash-4.0" + +src_install() { + dobin git-branches-rename git-clone-subset git-find-uncommitted-repos + dobin git-rebase-theirs git-strip-merge + python_foreach_impl python_doscript git-restore-mtime + doman man1/*.1 + einstalldocs +} |