diff options
author | glarkin <glarkin@FreeBSD.org> | 2010-12-21 06:37:17 +0800 |
---|---|---|
committer | glarkin <glarkin@FreeBSD.org> | 2010-12-21 06:37:17 +0800 |
commit | 8b68fe3142bcd6c43b6edfbff1053015fc500b8b (patch) | |
tree | 53357d3c097c12ee8cfeb999ebe60f46445cce54 | |
parent | 165e39b9ac18314e7bb6c215be598417e0eabd09 (diff) | |
download | freebsd-ports-gnome-8b68fe3142bcd6c43b6edfbff1053015fc500b8b.tar.gz freebsd-ports-gnome-8b68fe3142bcd6c43b6edfbff1053015fc500b8b.tar.zst freebsd-ports-gnome-8b68fe3142bcd6c43b6edfbff1053015fc500b8b.zip |
Web sites are often hosted on servers where bzr can't be installed.
In other cases, the web site must not give access to its corresponding
branch (for security reasons for example). Finally, web hosting
providers often provides only ftp access to upload sites.
This plugin uploads only the relevant changes in your working tree
since the last upload using ftp or sftp protocols.
WWW: http://wiki.bazaar.canonical.com/BazaarUploadForWebDev
PR: ports/153013
Submitted by: Carlo Strub <c-s at c-s.li>
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/bzr-upload/Makefile | 28 | ||||
-rw-r--r-- | devel/bzr-upload/distinfo | 2 | ||||
-rw-r--r-- | devel/bzr-upload/pkg-descr | 9 | ||||
-rw-r--r-- | devel/bzr-upload/pkg-plist | 19 |
5 files changed, 59 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 33c012ad6d4c..068d28eb7785 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -143,6 +143,7 @@ SUBDIR += bzr-pipeline SUBDIR += bzr-rewrite SUBDIR += bzr-svn + SUBDIR += bzr-upload SUBDIR += bzrtools SUBDIR += c2lib SUBDIR += c2man diff --git a/devel/bzr-upload/Makefile b/devel/bzr-upload/Makefile new file mode 100644 index 000000000000..9b269283b765 --- /dev/null +++ b/devel/bzr-upload/Makefile @@ -0,0 +1,28 @@ +# Ports collection makefile for: bzr-upload +# Date created: 2010-12-11 +# Whom: Carlo Strub <c-s@c-s.li> +# +# $FreeBSD$ +# + +PORTNAME= bzr-upload +PORTVERSION= 1.0.0 +CATEGORIES= devel +MASTER_SITES= http://launchpadlibrarian.net/60433187/ \ + http://www.c-s.li/ports/ + +MAINTAINER= c-s@c-s.li +COMMENT= Bzr plugin to incrementally upload changes to a dumb server + +BUILD_DEPENDS= bzr:${PORTSDIR}/devel/bazaar-ng +RUN_DEPENDS= ${BUILD_DEPENDS} + +LICENSE= GPLv2 + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= bzr_upload + +.include <bsd.port.mk> diff --git a/devel/bzr-upload/distinfo b/devel/bzr-upload/distinfo new file mode 100644 index 000000000000..77b0c50e246b --- /dev/null +++ b/devel/bzr-upload/distinfo @@ -0,0 +1,2 @@ +SHA256 (bzr-upload-1.0.0.tar.gz) = db8326e156e551b180c4abb8660fdc1f11332d41504ab26572f014ce1e655cd3 +SIZE (bzr-upload-1.0.0.tar.gz) = 21952 diff --git a/devel/bzr-upload/pkg-descr b/devel/bzr-upload/pkg-descr new file mode 100644 index 000000000000..9e38a5f3eaaf --- /dev/null +++ b/devel/bzr-upload/pkg-descr @@ -0,0 +1,9 @@ +Web sites are often hosted on servers where bzr can't be installed. +In other cases, the web site must not give access to its corresponding +branch (for security reasons for example). Finally, web hosting +providers often provides only ftp access to upload sites. + +This plugin uploads only the relevant changes in your working tree +since the last upload using ftp or sftp protocols. + +WWW: http://wiki.bazaar.canonical.com/BazaarUploadForWebDev diff --git a/devel/bzr-upload/pkg-plist b/devel/bzr-upload/pkg-plist new file mode 100644 index 000000000000..fe7e70ae2aa1 --- /dev/null +++ b/devel/bzr-upload/pkg-plist @@ -0,0 +1,19 @@ +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/__init__.py +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/__init__.pyc +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/__init__.pyo +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/info.py +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/info.pyc +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/info.pyo +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/tests/__init__.py +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/tests/__init__.pyc +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/tests/__init__.pyo +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/tests/test_auto_upload_hook.py +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/tests/test_auto_upload_hook.pyc +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/tests/test_auto_upload_hook.pyo +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/tests/test_upload.py +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/tests/test_upload.pyc +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/tests/test_upload.pyo +@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload/tests +@dirrm %%PYTHON_SITELIBDIR%%/bzrlib/plugins/upload +@dirrmtry %%PYTHON_SITELIBDIR%%/bzrlib/plugins +@dirrmtry %%PYTHON_SITELIBDIR%%/bzrlib |