mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-vcs/hub: remove old versions
Signed-off-by: William Hubbs <williamh@gentoo.org>
This commit is contained in:
@@ -1,6 +1 @@
|
||||
DIST hub-2.10.0.tar.gz 1042511 BLAKE2B 8e95a6ce24ec9ed5c6d163346ab89a3a587d9f1700eed0773ae14473b06a1cbdba16ff5d75d3f64faa6b13382085a1cf8fb826e09cfd0ba3a0f0589f0abdc615 SHA512 6ded3a57f73fec226234e9b727d676a61a3312825c98cfb5d908ca45c163326352859a126e8b6c7f2e2302badc25a60c9c04c9184e4afab81c9f23d4555a045e
|
||||
DIST hub-2.11.1.tar.gz 1043499 BLAKE2B af3ac833c874f15ce183a41a4b6920ba77b9d882b343e12fddeba58453c2c03cd45fa1ec3e7a488dc2d916d0e12f2cf14d7e4d749848d3a10e44b039e7efae49 SHA512 ee5a42713e7810d0e825c6bc1ca2313c5679693197ca6845e189cc18fbbce04e32e1a5f0e9d2735e5a127b2aeadc33446011fb747b96b3eb6e906cb0e87f5f27
|
||||
DIST hub-2.12.3.tar.gz 1623944 BLAKE2B 16e857fbd62fa79ba10a61f214a2c2fa0d08b71330e522d617209699318d501681049eaf05bfff3d2a143f20226fe240f76733be3296b305ae8ff8a2256a7187 SHA512 8bb433d4a0079cb6f30014650bb5e2dafc1ba7b8c65340886f157ae9b6785f170b13c6db1b11f6334835fc312470f5b0f57b563d665af4bbe44f116fd7af75cf
|
||||
DIST hub-2.13.0.tar.gz 2074748 BLAKE2B e790c13cfab9070699b3995c91c3adfad89b438d70b4f0683dcf2f487349c785d97f1aa845620cf0ccabf93f6738a3a1d45410bd1155c861d55f3d2568312235 SHA512 77cc86948a4725a56b09eacdecb3227b46022de93f6ca8eb298441e32bda83cd8e6bb7874e029caae06852c6edcedfaa19382599d6f6ad9760663ff2573d2342
|
||||
DIST hub-linux-amd64-2.10.0.tgz 4295227 BLAKE2B 889dca0f5d750201d97d9eb1ab23cb781c2b12eb1cd7958c7816ee6c69dd344dc02b824754293071566b80ed7de24310d0ff78d690efb574de302910f16d6784 SHA512 5828977a14324a315a28dab1e25f7adf1671b14d24073cde550781eaaebee3f5f7c683a99329688dd86ac2e59252aa25f30c030d1a2f4bb8a7d135ec7bb88702
|
||||
DIST hub-linux-amd64-2.11.1.tgz 4294575 BLAKE2B b82c768100ba0959b9f7a8e61f0896cc1b0f516215f9c406cb2c2b1e19240a9bab7728129ad956ac1bc8380fc3395fc6430436bfc824be19443dbc2e270ba062 SHA512 e8f1053924eaec23784fb7a829e59d25fbb271165b576cc76060e66755a485b8cd91b48869bf2e4b87790907aa0c22857ca6981a798f19f55d638944b3275c6b
|
||||
|
||||
@@ -1,51 +0,0 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
EGO_PN=github.com/github/hub
|
||||
inherit bash-completion-r1
|
||||
|
||||
DESCRIPTION="Command-line wrapper for git that makes you better at GitHub"
|
||||
HOMEPAGE="https://github.com/github/hub"
|
||||
SRC_URI="https://github.com/github/hub/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
||||
https://${EGO_PN}/releases/download/v${PV}/${PN}-linux-amd64-${PV}.tgz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=dev-lang/go-1.5.1:="
|
||||
RDEPEND=">=dev-vcs/git-1.7.3"
|
||||
|
||||
QA_FLAGS_IGNORED=".*"
|
||||
RESTRICT="strip"
|
||||
|
||||
src_prepare() {
|
||||
mkdir -p "${HOME}/go/src/${EGO_PN%/*}" || die "mkdir failed"
|
||||
ln -snf "${S}" "${HOME}/go/src/${EGO_PN}" || die "ln failed"
|
||||
default
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
GOCACHE="${T}"/go-cache \
|
||||
GOPATH= \
|
||||
LDFLAGS= \
|
||||
./script/build -o bin/${PN} || die
|
||||
}
|
||||
|
||||
#src_test() {
|
||||
# ./script/test || die
|
||||
#}
|
||||
|
||||
src_install() {
|
||||
dobin bin/${PN}
|
||||
dodoc README.md
|
||||
doman ../${PN}-linux-amd64-${PV}/share/man/man1/*.1
|
||||
|
||||
newbashcomp etc/${PN}.bash_completion.sh ${PN}
|
||||
|
||||
insinto /usr/share/zsh/site-functions
|
||||
newins etc/hub.zsh_completion _${PN}
|
||||
}
|
||||
@@ -1,51 +0,0 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
EGO_PN=github.com/github/hub
|
||||
inherit bash-completion-r1
|
||||
|
||||
DESCRIPTION="Command-line wrapper for git that makes you better at GitHub"
|
||||
HOMEPAGE="https://github.com/github/hub"
|
||||
SRC_URI="https://github.com/github/hub/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
||||
https://${EGO_PN}/releases/download/v${PV}/${PN}-linux-amd64-${PV}.tgz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=dev-lang/go-1.5.1:="
|
||||
RDEPEND=">=dev-vcs/git-1.7.3"
|
||||
|
||||
QA_FLAGS_IGNORED=".*"
|
||||
RESTRICT="strip"
|
||||
|
||||
src_prepare() {
|
||||
mkdir -p "${HOME}/go/src/${EGO_PN%/*}" || die "mkdir failed"
|
||||
ln -snf "${S}" "${HOME}/go/src/${EGO_PN}" || die "ln failed"
|
||||
default
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
GOCACHE="${T}"/go-cache \
|
||||
GOPATH= \
|
||||
LDFLAGS= \
|
||||
./script/build -o ${PN} || die
|
||||
}
|
||||
|
||||
#src_test() {
|
||||
# ./script/test || die
|
||||
#}
|
||||
|
||||
src_install() {
|
||||
dobin ${PN}
|
||||
dodoc README.md
|
||||
doman ../${PN}-linux-amd64-${PV}/share/man/man1/*.1
|
||||
|
||||
newbashcomp etc/${PN}.bash_completion.sh ${PN}
|
||||
|
||||
insinto /usr/share/zsh/site-functions
|
||||
newins etc/hub.zsh_completion _${PN}
|
||||
}
|
||||
@@ -1,41 +0,0 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit bash-completion-r1
|
||||
|
||||
DESCRIPTION="Command-line wrapper for git that makes you better at GitHub"
|
||||
HOMEPAGE="https://github.com/github/hub"
|
||||
SRC_URI="https://github.com/github/hub/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
||||
|
||||
DEPEND=">=dev-lang/go-1.5.1:="
|
||||
RDEPEND=">=dev-vcs/git-1.7.3"
|
||||
|
||||
QA_FLAGS_IGNORED=".*"
|
||||
RESTRICT="strip"
|
||||
|
||||
src_compile() {
|
||||
emake bin/hub man-pages
|
||||
}
|
||||
|
||||
#src_test() {
|
||||
# ./script/test || die
|
||||
#}
|
||||
|
||||
src_install() {
|
||||
dobin bin/${PN}
|
||||
dodoc README.md
|
||||
doman share/man/man1/*.1
|
||||
|
||||
newbashcomp etc/${PN}.bash_completion.sh ${PN}
|
||||
|
||||
insinto /usr/share/vim/vimfiles
|
||||
doins -r share/vim/vimfiles/*
|
||||
insinto /usr/share/zsh/site-functions
|
||||
newins etc/hub.zsh_completion _${PN}
|
||||
}
|
||||
Reference in New Issue
Block a user