public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/emailthreads/
@ 2022-12-23 18:35 Julien Roy
  0 siblings, 0 replies; 3+ messages in thread
From: Julien Roy @ 2022-12-23 18:35 UTC (permalink / raw
  To: gentoo-commits

commit:     50029ec04f9cbb14455b9b7388edbfe255d27d7d
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Fri Dec 23 18:35:47 2022 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Fri Dec 23 18:35:47 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=50029ec0

dev-python/emailthreads: new package, add 0.1.3

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/emailthreads/Manifest                  |  1 +
 dev-python/emailthreads/emailthreads-0.1.3.ebuild | 23 +++++++++++++++++++++++
 dev-python/emailthreads/metadata.xml              | 19 +++++++++++++++++++
 3 files changed, 43 insertions(+)

diff --git a/dev-python/emailthreads/Manifest b/dev-python/emailthreads/Manifest
new file mode 100644
index 000000000..78d7fef69
--- /dev/null
+++ b/dev-python/emailthreads/Manifest
@@ -0,0 +1 @@
+DIST emailthreads-0.1.3.gh.tar.gz 25137 BLAKE2B fa23b219dc1d27eb5f7afd6a7afb4d28a0942290ebcc5bdd1e6070901a579479e19132a918dff363100e408cfe428d4fc6e9dceb0cc94af5a9bdfc2244b5ef54 SHA512 a8b8c374704ddf934897a50034da1ebf2dabf221a7e64735be9524088931a02697facc40ef08250f2148c4ea22b8a2f76139eea82d0d7474f822aaac3dee2666

diff --git a/dev-python/emailthreads/emailthreads-0.1.3.ebuild b/dev-python/emailthreads/emailthreads-0.1.3.ebuild
new file mode 100644
index 000000000..02e597ace
--- /dev/null
+++ b/dev-python/emailthreads/emailthreads-0.1.3.ebuild
@@ -0,0 +1,23 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="Parses email threads into conversation trees"
+HOMEPAGE="https://github.com/emersion/python-emailthreads"
+SRC_URI="https://github.com/emersion/python-${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND=""
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/python-${PN}-${PV}"
+
+distutils_enable_tests setup.py

diff --git a/dev-python/emailthreads/metadata.xml b/dev-python/emailthreads/metadata.xml
new file mode 100644
index 000000000..36831f686
--- /dev/null
+++ b/dev-python/emailthreads/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>julien@jroy.ca</email>
+		<name>Julien Roy</name>
+	</maintainer>
+	<longdescription>Python library to parse and format email threads. Give it a list of emails that are part of the same thread and it'll build a tree of responses to the original message.</longdescription>
+	<upstream>
+		<maintainer>
+			<name>Simon Ser</name>
+			<email>contact@emersion.fr</email>
+		</maintainer>
+		<changelog>https://github.com/emersion/python-emailthreads/releases</changelog>
+		<bugs-to>https://github.com/emersion/python-emailthreads/issues</bugs-to>
+		<remote-id type="github">emersion/python-emailthreads</remote-id>
+		<remote-id type="pypi">emailthreads</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/emailthreads/
@ 2022-12-27 15:01 Julien Roy
  0 siblings, 0 replies; 3+ messages in thread
From: Julien Roy @ 2022-12-27 15:01 UTC (permalink / raw
  To: gentoo-commits

commit:     e1b5a169f5462b001a02690fe76cca84cdebf68b
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue Dec 27 14:59:37 2022 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Tue Dec 27 15:01:30 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e1b5a169

dev-python/emailthreads: change ${S} location

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/emailthreads/emailthreads-0.1.3.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-python/emailthreads/emailthreads-0.1.3.ebuild b/dev-python/emailthreads/emailthreads-0.1.3.ebuild
index 02e597ace..96e2feecd 100644
--- a/dev-python/emailthreads/emailthreads-0.1.3.ebuild
+++ b/dev-python/emailthreads/emailthreads-0.1.3.ebuild
@@ -10,6 +10,7 @@ inherit distutils-r1
 DESCRIPTION="Parses email threads into conversation trees"
 HOMEPAGE="https://github.com/emersion/python-emailthreads"
 SRC_URI="https://github.com/emersion/python-${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/python-${PN}-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
@@ -18,6 +19,4 @@ KEYWORDS="~amd64"
 RDEPEND=""
 DEPEND="${RDEPEND}"
 
-S="${WORKDIR}/python-${PN}-${PV}"
-
 distutils_enable_tests setup.py


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/emailthreads/
  2024-03-02 18:23 [gentoo-commits] repo/proj/guru:master " Julien Roy
@ 2024-03-02 18:17 ` Julien Roy
  0 siblings, 0 replies; 3+ messages in thread
From: Julien Roy @ 2024-03-02 18:17 UTC (permalink / raw
  To: gentoo-commits

commit:     791b3ebe5cb82206f0f679e7198262512d3b515a
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Mar  2 18:12:50 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Mar  2 18:12:58 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=791b3ebe

dev-python/emailthreads: treeclean

Closes: https://bugs.gentoo.org/921802

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/emailthreads/Manifest                  |  1 -
 dev-python/emailthreads/emailthreads-0.1.3.ebuild | 22 ----------------------
 dev-python/emailthreads/metadata.xml              | 19 -------------------
 3 files changed, 42 deletions(-)

diff --git a/dev-python/emailthreads/Manifest b/dev-python/emailthreads/Manifest
deleted file mode 100644
index 78d7fef69d..0000000000
--- a/dev-python/emailthreads/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST emailthreads-0.1.3.gh.tar.gz 25137 BLAKE2B fa23b219dc1d27eb5f7afd6a7afb4d28a0942290ebcc5bdd1e6070901a579479e19132a918dff363100e408cfe428d4fc6e9dceb0cc94af5a9bdfc2244b5ef54 SHA512 a8b8c374704ddf934897a50034da1ebf2dabf221a7e64735be9524088931a02697facc40ef08250f2148c4ea22b8a2f76139eea82d0d7474f822aaac3dee2666

diff --git a/dev-python/emailthreads/emailthreads-0.1.3.ebuild b/dev-python/emailthreads/emailthreads-0.1.3.ebuild
deleted file mode 100644
index 4a02155fb0..0000000000
--- a/dev-python/emailthreads/emailthreads-0.1.3.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 2022 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
-
-DESCRIPTION="Parses email threads into conversation trees"
-HOMEPAGE="https://github.com/emersion/python-emailthreads"
-SRC_URI="https://github.com/emersion/python-${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
-S="${WORKDIR}/python-${PN}-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND=""
-DEPEND="${RDEPEND}"
-
-distutils_enable_tests setup.py

diff --git a/dev-python/emailthreads/metadata.xml b/dev-python/emailthreads/metadata.xml
deleted file mode 100644
index 36831f6867..0000000000
--- a/dev-python/emailthreads/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="person">
-		<email>julien@jroy.ca</email>
-		<name>Julien Roy</name>
-	</maintainer>
-	<longdescription>Python library to parse and format email threads. Give it a list of emails that are part of the same thread and it'll build a tree of responses to the original message.</longdescription>
-	<upstream>
-		<maintainer>
-			<name>Simon Ser</name>
-			<email>contact@emersion.fr</email>
-		</maintainer>
-		<changelog>https://github.com/emersion/python-emailthreads/releases</changelog>
-		<bugs-to>https://github.com/emersion/python-emailthreads/issues</bugs-to>
-		<remote-id type="github">emersion/python-emailthreads</remote-id>
-		<remote-id type="pypi">emailthreads</remote-id>
-	</upstream>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-03-02 18:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-23 18:35 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/emailthreads/ Julien Roy
  -- strict thread matches above, loose matches on Subject: below --
2022-12-27 15:01 Julien Roy
2024-03-02 18:23 [gentoo-commits] repo/proj/guru:master " Julien Roy
2024-03-02 18:17 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox