public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sebastien Fabbro" <bicatali@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/beautifulsoup/
Date: Thu, 29 Jun 2017 22:04:52 +0000 (UTC)	[thread overview]
Message-ID: <1498773800.4fe5577526780a5c44910894fef2464fbcfda032.bicatali@gentoo> (raw)

commit:     4fe5577526780a5c44910894fef2464fbcfda032
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 29 22:01:58 2017 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu Jun 29 22:03:20 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fe55775

dev-python/beautifulsoup: shorter description

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/beautifulsoup/Manifest                  |  1 +
 .../beautifulsoup/beautifulsoup-4.6.0.ebuild       | 45 ++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/dev-python/beautifulsoup/Manifest b/dev-python/beautifulsoup/Manifest
index f77e427a34b..a87f7f747d9 100644
--- a/dev-python/beautifulsoup/Manifest
+++ b/dev-python/beautifulsoup/Manifest
@@ -2,3 +2,4 @@ DIST BeautifulSoup-3.1.0.1.tar.gz 71460 SHA256 820a80f473240d9d30047f36c959d530a
 DIST BeautifulSoup-3.2.1.tar.gz 31224 SHA256 f5ba85e907e7dfd78e44e4000b3eaef3a650aefc57831e8a645702db2e5b50db SHA512 365b7b045a2069cf437877543577bc0aa99256a6dc4c9743670b46bfceab5494a06628012d6eccecfe99c25d5c9e0c65814964b47026f15ba1a538444cfb7789 WHIRLPOOL c2f84b29421d0153fb1fecc87d63e00a61182e03bc0683132babca5d6c94143b4875a60a19124a36e4e6e78ce80bff9e1e81b37335700efc14084da933307e26
 DIST beautifulsoup4-4.5.1.tar.gz 158039 SHA256 3c9474036afda9136aac6463def733f81017bf9ef3510d25634f335b0c87f5e1 SHA512 d560d7f743507084ec546708d29bb3764512f5b2c380004280dde813350bf48d1697fddce3bd3f95186407bf5142941d7adc7d0de8e7962eb5ca1278dbc7e93f WHIRLPOOL bf971596707c2ff69e93528164be01254258aa45601763c543246b67c5d31024b0e4de618382775a3cf313d255d8d1d6268a47542773531aacee9a2643412661
 DIST beautifulsoup4-4.5.3.tar.gz 159185 SHA256 b21ca09366fa596043578fd4188b052b46634d22059e68dd0077d9ee77e08a3e SHA512 d31db0e3bb778a78c37882fcd55dc580eb5eeadfd48744eae6e2e0d0ef5983b216a4682af84a4971611b05fb99c45012ce094475f2d7c39a5b90dad99906ec84 WHIRLPOOL f8dbffd8e4a1dbee0a7ad8a4bcbe22a984f524474f0241a4c03ef5c37b291f9834a6ff1d076421c0cf1087588df1e49f5b99cd9afd7e81591c9063d92d4d097d
+DIST beautifulsoup4-4.6.0.tar.gz 160846 SHA256 808b6ac932dccb0a4126558f7dfdcf41710dd44a4ef497a0bb59a77f9f078e89 SHA512 1a7eee4218e58cc3852e71fe4f0892f673bb46a851941264766a38eff8ef05d612d88b4641fcb478ce8f66ac50dc987ca039923c4bbb11867c74813289f7e578 WHIRLPOOL 46809fd612cd90533fbf4252d1c2ee19c571301306c549526b355b4a7ad17090aa1e505268f25a521ed0d2c90c7686a6a2c1144a934a16823754aac5f599ac2c

