From owner-svn-ports-all@freebsd.org Mon Jun 5 14:44:46 2017 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 F2038AFA750; Mon, 5 Jun 2017 14:44:46 +0000 (UTC) (envelope-from sjk4015@gmail.com) Received: from mail-it0-x236.google.com (mail-it0-x236.google.com [IPv6:2607:f8b0:4001:c0b::236]) (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 BA4E9806C2; Mon, 5 Jun 2017 14:44:46 +0000 (UTC) (envelope-from sjk4015@gmail.com) Received: by mail-it0-x236.google.com with SMTP id r63so78408589itc.1; Mon, 05 Jun 2017 07:44:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=Bjs2TawVJgyiKpyn7PQruVQUnV5wqu1QeFbA/+7XdCQ=; b=O/WgmymXME3mwtTkQDIRYrS7GLsRAeHKuF4atfIJiuAoIqggdvcCRcstPYRZBKuF2T diri2ki+EqBvMcrlLrnM0oNX5fqV2H0qMuIM/x1jpMUDIf/MiWNV4ZdvgRvvJGM+r5IZ JgqPOKKsOYjma7Iy4prhRw//GJibNJA812qsxylQtGXm7GlgTzxLV/nX9fpJRNNRYfNR Fmm+LvAiUiPb40UOSQnRpmvfhPFH9dgHH74rVla0IripQEmF0pUYzc8zNDK4rrHKTnA/ etBv9IWxZY7sA5k1Jq7ItHCu+W2H1/Qc0GbDs/j3MalWStqtQj1S7EEGRW0h8rEGQCD0 VCyg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=Bjs2TawVJgyiKpyn7PQruVQUnV5wqu1QeFbA/+7XdCQ=; b=gMSKXU2NbEuQqaCiVxrx+G7pBaSTTlWU8vDty+Qg9LqNSBwSoTPHLDNlPvK5TAsI3v 40EBRpRxfRFAvql9IB9u8Bcl9y/U7xFgXLU+er1sUBt4CZ2Zs3gcF5a0QV1+FZrA1hzc aC1Sq/e57jz8O0QQuhPgyrbLevYQ4UpbanO8RRn5yA+wjDZX+v3djBZkjWK4myaCcjWq 4gsAogqNto0IUQMM0kxhYsYVVQimhY/hNJbQsT9wzgHPBQAhdK2oF1lrkRc6ttMNB521 qTVJ0Qz1bQB62aQL4guxa8XKtd0sz8AfkTl3j6zhKMjXa3FprreyLXF/OvdYfdUw9S7K HtfQ== X-Gm-Message-State: AODbwcBK4UQnS7CcI3gfuVotqNnFJlkNRQiksDj4RauGXduoGD4SHyfs EZFT7HPOJjEaXohYaqNXpaOUArO82Pn/ X-Received: by 10.36.83.147 with SMTP id n141mr13355533itb.104.1496673885806; Mon, 05 Jun 2017 07:44:45 -0700 (PDT) MIME-Version: 1.0 Sender: sjk4015@gmail.com Received: by 10.107.17.39 with HTTP; Mon, 5 Jun 2017 07:44:45 -0700 (PDT) In-Reply-To: References: <201705241501.v4OF1HBr068668@repo.freebsd.org> From: Steven Kreuzer Date: Mon, 5 Jun 2017 10:44:45 -0400 X-Google-Sender-Auth: m7qFuSlDj6JpbE-7FDLTJxUWd9A Message-ID: Subject: Re: svn commit: r441603 - in head/textproc: . py-parsel To: koobs@freebsd.org Cc: "ports-committers@freebsd.org" , svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 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: Mon, 05 Jun 2017 14:44:47 -0000 On Sun, May 28, 2017 at 2:37 AM, Kubilay Kocak wrote: > On 5/25/17 1:01 AM, Steven Kreuzer wrote: >> +COMMENT= Parsel is a library to extract data from HTML and XML using XPath and CSS selectors > > Remove 'Parsel is a'. See > https://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/book.html#makefile-comment > >> +LICENSE= BSD3CLAUSE > > Add LICENSE_FILE, one exists (LICENSE) in the distribution file > >> +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>=2.0.0:devel/py-pytest-runner > > This is a pytest dependency that enables the (setup.py) test command. If > and when you see this, it implies tests can be run using 'python > setup.py test', and a test target can accordingly be added to the port: > > do-test: > cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test > Sorry. Because of the way I filter my email I am only seeing this now. It looks like most of this was fixed in r441968 by rene@