commit: 10e643c31b2df2c5d9a53068c1f9eba8ec315103
Author: Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Thu Jul 18 17:25:00 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Thu Jul 18 17:25:00 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=10e643c3
app-backup/timeshift-autosnap: ExcessiveLineLength fix
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>
.../timeshift-autosnap/timeshift-autosnap-0.9-r1.ebuild | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9-r1.ebuild
b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9-r1.ebuild
index 36a6cbead..5f0c5c0f4 100644
--- a/app-backup/timeshift-autosnap/timeshift-autosnap-0.9-r1.ebuild
+++ b/app-backup/timeshift-autosnap/timeshift-autosnap-0.9-r1.ebuild
@@ -17,11 +17,17 @@ RDEPEND="app-backup/timeshift"
PATCHES=( "${FILESDIR}/${PN}-remove-arch-specific.patch" )
+bashrc=/etc/portage/bashrc
DISABLE_AUTOFORMATTING=1
-DOC_CONTENTS='to run timeshift-autosnap everytime you emerge a package run:
-$ touch /etc/portage/bashrc
-$ grep -q "#!/bin/" /etc/portage/bashrc || awk -i inplace "BEGINFILE{print
"#!/bin/sh"}{print}" /etc/portage/bashrc
-$ grep -q timeshift-autosnap /etc/portage/bashrc || echo "function
pre_pkg_setup() { /usr/bin/timeshift-autosnap ; }" >> /etc/portage/bashrc'
+DOC_CONTENTS="to run timeshift-autosnap everytime you emerge a package run:
+# touch ${bashrc}
+
+# grep -q '#!/bin/' ${bashrc} || awk -i inplace 'BEGINFILE{print
'#!/bin/sh'}{print}' ${bashrc}
+
+# grep -q timeshift-autosnap ${bashrc} || echo '
+function pre_pkg_setup() {
+ /usr/bin/timeshift-autosnap ;
+}' >> ${bashrc}"
src_install(){
dobin timeshift-autosnap