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 * Picasa Web Albums * Spreadsheets * Google Apps Provisioning * Code Search * Notebook The GData Python Client Library provides a library and source code that make it easy to access data through Google Data APIs. WWW: http://code.google.com/p/gdata-python-client/ PR: ports/110958 Submitted by: Li-Wen Hsu <lwhsu at lwhsu.org>
This commit is contained in:
parent
831a63b73c
commit
230be3b3af
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=188634
6 changed files with 116 additions and 0 deletions
|
@ -1794,6 +1794,7 @@
|
|||
SUBDIR += py-fusefs
|
||||
SUBDIR += py-game
|
||||
SUBDIR += py-gamin
|
||||
SUBDIR += py-gdata
|
||||
SUBDIR += py-generate
|
||||
SUBDIR += py-gobject
|
||||
SUBDIR += py-grouch
|
||||
|
|
34
devel/py-gdata/Makefile
Normal file
34
devel/py-gdata/Makefile
Normal file
|
@ -0,0 +1,34 @@
|
|||
# New ports collection makefile for: py-gdata
|
||||
# Date created: Mar. 28, 2007
|
||||
# Whom: Li-Wen Hsu <lwhsu@lwhsu.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= gdata
|
||||
PORTVERSION= 1.0
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= http://gdata-python-client.googlecode.com/files/
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
DISTNAME= gdata.py.${PORTVERSION}
|
||||
|
||||
MAINTAINER= lwhsu@lwhsu.org
|
||||
COMMENT= GData Python Client Library
|
||||
|
||||
USE_PYTHON= yes
|
||||
USE_PYDISTUTILS= yes
|
||||
USE_ZIP= yes
|
||||
|
||||
WRKSRC= ${WRKDIR}/gdata-python-client
|
||||
|
||||
EXAMPLESDIR= ${TARGETDIR}/share/examples/py-${PORTNAME}
|
||||
|
||||
do-patch:
|
||||
${SED} -e 's|%%PORTVERSION%%|${PORTVERSION}|g' ${FILESDIR}/setup.py \
|
||||
> ${WRKSRC}/setup.py
|
||||
|
||||
post-install:
|
||||
@${MKDIR} ${EXAMPLESDIR}
|
||||
${CP} -R ${WRKSRC}/samples/ ${EXAMPLESDIR}
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/py-gdata/distinfo
Normal file
3
devel/py-gdata/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (gdata.py.1.0.zip) = b6475fa6fdf3fd14a740a23ae045cff4
|
||||
SHA256 (gdata.py.1.0.zip) = 6528ffa2ad9d8de0675fb0c30682f345059a175ff9bb2ec9f26107acce31958b
|
||||
SIZE (gdata.py.1.0.zip) = 86450
|
19
devel/py-gdata/files/setup.py
Normal file
19
devel/py-gdata/files/setup.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
from distutils.core import setup
|
||||
|
||||
setup(
|
||||
name = 'gdata',
|
||||
version = "%%PORTVERSION%%",
|
||||
py_modules = [
|
||||
'app_service',
|
||||
'atom',
|
||||
'gbase',
|
||||
'gbase_service',
|
||||
'gcalendar',
|
||||
'gcalendar_service',
|
||||
'gdata',
|
||||
'gdata_client',
|
||||
'gdata_service',
|
||||
'gspreadsheet',
|
||||
'gspreadsheet_service',
|
||||
],
|
||||
)
|
18
devel/py-gdata/pkg-descr
Normal file
18
devel/py-gdata/pkg-descr
Normal file
|
@ -0,0 +1,18 @@
|
|||
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
|
||||
* Picasa Web Albums
|
||||
* Spreadsheets
|
||||
* Google Apps Provisioning
|
||||
* Code Search
|
||||
* Notebook
|
||||
|
||||
The GData Python Client Library provides a library and source code that
|
||||
make it easy to access data through Google Data APIs.
|
||||
|
||||
WWW: http://code.google.com/p/gdata-python-client/
|
41
devel/py-gdata/pkg-plist
Normal file
41
devel/py-gdata/pkg-plist
Normal file
|
@ -0,0 +1,41 @@
|
|||
%%PYTHON_SITELIBDIR%%/app_service.py
|
||||
%%PYTHON_SITELIBDIR%%/app_service.pyc
|
||||
%%PYTHON_SITELIBDIR%%/app_service.pyo
|
||||
%%PYTHON_SITELIBDIR%%/atom.py
|
||||
%%PYTHON_SITELIBDIR%%/atom.pyc
|
||||
%%PYTHON_SITELIBDIR%%/atom.pyo
|
||||
%%PYTHON_SITELIBDIR%%/gbase.py
|
||||
%%PYTHON_SITELIBDIR%%/gbase.pyc
|
||||
%%PYTHON_SITELIBDIR%%/gbase.pyo
|
||||
%%PYTHON_SITELIBDIR%%/gbase_service.py
|
||||
%%PYTHON_SITELIBDIR%%/gbase_service.pyc
|
||||
%%PYTHON_SITELIBDIR%%/gbase_service.pyo
|
||||
%%PYTHON_SITELIBDIR%%/gcalendar.py
|
||||
%%PYTHON_SITELIBDIR%%/gcalendar.pyc
|
||||
%%PYTHON_SITELIBDIR%%/gcalendar.pyo
|
||||
%%PYTHON_SITELIBDIR%%/gcalendar_service.py
|
||||
%%PYTHON_SITELIBDIR%%/gcalendar_service.pyc
|
||||
%%PYTHON_SITELIBDIR%%/gcalendar_service.pyo
|
||||
%%PYTHON_SITELIBDIR%%/gdata.py
|
||||
%%PYTHON_SITELIBDIR%%/gdata.pyc
|
||||
%%PYTHON_SITELIBDIR%%/gdata.pyo
|
||||
%%PYTHON_SITELIBDIR%%/gdata_client.py
|
||||
%%PYTHON_SITELIBDIR%%/gdata_client.pyc
|
||||
%%PYTHON_SITELIBDIR%%/gdata_client.pyo
|
||||
%%PYTHON_SITELIBDIR%%/gdata_service.py
|
||||
%%PYTHON_SITELIBDIR%%/gdata_service.pyc
|
||||
%%PYTHON_SITELIBDIR%%/gdata_service.pyo
|
||||
%%PYTHON_SITELIBDIR%%/gspreadsheet.py
|
||||
%%PYTHON_SITELIBDIR%%/gspreadsheet.pyc
|
||||
%%PYTHON_SITELIBDIR%%/gspreadsheet.pyo
|
||||
%%PYTHON_SITELIBDIR%%/gspreadsheet_service.py
|
||||
%%PYTHON_SITELIBDIR%%/gspreadsheet_service.pyc
|
||||
%%PYTHON_SITELIBDIR%%/gspreadsheet_service.pyo
|
||||
%%EXAMPLESDIR%%/base/baseQueryExample.py
|
||||
%%EXAMPLESDIR%%/base/dryRunInsert.py
|
||||
%%EXAMPLESDIR%%/calendar/calendarExample.py
|
||||
%%EXAMPLESDIR%%/spreadsheets/spreadsheetExample.py
|
||||
@dirrm %%EXAMPLESDIR%%/spreadsheets
|
||||
@dirrm %%EXAMPLESDIR%%/calendar
|
||||
@dirrm %%EXAMPLESDIR%%/base
|
||||
@dirrm %%EXAMPLESDIR%%
|
Loading…
Reference in a new issue