Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/csync: csync-0.70.3.ebuild ChangeLog csync-0.60.3.ebuild csync-0.60.4.ebuild csync-0.70.1.ebuild csync-0.60.1.ebuild
Date: Thu, 31 Jan 2013 15:25:22
Message-Id: 20130131152518.E23642171D@flycatcher.gentoo.org
1 scarabeus 13/01/31 15:25:18
2
3 Modified: ChangeLog
4 Added: csync-0.70.3.ebuild
5 Removed: csync-0.60.3.ebuild csync-0.60.4.ebuild
6 csync-0.70.1.ebuild csync-0.60.1.ebuild
7 Log:
8 Version bump to 0.70.3 to support mirall-1.2.0. Punt older.
9
10 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 8EEE3BE8)
11
12 Revision Changes Path
13 1.12 net-misc/csync/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/csync/ChangeLog?rev=1.12&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/csync/ChangeLog?rev=1.12&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/csync/ChangeLog?r1=1.11&r2=1.12
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/net-misc/csync/ChangeLog,v
22 retrieving revision 1.11
23 retrieving revision 1.12
24 diff -u -r1.11 -r1.12
25 --- ChangeLog 22 Jan 2013 20:51:58 -0000 1.11
26 +++ ChangeLog 31 Jan 2013 15:25:18 -0000 1.12
27 @@ -1,6 +1,13 @@
28 # ChangeLog for net-misc/csync
29 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/net-misc/csync/ChangeLog,v 1.11 2013/01/22 20:51:58 creffett Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/net-misc/csync/ChangeLog,v 1.12 2013/01/31 15:25:18 scarabeus Exp $
32 +
33 +*csync-0.70.3 (31 Jan 2013)
34 +
35 + 31 Jan 2013; Tomáš Chvátal <scarabeus@g.o> +csync-0.70.3.ebuild,
36 + -csync-0.60.1.ebuild, -csync-0.60.3.ebuild, -csync-0.60.4.ebuild,
37 + -csync-0.70.1.ebuild:
38 + Version bump to 0.70.3 to support mirall-1.2.0. Punt older.
39
40 *csync-0.70.1 (22 Jan 2013)
41
42
43
44
45 1.1 net-misc/csync/csync-0.70.3.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/csync/csync-0.70.3.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/csync/csync-0.70.3.ebuild?rev=1.1&content-type=text/plain
49
50 Index: csync-0.70.3.ebuild
51 ===================================================================
52 # Copyright 1999-2013 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/net-misc/csync/csync-0.70.3.ebuild,v 1.1 2013/01/31 15:25:18 scarabeus Exp $
55
56 EAPI=5
57
58 inherit base cmake-utils
59
60 DESCRIPTION="A file synchronizer especially designed for you, the normal user"
61 HOMEPAGE="http://csync.org/"
62 SRC_URI="http://download.owncloud.com/download/o${P}.tar.bz2"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="doc iconv log samba +sftp test +webdav"
68
69 RDEPEND="
70 dev-db/sqlite:3
71 >=dev-libs/iniparser-3.1
72 dev-libs/openssl:0
73 iconv? ( virtual/libiconv )
74 log? ( dev-libs/log4c )
75 samba? ( net-fs/samba )
76 sftp? ( net-libs/libssh )
77 webdav? ( net-libs/neon )
78 "
79 DEPEND="${DEPEND}
80 app-text/asciidoc
81 doc? ( app-doc/doxygen )
82 test? ( dev-libs/check dev-util/cmocka )
83 "
84
85 PATCHES=(
86 "${FILESDIR}/${PN}-0.70.1-automagicness.patch"
87 "${FILESDIR}/${PN}-0.60.2-removebadtest.patch"
88 )
89
90 S="${WORKDIR}/o${P}"
91
92 src_prepare() {
93 base_src_prepare
94
95 if ! use doc; then
96 sed -i \
97 -e 's:add_subdirectory(doc)::' \
98 CMakeLists.txt || die
99 fi
100
101 # proper docdir
102 sed -i \
103 -e "s:/doc/ocsync:/doc/${PF}:" \
104 doc/CMakeLists.txt || die
105 }
106
107 src_configure() {
108 local mycmakeargs=(
109 "-DLOG_TO_CALLBACK=ON"
110 $(cmake-utils_use test UNIT_TESTING)
111 $(cmake-utils_use_with doc APIDOC)
112 $(cmake-utils_use_with log Log4C)
113 $(cmake-utils_use_with samba Libsmbclient)
114 $(cmake-utils_use_with sftp LibSSH)
115 $(cmake-utils_use_with webdav Neon)
116 )
117 cmake-utils_src_configure
118 }