summaryrefslogtreecommitdiff
path: root/mail/py-libgmail
AgeCommit message (Collapse)AuthorFilesLines
2014-01-25Mark packages as not ready for python-3.x where applicable;wiz1-2/+3
either because they themselves are not ready or because a dependency isn't. This is annotated by PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of x.y.z or PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-foo, py-bar respectively, please use the same style for other packages, and check during updates. Use versioned_dependencies.mk where applicable. Use REPLACE_PYTHON instead of handcoded alternatives, where applicable. Reorder Makefile sections into standard order, where applicable. Remove PYTHON_VERSIONS_INCLUDE_3X lines since that will be default with the next commit. Whitespace cleanups and other nits corrected, where necessary.
2012-10-08Drop PKG_DESTDIR_SUPPORT setting, "user-destdir" is default these days.asau1-3/+1
2012-04-08All supported python versions in pkgsrc support eggs, so removewiz1-2/+2
${PLIST.eggfile} from PLISTs and support code from lang/python.
2012-01-24Update py-libgmail to 0.1.10.obache3-12/+18
while here, * LICENSE=gnu-gpl-v2 * register egg-info. == Version 0.1.11 == libgmail.py * Fixed bug that broke attachment support (SF bug #2034927) * added .author_fullname field for messages * Don't crash on threads with google chat log (Debian bug #502458) == Version 0.1.10 == libgmail.py * Use mechanize instead of ClientCookie [Patch #2014779] * Very basic Unicode support [Patch #1926861] gmail_transport.py * New version that uses mechanize (owing again to Jose Rodriguez) NOTE: libgmail now depends on mechanize, which can be downloaded from: http://wwwsearch.sourceforge.net/mechanize/#download (in Debian/Ubuntu as python-mechanize, and an easy_install installer is also available) == Version 0.1.9 == libgmail.py * Fixed login that was broken for a bunch of new gmail accounts, thanks to a patch by rhauer NOTE: libgmail now depends on ClientCookie, which can be downloaded from: http://wwwsearch.sourceforge.net/ClientCookie/#download == Version 0.1.8 == libgmail.py * Added 'search' method to contactLists that returns an array of contacts who match a given search term (at some point, the contacts API is long overdue for a revamp, but for now, hey, why not) This is a patch by Alex Chiang --WD-- * libgmail now asks for the old Gmail interface, so that it isn't broken by the new Gmail updates. (Thanks to Aaron and Stu for work on this) (Fixes SF bug #1822662) == Version 0.1.7 == libgmail.py gmail_transport.py * Applied patch that adds proxy support, both for passwordless and password-ful proxies (is that a word?), by Jose Rodriguez --WD+SZ-- == Version 0.1.6.2 == libgmail.py * Bugfix for attachment problems --WD-- (SF Bug #1793026, Patch #1799605 by 'stephster') archive.py * Protect messages with a "from" line in them --WD-- (SF Patch #1790809 by 'scop') == Version 0.1.6.1 == libgmail.py * Bugfix for login problems --WD-- == Version 0.1.6 == libgmail.py * Added support for "Gmail Apps" aka "Gmail For Your Domain" --WD--
2011-06-14Drop PYTHON_VERSION_ACCEPTED restriction, because it was just not accept 23.obache1-2/+1
2008-06-20Add DESTDIR support.joerg1-1/+3
2008-06-12Use Python extension framework. Bump revision.joerg2-11/+7
2008-04-25Update PYTHON_VERSIONS_COMPATIBLEjoerg1-2/+2
- assume that Python 2.4 and 2.5 are compatible and allow checking for fallout. - remove PYTHON_VERSIONS_COMPATIBLE that are obsoleted by the 2.3+ default. Modify the others to deal with the removals.
2007-05-04Initial import of libgmail version 0.1.5.1, a python API to accessagc4-0/+49
Google mail, into the Packages Collection. The libgmail project is a pure Python binding to provide access to Google's Gmail web-mail service. The library allows the user to log into an account, retrieve a list of threads, display information about them and display the source of the individual messages. In addition, the library allows the user to: Archive Gmail messages to mbox format Use your Gmail account as a SMTP server Use your Gmail account as a POP server Use your Gmail account as a FTP server!