forked from pool/cmis-client
Accepting request 212458 from devel:libraries:c_c++
As we have half of lo 4.2 libs already in factory just accept this too. I will finish it up hopefully soon after new year. Easier than figuring which all stuff is needed to be reverted for 4.1 to still build. - Whitespace cleanup here&there. - Set RPM groups of shlib packages to what we normally use - Make a note in the description about what "CMIS" is - Require boost-1.42 (first one to have the mandatory uuid.hpp) - Update to version 0.4.1 + 0.4.0 + Support for Google Drive protocol as a binding + Support for Alfresco in the cloud + Added OAuth2 authentication support + Added API to configure HTTP proxy + Handle invalid SSL certificate problems + Added API for renditions + Moved the CMIS Atom binding unit tests to use libcurl mockup + Added repository capabilities support (still missing capabilityCreatablePropertyTypes and capabilityNewTypeSettableAttributes) + 0.4.1 + Don't install the libcmis-mockup library: only for testing purpose OBS-URL: https://build.opensuse.org/request/show/212458 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/cmis-client?expand=0&rev=10
This commit is contained in:
commit
28234b0df7
@ -1,3 +1,33 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 30 10:58:01 UTC 2013 - tchvatal@suse.com
|
||||||
|
|
||||||
|
- Whitespace cleanup here&there.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 12 04:58:21 UTC 2013 - jengelh@inai.de
|
||||||
|
|
||||||
|
- Set RPM groups of shlib packages to what we normally use
|
||||||
|
- Make a note in the description about what "CMIS" is
|
||||||
|
- Require boost-1.42 (first one to have the mandatory uuid.hpp)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 7 15:25:18 UTC 2013 - cbosdonnat@suse.com
|
||||||
|
|
||||||
|
- Update to version 0.4.1
|
||||||
|
+ 0.4.0
|
||||||
|
+ Support for Google Drive protocol as a binding
|
||||||
|
+ Support for Alfresco in the cloud
|
||||||
|
+ Added OAuth2 authentication support
|
||||||
|
+ Added API to configure HTTP proxy
|
||||||
|
+ Handle invalid SSL certificate problems
|
||||||
|
+ Added API for renditions
|
||||||
|
+ Moved the CMIS Atom binding unit tests to use libcurl mockup
|
||||||
|
+ Added repository capabilities support (still missing
|
||||||
|
capabilityCreatablePropertyTypes and capabilityNewTypeSettableAttributes)
|
||||||
|
+ 0.4.1
|
||||||
|
+ Don't install the libcmis-mockup library: only for testing purpose
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 10 23:09:00 UTC 2013 - crrodriguez@opensuse.org
|
Mon Jun 10 23:09:00 UTC 2013 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
|
@ -16,19 +16,18 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define soname 0_3-3
|
%define soname 0_4-4
|
||||||
%define incname 0.3
|
%define incname 0.4
|
||||||
%define _name libcmis
|
%define _name libcmis
|
||||||
|
|
||||||
Name: cmis-client
|
Name: cmis-client
|
||||||
Version: 0.3.1
|
Version: 0.4.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Sample CMIS client
|
Summary: Sample CMIS client
|
||||||
License: MPL-1.1 or GPL-2.0+ or LGPL-2.1+
|
License: MPL-1.1 or GPL-2.0+ or LGPL-2.1+
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Url: http://sourceforge.net/projects/libcmis/
|
Url: http://sourceforge.net/projects/libcmis/
|
||||||
Source0: %{_name}-%{version}.tar.gz
|
Source0: %{_name}-%{version}.tar.gz
|
||||||
BuildRequires: boost-devel
|
BuildRequires: boost-devel >= 1.42
|
||||||
BuildRequires: docbook2X
|
BuildRequires: docbook2X
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: intltool
|
BuildRequires: intltool
|
||||||
@ -37,18 +36,20 @@ BuildRequires: libcurl-devel
|
|||||||
BuildRequires: libxml2-devel
|
BuildRequires: libxml2-devel
|
||||||
BuildRequires: libxslt
|
BuildRequires: libxslt
|
||||||
BuildRequires: pkg-config
|
BuildRequires: pkg-config
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
Requires: %{_name}-%{soname} = %{version}
|
Requires: %{_name}-%{soname} = %{version}
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Sample client to access CMIS-enabled repositories using libcmis.
|
Sample client to access CMIS-enabled repositories using libcmis.
|
||||||
|
|
||||||
%package -n %{_name}-%{soname}
|
%package -n %{_name}-%{soname}
|
||||||
Summary: Library for accessing CMIS-enabled servers
|
Summary: Library for accessing CMIS-enabled servers
|
||||||
Group: Development/Libraries/C and C++
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n %{_name}-%{soname}
|
%description -n %{_name}-%{soname}
|
||||||
LibCMIS is a C++ client library for the CMIS interface. This allows C++ applications to connect to any CMIS-enabled repositories.
|
LibCMIS is a C++ client library for the CMIS (Content Management
|
||||||
|
Interoperability Services) interface. This allows C++ applications to
|
||||||
|
connect to any CMIS-enabled repositories.
|
||||||
|
|
||||||
%package -n %{_name}-devel
|
%package -n %{_name}-devel
|
||||||
Summary: Libcmis development files
|
Summary: Libcmis development files
|
||||||
@ -61,7 +62,7 @@ This allows C++ applications to connect to any CMIS-enabled repositories.
|
|||||||
|
|
||||||
%package -n %{_name}-c-%{soname}
|
%package -n %{_name}-c-%{soname}
|
||||||
Summary: C Wrapper for libcmis, a library for accessing CMIS-enabled servers
|
Summary: C Wrapper for libcmis, a library for accessing CMIS-enabled servers
|
||||||
Group: Development/Libraries/C and C++
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n %{_name}-c-%{soname}
|
%description -n %{_name}-c-%{soname}
|
||||||
libcmis-c is a C client library for the CMIS interface. This allows C applications to connect to any CMIS-enabled repositories.
|
libcmis-c is a C client library for the CMIS interface. This allows C applications to connect to any CMIS-enabled repositories.
|
||||||
@ -80,8 +81,8 @@ This allows C applications to connect to any CMIS-enabled repositories. It is on
|
|||||||
%setup -q -n %{_name}-%{version}
|
%setup -q -n %{_name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="%optflags -D_GNU_SOURCE $(getconf LFS_CFLAGS)"
|
export CFLAGS="%{optflags} -D_GNU_SOURCE $(getconf LFS_CFLAGS)"
|
||||||
export CXXFLAGS="%optflags $(getconf LFS_CFLAGS)"
|
export CXXFLAGS="%{optflags} $(getconf LFS_CFLAGS)"
|
||||||
%configure \
|
%configure \
|
||||||
--disable-long-tests \
|
--disable-long-tests \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
@ -89,11 +90,11 @@ export CXXFLAGS="%optflags $(getconf LFS_CFLAGS)"
|
|||||||
make %{?_smp_mflags} V=1
|
make %{?_smp_mflags} V=1
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make DESTDIR=$RPM_BUILD_ROOT install
|
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
||||||
find %{buildroot}%{_libdir} -type f -name "*.la" -delete -print
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make check
|
make check %{?_smp_mflags}
|
||||||
|
|
||||||
%post -n %{_name}-%{soname} -p /sbin/ldconfig
|
%post -n %{_name}-%{soname} -p /sbin/ldconfig
|
||||||
|
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f12e0fe8f5c3aef6faadd736bcf1a2c81ad91640dd98ceabf600f17a8fe5ef1a
|
|
||||||
size 524392
|
|
3
libcmis-0.4.1.tar.gz
Normal file
3
libcmis-0.4.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7d52dcf2b5832d3663b18fbf40f0bdefb1e1a40cfb3cf01903301b0bf629395f
|
||||||
|
size 637615
|
Loading…
x
Reference in New Issue
Block a user