diff options
author | Austin English <wizardedit@gentoo.org> | 2016-05-11 17:18:26 -0500 |
---|---|---|
committer | Austin English <wizardedit@gentoo.org> | 2016-05-11 17:18:26 -0500 |
commit | b337c7bb61dca681a203c66c93d8352942dbd66c (patch) | |
tree | 2b64d474b4938596e146671f43e2150103a0b13e /app-admin | |
parent | profiles/package.mask: mask dev-haskell/hpc in favour of ghc's bundled version (diff) | |
download | gentoo-b337c7bb61dca681a203c66c93d8352942dbd66c.tar.gz gentoo-b337c7bb61dca681a203c66c93d8352942dbd66c.tar.bz2 gentoo-b337c7bb61dca681a203c66c93d8352942dbd66c.zip |
app-admin/github-backup-utils: version bump to 2.6.0
Package-Manager: portage-2.2.26
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/github-backup-utils/Manifest | 1 | ||||
-rw-r--r-- | app-admin/github-backup-utils/github-backup-utils-2.6.0.ebuild | 48 |
2 files changed, 49 insertions, 0 deletions
diff --git a/app-admin/github-backup-utils/Manifest b/app-admin/github-backup-utils/Manifest index 9e9cf29b5cbf..b457cab08ef8 100644 --- a/app-admin/github-backup-utils/Manifest +++ b/app-admin/github-backup-utils/Manifest @@ -1 +1,2 @@ DIST github-backup-utils-2.5.0.tar.gz 40850 SHA256 9cc7cd40f41e6071c36527ec7983b877e461452cd08d04439efd5fa9352900a0 SHA512 ecd5b85e0e2e300a9f40ecb8f545868554c7b48bdf800a21cf111ead80c185c96d475c67487c9b9e8af676f8c71a001730084abde79e05860b3e24004888292d WHIRLPOOL 15be1d603c9b61a4cff47e319ee1a66b64684dfd19f06c696bffb41b77dc756a895e25074d5a6dd19aeebaa3106fe12842cb22a639ed4abd3a6c2922e8cdbc1f +DIST github-backup-utils-2.6.0.tar.gz 45970 SHA256 7273cebcb23bc597432a2b66ab7e9367a4fb09a750cf2438f8957dc83dcf27c3 SHA512 a795e439f9d28e27b457c5b6eb42f35d6aea1527c2a01a26b81d6e86829db14a0b27a366d9358214bbe1c16540fe524fb0010d5f509c78ba5398c6bdbf04182e WHIRLPOOL fd1aeec46946190657e61e611a089b4a7cef53beb7b3f9a500b7117fcdbd89c5ef09681aff98ed5d559cc243f76180eb6eec0cc6f2fcfeed0789c159f5a09afe diff --git a/app-admin/github-backup-utils/github-backup-utils-2.6.0.ebuild b/app-admin/github-backup-utils/github-backup-utils-2.6.0.ebuild new file mode 100644 index 000000000000..61582d743030 --- /dev/null +++ b/app-admin/github-backup-utils/github-backup-utils-2.6.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# See https://github.com/github/backup-utils/issues/135 +PYTHON_COMPAT=(python2_7) +inherit python-any-r1 + +DESCRIPTION="Backup and recovery utilities for GitHub Enterprise" +HOMEPAGE="https://github.com/github/backup-utils" +SRC_URI="http://github.com/github/backup-utils/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +DEPEND="test? ( + dev-util/checkbashisms + ${PYTHON_DEPS} +)" + +RDEPEND="net-misc/rsync" + +MY_PN="${PN/#github-/}" +S="${WORKDIR}/${MY_PN}-${PV}" + +src_compile() { + :; +} + +src_install() { + dobin bin/* + insinto usr/share/${PN} + doins share/${PN}/version + + exeinto usr/share/${PN} + doexe share/${PN}/ghe-* + + insinto etc/${PN} + newins backup.config-example backup.config +} + +src_test() { + emake test +} |