diff options
author | Martin Dummer <martin.dummer@gmx.net> | 2020-08-02 23:14:26 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-10-05 08:46:48 +0300 |
commit | 6eacc715e06b282225caf3d50e0f5269d8e425e3 (patch) | |
tree | edaf6807da21f2af56b51db6ace94b4882e387c5 /app-backup/rear/files | |
parent | dev-libs/libbase58: conditionalize 'rm' in 0.1.4 (diff) | |
download | gentoo-6eacc715e06b282225caf3d50e0f5269d8e425e3.tar.gz gentoo-6eacc715e06b282225caf3d50e0f5269d8e425e3.tar.bz2 gentoo-6eacc715e06b282225caf3d50e0f5269d8e425e3.zip |
app-backup/rear: version bump to 2.6
re-introduce udev rule for backup start on backup disc connect
add proxy-maintainership
Closes: https://bugs.gentoo.org/696678
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Martin Dummer <martin.dummer@gmx.net>
Closes: https://github.com/gentoo/gentoo/pull/17487
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-backup/rear/files')
-rw-r--r-- | app-backup/rear/files/rear-2.6-Makefile.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app-backup/rear/files/rear-2.6-Makefile.patch b/app-backup/rear/files/rear-2.6-Makefile.patch new file mode 100644 index 000000000000..800dcf69cee3 --- /dev/null +++ b/app-backup/rear/files/rear-2.6-Makefile.patch @@ -0,0 +1,34 @@ +--- rear-2.6/Makefile.orig 2020-09-09 20:04:39.357666685 +0200 ++++ rear-2.6/Makefile 2020-09-09 20:06:12.537313922 +0200 +@@ -84,7 +84,7 @@ + clean: + rm -Rf dist build + rm -f build-stamp +- make -C doc clean ++ $(MAKE) -C doc clean + + ### You can call 'make validate' directly from your .git/hooks/pre-commit script + validate: +@@ -107,11 +107,11 @@ + + man: + @echo -e "\033[1m== Prepare manual ==\033[0;0m" +- make -C doc man ++ $(MAKE) -C doc man + + doc: + @echo -e "\033[1m== Prepare documentation ==\033[0;0m" +- make -C doc docs ++ $(MAKE) -C doc docs + + install-config: + @echo -e "\033[1m== Installing configuration ==\033[0;0m" +@@ -144,7 +144,7 @@ + + install-doc: + @echo -e "\033[1m== Installing documentation ==\033[0;0m" +- make -C doc install ++ $(MAKE) -C doc install + sed -i -e 's,/etc,$(sysconfdir),' \ + -e 's,/usr/sbin,$(sbindir),' \ + -e 's,/usr/share,$(datadir),' \ |