From owner-svn-ports-head@freebsd.org Wed Jun 24 16:57:49 2015 Return-Path: Delivered-To: svn-ports-head@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 4D789915225 for ; Wed, 24 Jun 2015 16:57:49 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-ob0-f173.google.com (mail-ob0-f173.google.com [209.85.214.173]) (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 1DDD415C9 for ; Wed, 24 Jun 2015 16:57:48 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: by obpn3 with SMTP id n3so30674166obp.0 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=SBj5GRlMWCemgwiGSmpZisT2f8FeMujjLZ2Lg5lPKgyWWNJO39WeOslVQThUFPrQSc JEsBRbVP42bZ0Lvza5CO7imwUOCWLGu+mPt3/LZJZJjzn9E9HvmdkZ8vPEDTj5v6hEey GElLNQum6l/zAKB94K8b50VyEBXC7Gws5NRcyQmzvTYgQb5V2rYZSs2b3KP6IaLDkAYT H6GHQoiXtuxfmtJBwAkfyxxkRLIQLFlDzDdLLD9IaASSKNw7tVz56hff4Z7w47v8QRfH oMXyz4nfNq9PkwG7qASsZ22Qk8py+adMtHhevkaGDIFqtadjK/2R7ppWiDAnRve3isVV gzpw== X-Gm-Message-State: ALoCoQm+fujC3dtpxJTZ9IYZxyNPpfirg+Kniw9DyfqZO8nWL5h7i19NRdOhN9CTM8OfgbF2UjDp 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-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2015 16:57:49 -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