Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ocsync/
Date: Mon, 01 Jan 2018 17:36:46
Message-Id: 1514828067.ef9e4219ab49bf9b8ff610743c21305c0eb0b306.voyageur@gentoo
1 commit: ef9e4219ab49bf9b8ff610743c21305c0eb0b306
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 1 17:34:27 2018 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 1 17:34:27 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef9e4219
7
8 net-misc/ocsync: remove after last rites
9
10 Closes: https://bugs.gentoo.org/501228
11 Package-Manager: Portage-2.3.19, Repoman-2.3.6
12
13 net-misc/ocsync/Manifest | 1 -
14 net-misc/ocsync/metadata.xml | 11 -------
15 net-misc/ocsync/ocsync-0.90.4.ebuild | 60 ------------------------------------
16 3 files changed, 72 deletions(-)
17
18 diff --git a/net-misc/ocsync/Manifest b/net-misc/ocsync/Manifest
19 deleted file mode 100644
20 index 93835bed69f..00000000000
21 --- a/net-misc/ocsync/Manifest
22 +++ /dev/null
23 @@ -1 +0,0 @@
24 -DIST ocsync-0.90.4.tar.bz2 4630698 BLAKE2B 11900f09a9de683f5251cec00984dc0f02a24f066bb696ea11278442eeea9d2555ba9307887e0f3374079deb438262cb464ec78eb9d3e46780be3444672f33ec SHA512 74bf6b083ae4d4c09e3915d777d916a04ebb19aefb21a5a14a49e2079e02c5c60f1f274aa0cab5c227147883eaf1a5f91b6c0546b818c960cc3575cdcdd93d57
25
26 diff --git a/net-misc/ocsync/metadata.xml b/net-misc/ocsync/metadata.xml
27 deleted file mode 100644
28 index 4ce4054df69..00000000000
29 --- a/net-misc/ocsync/metadata.xml
30 +++ /dev/null
31 @@ -1,11 +0,0 @@
32 -<?xml version="1.0" encoding="UTF-8"?>
33 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 -<pkgmetadata>
35 - <maintainer type="person">
36 - <email>voyageur@g.o</email>
37 - <name>Bernard Cafarelli</name>
38 - </maintainer>
39 - <use>
40 - <flag name="sftp">Enable sftp transfer support via <pkg>net-libs/libssh</pkg></flag>
41 - </use>
42 -</pkgmetadata>
43
44 diff --git a/net-misc/ocsync/ocsync-0.90.4.ebuild b/net-misc/ocsync/ocsync-0.90.4.ebuild
45 deleted file mode 100644
46 index 37369a8f2f4..00000000000
47 --- a/net-misc/ocsync/ocsync-0.90.4.ebuild
48 +++ /dev/null
49 @@ -1,60 +0,0 @@
50 -# Copyright 1999-2016 Gentoo Foundation
51 -# Distributed under the terms of the GNU General Public License v2
52 -
53 -EAPI=5
54 -
55 -inherit cmake-utils
56 -
57 -DESCRIPTION="A file synchronizer especially designed for you, the normal user"
58 -HOMEPAGE="http://csync.org/"
59 -SRC_URI="http://download.owncloud.com/download/${P}.tar.bz2"
60 -
61 -LICENSE="GPL-2"
62 -SLOT="0"
63 -KEYWORDS="~amd64 ~x86"
64 -IUSE="doc iconv samba +sftp test"
65 -
66 -RESTRICT="test"
67 -
68 -RDEPEND="
69 - dev-db/sqlite:3
70 - >=dev-libs/iniparser-3.1:0
71 - net-libs/neon[ssl]
72 - iconv? ( virtual/libiconv )
73 - samba? ( net-fs/samba )
74 - sftp? ( net-libs/libssh )
75 - !net-misc/csync
76 - !>=net-misc/owncloud-client-1.5.1
77 -"
78 -DEPEND="${DEPEND}
79 - app-text/asciidoc
80 - doc? ( app-doc/doxygen )
81 - test? ( dev-libs/check dev-util/cmocka )
82 -"
83 -
84 -src_prepare() {
85 - cmake-utils_src_prepare
86 -
87 - sed -e "s/__FUNCTION__/__func__/" -i \
88 - src/csync_log.h src/httpbf/src/httpbf.c \
89 - tests/csync_tests/check_csync_log.c || die
90 - # proper docdir
91 - sed -e "s:/doc/ocsync:/doc/${PF}:" \
92 - -i doc/CMakeLists.txt || die
93 -}
94 -
95 -src_configure() {
96 - local mycmakeargs=(
97 - $(cmake-utils_use test UNIT_TESTING)
98 - $(cmake-utils_use_find_package doc Doxygen)
99 - $(cmake-utils_use_find_package samba Libsmbclient)
100 - $(cmake-utils_use_find_package sftp LibSSH)
101 - )
102 - cmake-utils_src_configure
103 -}
104 -
105 -src_install() {
106 - cmake-utils_src_install
107 - mv "${D}/usr/etc/ocsync" "${D}/etc/"
108 - rm -r "${D}/usr/etc/"
109 -}