[Python-modules-commits] [python-exif] branch master updated (2285df8 -> c504d52)

Wolfgang Borgert debacle at moszumanska.debian.org
Mon Oct 6 22:26:42 UTC 2014


This is an automated email from the git hooks/post-receive script.

debacle pushed a change to branch master
in repository python-exif.

      from  2285df8   Import python-exif 1.0.8-1
      adds  add1aa2   Initial commit
      adds  5ed1fe9   initial import into github
      adds  05a6420   apply patches
      adds  799e11d   add recent patches
      adds  0e7f4f9   Update master
      adds  afff7a4   Fix for situations when makernotes entries do not exist
      adds  fedceec   Merge pull request #1 from cavanaug/master
      adds  0127b45   fix orientation strings (issue #3)
      adds  2f6b830   fix for orientation strings (issue #2)
      adds  10148d7   fix orientation strings (issue #3)
      adds  8a97b6a   add more GPS tags and endian formats
      adds  a2eb1ab   version bump
      adds  fb6ae08   Add python instructions to readme
      adds  4fbdf87   add patches by Gregory Dudek
      adds  00eaf5a   merge dudek patches
      adds  9101157   updates to project info
      adds  f445bc1   Update EXIF.py
      adds  86957f0   Merge pull request #9 from DarkRedman/master
      adds  dbb7f29   Fixed endless loop when processing broken images.
      adds  48a76d8   Merge pull request #10 from mibe/master
      adds  7e5cf58   prepare for version 1.2.0 release
      adds  45b4935   Added .idea to gitignore
      adds  7c0fd17   Setting default values for 'values' in case it does not get set
      adds  5bb1736   Merge pull request #13 from ortsed/patch-1
      adds  fd50c06   add __init__.py
      adds  e700ebe   do not track eclipse specific files
      adds  fe20455   add gitattributes
      adds  1c6d979   PEP8 & PEP257 improvements
      adds  325ea53   better score in pylint
      adds  cf91550   move license info to seperate file; remove readme info from executable
      adds  91b9edf   ignore swap files
      adds  ff06b28   move global gcd function into Ratio class
      adds  70b1ffb   replaced hardcoded "UNDEF" string with variable
      adds  e3bc0ee   standardize file names
      adds  99de4d8   standardize file names
      adds  78deba2   layout for packaging; split into files
      adds  32bd9c3   use rst format for README
      adds  0831404   improve package information
      adds  a846a23   fixes for backwards compatability
      adds  77b8294   fix missing tag constant
      adds  176e3b3   replace print with logging
      adds  ef03656   Update logger init
      adds  97bf638   Complete install instructions
      adds  de657ca   fixes for packaging
      adds  e44ddec   prepare for 1.3.0 release
      adds  97fc331   change package name
      adds  f959955   fix for DeprecationWarning: classic int division
      adds  b0ecc4a   Improvements to debug output
      adds  7a8c5c4   add some Nikon makernote tags
      adds  9379428   Improve PyPI package
      adds  d37f085   version bump 1.3.1
      adds  9a2a3d6   minor fixes for imports; better debug output
      adds  f69b0ef   Remove version info from script file
      adds  7d16ada   get version from README
      adds  9d8b631   fix readme for bug #15
      adds  72ca0f9   Fix for faster processing (#16)
      adds  81e0564   Add timing info in debug mode and nicer message format
      adds  1d51517   force UNIX line endings
      adds  09a5ab8   version bump for 1.3.3
      adds  c7c2aff   Adding a missing tag from the Exif IFD
      adds  faa53df   Merge pull request #17 from rudisimo/missing-tag
      adds  a4cf27b   Better hyperlinks in README
      adds  e4011e2   Added more missing tags
      adds  1a615f8   Merge remote-tracking branch 'bartonp/master'
      adds  230b257   add more tags
      adds  81f5aba   Add Canon MakerNotes; misc fixes & improvements
      adds  11b9084   add some Exif tags and better format for dicts
      adds  ea8f233   add more timing info & version info
      adds  6701e59   put tag definitions in separate module
      adds  16c982a   Fixing issue #20- "global name 'Ratio' is not defined, happened after EXIF.py is split into several modules"
      adds  fdd7d74   Merge pull request #21 from peteblois/master
      adds  3adb136   centralize utils (fix ImportError)
      adds  a9fcadb   Do not extract thumbnail in quick mode (issue #19)
      adds  f9667bb   Add tag descriptions
      adds  3a4893e   Fix up setup script for new tags submodule.
      adds  93f8aad   Add Canon File Info and Camera Info sections.
      adds  c65747b   get ready for version 1.4.0
      adds  29a0af7   Move tag definitions
      adds  42b0cab   don't parse readme to get version
      adds  3e7c57a   better categories
      adds  cc68cc1   fixed typo: it's pip, not pi
      adds  4a41986   Add badges
      adds  0c48caf   better link to pip docs
      adds  43c5445   manually add peterreimer changes to version + version bump
      adds  660ccea   switch to pypip.in badge
      adds  88e80a6   Update .gitattributes
      adds  7eb778e   EXIF.py crashes on Python3
      adds  7aef0fc   Merge branch 'python3-quick-fix' of git://github.com/leprechaun/exif-py into leprechaun-python3-quick-fix
      adds  dd286fe   update Canon tags
      adds  71800dc   Update __init__.py
      adds  8068c23   Update makernote.py
      adds  2c956f0   fix for issue #28
      adds  4128908   pylint & PEP8 fixes
      adds  982ad09   version bump
      adds  6ff9ed1   add release note
       new  c504d52   Merge remote-tracking branch 'upstream/master'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitattributes                   |   11 +
 .gitignore                       |   48 +
 changes.txt => CHANGES.txt       |   77 +-
 EXIF.py                          | 1825 +++-----------------------------------
 LICENSE.txt                      |   31 +
 MANIFEST.in                      |    1 +
 README.rst                       |  128 +++
 __init__.py                      |    1 +
 exifread/__init__.py             |  228 +++++
 exifread/classes.py              |  511 +++++++++++
 exifread/tags/__init__.py        |   28 +
 exifread/tags/exif.py            |  360 ++++++++
 exifread/tags/makernote.py       |  618 +++++++++++++
 exifread/tags/makernote_canon.py |  417 +++++++++
 exifread/utils.py                |   76 ++
 setup.py                         |   33 +
 16 files changed, 2655 insertions(+), 1738 deletions(-)
 create mode 100644 .gitattributes
 create mode 100644 .gitignore
 copy changes.txt => CHANGES.txt (73%)
 create mode 100644 LICENSE.txt
 create mode 100644 MANIFEST.in
 create mode 100644 README.rst
 create mode 100644 __init__.py
 create mode 100644 exifread/__init__.py
 create mode 100644 exifread/classes.py
 create mode 100644 exifread/tags/__init__.py
 create mode 100644 exifread/tags/exif.py
 create mode 100644 exifread/tags/makernote.py
 create mode 100644 exifread/tags/makernote_canon.py
 create mode 100644 exifread/utils.py
 create mode 100644 setup.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-exif.git



More information about the Python-modules-commits mailing list