From owner-svn-ports-all@freebsd.org Wed Jun 24 16:57:55 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28AA4915230 for ; Wed, 24 Jun 2015 16:57:55 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-oi0-f51.google.com (mail-oi0-f51.google.com [209.85.218.51]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F057615D1 for ; Wed, 24 Jun 2015 16:57:54 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: by oigb199 with SMTP id b199so34260951oig.3 for ; Wed, 24 Jun 2015 09:57:48 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=/f9pfP7Y6+fkjqqDgmDvGz64ToTYax1u0zG7+rsroxA=; b=Qvc8oC2croRoB6E9hLECsA/ZwRL8qx0Z6crZwZUW1xbm4u+cRZDimoHSMETEN7P1Fd OuVTMLJpCLZVuMeekb1kgh8+ICsk9qdUTVyvUuFXgh3VtCDnj34GQmXMHoZhFwU1NRDp 1RdxU5HwzBXntkt2zt3B1gwJY2nh96VsPPa/52jUgElj15Ct/QjTeHFlHnr8oSkle3BZ 7M/g87sQl3rFPQDvNsBrz57mMYdwII1R+GimFXZcp76jDlD4yqA5rASYucdoKKr1+vVs 9x6dZAHDGvCHCvBmq1ZRGUBe5o3PxqqPts69DrY1zOpu8in1/euGlXo2gLO6017ibB5R VkDA== X-Gm-Message-State: ALoCoQlv+hSRzGvS3EyhOUkFWIYz3U0F8D+AonobrSLffgSYxcg+8O4PF+Eyv3G0XKvajjYCkkx7 X-Received: by 10.202.56.134 with SMTP id f128mr27867677oia.126.1435165068122; Wed, 24 Jun 2015 09:57:48 -0700 (PDT) MIME-Version: 1.0 Received: by 10.202.214.20 with HTTP; Wed, 24 Jun 2015 09:57:08 -0700 (PDT) In-Reply-To: <201506232035.t5NKZ3GW051455@svn.freebsd.org> References: <201506232035.t5NKZ3GW051455@svn.freebsd.org> From: Sunpoet Hsieh Date: Thu, 25 Jun 2015 00:57:08 +0800 Message-ID: Subject: Re: svn commit: r390461 - head/www/radicale To: Mark Felder Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 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: Wed, 24 Jun 2015 16:57:55 -0000 On Wed, Jun 24, 2015 at 4:35 AM, Mark Felder wrote: > Author: feld > Date: Tue Jun 23 20:35:03 2015 > New Revision: 390461 > URL: https://svnweb.freebsd.org/changeset/ports/390461 > > Log: > Use autoplist so package successfully builds with newer python versions > > Modified: > head/www/radicale/Makefile > head/www/radicale/pkg-plist > > Modified: head/www/radicale/Makefile > > ============================================================================== > --- head/www/radicale/Makefile Tue Jun 23 20:27:20 2015 (r390460) > +++ head/www/radicale/Makefile Tue Jun 23 20:35:03 2015 (r390461) > @@ -3,7 +3,7 @@ > > PORTNAME= radicale > PORTVERSION= 0.10 > -PORTREVISION= 1 > +PORTREVISION= 2 > CATEGORIES= www python > MASTER_SITES= CHEESESHOP > PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} > @@ -14,7 +14,7 @@ COMMENT= Python based CalDAV/CardDAV se > > LICENSE= GPLv3 > > -USE_PYTHON= distutils > +USE_PYTHON= autoplist distutils > PYDISTUTILS_PKGNAME= Radicale > Hello, PYDISTUTILS_PKGNAME became redundant when USE_PYTHON=autoplist is used. BTW, you could add NO_ARCH to this port. Regards, sunpoet