1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

[NEW] www/py-frappe-bench: Frappe / ERPNext apps setup tool

The bench allows you to setup Frappe / ERPNext apps on
your local machine or a production server. You can use
the bench to serve multiple frappe sites.

WWW: https://github.com/frappe/bench

Approved by: koobs
Differential Revision: https://reviews.freebsd.org/D3120
This commit is contained in:
Fukang Chen 2015-07-31 14:05:58 +00:00
parent d580e88d46
commit 4b507dc054
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=393308
6 changed files with 1824 additions and 0 deletions

View File

@ -1586,6 +1586,7 @@
SUBDIR += py-flup
SUBDIR += py-formalchemy
SUBDIR += py-formencode
SUBDIR += py-frappe-bench
SUBDIR += py-frozen-flask
SUBDIR += py-funkload
SUBDIR += py-gandi.cli

View File

@ -0,0 +1,33 @@
# Created by: loader <loader@FreeBSD.org>
# $FreeBSD$
PORTNAME= frappe-bench
PORTVERSION= 0.92
DISTVERSIONPREFIX= v
CATEGORIES= www python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= loader@FreeBSD.org
COMMENT= Frappe / ERPNext apps setup tool
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE.md
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>0:${PORTSDIR}/devel/py-click \
${PYTHON_PKGNAMEPREFIX}Jinja2>0:${PORTSDIR}/devel/py-Jinja2 \
${PYTHON_PKGNAMEPREFIX}virtualenv>0:${PORTSDIR}/devel/py-virtualenv \
${PYTHON_PKGNAMEPREFIX}requests>0:${PORTSDIR}/www/py-requests \
${PYTHON_PKGNAMEPREFIX}honcho>0:${PORTSDIR}/sysutils/py-honcho \
${PYTHON_PKGNAMEPREFIX}semantic_version>0:${PORTSDIR}/devel/py-semantic_version \
${PYTHON_PKGNAMEPREFIX}GitPython>=1.0.1:${PORTSDIR}/devel/py-gitpython \
${PYTHON_PKGNAMEPREFIX}pip>0:${PORTSDIR}/devel/py-pip \
git:${PORTSDIR}/devel/git
USE_GITHUB= yes
GH_ACCOUNT= frappe
GH_PROJECT= bench
USES= python
USE_PYTHON= autoplist distutils concurrent
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (frappe-bench-v0.92_GH0.tar.gz) = 4095b752bd777166d48054df6fb198ad1349e0bdf60d112e632ea622a9b99587
SIZE (frappe-bench-v0.92_GH0.tar.gz) = 30835

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,20 @@
--- setup.py.orig 2015-07-31 10:13:11 UTC
+++ setup.py
@@ -3,7 +3,7 @@ from setuptools import setup, find_packa
setup(
name='bench',
version='0.92',
- py_modules=find_packages(),
+ packages=find_packages(),
include_package_data=True,
url='https://github.com/frappe/bench',
author='Web Notes Technologies Pvt. Ltd.',
@@ -15,7 +15,7 @@ setup(
'requests',
'honcho',
'semantic_version',
- 'GitPython==0.3.2.RC1'
+ 'GitPython>=0.3.2.RC1'
],
entry_points='''
[console_scripts]

View File

@ -0,0 +1,5 @@
The bench allows you to setup Frappe / ERPNext apps on
your local machine or a production server. You can use
the bench to serve multiple frappe sites.
WWW: https://github.com/frappe/bench