Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/seafile/
Date: Thu, 13 Apr 2017 21:20:48
Message-Id: 1492118436.19f55131adfd99dedbcd0d6cbd021c8e34849695.monsieurp@gentoo
1 commit: 19f55131adfd99dedbcd0d6cbd021c8e34849695
2 Author: Moritz Schlarb <schlarbm <AT> uni-mainz <DOT> de>
3 AuthorDate: Mon Mar 13 14:01:51 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 13 21:20:36 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19f55131
7
8 net-misc/seafile: new ebuild.
9
10 File syncing and sharing software with file encryption and group sharing.
11
12 Gentoo-Bug: https://bugs.gentoo.org/499698
13 Closes: https://github.com/gentoo/gentoo/pull/4198
14
15 net-misc/seafile/Manifest | 1 +
16 net-misc/seafile/metadata.xml | 11 +++++++++++
17 net-misc/seafile/seafile-6.0.4.ebuild | 36 +++++++++++++++++++++++++++++++++++
18 3 files changed, 48 insertions(+)
19
20 diff --git a/net-misc/seafile/Manifest b/net-misc/seafile/Manifest
21 new file mode 100644
22 index 00000000000..d73cd6b18f4
23 --- /dev/null
24 +++ b/net-misc/seafile/Manifest
25 @@ -0,0 +1 @@
26 +DIST seafile-6.0.4.tar.gz 454474 SHA256 b3919bff1e0f974483df129e500868332e752dec6380556839e006bf9d5b425e SHA512 ca6b056238cf11c97c587cf353df2c0a820ecf8ea0faa23da008c6ea1ba731b41fe01d0142aa9406aa975e8386f68afe1cd76616c02a755d7a06a46596b30558 WHIRLPOOL 4ae21ef95484da8110ba6ef834465918dd7592d8931bf1f78e1a7934fe03352b0e799e75074aaa7563b724fe51ebd7b30df1fa8b40f92c2c9bbe793e9669eea0
27
28 diff --git a/net-misc/seafile/metadata.xml b/net-misc/seafile/metadata.xml
29 new file mode 100644
30 index 00000000000..5b95006282e
31 --- /dev/null
32 +++ b/net-misc/seafile/metadata.xml
33 @@ -0,0 +1,11 @@
34 +<?xml version="1.0" encoding="UTF-8"?>
35 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
36 +<pkgmetadata>
37 + <maintainer type="person">
38 + <email>moschlar@××××××××.de</email>
39 + </maintainer>
40 + <maintainer type="project">
41 + <email>proxy-maint@g.o</email>
42 + <name>Proxy Maintainers</name>
43 + </maintainer>
44 +</pkgmetadata>
45
46 diff --git a/net-misc/seafile/seafile-6.0.4.ebuild b/net-misc/seafile/seafile-6.0.4.ebuild
47 new file mode 100644
48 index 00000000000..a59144f17dd
49 --- /dev/null
50 +++ b/net-misc/seafile/seafile-6.0.4.ebuild
51 @@ -0,0 +1,36 @@
52 +# Copyright 1999-2017 Gentoo Foundation
53 +# Distributed under the terms of the GNU General Public License v2
54 +
55 +EAPI=6
56 +PYTHON_COMPAT=( python2_7 )
57 +inherit autotools python-single-r1 vala
58 +
59 +DESCRIPTION="File syncing and sharing software with file encryption and group sharing"
60 +HOMEPAGE="https://github.com/haiwen/seafile/ http://www.seafile.com/"
61 +SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
62 +
63 +LICENSE="GPL-2"
64 +SLOT="0"
65 +KEYWORDS="~amd64 ~x86"
66 +IUSE=""
67 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
68 +
69 +RDEPEND="${PYTHON_DEPS}
70 + net-libs/libsearpc[${PYTHON_USEDEP}]
71 + =net-libs/ccnet-${PV}[${PYTHON_USEDEP}]
72 + >=dev-libs/glib-2.16.0:2
73 + >=dev-libs/libevent-2.0
74 + >=dev-libs/jansson-2.2.1
75 + >=sys-libs/zlib-1.2.0
76 + >=net-misc/curl-7.17
77 + dev-libs/openssl:0=
78 + dev-db/sqlite:3"
79 +DEPEND="${RDEPEND}
80 + $(vala_depend)"
81 +
82 +src_prepare() {
83 + default
84 + sed -i -e 's/valac /${VALAC} /' lib/Makefile.am || die
85 + eautoreconf
86 + vala_src_prepare
87 +}