public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Takuya Wakazono" <pastalian46@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/dateparser/
Date: Thu, 25 Jan 2024 13:55:35 +0000 (UTC)	[thread overview]
Message-ID: <1706190380.ed25991dea137ca16f3ed3cb98f833eaf71e57ca.pastalian46@gentoo> (raw)

commit:     ed25991dea137ca16f3ed3cb98f833eaf71e57ca
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Thu Jan 25 13:39:41 2024 +0000
Commit:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
CommitDate: Thu Jan 25 13:46:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ed25991d

dev-python/dateparser: drop 1.1.7, 1.1.8

Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 dev-python/dateparser/Manifest                |  2 -
 dev-python/dateparser/dateparser-1.1.7.ebuild | 53 ------------------------
 dev-python/dateparser/dateparser-1.1.8.ebuild | 58 ---------------------------
 3 files changed, 113 deletions(-)

diff --git a/dev-python/dateparser/Manifest b/dev-python/dateparser/Manifest
index 55dd072a80..44c8fffea2 100644
--- a/dev-python/dateparser/Manifest
+++ b/dev-python/dateparser/Manifest
@@ -1,3 +1 @@
-DIST dateparser-1.1.7.tar.gz 295818 BLAKE2B 11bb07f6c3c46a5e19111715a8801b8789d7f1fd0fd407232a071ddd40b337153dce3b42197f3a2fd8081c505f4418abb3ff265e25641a95eed31575c6ad2a70 SHA512 d333fa2007c069f7424def9694544767a8885eec5d476e9dd73605754fd53f5a9dbbeb19f24291ac6c6ffa09b4014a3135ad8fbabadae1655c78a8d5fe36f907
-DIST dateparser-1.1.8.tar.gz 296595 BLAKE2B 0e1bedbfc0b54d3a763a5f982774685e0c4aebe418dcfe5190c613a6de1e8d445c9906b9c7e8ca87ea37b2ef508eb8bd789e07b7b5f11fac3df7d16f24a08c00 SHA512 45fc6ee67be77ae9ece818b25e680a9416c30bbe8d71746a2b08910b57406d65e6b9f0c51ada1697034ea1f3f9a0952c2f0616c9fa1be4c7886e459e1cc2d898
 DIST dateparser-1.2.0.tar.gz 307260 BLAKE2B b4611dfc4fccaf5f129e4d9aa3debe4a6d4242a44896305b909e6c34728ba153be92659b2f0c3a5da028d3863789d9c3a4236676087346b5f3f4aeb1f57b7a1e SHA512 74d5975f515dee096d83d10b72e5dc66ab197d50f24c129560ffb87eef4abd1422d8236555496d1ab1c0bfb832729e9c0d3ea2ca2c9c49da19963f0f2c1c1eb4

diff --git a/dev-python/dateparser/dateparser-1.1.7.ebuild b/dev-python/dateparser/dateparser-1.1.7.ebuild
deleted file mode 100644
index 744f0b6ad5..0000000000
--- a/dev-python/dateparser/dateparser-1.1.7.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..11} )
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1 optfeature pypi
-
-DESCRIPTION="Date parsing library designed to parse dates from HTML pages"
-HOMEPAGE="
-	https://pypi.org/project/dateparser/
-	https://github.com/scrapinghub/dateparser
-"
-
-LICENSE="BSD-4"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	dev-python/python-dateutil[${PYTHON_USEDEP}]
-	dev-python/pytz[${PYTHON_USEDEP}]
-	dev-python/regex[${PYTHON_USEDEP}]
-	dev-python/tzlocal[${PYTHON_USEDEP}]
-"
-BDEPEND="test? (
-	dev-libs/fastText[python,${PYTHON_USEDEP}]
-	dev-python/convertdate[${PYTHON_USEDEP}]
-	dev-python/hijri-converter[${PYTHON_USEDEP}]
-	dev-python/langdetect[${PYTHON_USEDEP}]
-	dev-python/parameterized[${PYTHON_USEDEP}]
-)"
-
-EPYTEST_IGNORE=(
-	# tests that require network
-	tests/test_dateparser_data_integrity.py
-)
-
-EPYTEST_DESELECT=(
-	# tests that require network
-	tests/test_language_detect.py::CustomLangDetectParserTest::test_custom_language_detect_fast_text_{0,1}
-)
-
-distutils_enable_tests pytest
-
-distutils_enable_sphinx docs \
-	dev-python/sphinx-rtd-theme
-
-pkg_postinst() {
-	optfeature "calendars support" "dev-python/hijri-converter dev-python/convertdate"
-	optfeature "fasttext support" "dev-libs/fastText[python]"
-	optfeature "langdetect support" dev-python/langdetect
-}

