Next | Query returned 48 messages, browsing 31 to 40 | Previous

History of commit frequency

CVS Commit History:


   2017-01-01 17:06:40 by Adam Ciarcinski | Files touched by this commit (616) | Package updated
Log message:
Revbump after boost update
   2016-10-07 20:26:14 by Adam Ciarcinski | Files touched by this commit (611) | Package updated
Log message:
Revbump post boost update
   2016-03-05 12:29:49 by Jonathan Perkin | Files touched by this commit (1813)
Log message:
Bump PKGREVISION for security/openssl ABI bump.
   2015-11-04 01:35:47 by Alistair G. Crooks | Files touched by this commit (748)
Log message:
Add SHA512 digests for distfiles for net category

Problems found with existing digests:
	Package haproxy distfile haproxy-1.5.14.tar.gz
	159f5beb8fdc6b8059ae51b53dc935d91c0fb51f [recorded]
	da39a3ee5e6b4b0d3255bfef95601890afd80709 [calculated]

Problems found locating distfiles:
	Package bsddip: missing distfile bsddip-1.02.tar.Z
	Package citrix_ica: missing distfile citrix_ica-10.6.115659/en.linuxx86.tar.gz
	Package djbdns: missing distfile djbdns-1.05-test25.diff.bz2
	Package djbdns: missing distfile djbdns-cachestats.patch
	Package djbdns: missing distfile 0002-dnscache-cache-soa-records.patch
	Package gated: missing distfile gated-3-5-11.tar.gz
	Package owncloudclient: missing distfile owncloudclient-2.0.2.tar.xz
	Package poink: missing distfile poink-1.6.tar.gz
	Package ra-rtsp-proxy: missing distfile rtspd-src-1.0.0.0.tar.gz
	Package ucspi-ssl: missing distfile ucspi-ssl-0.70-ucspitls-0.1.patch
	Package waste: missing distfile waste-source.tar.gz

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
   2015-03-07 08:26:02 by Makoto Fujiwara | Files touched by this commit (2)
Log message:
Update to 1.26
--------------
2014-08-17 Flickcurl Version 1.26 Released

   Switch all API endpoints and image URLs to https protocol after
   announcement on 2014-04-30 that everything is going https only.

   Fixed utility documentation: args consistency for PER-PAGE / PAGE.

   Added new extras: url_q, url_n and url_c for new image sizes.

   Configuration and build improvements for newer automake and autoconf.
   Add new internal convienience libraries libmtwist and libgetopt.

   Added build-time utility mangen to generate manpage and extras.

   Generate and accept the new staticflickr.com domain for image URIs as
   well as the existing static.flickr.com.

   Multiple error path allocation fixes, several memory leak fixes and a
   few overflows found via Coverity.
   2014-02-13 00:18:57 by Matthias Scheler | Files touched by this commit (1568)
Log message:
Recursive PKGREVISION bump for OpenSSL API version bump.
   2014-01-01 12:52:43 by Thomas Klausner | Files touched by this commit (776)
Log message:
Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump.
   2013-09-09 22:43:29 by Thomas Klausner | Files touched by this commit (2)
Log message:
Update to 1.25:

2013-09-01 Flickcurl Version 1.25 Released

   More OAuth fixes including getting uploading fully working.

   Multiple internal OAuth changes to simplify code.

   Updated the coverage for API calls added in the last year
   approximately.

   Added new API call to get the most frequently used tags for a user.
   This does not seem to work over OAuth:
  flickcurl_tag** flickcurl_tags_getMostFrequentlyUsed(flickcurl* fc);

   Added new API call to get the groups of a user:
  flickcurl_group** flickcurl_people_getGroups(flickcurl* fc,
    const char* user_id, const char* extras);

   Added new API call to get contacts tagging suggestions but reordered
   the parameters to match the rest of the contacts.get* API calls.
  flickcurl_contact** flickcurl_contacts_getTaggingSuggestions(flickcurl* fc,
    const char* include_self, const char* include_address_book,
    int page, int per_page);

   Added new API calls flickcurl_groups_join(),
   flickcurl_groups_joinRequest() and flickcurl_groups_leave() for (some
   of) the new group API:
  int flickcurl_groups_join(flickcurl* fc, const char* group_id,
    const char* accept_rules);

  int flickcurl_groups_joinRequest(flickcurl* fc, const char* group_id,
     const char* message, const char* accept_rules);

  int flickcurl_groups_leave(flickcurl* fc, const char* group_id,
     const char* delete_photos);

   Updated the example code flickrdf.c to use the non-deprecated
   flickcurl_photos_getInfo2()

   Updated deprecated flickcurl-config(1) program to be independent of
   pkg-config. This allows make distcheck to work.
   2013-04-21 16:30:39 by Thomas Klausner | Files touched by this commit (2)
Log message:
Update to 1.24:

2013-04-10 Flickcurl Version 1.24 Released

   Fixed uploading with OAuth - incorrect signature since it failed to use
   POST.

   Added flickcurl_photos_getInfo2() deprecating
   flickcurl_photos_getInfo() adding the optional 'secret' parameter that
   was added sometime to the API. See [2]Debian bug 637746.

   Updated flickcurl(1) to allow photos.getInfo to take an optional SECRET
   arg using the new call below, and to add the missing command
   contacts.getPublicList which fixes [3]Issue 19. .

   Added new APIs calls to make available the Flickr username and NSID
   when OAuth authentication is done.
  const char* flickcurl_get_oauth_username(flickcurl* fc);
  const char* flickcurl_get_oauth_user_nsid(flickcurl* fc);

   These new calls were from GitHub [4]pull request 18 from Jose Carlos
   Garcia Sogo - thanks.

   Added a pile of fields to flickcurl_group to match what the API returns
   rather than what the documentation says:
     * iconfarm icon farm number
     * is_moderator and is_member booleans
     * rules descriptive text
     * pool_count and topic_count counts
     * group restriction booleans: photos_ok, videos_ok, images_ok,
       screens_ok, art_ok, safe_ok, moderate_ok, restricted_ok, has_geo.

   Fixed grabbing text from a <tag> child text node correctly Fixes
   [5]Issue 16.
   p>

   Fixed parsing of latitude and longitude value responses.

   Fixed a few flickcurl(1) utility manual page wordings. See [6]Debian
   bug 635989 and [7]Debian bug 635989.

   Updated example code to use OAuth authentication API.

   Fixed a few memory mis-uses via clang and GCC 4.8.
   2013-02-07 00:24:19 by Jonathan Perkin | Files touched by this commit (1351) | Package updated
Log message:
PKGREVISION bumps for the security/openssl 1.0.1d update.

Next | Query returned 48 messages, browsing 31 to 40 | Previous