Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-misc/profile-sync-daemon: profile-sync-daemon-5.04.ebuild ChangeLog
Date: Wed, 28 Nov 2012 17:48:57
Message-Id: 20121128174844.049B720C65@flycatcher.gentoo.org
1 hasufell 12/11/28 17:48:43
2
3 Modified: ChangeLog
4 Added: profile-sync-daemon-5.04.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
9
10 Revision Changes Path
11 1.6 www-misc/profile-sync-daemon/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/profile-sync-daemon/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/profile-sync-daemon/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/profile-sync-daemon/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-misc/profile-sync-daemon/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 29 Oct 2012 18:53:30 -0000 1.5
24 +++ ChangeLog 28 Nov 2012 17:48:43 -0000 1.6
25 @@ -1,6 +1,12 @@
26 # ChangeLog for www-misc/profile-sync-daemon
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-misc/profile-sync-daemon/ChangeLog,v 1.5 2012/10/29 18:53:30 hasufell Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-misc/profile-sync-daemon/ChangeLog,v 1.6 2012/11/28 17:48:43 hasufell Exp $
30 +
31 +*profile-sync-daemon-5.04 (28 Nov 2012)
32 +
33 + 28 Nov 2012; Julian Ospald <hasufell@g.o>
34 + +profile-sync-daemon-5.04.ebuild:
35 + version bump
36
37 *profile-sync-daemon-4.02 (29 Oct 2012)
38
39
40
41
42 1.1 www-misc/profile-sync-daemon/profile-sync-daemon-5.04.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/profile-sync-daemon/profile-sync-daemon-5.04.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/profile-sync-daemon/profile-sync-daemon-5.04.ebuild?rev=1.1&content-type=text/plain
46
47 Index: profile-sync-daemon-5.04.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/www-misc/profile-sync-daemon/profile-sync-daemon-5.04.ebuild,v 1.1 2012/11/28 17:48:43 hasufell Exp $
52
53 EAPI=4
54
55 inherit eutils vcs-snapshot
56
57 DESCRIPTION="Symlinks and syncs browser profile dirs to RAM"
58 HOMEPAGE="https://wiki.archlinux.org/index.php/Profile-sync-daemon"
59 SRC_URI="https://github.com/hasufell/${PN}/tarball/v${PV} -> ${P}.tar.gz"
60
61 LICENSE="GPL-2 GPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="cron"
65
66 RDEPEND="
67 app-shells/bash
68 net-misc/rsync
69 cron? ( virtual/cron )"
70
71 src_install() {
72 emake DESTDIR="${D}" $(usex cron "install" "install-bin install-doc install-man")
73 }
74
75 pkg_postinst() {
76 eerror "IMPORTANT NOTICE!"
77 elog "Usage of the \"mozilla\" variable in the BROWSERS array is"
78 elog "deprecated starting with profile-sync-daemon v4.02."
79 elog "It has been replaced with the \"firefox\" variable."
80 elog
81 elog "In order to safely upgrade, you must run an unsync to"
82 elog "rotate your firefox profile back to disk using verion 3.x"
83 elog
84 elog "As usual, watch for any changes in the newly provided"
85 elog "/etc/conf.d/psd as well and be sure to incorporate them."
86 }