diff --git a/dev-python/dateparser/dateparser-1.1.8.ebuild b/dev-python/dateparser/dateparser-1.1.8.ebuild
deleted file mode 100644
index 5133e74d74..0000000000
--- a/dev-python/dateparser/dateparser-1.1.8.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..11} )
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1 optfeature pypi
-
-DESCRIPTION="Date parsing library designed to parse dates from HTML pages"
-HOMEPAGE="
-	https://pypi.org/project/dateparser/
-	https://github.com/scrapinghub/dateparser
-"
-
-LICENSE="BSD-4"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	dev-python/python-dateutil[${PYTHON_USEDEP}]
-	dev-python/pytz[${PYTHON_USEDEP}]
-	dev-python/regex[${PYTHON_USEDEP}]
-	dev-python/tzlocal[${PYTHON_USEDEP}]
-"
-BDEPEND="test? (
-	dev-libs/fastText[python,${PYTHON_USEDEP}]
-	dev-python/convertdate[${PYTHON_USEDEP}]
-	dev-python/hijri-converter[${PYTHON_USEDEP}]
-	dev-python/langdetect[${PYTHON_USEDEP}]
-	dev-python/parameterized[${PYTHON_USEDEP}]
-)"
-
-EPYTEST_IGNORE=(
-	# tests that require network
-	tests/test_dateparser_data_integrity.py
-)
-
-EPYTEST_DESELECT=(
-	# tests that require network
-	tests/test_language_detect.py::CustomLangDetectParserTest::test_custom_language_detect_fast_text_{0,1}
-	# broken
-	tests/test_search.py::TestTranslateSearch::test_relative_base_setting_1_en
-	tests/test_search.py::TestTranslateSearch::test_splitting_of_not_parsed_1_en
-	tests/test_search.py::TestTranslateSearch::test_splitting_of_not_parsed_5_en
-	tests/test_search.py::TestTranslateSearch::test_splitting_of_not_parsed_6_sv
-)
-
-distutils_enable_tests pytest
-
-distutils_enable_sphinx docs \
-	dev-python/sphinx-rtd-theme
-
-pkg_postinst() {
-	optfeature "calendars support" "dev-python/hijri-converter dev-python/convertdate"
-	optfeature "fasttext support" "dev-libs/fastText[python]"
-	optfeature "langdetect support" dev-python/langdetect
-}


             reply	other threads:[~2024-01-25 13:55 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-25 13:55 Takuya Wakazono [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-26 10:16 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/dateparser/ Takuya Wakazono
2023-03-24 11:17 Anna Vyalkova
2023-02-25 23:27 Anna Vyalkova
2023-01-13 10:46 Anna Vyalkova
2023-01-01  0:19 Anna Vyalkova
2022-11-23  7:32 Anna Vyalkova
2022-11-22  7:32 Anna Vyalkova
2022-03-31  7:24 Anna Vyalkova
2022-01-09  0:01 Anna Vyalkova
2021-12-07 20:42 Maciej Barć
2021-11-08 23:32 Maciej Barć
2021-06-03 17:36 Maciej Barć
2021-02-19  4:34 Maciej Barć
2020-12-18 16:26 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-12-18 16:17 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-09-27  4:01 Maciej Barć
2020-05-03  9:33 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-05-03  9:12 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-05-02 16:46 Maciej Barć

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=1706190380.ed25991dea137ca16f3ed3cb98f833eaf71e57ca.pastalian46@gentoo \
    --to=pastalian46@gmail.com \
    --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