diff --git a/dev-python/beautifulsoup/beautifulsoup-4.6.0.ebuild b/dev-python/beautifulsoup/beautifulsoup-4.6.0.ebuild
new file mode 100644
index 00000000000..d321b00e57a
--- /dev/null
+++ b/dev-python/beautifulsoup/beautifulsoup-4.6.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
+
+inherit distutils-r1
+
+MY_PN=${PN}4
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Pythonic idioms for iterating, searching, and modifying an HTML/XML parse tree"
+HOMEPAGE="http://www.crummy.com/software/BeautifulSoup/bs4/"
+SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="4"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+
+IUSE="doc test"
+
+# html5lib is optional however hard coding since its use is actively discouraged in the devmanual
+RDEPEND="
+	$(python_gen_cond_dep 'dev-python/html5lib[${PYTHON_USEDEP}]' python2_7 pypy)
+	$(python_gen_cond_dep 'dev-python/lxml[${PYTHON_USEDEP}]' python2_7 'python3*')"
+DEPEND="
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )
+	"
+
+S="${WORKDIR}/${MY_P}"
+
+python_compile_all() {
+	use doc && emake -C doc html
+}
+
+python_test() {
+	nosetests --verbose -w "${BUILD_DIR}"/lib || die "Tests fail with ${EPYTHON}"
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( doc/build/html/. )
+	distutils-r1_python_install_all
+}


             reply	other threads:[~2017-06-29 22:04 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-29 22:04 Sebastien Fabbro [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-09-08  5:47 [gentoo-commits] repo/gentoo:master commit in: dev-python/beautifulsoup/ Michał Górny
2021-09-08  5:47 Michał Górny
2021-07-28 23:38 Marek Szuba
2021-05-29 21:34 Michał Górny
2020-11-28 15:36 Sam James
2020-11-02 11:23 Michał Górny
2020-11-02 11:11 Sam James
2020-10-03 21:21 Michał Górny
2020-09-26 17:57 Michał Górny
2020-09-18 14:28 Michał Górny
2020-09-08 22:01 Sam James
2020-09-08 19:11 Michał Górny
2020-07-26 16:51 Michał Górny
2020-07-26 13:52 Michał Górny
2020-07-25 10:22 Michał Górny
2020-07-12  2:41 Sam James
2020-06-10 20:50 Michał Górny
2020-05-26 16:23 Michał Górny
2020-05-26 16:23 Michał Górny
2020-05-11 16:48 Michał Górny
2020-05-11  9:44 Agostino Sarubbo
2020-05-10 17:42 Mart Raudsepp
2020-05-05  6:46 Agostino Sarubbo
2020-05-03 19:11 Agostino Sarubbo
2020-05-03 10:25 Agostino Sarubbo
2020-05-03 10:12 Agostino Sarubbo
2020-03-30  8:48 Michał Górny
2020-03-26 13:49 Michał Górny
2020-03-03  7:22 Matt Turner
2020-03-03  7:22 Matt Turner
2020-01-26 21:46 Matthew Thode
2020-01-13 18:46 Sebastian Pipping
2019-12-08 23:31 Sergei Trofimovich
2019-12-07 23:07 Matt Turner
2019-12-03 16:24 Jeroen Roovers
2019-12-01 13:59 Sergei Trofimovich
2019-12-01 13:52 Sergei Trofimovich
2019-11-30  4:30 Aaron Bauman
2019-11-29 23:04 Sergei Trofimovich
2019-11-27 13:05 Mikle Kolyada
2019-11-27  2:18 Patrick McLean
2018-12-08 17:43 Mikle Kolyada
2018-10-14 13:36 Mikle Kolyada
2018-08-15 11:39 Virgil Dupras
2018-08-15 11:39 Virgil Dupras
2018-03-13 19:52 Michał Górny
2018-01-02 22:14 Michał Górny
2017-05-03  6:15 Michał Górny
2017-02-27  1:07 Zac Medico
2017-01-23  6:35 Jeroen Roovers
2017-01-11  3:40 Lars Wendler
2017-01-11  3:40 Lars Wendler
2016-12-26 12:41 Markus Meier
2016-12-20 13:40 Tobias Klausmann
2016-12-06  9:04 Tobias Klausmann
2016-08-21 17:46 Tim Harder
2016-02-28  6:43 Matt Thode
2015-09-29  7:41 Justin Lecher
2015-09-05 13:18 Mike Gilbert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1498773800.4fe5577526780a5c44910894fef2464fbcfda032.bicatali@gentoo \
    --to=bicatali@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox