mirror of
https://github.com/haiwen/libsearpc.git
synced 2025-09-18 07:50:56 +00:00
* added files for debian packaging - the directory debian was added - it can be used for proper packaging, building two binary packages: libsearpc and libsearpc-dev (the latter is used for building the other seafile related packages) * renamed library package - debian library packages should include the SONAME * added conflict info - don't allow this package to be installed alongside the official seafile package * fixed dependency * repackaging with cleaned up orig.tar.xz archives * added symbol file - bumping version number * fixing some linitan issues * fixed python dependencies - ${python:Depends} somehow doesn't work for the libsearpc-dev package - lintian demands depending on python2 * emptying the dependency_libs field in .la files * minor changes to the debian/control file * changed license to GPL-2
40 lines
1009 B
Plaintext
40 lines
1009 B
Plaintext
Source: libsearpc1
|
|
Section: net
|
|
Priority: extra
|
|
Maintainer: m.eik michalke <meik.michalke@hhu.de>
|
|
Build-Depends:
|
|
debhelper (>= 7),
|
|
autotools-dev,
|
|
intltool,
|
|
libglib2.0-dev,
|
|
python,
|
|
libtool,
|
|
libjansson-dev
|
|
Standards-Version: 3.9.5
|
|
Homepage: http://seafile.com
|
|
|
|
Package: libsearpc1
|
|
Section: libs
|
|
Architecture: any
|
|
Depends:
|
|
${shlibs:Depends},
|
|
${misc:Depends},
|
|
${python:Depends}
|
|
Conflicts: seafile
|
|
Description: SeaRPC library for Seafile client
|
|
SeaRPC is a simple C language RPC framework based on GObject system.
|
|
SeaRPC handles the serialization/deserialization part of RPC, the transport
|
|
part is left to users.
|
|
|
|
Package: libsearpc-dev
|
|
Section: libdevel
|
|
Architecture: any
|
|
Depends:
|
|
${misc:Depends},
|
|
python2 (>= 2.7) | python (>= 2.7),
|
|
python2 (<< 2.8) | python (<< 2.8),
|
|
libsearpc1 (= ${binary:Version})
|
|
Conflicts: seafile
|
|
Description: Development files for the libsearpc1 package.
|
|
This package contains the development files for the libsearpc1 package.
|