From ccf558cc8bbee74d0c5fb8e966c4b46676e119bb Mon Sep 17 00:00:00 2001 From: graysky Date: Thu, 6 Jun 2013 16:43:31 -0400 Subject: [PATCH 1/3] profile-sync-daemon: update to 5.36.2 --- srcpkgs/profile-sync-daemon/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/profile-sync-daemon/template b/srcpkgs/profile-sync-daemon/template index ada4441707d..3234681b81c 100644 --- a/srcpkgs/profile-sync-daemon/template +++ b/srcpkgs/profile-sync-daemon/template @@ -1,13 +1,13 @@ # Template file for 'profile-sync-daemon' pkgname=profile-sync-daemon -version=5.36.1 -revision=2 +version=5.36.2 +revision=1 short_desc="Syncs browser profiles to tmpfs" maintainer="graysky " license="MIT" homepage="https://github.com/graysky2/profile-sync-daemon" distfiles="http://repo-ck.com/source/$pkgname/$pkgname-$version.tar.xz" -checksum=bf2c1e133b9df6749e577e831007d07854664d838ef9f7670b8b4cb17d14d951 +checksum=8a54260d5856bc531a8c8902c816b573300b5147bbf99a8e8388574977cd232c long_desc=" profile-sync-daemon symlinks and sync browser profiles to RAM (tmpfs) thus reducing SSD/HDD calls and speeding-up browsers." From 4075f3a6ad1854d1581bdb24c2d740ad9092826f Mon Sep 17 00:00:00 2001 From: graysky Date: Thu, 6 Jun 2013 18:10:39 -0400 Subject: [PATCH 2/3] added INSTALL/REMOVE scriptlets --- srcpkgs/profile-sync-daemon/INSTALL | 13 +++++++++++++ srcpkgs/profile-sync-daemon/REMOVE | 7 +++++++ 2 files changed, 20 insertions(+) create mode 100644 srcpkgs/profile-sync-daemon/INSTALL create mode 100644 srcpkgs/profile-sync-daemon/REMOVE diff --git a/srcpkgs/profile-sync-daemon/INSTALL b/srcpkgs/profile-sync-daemon/INSTALL new file mode 100644 index 00000000000..abf28539ddf --- /dev/null +++ b/srcpkgs/profile-sync-daemon/INSTALL @@ -0,0 +1,13 @@ +case "$ACTION" in + post) + if [ "$UPDATE" = "no" ]; then + echo '--------------------------------------------------------------------------' + echo ' Define which users will make use of the sync in /etc/psd.conf' + echo ' Read the manpage before use or see the wiki page' + echo ' https://wiki.archlinux.org/index.php/Profile-sync-daemon' + echo + echo ' ALWAYS backup your profile data before using utils like psd!' + echo '--------------------------------------------------------------------------' + fi + ;; +esac diff --git a/srcpkgs/profile-sync-daemon/REMOVE b/srcpkgs/profile-sync-daemon/REMOVE new file mode 100644 index 00000000000..32f9448f8f8 --- /dev/null +++ b/srcpkgs/profile-sync-daemon/REMOVE @@ -0,0 +1,7 @@ +case "$ACTION" in + pre) + echo '--> Automatically stopping psd to rotate profiles back out of tmpfs.' + echo '--> Be sure you disable psd.service and psd-resync.service manually.' + systemctl stop psd.service + ;; +esac From a676ea25a55d53a1e18681e6fdc4e9245f6d9bb6 Mon Sep 17 00:00:00 2001 From: graysky Date: Thu, 6 Jun 2013 18:18:27 -0400 Subject: [PATCH 3/3] consistent bullet points for INSTALL/REMOVE --- srcpkgs/profile-sync-daemon/INSTALL | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/srcpkgs/profile-sync-daemon/INSTALL b/srcpkgs/profile-sync-daemon/INSTALL index abf28539ddf..45b3966bec2 100644 --- a/srcpkgs/profile-sync-daemon/INSTALL +++ b/srcpkgs/profile-sync-daemon/INSTALL @@ -1,13 +1,11 @@ case "$ACTION" in post) if [ "$UPDATE" = "no" ]; then - echo '--------------------------------------------------------------------------' - echo ' Define which users will make use of the sync in /etc/psd.conf' - echo ' Read the manpage before use or see the wiki page' - echo ' https://wiki.archlinux.org/index.php/Profile-sync-daemon' + echo '--> Define which users will make use of the sync in /etc/psd.conf' + echo '--> Read the manpage before use or see the wiki page' + echo '--> https://wiki.archlinux.org/index.php/Profile-sync-daemon' echo - echo ' ALWAYS backup your profile data before using utils like psd!' - echo '--------------------------------------------------------------------------' + echo '--> ALWAYS backup your profile data before using utils like psd!' fi ;; esac