summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEspen Henriksen <dev@henriksen.is>2016-09-19 17:04:16 +0200
committerPatrice Clement <monsieurp@gentoo.org>2016-09-27 22:20:56 +0200
commitd45fe5da6b77e1b78ecdae5aa901e7489ecb2da3 (patch)
treea12286fcbb0c0907c13c87330a5b34d763a83db7 /app-admin/yadm
parentsys-apps/apply-default-acl: new version 0.0.5. (diff)
downloadgentoo-d45fe5da6b77e1b78ecdae5aa901e7489ecb2da3.tar.gz
gentoo-d45fe5da6b77e1b78ecdae5aa901e7489ecb2da3.tar.bz2
gentoo-d45fe5da6b77e1b78ecdae5aa901e7489ecb2da3.zip
app-admin/yadm: version bump to 1.05.
Gentoo-Bug: https://bugs.gentoo.org/593332 Package-Manager: portage-2.2.28 Closes: https://github.com/gentoo/gentoo/pull/2364 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-admin/yadm')
-rw-r--r--app-admin/yadm/Manifest1
-rw-r--r--app-admin/yadm/yadm-1.05.ebuild37
2 files changed, 38 insertions, 0 deletions
diff --git a/app-admin/yadm/Manifest b/app-admin/yadm/Manifest
index 227ed5581169..375081c41e66 100644
--- a/app-admin/yadm/Manifest
+++ b/app-admin/yadm/Manifest
@@ -1 +1,2 @@
DIST yadm-1.04.tar.gz 27391 SHA256 a73aa51245866ce67aeb4322a62995ebbb13f29dc35508f486819dceb534968a SHA512 f3f909118f29382c6cbae565de336c27fd7d159955a231ac22b0d25e25e50c4c3e1bdc68b1629920904ad9353ee8ce8f7e5c5e50d289984447815a685a4132c9 WHIRLPOOL c74c2bfc89abb6955bb4e0d60b1cb0777c9f9ec43bc1919c130cd8470e44c090fba9003e473f4344ed92df23e399ea45ece6dafde80d575a8af491bb4c16b554
+DIST yadm-1.05.tar.gz 26554 SHA256 2989b458f62cd08a65ee4f43e7ecf18f539b52d4bbb20c52b0ecff619f5e76cd SHA512 74f215957038b38e056b9d5dccb03af11066627215c16171f2fb61c0f7bcc8c042784554f549224a2ba1847a9a8dea399237c3910bc978802e8a798b51f5074f WHIRLPOOL 02e9992589b3ed0a6d4ba13ade1e54377361cb085bb7be93a750fb6f742c439febd5e18af49cfe25e6f55272cd52f013aba3ff7c929581f71b8512ed3daf7876
diff --git a/app-admin/yadm/yadm-1.05.ebuild b/app-admin/yadm/yadm-1.05.ebuild
new file mode 100644
index 000000000000..ffdaba7f26f8
--- /dev/null
+++ b/app-admin/yadm/yadm-1.05.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="A dotfile manager for the config files in your home folder"
+HOMEPAGE="https://github.com/TheLocehiliosan/yadm/"
+SRC_URI="https://github.com/TheLocehiliosan/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+DOCS=( CHANGES CONTRIBUTORS README.md )
+
+DEPEND="
+ test? (
+ dev-util/bats
+ dev-vcs/git
+ )"
+RDEPEND="dev-vcs/git
+ app-crypt/gnupg"
+
+src_test() {
+ # 109_accept_encryption tests are interactive, thus fail. Skip them
+ bats $(find test/ -type f -name '*.bats' -and -not -name '109_accept_encryption.bats') \
+ || die "Tests failed"
+}
+
+src_install() {
+ einstalldocs
+
+ dobin "${PN}"
+ doman "${PN}.1"
+}