From owner-svn-ports-all@FreeBSD.ORG Sun Aug 12 14:02:15 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A62C106564A; Sun, 12 Aug 2012 14:02:15 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 322908FC0A; Sun, 12 Aug 2012 14:02:14 +0000 (UTC) Received: by bkcje9 with SMTP id je9so1139252bkc.13 for ; Sun, 12 Aug 2012 07:02:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=FA0G4y9EWNSfEOzuWkUmtcMtY6Gl/QpdjMo3QMVexLg=; b=jUOPXUN3B9v0Lj37/NvQd0sr0ECO6KK/nrSMyUE2eFoR5SrD3dE0/L8zVVQJiBo4Jv 5TcjVuIwppLSXbbiN0tGLJNCH20Znzewff6oAh7PDiPqnUW5+S6EJxtQskGyRott8LYm oHpJ2dJYS+dw0jk0EemwuXqTAN3/rSG+tuh7n9HqsrF97wxVRLfYHpi/2PtW5r+WXraz SNuehVGsTd4GlqUFa/P/5cV2PVHRCJJzjyFdQE2srEX6IsOJScdn09PAt6vanVRGLsBu HSd9m5MKVSomsUhuu6HYfFNdR6mkUqH2/1z1bZ6gVMTRzy7YwBqRSumZQViHHs9SMt6y ik5g== Received: by 10.204.151.81 with SMTP id b17mr3151730bkw.95.1344780133175; Sun, 12 Aug 2012 07:02:13 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.231.7 with HTTP; Sun, 12 Aug 2012 07:01:42 -0700 (PDT) In-Reply-To: <201208121352.q7CDqZdR091687@svn.freebsd.org> References: <201208121352.q7CDqZdR091687@svn.freebsd.org> From: Chris Rees Date: Sun, 12 Aug 2012 15:01:42 +0100 X-Google-Sender-Auth: YeLdmdiYEEogQHessrJZzMbsHs8 Message-ID: To: Wen Heping Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r302437 - in head/finance: . trytond_product X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Aug 2012 14:02:15 -0000 On 12 August 2012 14:52, Wen Heping wrote: > Author: wen > Date: Sun Aug 12 13:52:35 2012 > New Revision: 302437 > URL: http://svn.freebsd.org/changeset/ports/302437 > > Log: > trytond_product is the product module for tryton, it define products, > categories of product, units of measure, categories of units of measure. > > WWW: http://www.tryton.org/ > > PR: 170560 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=170560 > Submitted by: Matthias Petermann > > Added: > head/finance/trytond_product/ > head/finance/trytond_product/Makefile (contents, props changed) > head/finance/trytond_product/distinfo (contents, props changed) > head/finance/trytond_product/pkg-descr (contents, props changed) > head/finance/trytond_product/pkg-plist (contents, props changed) > Modified: > head/finance/Makefile > > Modified: head/finance/Makefile > ============================================================================== > --- head/finance/Makefile Sun Aug 12 13:29:20 2012 (r302436) > +++ head/finance/Makefile Sun Aug 12 13:52:35 2012 (r302437) > @@ -103,6 +103,7 @@ > SUBDIR += sql-ledger > SUBDIR += tinyerp-server > SUBDIR += trytond > + SUBDIR += trytond_product > SUBDIR += venice > SUBDIR += weberp > SUBDIR += wmstock > > Added: head/finance/trytond_product/Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/finance/trytond_product/Makefile Sun Aug 12 13:52:35 2012 (r302437) > @@ -0,0 +1,22 @@ > +# New ports collection makefile for: trytond_product > +# Date created: 12 August, 2012 > +# Whom: Matthias Petermann > +# > +# $FreeBSD$ > +# > + > +PORTNAME= trytond_product > +PORTVERSION= 2.4.0 > +CATEGORIES= finance python > +MASTER_SITES= http://downloads2.tryton.org/2.4/ > + > +MAINTAINER= matthias@petermann.it > +COMMENT= The Product Module for Tryton > + > +RUN_DEPENDS= trytond>=2.4.0:${PORTSDIR}/finance/trytond > +#RUN_DEPENDS:= ${BUILD_DEPENDS} Is the comment deliberate? Chris