diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9f10918 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/libcmis-0.5.1.tar.gz diff --git a/.libcmis.metadata b/.libcmis.metadata new file mode 100644 index 0000000..0efb261 --- /dev/null +++ b/.libcmis.metadata @@ -0,0 +1 @@ +94c00715ae8a31bc8e5a6a699e36c22d0020649e SOURCES/libcmis-0.5.1.tar.gz diff --git a/SOURCES/0001-Add-new-Google-Drive-OAuth-2.0-login-procedure.patch b/SOURCES/0001-Add-new-Google-Drive-OAuth-2.0-login-procedure.patch new file mode 100644 index 0000000..810280b --- /dev/null +++ b/SOURCES/0001-Add-new-Google-Drive-OAuth-2.0-login-procedure.patch @@ -0,0 +1,122 @@ +From 32aecffb5517dfc3b3674a8f7db418456bd877ed Mon Sep 17 00:00:00 2001 +From: Giuseppe Castagno +Date: Sat, 30 Apr 2016 14:29:56 +0200 +Subject: [PATCH 1/5] Add new Google Drive OAuth 2.0 login procedure. + +The new Google login sequence uses two html pages: first page for user email +the second page for password. + +The older sequence used only one page for both user email and user password. +--- + src/libcmis/oauth2-providers.cxx | 67 +++++++++++++++++++++++++++++++--------- + 1 file changed, 52 insertions(+), 15 deletions(-) + +diff --git a/src/libcmis/oauth2-providers.cxx b/src/libcmis/oauth2-providers.cxx +index 5e7f3bf..68a6aa5 100644 +--- a/src/libcmis/oauth2-providers.cxx ++++ b/src/libcmis/oauth2-providers.cxx +@@ -37,11 +37,28 @@ using namespace std; + string OAuth2Providers::OAuth2Gdrive( HttpSession* session, const string& authUrl, + const string& username, const string& password ) + { ++ /* This member function implements 'Google OAuth 2.0' ++ * ++ * The interaction is carried out by libcmis, with no web browser involved. ++ * ++ * Normal sequence (without 2FA) is: ++ * 1) a get to activate login page ++ * receive first login page, html format ++ * 2) subsequent post to sent email ++ * receive html page for password input ++ * 3) subsequent post to send password ++ * receive html page for application consent ++ * 4) subsequent post to send a consent for the application ++ * receive a single-use authorization code ++ * this code is returned as a string ++ */ ++ + static const string CONTENT_TYPE( "application/x-www-form-urlencoded" ); + // STEP 1: Log in + string res; + try + { ++ // send the first get, receive the html login page + res = session->httpGetRequest( authUrl )->getStream( )->str( ); + } + catch ( const CurlException& e ) +@@ -49,20 +66,39 @@ string OAuth2Providers::OAuth2Gdrive( HttpSession* session, const string& authUr + return string( ); + } + +- string loginPost, loginLink; +- if ( !parseResponse( res.c_str( ), loginPost, loginLink ) ) ++ string loginEmailPost, loginEmailLink; ++ if ( !parseResponse( res.c_str( ), loginEmailPost, loginEmailLink ) ) + return string( ); +- +- loginPost += "Email="; +- loginPost += string( username ); +- loginPost += "&Passwd="; +- loginPost += string( password ); +- +- istringstream loginIs( loginPost ); +- string loginRes; +- try ++ ++ loginEmailPost += "Email="; ++ loginEmailPost += string( username ); ++ ++ istringstream loginEmailIs( loginEmailPost ); ++ string loginEmailRes; ++ try ++ { ++ // send a post with user email, receive the html page for password input ++ loginEmailRes = session->httpPostRequest ( loginEmailLink, loginEmailIs, CONTENT_TYPE ) ++ ->getStream( )->str( ); ++ } ++ catch ( const CurlException& e ) ++ { ++ return string( ); ++ } ++ ++ string loginPasswdPost, loginPasswdLink; ++ if ( !parseResponse( loginEmailRes.c_str( ), loginPasswdPost, loginPasswdLink ) ) ++ return string( ); ++ ++ loginPasswdPost += "Passwd="; ++ loginPasswdPost += string( password ); ++ ++ istringstream loginPasswdIs( loginPasswdPost ); ++ string loginPasswdRes; ++ try + { +- loginRes = session->httpPostRequest ( loginLink, loginIs, CONTENT_TYPE ) ++ // send a post with user password, receive the application consent page ++ loginPasswdRes = session->httpPostRequest ( loginPasswdLink, loginPasswdIs, CONTENT_TYPE ) + ->getStream( )->str( ); + } + catch ( const CurlException& e ) +@@ -71,8 +107,8 @@ string OAuth2Providers::OAuth2Gdrive( HttpSession* session, const string& authUr + } + + // STEP 2: allow libcmis to access google drive +- string approvalPost, approvalLink; +- if ( !parseResponse( loginRes. c_str( ), approvalPost, approvalLink) ) ++ string approvalPost, approvalLink; ++ if ( !parseResponse( loginPasswdRes. c_str( ), approvalPost, approvalLink) ) + return string( ); + approvalPost += "submit_access=true"; + +@@ -80,7 +116,8 @@ string OAuth2Providers::OAuth2Gdrive( HttpSession* session, const string& authUr + string approvalRes; + try + { +- approvalRes = session->httpPostRequest ( approvalLink, approvalIs, ++ // send a post with application consent ++ approvalRes = session->httpPostRequest ( approvalLink, approvalIs, + CONTENT_TYPE) ->getStream( )->str( ); + } + catch ( const CurlException& e ) +-- +2.7.4 + diff --git a/SOURCES/0002-Add-new-mokup-login-pages.patch b/SOURCES/0002-Add-new-mokup-login-pages.patch new file mode 100644 index 0000000..32aab37 --- /dev/null +++ b/SOURCES/0002-Add-new-mokup-login-pages.patch @@ -0,0 +1,70 @@ +From 0490c023cd14cbb3d1ba2bc1b648b216f848a648 Mon Sep 17 00:00:00 2001 +From: Giuseppe Castagno +Date: Tue, 3 May 2016 08:35:57 +0200 +Subject: [PATCH 2/5] Add new mokup login pages + +--- + qa/libcmis/data/gdrive/login.html | 12 ------------ + qa/libcmis/data/gdrive/login1.html | 12 ++++++++++++ + qa/libcmis/data/gdrive/login2.html | 11 +++++++++++ + 3 files changed, 23 insertions(+), 12 deletions(-) + delete mode 100644 qa/libcmis/data/gdrive/login.html + create mode 100644 qa/libcmis/data/gdrive/login1.html + create mode 100644 qa/libcmis/data/gdrive/login2.html + +diff --git a/qa/libcmis/data/gdrive/login.html b/qa/libcmis/data/gdrive/login.html +deleted file mode 100644 +index eae53bf..0000000 +--- a/qa/libcmis/data/gdrive/login.html ++++ /dev/null +@@ -1,12 +0,0 @@ +- +- +- +-
+- +- +- +- +- +-
+- +- +diff --git a/qa/libcmis/data/gdrive/login1.html b/qa/libcmis/data/gdrive/login1.html +new file mode 100644 +index 0000000..eae53bf +--- /dev/null ++++ b/qa/libcmis/data/gdrive/login1.html +@@ -0,0 +1,12 @@ ++ ++ ++ ++
++ ++ ++ ++ ++ ++
++ ++ +diff --git a/qa/libcmis/data/gdrive/login2.html b/qa/libcmis/data/gdrive/login2.html +new file mode 100644 +index 0000000..198f816 +--- /dev/null ++++ b/qa/libcmis/data/gdrive/login2.html +@@ -0,0 +1,11 @@ ++ ++ ++ ++
++ ++ ++ ++ ++
++ ++ +-- +2.7.4 + diff --git a/SOURCES/0003-Fix-test-in-test-factory.patch b/SOURCES/0003-Fix-test-in-test-factory.patch new file mode 100644 index 0000000..509a968 --- /dev/null +++ b/SOURCES/0003-Fix-test-in-test-factory.patch @@ -0,0 +1,113 @@ +From 04297298ad9659c949beb7ccd0f75cfd440a4fb8 Mon Sep 17 00:00:00 2001 +From: Giuseppe Castagno +Date: Tue, 3 May 2016 11:47:43 +0200 +Subject: [PATCH 3/5] Fix test in test-factory + +--- + qa/libcmis/data/gdrive/login1.html | 4 ++-- + qa/libcmis/data/gdrive/login2.html | 2 +- + qa/libcmis/test-factory.cxx | 10 ++++++++-- + qa/mockup/mockup-config.cxx | 3 +++ + qa/mockup/mockup-config.h | 6 +++--- + 5 files changed, 17 insertions(+), 8 deletions(-) + +diff --git a/qa/libcmis/data/gdrive/login1.html b/qa/libcmis/data/gdrive/login1.html +index eae53bf..b6da338 100644 +--- a/qa/libcmis/data/gdrive/login1.html ++++ b/qa/libcmis/data/gdrive/login1.html +@@ -1,12 +1,12 @@ + + + +-
++ ++ + + + + +- +
+ + +diff --git a/qa/libcmis/data/gdrive/login2.html b/qa/libcmis/data/gdrive/login2.html +index 198f816..6425091 100644 +--- a/qa/libcmis/data/gdrive/login2.html ++++ b/qa/libcmis/data/gdrive/login2.html +@@ -1,7 +1,7 @@ + + + +-
++ + + + +diff --git a/qa/libcmis/test-factory.cxx b/qa/libcmis/test-factory.cxx +index c0bcb4c..3779e5a 100644 +--- a/qa/libcmis/test-factory.cxx ++++ b/qa/libcmis/test-factory.cxx +@@ -64,6 +64,7 @@ + + #define GDRIVE_AUTH_URL string ( "https://auth/url" ) + #define GDRIVE_LOGIN_URL string ("https://login/url" ) ++#define GDRIVE_LOGIN_URL2 string ("https://login2/url" ) + #define GDRIVE_APPROVAL_URL string ("https://approval/url" ) + #define GDRIVE_TOKEN_URL string ( "https://token/url" ) + +@@ -101,10 +102,15 @@ namespace + string("&redirect_uri=") + OAUTH_REDIRECT_URI + + string("&response_type=code") + + string("&client_id=") + OAUTH_CLIENT_ID; ++ + curl_mockup_addResponse ( GDRIVE_AUTH_URL.c_str(), loginIdentifier.c_str( ), +- "GET", DATA_DIR "/gdrive/login.html", 200, true); ++ "GET", DATA_DIR "/gdrive/login1.html", 200, true); ++ ++ //authentication email ++ curl_mockup_addResponse( GDRIVE_LOGIN_URL2.c_str( ), "", "POST", ++ DATA_DIR "/gdrive/login2.html", 200, true); + +- //authentication response ++ //authentication password, + curl_mockup_addResponse( GDRIVE_LOGIN_URL.c_str( ), "", "POST", + DATA_DIR "/gdrive/approve.html", 200, true); + +diff --git a/qa/mockup/mockup-config.cxx b/qa/mockup/mockup-config.cxx +index f6b84ad..fb19927 100644 +--- a/qa/mockup/mockup-config.cxx ++++ b/qa/mockup/mockup-config.cxx +@@ -117,6 +117,9 @@ namespace mockup + return !m_username.empty( ) && !m_password.empty( ); + } + ++ /** Find a suitable response ++ * using the request as a search key ++ */ + CURLcode Configuration::writeResponse( CurlHandle* handle ) + { + CURLcode code = CURLE_OK; +diff --git a/qa/mockup/mockup-config.h b/qa/mockup/mockup-config.h +index 6b94706..d0fc3bb 100644 +--- a/qa/mockup/mockup-config.h ++++ b/qa/mockup/mockup-config.h +@@ -41,13 +41,13 @@ void curl_mockup_reset( ); + the base URL of the request without parameters + \param matchParam + a string to find in the parameters part of the URL to match ++ \param method ++ HTTP method to match like PUT, GET, POST or DELETE. An empty ++ string matches any method. + \param response + a string corresponding either to the file path of the request + body to send or directly the content to send. This value has + a different meaning depending on isFilePath parameter. +- \param method +- HTTP method to match like PUT, GET, POST or DELETE. An empty +- string matches any method. + \param status + the HTTP status to return. 0 means HTTP OK (200). + \param isFilePath +-- +2.7.4 + diff --git a/SOURCES/0004-Fix-test-in-test-gdrive.patch b/SOURCES/0004-Fix-test-in-test-gdrive.patch new file mode 100644 index 0000000..899148a --- /dev/null +++ b/SOURCES/0004-Fix-test-in-test-gdrive.patch @@ -0,0 +1,74 @@ +From 73662089059eb2e272a4c5eb245a497af044ccf6 Mon Sep 17 00:00:00 2001 +From: Giuseppe Castagno +Date: Tue, 3 May 2016 15:35:57 +0200 +Subject: [PATCH 4/5] Fix test in test-gdrive + +--- + qa/libcmis/test-gdrive.cxx | 32 ++++++++++++++++++++++++-------- + 1 file changed, 24 insertions(+), 8 deletions(-) + +diff --git a/qa/libcmis/test-gdrive.cxx b/qa/libcmis/test-gdrive.cxx +index 0cd9577..6323099 100644 +--- a/qa/libcmis/test-gdrive.cxx ++++ b/qa/libcmis/test-gdrive.cxx +@@ -51,6 +51,7 @@ static const string CLIENT_SECRET ( "mock-secret" ); + static const string USERNAME( "mock-user" ); + static const string PASSWORD( "mock-password" ); + static const string LOGIN_URL ("https://login/url" ); ++static const string LOGIN_URL2 ("https://login2/url" ); + static const string APPROVAL_URL ("https://approval/url" ); + static const string AUTH_URL ( "https://auth/url" ); + static const string TOKEN_URL ( "https://token/url" ); +@@ -149,10 +150,15 @@ GDriveSession GDriveTest::getTestSession( string username, string password ) + string("&redirect_uri=") + REDIRECT_URI + + string("&response_type=code") + + string("&client_id=") + CLIENT_ID; ++ + curl_mockup_addResponse ( AUTH_URL.c_str(), loginIdentifier.c_str( ), +- "GET", DATA_DIR "/gdrive/login.html", 200, true); ++ "GET", DATA_DIR "/gdrive/login1.html", 200, true); ++ ++ //authentication email ++ curl_mockup_addResponse( LOGIN_URL2.c_str( ), empty.c_str( ), "POST", ++ DATA_DIR "/gdrive/login2.html", 200, true); + +- //authentication response ++ //authentication password, + curl_mockup_addResponse( LOGIN_URL.c_str( ), empty.c_str( ), "POST", + DATA_DIR "/gdrive/approve.html", 200, true); + +@@ -171,15 +177,25 @@ void GDriveTest::sessionAuthenticationTest( ) + GDriveSession session = getTestSession( USERNAME, PASSWORD ); + string empty; + +- // Check authentication request +- string authRequest( curl_mockup_getRequestBody( LOGIN_URL.c_str(), empty.c_str( ), ++ // Check authentication request for email ++ string authRequestEmail( curl_mockup_getRequestBody( LOGIN_URL2.c_str(), empty.c_str( ), ++ "POST" ) ); ++ string expectedAuthRequestEmail = ++ string ( "Page=PasswordSeparationSignIn&continue=redirectLink&scope=Scope&service=lso&GALX=cookie" ++ "&Email=") + USERNAME; ++ ++ CPPUNIT_ASSERT_EQUAL_MESSAGE( "Wrong authentication request for Email", ++ expectedAuthRequestEmail, authRequestEmail ); ++ ++ // Check authentication request for password ++ string authRequestPassword( curl_mockup_getRequestBody( LOGIN_URL.c_str(), empty.c_str( ), + "POST" ) ); +- string expectedAuthRequest = ++ string expectedAuthRequestPassword = + string ( "continue=redirectLink&scope=Scope&service=lso&GALX=cookie" +- "&Email=") + USERNAME + string("&Passwd=") + PASSWORD; ++ "&Passwd=") + PASSWORD; + +- CPPUNIT_ASSERT_EQUAL_MESSAGE( "Wrong authentication request", +- expectedAuthRequest, authRequest ); ++ CPPUNIT_ASSERT_EQUAL_MESSAGE( "Wrong authentication request for Password", ++ expectedAuthRequestPassword, authRequestPassword ); + + // Check code request + string codeRequest( curl_mockup_getRequestBody( APPROVAL_URL.c_str(), +-- +2.7.4 + diff --git a/SOURCES/0005-Fix-test-in-test-onedrive.patch b/SOURCES/0005-Fix-test-in-test-onedrive.patch new file mode 100644 index 0000000..c2dc0f0 --- /dev/null +++ b/SOURCES/0005-Fix-test-in-test-onedrive.patch @@ -0,0 +1,42 @@ +From 3ebc3d9fe6a9806de2bcdf79ac6398f0c14c3246 Mon Sep 17 00:00:00 2001 +From: Giuseppe Castagno +Date: Tue, 3 May 2016 15:41:52 +0200 +Subject: [PATCH 5/5] Fix test in test-onedrive + +--- + qa/libcmis/test-onedrive.cxx | 10 ++++++++-- + 1 file changed, 8 insertions(+), 2 deletions(-) + +diff --git a/qa/libcmis/test-onedrive.cxx b/qa/libcmis/test-onedrive.cxx +index b88751b..5da8918 100644 +--- a/qa/libcmis/test-onedrive.cxx ++++ b/qa/libcmis/test-onedrive.cxx +@@ -51,6 +51,7 @@ static const string CLIENT_SECRET ( "mock-secret" ); + static const string USERNAME( "mock-user" ); + static const string PASSWORD( "mock-password" ); + static const string LOGIN_URL ("https://login/url" ); ++static const string LOGIN_URL2 ("https://login2/url" ); + static const string APPROVAL_URL ("https://approval/url" ); + static const string AUTH_URL ( "https://auth/url" ); + static const string TOKEN_URL ( "https://token/url" ); +@@ -123,10 +124,15 @@ OneDriveSession OneDriveTest::getTestSession( string username, string password ) + string("&redirect_uri=") + REDIRECT_URI + + string("&response_type=code") + + string("&client_id=") + CLIENT_ID; ++ + curl_mockup_addResponse ( AUTH_URL.c_str(), loginIdentifier.c_str( ), +- "GET", DATA_DIR "/gdrive/login.html", 200, true); ++ "GET", DATA_DIR "/gdrive/login1.html", 200, true); ++ ++ //authentication email ++ curl_mockup_addResponse( LOGIN_URL2.c_str( ), empty.c_str( ), "POST", ++ DATA_DIR "/gdrive/login2.html", 200, true); + +- //authentication response ++ //authentication password + curl_mockup_addResponse( LOGIN_URL.c_str( ), empty.c_str( ), "POST", + DATA_DIR "/gdrive/approve.html", 200, true); + +-- +2.7.4 + diff --git a/SPECS/libcmis.spec b/SPECS/libcmis.spec new file mode 100644 index 0000000..78aab5d --- /dev/null +++ b/SPECS/libcmis.spec @@ -0,0 +1,182 @@ +%global apiversion 0.5 + +Name: libcmis +Version: 0.5.1 +Release: 2%{?dist} +Summary: A C++ client library for CM interfaces + +License: GPLv2+ or LGPLv2+ or MPLv1.1 +URL: https://github.com/tdf/libcmis +Source: https://github.com/tdf/libcmis/releases/download/v%{version}/%{name}-%{version}.tar.gz + +BuildRequires: boost-devel +BuildRequires: pkgconfig(cppunit) +BuildRequires: pkgconfig(libcurl) +BuildRequires: pkgconfig(libxml-2.0) +BuildRequires: xmlto + +Patch0: 0001-Add-new-Google-Drive-OAuth-2.0-login-procedure.patch +Patch1: 0002-Add-new-mokup-login-pages.patch +Patch2: 0003-Fix-test-in-test-factory.patch +Patch3: 0004-Fix-test-in-test-gdrive.patch +Patch4: 0005-Fix-test-in-test-onedrive.patch + +%description +LibCMIS is a C++ client library for working with CM (content management) +interfaces. The primary supported interface (which gave the library its +name) is CMIS, which allows applications to connect to any ECM behaving +as a CMIS server (Alfresco or Nuxeo are examples of open source ones). +Another supported interface is Google Drive. + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%package tools +Summary: Command line tool to access CMIS +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description tools +The %{name}-tools package contains a tool for accessing CMIS from the +command line. + +%prep +%autosetup -p1 + +%build +%configure --disable-silent-rules --disable-static --disable-werror \ + DOCBOOK2MAN='xmlto man' +sed -i \ + -e 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' \ + -e 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' \ + libtool +make %{?_smp_mflags} + +%install +make install DESTDIR=%{buildroot} +rm -f %{buildroot}/%{_libdir}/*.la + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%check +export LD_LIBRARY_PATH=%{buildroot}/%{_libdir}${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}} +make %{?_smp_mflags} check + +%files +%doc AUTHORS NEWS +%license COPYING.* +%{_libdir}/%{name}-%{apiversion}.so.* +%{_libdir}/%{name}-c-%{apiversion}.so.* + +%files devel +%doc ChangeLog +%{_includedir}/%{name}-%{apiversion} +%{_includedir}/%{name}-c-%{apiversion} +%{_libdir}/%{name}-%{apiversion}.so +%{_libdir}/%{name}-c-%{apiversion}.so +%{_libdir}/pkgconfig/%{name}-%{apiversion}.pc +%{_libdir}/pkgconfig/%{name}-c-%{apiversion}.pc + +%files tools +%{_bindir}/cmis-client +%{_mandir}/man1/cmis-client.1* + +%changelog +* Mon May 16 2016 David Tardon - 0.5.1-2 +- Resolves: rhbz#1330591 fix Google Drive login +- Related: rhbz#1330591 fix changelog entry + +* Fri Mar 04 2016 David Tardon - 0.5.1-1 +- Related: rhbz#1290152 new upstream release + +* Tue Mar 01 2016 David Tardon - 0.5.0-2 +- Related: rhbz#1290152 autoreconf is not needed +- Related: rhbz#1290152 add a bunch of fixes found by coverity + +* Mon Feb 22 2016 David Tardon - 0.5.0-1 +- Resolves: rhbz#1290152 rebase to 0.5.0 + +* Fri Sep 05 2014 David Tardon - 0.4.1-5 +- Related: rhbz#1132065 coverity: fix mismatching exceptions + +* Thu Sep 04 2014 David Tardon - 0.4.1-4 +- a few use-after-free fixes for the C wrapper + +* Fri Aug 22 2014 David Tardon - 0.4.1-3 +- Resolves: rhbz#1132065 rebase to 0.4.1 + +* Fri Jan 24 2014 Daniel Mach - 0.3.1-10 +- Mass rebuild 2014-01-24 + +* Fri Dec 27 2013 Daniel Mach - 0.3.1-9 +- Mass rebuild 2013-12-27 + +* Fri Aug 30 2013 David Tardon - 0.3.1-8 +- Resolves: rhbz#1000819 pkgconfig file for libcmis-c is broken + +* Sat Aug 03 2013 Fedora Release Engineering - 0.3.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Sat Jul 27 2013 pmachata@redhat.com - 0.3.1-6 +- Rebuild for boost 1.54.0 + +* Wed Apr 24 2013 David Tardon - 0.3.1-5 +- Resolves: rhbz#918079 libcmis::sha1() can return digests with fewer + than 40 hexadecimal digits +- Resolves: rhbz#918080 restrict redirection protocols + +* Mon Apr 08 2013 David Tardon - 0.3.1-4 +- Resolves: rhbz#918044 memory leaks on exception path in C wrapper + +* Sun Feb 10 2013 Denis Arnaud - 0.3.1-3 +- Rebuild for Boost-1.53.0 + +* Sat Feb 09 2013 Denis Arnaud - 0.3.1-2 +- Rebuild for Boost-1.53.0 + +* Mon Feb 04 2013 David Tardon - 0.3.1-1 +- new release + +* Wed Dec 19 2012 David Tardon - 0.3.0-6 +- use xmlto for generating man page + +* Sat Dec 08 2012 David Tardon - 0.3.0-5 +- another pointless bump + +* Fri Dec 07 2012 David Tardon - 0.3.0-4 +- another pointless rebuild + +* Fri Dec 07 2012 David Tardon - 0.3.0-3 +- pointless rebuild + +* Fri Dec 07 2012 David Tardon - 0.3.0-2 +- force rebuild + +* Thu Dec 06 2012 David Tardon - 0.3.0-1 +- new upstream release + +* Tue Nov 06 2012 Caolán McNamara - 0.2.3-4 +- clarify license + +* Fri Jul 27 2012 David Tardon - 0.2.3-3 +- rebuilt for boost 1.50 + +* Thu Jul 19 2012 Fedora Release Engineering - 0.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Thu Jun 28 2012 David Tardon - 0.2.3-1 +- new upstream version + +* Wed Jun 20 2012 David Tardon - 0.2.2-1 +- latest upstream version + +* Tue Feb 28 2012 Fedora Release Engineering - 0.1.0-2 +- Rebuilt for c++ ABI breakage + +* Wed Dec 21 2011 David Tardon 0.1.0-1 +- initial import