Compare commits
5 Commits
58a2272b76
...
2217b2e3b8
Author | SHA1 | Date |
---|---|---|
Daniel Berteaud | 2217b2e3b8 | 4 years ago |
Daniel Berteaud | d4126341d0 | 4 years ago |
Daniel Berteaud | 5a171cbe70 | 4 years ago |
Daniel Berteaud | 42bca2330e | 4 years ago |
Daniel Berteaud | 5982961fe8 | 4 years ago |
7 changed files with 94 additions and 0 deletions
@ -0,0 +1 @@ |
|||||||
|
*.tar.gz filter=lfs diff=lfs merge=lfs -text |
@ -0,0 +1,3 @@ |
|||||||
|
the .tito/packages directory contains metadata files |
||||||
|
named after their packages. Each file has the latest tagged |
||||||
|
version and the project's relative directory. |
@ -0,0 +1 @@ |
|||||||
|
2.0.6-2 ./ |
@ -0,0 +1 @@ |
|||||||
|
../../tito_libs/releasers.conf |
@ -0,0 +1,6 @@ |
|||||||
|
[buildconfig] |
||||||
|
builder = fws.builder.GitLfsBuilder |
||||||
|
tagger = tito.tagger.ReleaseTagger |
||||||
|
changelog_do_not_remove_cherrypick = 0 |
||||||
|
changelog_format = %s (%ae) |
||||||
|
lib_dir = ../tito_libs |
@ -0,0 +1,79 @@ |
|||||||
|
%global _hardened_build 1 |
||||||
|
|
||||||
|
%global gh_name seadrive-fuse |
||||||
|
Name: seadrive-daemon |
||||||
|
Version: 2.0.6 |
||||||
|
Release: 2%{?dist} |
||||||
|
Summary: Daemon part of Seafile Drive client |
||||||
|
|
||||||
|
License: GPLv3 |
||||||
|
URL: https://seafile.com |
||||||
|
Source0: https://github.com/haiwen/%{gh_name}/archive/v%{version}/%{gh_name}-%{version}.tar.gz |
||||||
|
|
||||||
|
BuildRequires: autoconf |
||||||
|
BuildRequires: automake |
||||||
|
BuildRequires: gcc |
||||||
|
BuildRequires: intltool |
||||||
|
BuildRequires: libtool |
||||||
|
BuildRequires: make |
||||||
|
|
||||||
|
BuildRequires: pkgconfig(fuse) |
||||||
|
BuildRequires: pkgconfig(glib-2.0) |
||||||
|
BuildRequires: pkgconfig(gobject-2.0) |
||||||
|
BuildRequires: pkgconfig(jansson) |
||||||
|
BuildRequires: pkgconfig(libcurl) |
||||||
|
BuildRequires: pkgconfig(libevent) |
||||||
|
BuildRequires: pkgconfig(libsearpc) |
||||||
|
BuildRequires: pkgconfig(openssl) |
||||||
|
BuildRequires: pkgconfig(sqlite3) |
||||||
|
BuildRequires: pkgconfig(uuid) |
||||||
|
BuildRequires: pkgconfig(zlib) |
||||||
|
|
||||||
|
%description |
||||||
|
Seafile is a next-generation open source cloud storage system, with advanced |
||||||
|
support for file syncing, privacy protection and teamwork. |
||||||
|
|
||||||
|
Seafile allows users to create groups with file syncing, wiki, and discussion |
||||||
|
to enable easy collaboration around documents within a team. |
||||||
|
|
||||||
|
This package contains the daemon part of Seafile Drive client. The Drive |
||||||
|
client enables you to access files on the server without syncing to local |
||||||
|
disk. |
||||||
|
|
||||||
|
|
||||||
|
%package -n python3-seadrive |
||||||
|
Summary: Python API for Seafile Drive client daemon |
||||||
|
|
||||||
|
BuildRequires: python3-devel |
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||||
|
|
||||||
|
%description -n python3-seadrive |
||||||
|
%{summary}. |
||||||
|
|
||||||
|
|
||||||
|
%prep |
||||||
|
%autosetup -n %{gh_name}-%{version} |
||||||
|
|
||||||
|
|
||||||
|
%build |
||||||
|
./autogen.sh |
||||||
|
%configure --disable-static PYTHON=%{__python3} |
||||||
|
%make_build |
||||||
|
|
||||||
|
|
||||||
|
%install |
||||||
|
%make_install |
||||||
|
|
||||||
|
%files |
||||||
|
%license LICENSE |
||||||
|
%{_bindir}/seadrive |
||||||
|
|
||||||
|
%files -n python3-seadrive |
||||||
|
%{python3_sitearch}/seadrive/ |
||||||
|
|
||||||
|
%changelog |
||||||
|
* Sun Nov 15 2020 Daniel Berteaud <daniel@firewall-services.com> 2.0.6-2 |
||||||
|
- new package built with tito |
||||||
|
|
||||||
|
* Sun Nov 01 2020 Aleksei Bavshin <alebastr89@gmail.com> - 2.0.6-1 |
||||||
|
- Initial import (#1895548) |
Binary file not shown.
Loading…
Reference in new issue