diff options
author | Martin Väth <martin@mvath.de> | 2014-09-20 16:58:41 +0200 |
---|---|---|
committer | Martin Väth <martin@mvath.de> | 2015-10-11 10:49:18 +0200 |
commit | 6e1670643d9e62118f7b166efb643dec962005e9 (patch) | |
tree | 7d1e1c732d420e2fd45a48718df3b3c05cb0d1fd /sys-fs | |
parent | Bump sundtek-tv (diff) | |
download | mv-6e1670643d9e62118f7b166efb643dec962005e9.tar.gz mv-6e1670643d9e62118f7b166efb643dec962005e9.tar.bz2 mv-6e1670643d9e62118f7b166efb643dec962005e9.zip |
Bump emount, mv_perl
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/emount/ChangeLog | 17 | ||||
-rw-r--r-- | sys-fs/emount/Manifest | 2 | ||||
-rw-r--r-- | sys-fs/emount/emount-2.8.1.ebuild (renamed from sys-fs/emount/emount-2.8.ebuild) | 12 |
3 files changed, 20 insertions, 11 deletions
diff --git a/sys-fs/emount/ChangeLog b/sys-fs/emount/ChangeLog index a9d5f3b4..6b30da9d 100644 --- a/sys-fs/emount/ChangeLog +++ b/sys-fs/emount/ChangeLog @@ -2,6 +2,11 @@ # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*emount-2.8.1 (20 Sep 2014) + + 20 Sep 2014; Martin Väth <martin@mvath.de>: + Version bump, remove old ebuild + *emount-2.8 (21 Nov 2013) 13 Sep 2014; Martin Väth <martin@mvath.de>: @@ -11,12 +16,12 @@ New style github tarball 21 Nov 2013; Martin Väth <martin@mvath.de>: - Version bump, remove old ebuild. + Version bump, remove old ebuild *emount-2.7 (02 Nov 2013) 02 Nov 2013; Martin Väth <martin@mvath.de>: - Version bump, remove old ebuild. + Version bump, remove old ebuild *emount-2.6 (18 Aug 2013) @@ -24,12 +29,12 @@ Install zsh-completion unconditionally according to gentoo policy 18 Aug 2013; Martin Väth <martin@mvath.de>: - Version bump, remove old ebuild. + Version bump, remove old ebuild *emount-2.4 (27 Nov 2012) 27 Nov 2012; Martin Väth <martin@mvath.de>: - Version bump, remove old ebuild. + Version bump, remove old ebuild *emount-2.3 (13 Jul 2012) @@ -37,7 +42,7 @@ Bump to EAPI=5 13 Jul 2012; Martin Väth <martin@mvath.de>: - Version bump, remove old ebuild. + Version bump, remove old ebuild *emount-2.2 (03 Jul 2012) @@ -61,4 +66,4 @@ *emount-2.1 (31 Jan 2012) 31 Jan 2012; Martin Väth <martin@mvath.de>: - New ebuild from scratch. + New ebuild from scratch diff --git a/sys-fs/emount/Manifest b/sys-fs/emount/Manifest index beb8c8a5..a9229008 100644 --- a/sys-fs/emount/Manifest +++ b/sys-fs/emount/Manifest @@ -1 +1 @@ -DIST emount-2.8.tar.gz 3579 SHA256 62bd36446b39980f6f1c708e53c5eb0370d94b6f8060d78749b7e01cdf26f87e SHA512 2bceb3054661c7d124e3aa6c1fbf2163b0c7adfe13de6f91d09a767aedab122da2e367a6380ee8939682430cbaf7788d9d7ee7b60a73b7900aa67f2b9f4464ae WHIRLPOOL 927ed12a2c83c63e983ac6e1a2aea556cf7f9af2cae9bac5d4ced47105b61bd548df41d8e94789e352d9e3351ee83260057761460165cd93238e187b15266959 +DIST emount-v2.8.1.tar.gz 3840 SHA256 1c2705f5fd30dce4ac42a3bdf84f661e4153b318054845d31ad4bd0503973f8c SHA512 3b2de4baec8879ebf4763a80f3490b15ef6b2582b6255feb166ff254819daafcd211bf8b700d318c7dabf5bee10f944455054738cf0d7106cd9ccd1db4652b45 WHIRLPOOL f98a0e68f3f93d03a01797425c9a0290a63f697a2ad87878dfd4a7bacf0628713283be7a022afa913f66db1745d9e438a133fc1eacc123db66d886d2f608f1c4 diff --git a/sys-fs/emount/emount-2.8.ebuild b/sys-fs/emount/emount-2.8.1.ebuild index 151d33eb..f435992c 100644 --- a/sys-fs/emount/emount-2.8.ebuild +++ b/sys-fs/emount/emount-2.8.1.ebuild @@ -8,18 +8,22 @@ inherit eutils DESCRIPTION="mount/unmount (and create/remove) dm-crypt filesystems according to your /etc/fstab" HOMEPAGE="https://github.com/vaeth/emount/" -SRC_URI="https://github.com/vaeth/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${PN}-v${PV}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -RDEPEND="dev-lang/perl - sys-fs/cryptsetup - || ( >=dev-lang/perl-5.6.1 >=virtual/perl-Getopt-Long-2.24 )" +RDEPEND=">=dev-lang/perl-5.12 + sys-fs/cryptsetup" +# || ( >=dev-lang/perl-5.6.1 >=virtual/perl-Getopt-Long-2.24 ) +# || ( >=dev-lang/perl-5.4.5 virtual/perl-File-Spec ) src_prepare() { + use prefix || sed -i \ + -e '1s"^#!/usr/bin/env perl$"#!'"${EPREFIX}/usr/bin/perl"'"' \ + -- bin/* || die epatch_user } |