Gentoo Archives: gentoo-commits

From: "Federico Ferri (mescalinum)" <mescalinum@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-pda/synce-sync-engine: synce-sync-engine-0.13.ebuild ChangeLog
Date: Wed, 21 Jan 2009 00:41:28
Message-Id: E1LPR9o-0001Bt-LO@stork.gentoo.org
1 mescalinum 09/01/21 00:41:24
2
3 Modified: ChangeLog
4 Added: synce-sync-engine-0.13.ebuild
5 Log:
6 version bump, bug #254886
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 app-pda/synce-sync-engine/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/synce-sync-engine/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/synce-sync-engine/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/synce-sync-engine/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-pda/synce-sync-engine/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 21 Nov 2008 00:11:37 -0000 1.2
23 +++ ChangeLog 21 Jan 2009 00:41:24 -0000 1.3
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-pda/synce-sync-engine
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-sync-engine/ChangeLog,v 1.2 2008/11/21 00:11:37 mescalinum Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-sync-engine/ChangeLog,v 1.3 2009/01/21 00:41:24 mescalinum Exp $
30 +
31 +*synce-sync-engine-0.13 (21 Jan 2009)
32 +
33 + 21 Jan 2009; Federico Ferri <mescalinum@g.o>
34 + +synce-sync-engine-0.13.ebuild:
35 + version bump, bug #254886
36
37 21 Nov 2008; Federico Ferri <mescalinum@g.o>
38 synce-sync-engine-0.11.1.ebuild, synce-sync-engine-0.12.ebuild:
39
40
41
42 1.1 app-pda/synce-sync-engine/synce-sync-engine-0.13.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/synce-sync-engine/synce-sync-engine-0.13.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/synce-sync-engine/synce-sync-engine-0.13.ebuild?rev=1.1&content-type=text/plain
46
47 Index: synce-sync-engine-0.13.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-pda/synce-sync-engine/synce-sync-engine-0.13.ebuild,v 1.1 2009/01/21 00:41:24 mescalinum Exp $
52
53 inherit eutils distutils
54
55 DESCRIPTION="SynCE - Synchronization engine"
56 HOMEPAGE="http://sourceforge.net/projects/synce/"
57 LICENSE="MIT"
58
59 SLOT="0"
60 KEYWORDS="~x86 ~amd64"
61 IUSE=""
62 RDEPEND="dev-python/pygobject
63 >=dev-python/dbus-python-0.83.0
64 >=app-pda/libopensync-plugin-python-0.22
65 dev-libs/libxml2
66 dev-libs/libxslt
67 dev-python/pyxml
68 ~app-pda/synce-librra-0.12
69 ~app-pda/synce-librtfcomp-1.1"
70 DEPEND="${RDEPEND}
71 dev-python/setuptools"
72
73 SRC_URI="mirror://sourceforge/synce/sync-engine-${PV}.tar.gz"
74 S=${WORKDIR}/sync-engine-${PV}
75
76 src_install() {
77 DOCS="CHANGELOG COPYING"
78
79 insinto /usr/share/${PN}/
80 doins config/syncengine.conf.xml
81
82 insinto /usr/share/dbus-1/services/
83 doins config/org.synce.SyncEngine.service
84
85 distutils_src_install
86
87 # TODO - move this to separate ebuilds.
88 if has_version '>=app-pda/libopensync-0.30'; then
89 insinto /usr/lib/opensync-1.0/python-plugins
90 newins plugins/synce-opensync-plugin-3x.py synce-opensync-plugin.py
91 else
92 insinto /usr/lib/opensync/python-plugins
93 newins plugins/synce-opensync-plugin-2x.py synce-opensync-plugin.py
94 fi
95 }
96
97 pkg_postinst() {
98 elog ""
99 elog "IMPORTANT - If you are upgrading from a version earlier than 19-12-2007"
100 elog "(earlier than 0.11), please delete the contents of your ~/.synce directory"
101 elog "including the partnerships subdirectory, but KEEP config.xml. Then recreate"
102 elog "your partnerships. Please see the CHANGELOG for more info."
103 elog ""
104 elog "config.xml has been renamed to syncengine.conf.xml"
105 elog ""
106
107 elog "A default configuration file has been installed into"
108 elog "/usr/share/${PN}/syncengine.conf.xml The default search path for this file"
109 einfo "is /etc/ then ~/.synce/ You may customise it by copying it to either of"
110 einfo "those locations. Note you will have to manually migrate your old config.xml"
111 }