* [gentoo-commits] repo/gentoo:master commit in: app-vim/iris/
@ 2020-07-02 21:53 Patrice Clement
0 siblings, 0 replies; 3+ messages in thread
From: Patrice Clement @ 2020-07-02 21:53 UTC (permalink / raw
To: gentoo-commits
commit: 7768bf09cf044c36623435166cbce2d1b7897f3a
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 2 21:52:56 2020 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Jul 2 21:53:19 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7768bf09
app-vim/iris: new ebuild.
iris an IMAP mail client for vim.
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
app-vim/iris/Manifest | 1 +
app-vim/iris/iris-1.0.0.ebuild | 37 +++++++++++++++++++++++++++++++++++++
app-vim/iris/metadata.xml | 14 ++++++++++++++
3 files changed, 52 insertions(+)
diff --git a/app-vim/iris/Manifest b/app-vim/iris/Manifest
new file mode 100644
index 00000000000..7d93223a466
--- /dev/null
+++ b/app-vim/iris/Manifest
@@ -0,0 +1 @@
+DIST iris-1.0.0.tar.gz 15607 BLAKE2B f78155c7cdfce046c48f9a29ca2855212ebd5d7f5aabd7b3a605ca8257b1a99e6d0c005c3641f69a33f6d3b2335b2a68da9653c2487b4f5863ba96cc3323ee10 SHA512 0b8b74935c2844dbb874e18683fd65602820c13dfc50cc73425ac80440f898432eb1eb4af6e3b73cef5733ea9e7c1aa97d19f67e6d1a277592c359519dcc418c
diff --git a/app-vim/iris/iris-1.0.0.ebuild b/app-vim/iris/iris-1.0.0.ebuild
new file mode 100644
index 00000000000..8e10bcffdb9
--- /dev/null
+++ b/app-vim/iris/iris-1.0.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{3_7,3_8} )
+
+inherit vim-plugin python-r1
+
+MY_PN="iris.vim"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="vim plugin: mail client for vim"
+HOMEPAGE="https://github.com/soywod/iris.vim"
+SRC_URI="https://github.com/soywod/iris.vim/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="
+ dev-python/imapclient
+ ${PYTHON_DEPS}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_install() {
+ mv api.py iris-api || die
+ mv idle.py iris-idle || die
+ sed -e 's#api\.py#iris-api#g;' -i autoload/iris/api.vim || die
+ sed -e 's#idle\.py#iris-idle#g;' -i autoload/iris/idle.vim || die
+ python_foreach_impl python_doscript iris-api
+ python_foreach_impl python_doscript iris-idle
+
+ vim-plugin_src_install
+}
diff --git a/app-vim/iris/metadata.xml b/app-vim/iris/metadata.xml
new file mode 100644
index 00000000000..8ecaaddf714
--- /dev/null
+++ b/app-vim/iris/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>vim@gentoo.org</email>
+ <name>Gentoo Vim Project</name>
+ </maintainer>
+ <maintainer type="person">
+ <email>monsieurp@gentoo.org</email>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">soywod/iris.vim</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/iris/
@ 2022-09-07 18:33 Arthur Zamarin
0 siblings, 0 replies; 3+ messages in thread
From: Arthur Zamarin @ 2022-09-07 18:33 UTC (permalink / raw
To: gentoo-commits
commit: 74fa6ef60b8c0bef4779d818011f8c0b117a254b
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 7 18:27:26 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 7 18:33:32 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74fa6ef6
app-vim/iris: enable py3.10, py3.9 and disable py3.7
Closes: https://bugs.gentoo.org/832241
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-vim/iris/iris-1.0.0.ebuild | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/app-vim/iris/iris-1.0.0.ebuild b/app-vim/iris/iris-1.0.0.ebuild
index ab566c61d3f9..bac5a5b5b601 100644
--- a/app-vim/iris/iris-1.0.0.ebuild
+++ b/app-vim/iris/iris-1.0.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python{3_7,3_8} )
+PYTHON_COMPAT=( python3_{8..10} )
inherit vim-plugin python-r1
@@ -13,17 +13,16 @@ MY_P="${MY_PN}-${PV}"
DESCRIPTION="vim plugin: mail client for vim"
HOMEPAGE="https://github.com/soywod/iris.vim"
SRC_URI="https://github.com/soywod/iris.vim/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
LICENSE="MIT"
KEYWORDS="~amd64 ~x86"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-RDEPEND="
- dev-python/imapclient
- ${PYTHON_DEPS}"
-
-S="${WORKDIR}/${MY_P}"
+RDEPEND="${PYTHON_DEPS}
+ dev-python/imapclient[${PYTHON_USEDEP}]
+"
DOCS=( README.md CHANGELOG.md )
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-vim/iris/
@ 2024-07-05 10:37 Arthur Zamarin
0 siblings, 0 replies; 3+ messages in thread
From: Arthur Zamarin @ 2024-07-05 10:37 UTC (permalink / raw
To: gentoo-commits
commit: 4a68e4691b418ceac53660399b874f796fd723c4
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 5 10:29:04 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 5 10:36:51 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a68e469
app-vim/iris: EAPI=8, enable py3.11, py3.12
Closes: https://bugs.gentoo.org/896652
Closes: https://bugs.gentoo.org/929373
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-vim/iris/{iris-1.0.0.ebuild => iris-1.0.0-r1.ebuild} | 12 ++++--------
1 file changed, 4 insertions(+), 8 deletions(-)
diff --git a/app-vim/iris/iris-1.0.0.ebuild b/app-vim/iris/iris-1.0.0-r1.ebuild
similarity index 84%
rename from app-vim/iris/iris-1.0.0.ebuild
rename to app-vim/iris/iris-1.0.0-r1.ebuild
index 984316d0a73f..c085f852da3e 100644
--- a/app-vim/iris/iris-1.0.0.ebuild
+++ b/app-vim/iris/iris-1.0.0-r1.ebuild
@@ -1,23 +1,19 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{10..12} )
inherit vim-plugin python-r1
-MY_PN="iris.vim"
-MY_P="${MY_PN}-${PV}"
-
DESCRIPTION="vim plugin: mail client for vim"
HOMEPAGE="https://github.com/soywod/iris.vim"
SRC_URI="https://github.com/soywod/iris.vim/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
+S="${WORKDIR}/iris.vim-${PV}"
LICENSE="MIT"
KEYWORDS="~amd64 ~x86"
-
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-07-05 10:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-02 21:53 [gentoo-commits] repo/gentoo:master commit in: app-vim/iris/ Patrice Clement
-- strict thread matches above, loose matches on Subject: below --
2022-09-07 18:33 Arthur Zamarin
2024-07-05 10:37 Arthur Zamarin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox