123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- %global debug_package %{nil}
- %global upstream_name libgoogle-data-mono
- Name: gdata-sharp
- Version: 1.4.0.2
- Release: 2%{?_dist_release}
- Summary: .NET library for the Google Data API
- Group: System Environment/Libraries
- License: ASL 2.0
- URL: http://code.google.com/p/google-gdata/
- Source0: http://google-gdata.googlecode.com/files/%{upstream_name}-%{version}.tar.gz
- # fixed in SVN:
- # http://code.google.com/p/google-gdata/source/detail?spec=svn933&r=890
- Patch0: %{upstream_name}-1.4.0.2-pkgconfig.patch
- BuildRequires: mono-devel mono-nunit
- #Requires:
- # Mono only available on these:
- ExclusiveArch: %ix86 x86_64 ppc ppc64 ia64 %{arm} sparcv9 alpha s390x
- Vendor: Project Vine
- Distribution: Vine Linux
- %description
- The Google Data APIs (GData) provide a simple protocol for reading and
- writing data on the web.
- Each of the following Google services provides a Google data API:
- * Base
- * Blogger
- * Calendar
- * Spreadsheets
- * Google Apps Provisioning
- * Code Search
- * Notebook
- * Picasa Web Albums
- * Document Feed
- * Contacts
- * You Tube
- * Google Health
- The GData .NET Client Library provides a library and source code that
- make it easy to access data through Google Data APIs.
- %package devel
- Summary: Development files for %{name}
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: pkgconfig
- %description devel
- The %{name}-devel package contains libraries and header files for
- developing applications that use %{name}.
- %prep
- %setup -q -n %{upstream_name}-%{version}
- %patch0 -p1 -b .pkgconfig
- %build
- make %{?_smp_mflags} PREFIX=%{_prefix}
- %check
- # currently 98 tests out of 921 fail
- # make test
- %install
- make install DESTDIR=$RPM_BUILD_ROOT PREFIX=%{_prefix}
- mkdir -p $RPM_BUILD_ROOT/%{_libdir}/pkgconfig
- test "%{_libdir}" = "%{_prefix}/lib" || mv $RPM_BUILD_ROOT/%{_prefix}/lib/pkgconfig/* $RPM_BUILD_ROOT/%{_libdir}/pkgconfig
- %files
- %defattr(-,root,root,-)
- %doc LICENSE-2.0.txt RELEASE_NOTES.HTML
- %{_prefix}/lib/mono/GData-Sharp
- %{_prefix}/lib/mono/gac/Google.GData.*
- %files devel
- %defattr(-,root,root,-)
- %{_libdir}/pkgconfig/gdata-sharp-*.pc
- %changelog
- * Sun Dec 29 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.0.2-2
- - rebuild with VineSeed environment
- * Sun Jun 03 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.0.2-1
- - initial build for Vine Linux
- * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0.2-7
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
- * Sat Oct 29 2011 Christian Krause <chkr@fedoraproject.org> - 1.4.0.2-6
- - Change paths for mono assemblies according to updated packaging
- guidelines (http://fedoraproject.org/wiki/Packaging:Mono)
- * Fri Feb 25 2011 Dan Horák <dan[at]danny.cz> - 1.4.0.2-5
- - updated the supported arch list
- * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0.2-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Wed Sep 23 2009 Michel Salim <salimma@fedoraproject.org> - 1.4.0.2-3
- - Replace %%define with %%global
- * Thu Sep 3 2009 Michel Salim <salimma@fedoraproject.org> - 1.4.0.2-2
- - Build against latest mono-nunit
- * Fri Aug 21 2009 Michel Salim <salimma@fedoraproject.org> - 1.4.0.2-1
- - Initial Fedora package
|