From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flit_core/
Date: Sun, 17 Oct 2021 08:23:34 +0000 (UTC) [thread overview]
Message-ID: <1634458999.a8c2cff5ff342b83aaddebda0d93907c1dd04270.mgorny@gentoo> (raw)
commit: a8c2cff5ff342b83aaddebda0d93907c1dd04270
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 17 08:17:39 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Oct 17 08:23:19 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8c2cff5
dev-python/flit_core: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/flit_core/Manifest | 3 ---
dev-python/flit_core/flit_core-2.1.0.ebuild | 39 -----------------------------
dev-python/flit_core/flit_core-3.2.0.ebuild | 27 --------------------
dev-python/flit_core/flit_core-3.3.0.ebuild | 27 --------------------
4 files changed, 96 deletions(-)
diff --git a/dev-python/flit_core/Manifest b/dev-python/flit_core/Manifest
index 2c4bdf1e138..53a6439c252 100644
--- a/dev-python/flit_core/Manifest
+++ b/dev-python/flit_core/Manifest
@@ -1,4 +1 @@
-DIST flit_core-2.1.0.tar.gz 22978 BLAKE2B 87cb5ced56666eb9ae4963628864b66c77758c823b34712770a61a52cb7916196c0d6f51e7b2ad9804b853f27a257966aabef7dd9c95155af8e76f5100b1c9fa SHA512 dfc11cdd62af367b56773e5e0b28763554cd27a272a040a5dd35c8fae4f1e6695b2e2b15b6e63f6aa52df9854874eccc31f6eaf5b349ed85aa33cc5e1d2e1acd
-DIST flit_core-3.2.0.tar.gz 27417 BLAKE2B 8fe53ee47ce9b850b9200f2c1c4c88e3f7e29257fb1c488e3eefe79121634ef4f272db7e96d9621962de2e576da5b684c64653475ebb702bee313564b7fb41cd SHA512 660b787f0a4fc85d8d893087369b378ba5583e1dad82feb8ca3737e70c8c0a5ab5d95a38b7d3e9edff481d5207e946f6e6c7e60f22f96a1de0d2daeef6f16c2b
-DIST flit_core-3.3.0.tar.gz 26424 BLAKE2B a7237b51f16ed4158d5f09cbe92ccee7cbb3b19e67937028e86f4e1c9d58c9fe9244ea6337bc7c7c5bb29e204d011ee95a6d3fbe596d728ce66f1e00a830fb0c SHA512 5d7b1a43a9d9a7c0cf30b1f73d208963ae51247aec2b9a91aad6412afe781ee927ddd82ecea6057d36ec18af917938500f518845206ec150dd6b604905a1f2f4
DIST flit_core-3.4.0.tar.gz 27151 BLAKE2B cc31bec47974842d34f62532a9099204aa71c91146758742db111b3eadb395c74de4fc63da0c08b59902cad9130ef16894a680fbc44ecd12d764ad4ae3b388cd SHA512 e391c947b00e023e4ba16043468579c5a1a7f42316d60afeef2eb65d3d7c6980cac1f484f52fea926d8071959fe1cde80d35488f53eec7c3fc6bf54133aee717
diff --git a/dev-python/flit_core/flit_core-2.1.0.ebuild b/dev-python/flit_core/flit_core-2.1.0.ebuild
deleted file mode 100644
index 4a9289a3043..00000000000
--- a/dev-python/flit_core/flit_core-2.1.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="Simplified packaging of Python modules (core module)"
-HOMEPAGE="https://pypi.org/project/flit-core/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
- dev-python/intreehooks[${PYTHON_USEDEP}]
- dev-python/toml[${PYTHON_USEDEP}]
-"
-BDEPEND="${RDEPEND}
- test? ( dev-python/testpath[${PYTHON_USEDEP}] )
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
- printf -- "from setuptools import setup, find_packages\nsetup(name='${PN//_/-}',version='${PV}',%s)" \
- "packages=find_packages()" > setup.py || die
-
- # use toml instead of depricated pytoml
- sed -e 's:import pytoml as toml:import toml:' \
- -i flit_core/inifile.py || die
- sed -e 's:pytoml:toml:' \
- -i flit_core/build_thyself.py || die
-
- distutils-r1_python_prepare_all
-}
diff --git a/dev-python/flit_core/flit_core-3.2.0.ebuild b/dev-python/flit_core/flit_core-3.2.0.ebuild
deleted file mode 100644
index 79bf4d0c2b8..00000000000
--- a/dev-python/flit_core/flit_core-3.2.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{7..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="Simplified packaging of Python modules (core module)"
-HOMEPAGE="https://pypi.org/project/flit-core/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
- dev-python/intreehooks[${PYTHON_USEDEP}]
- dev-python/toml[${PYTHON_USEDEP}]
-"
-BDEPEND="${RDEPEND}
- >=dev-python/pyproject2setuppy-11[${PYTHON_USEDEP}]
- test? ( dev-python/testpath[${PYTHON_USEDEP}] )
-"
-
-distutils_enable_tests pytest
diff --git a/dev-python/flit_core/flit_core-3.3.0.ebuild b/dev-python/flit_core/flit_core-3.3.0.ebuild
deleted file mode 100644
index 7b03f45f8e2..00000000000
--- a/dev-python/flit_core/flit_core-3.3.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="Simplified packaging of Python modules (core module)"
-HOMEPAGE="https://pypi.org/project/flit-core/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
-
-RDEPEND="
- dev-python/intreehooks[${PYTHON_USEDEP}]
- dev-python/toml[${PYTHON_USEDEP}]
-"
-BDEPEND="
- >=dev-python/pyproject2setuppy-11[${PYTHON_USEDEP}]
- test? ( dev-python/testpath[${PYTHON_USEDEP}] )
-"
-
-distutils_enable_tests pytest
next reply other threads:[~2021-10-17 8:23 UTC|newest]
Thread overview: 59+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-17 8:23 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-03-16 3:50 [gentoo-commits] repo/gentoo:master commit in: dev-python/flit_core/ Michał Górny
2022-11-25 14:04 Michał Górny
2022-11-25 14:04 Michał Górny
2022-11-25 13:54 Arthur Zamarin
2022-11-05 20:35 Arthur Zamarin
2022-03-26 18:14 Arthur Zamarin
2022-03-26 17:31 Arthur Zamarin
2022-02-23 21:30 Michał Górny
2022-02-22 18:55 Michał Górny
2022-02-11 20:52 Arthur Zamarin
2022-02-11 20:51 Arthur Zamarin
2022-02-11 12:25 Sam James
2022-02-10 11:43 Sam James
2022-02-10 11:43 Sam James
2022-02-10 11:43 Sam James
2022-02-10 10:45 Jakov Smolić
2022-02-10 10:45 Jakov Smolić
2022-01-31 0:57 Sam James
2022-01-26 11:32 Michał Górny
2022-01-26 10:51 Michał Górny
2022-01-17 5:33 Joshua Kinard
2022-01-16 23:16 James Le Cuirot
2022-01-16 18:39 Arthur Zamarin
2022-01-16 18:39 Arthur Zamarin
2022-01-16 18:39 Arthur Zamarin
2022-01-16 17:53 Michał Górny
2022-01-13 20:16 Michał Górny
2021-12-28 9:03 Michał Górny
2021-12-28 9:03 Michał Górny
2021-12-19 21:18 Michał Górny
2021-12-19 21:15 Michał Górny
2021-12-19 21:15 Michał Górny
2021-12-19 21:10 Arthur Zamarin
2021-12-19 21:07 Arthur Zamarin
2021-12-19 21:07 Arthur Zamarin
2021-12-19 21:07 Arthur Zamarin
2021-12-19 21:03 Arthur Zamarin
2021-11-23 22:05 Michał Górny
2021-11-19 11:39 Arthur Zamarin
2021-11-19 9:03 Michał Górny
2021-11-19 7:59 Arthur Zamarin
2021-11-18 10:50 Sam James
2021-11-15 16:29 Agostino Sarubbo
2021-10-24 4:51 Sam James
2021-10-24 2:27 Sam James
2021-10-24 0:19 Sam James
2021-10-11 7:56 Michał Górny
2021-10-10 20:43 Sam James
2021-10-10 2:20 Sam James
2021-10-10 0:09 Sam James
2021-10-09 20:19 Sam James
2021-09-24 22:48 Sam James
2021-08-01 9:39 Michał Górny
2021-05-24 19:42 Patrick McLean
2021-03-22 10:03 Michał Górny
2021-03-22 10:03 Michał Górny
2020-01-30 21:26 Michał Górny
2019-12-07 21:55 Patrick McLean
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=1634458999.a8c2cff5ff342b83aaddebda0d93907c1dd04270.mgorny@gentoo \
--to=mgorny@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