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: ChangeLog profile-sync-daemon-5.28.ebuild
Date: Tue, 26 Feb 2013 00:43:18
Message-Id: 20130226004314.986B62171D@flycatcher.gentoo.org
1 hasufell 13/02/26 00:43:14
2
3 Modified: ChangeLog
4 Added: profile-sync-daemon-5.28.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
9
10 Revision Changes Path
11 1.9 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.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/profile-sync-daemon/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/profile-sync-daemon/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-misc/profile-sync-daemon/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 16 Feb 2013 17:38:58 -0000 1.8
24 +++ ChangeLog 26 Feb 2013 00:43:14 -0000 1.9
25 @@ -1,6 +1,12 @@
26 # ChangeLog for www-misc/profile-sync-daemon
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-misc/profile-sync-daemon/ChangeLog,v 1.8 2013/02/16 17:38:58 hasufell Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-misc/profile-sync-daemon/ChangeLog,v 1.9 2013/02/26 00:43:14 hasufell Exp $
30 +
31 +*profile-sync-daemon-5.28 (26 Feb 2013)
32 +
33 + 26 Feb 2013; Julian Ospald <hasufell@g.o>
34 + +profile-sync-daemon-5.28.ebuild:
35 + version bump
36
37 *profile-sync-daemon-5.21 (16 Feb 2013)
38
39
40
41
42 1.1 www-misc/profile-sync-daemon/profile-sync-daemon-5.28.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/profile-sync-daemon/profile-sync-daemon-5.28.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.28.ebuild?rev=1.1&content-type=text/plain
46
47 Index: profile-sync-daemon-5.28.ebuild
48 ===================================================================
49 # Copyright 1999-2013 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.28.ebuild,v 1.1 2013/02/26 00:43:14 hasufell Exp $
52
53 EAPI=5
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/graysky2/profile-sync-daemon/archive/v${PV}.tar.gz -> ${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_compile() {
72 emake -f Makefile.gentoo
73 }
74
75 src_install() {
76 emake -f Makefile.gentoo DESTDIR="${D}" $(usex cron "install" "install-bin install-doc install-man")
77 }
78
79 pkg_postinst() {
80 eerror "IMPORTANT NOTICE!"
81 elog "Usage of the \"mozilla\" variable in the BROWSERS array is"
82 elog "deprecated starting with profile-sync-daemon v4.02."
83 elog "It has been replaced with the \"firefox\" variable."
84 elog
85 elog "In order to safely upgrade, you must run an unsync to"
86 elog "rotate your firefox profile back to disk using verion 3.x"
87 elog
88 elog "As usual, watch for any changes in the newly provided"
89 elog "/etc/conf.d/psd as well and be sure to incorporate them."
90 }