* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2020-06-08 7:46 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2020-06-08 7:46 UTC (permalink / raw
To: gentoo-commits
commit: cfb881f34b6b0be64a8fe737760ff16f4d5dab91
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Thu Feb 20 04:00:22 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Jun 8 07:45:18 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfb881f3
mail-client/mutt-wizard: added mutt-wizard with dated ebuild
Closes: https://bugs.gentoo.org/713890
A system for automatically configuring neomutt and isync with a simple
interface and safe passwords. Support for multiple domains and automatic
offline email sync. Integrable with a lot of other utilities for additional
functionality for managing emails.
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/14713
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
mail-client/mutt-wizard/Manifest | 1 +
mail-client/mutt-wizard/metadata.xml | 18 ++++++++
.../mutt-wizard/mutt-wizard-0_pre20200606.ebuild | 48 ++++++++++++++++++++++
mail-client/mutt-wizard/mutt-wizard-9999.ebuild | 48 ++++++++++++++++++++++
4 files changed, 115 insertions(+)
diff --git a/mail-client/mutt-wizard/Manifest b/mail-client/mutt-wizard/Manifest
new file mode 100644
index 00000000000..2fe037de081
--- /dev/null
+++ b/mail-client/mutt-wizard/Manifest
@@ -0,0 +1 @@
+DIST mutt-wizard-0_pre20200606.tar.gz 32391 BLAKE2B 2ea165c8a94ebb7a7e28ff466c93f87a0a9f89de98ad71039ea610b6120c1c89922a39ee505159e4139d9a6d29b727ae706a2ec57378b838774a7564afe54e74 SHA512 008688a7d7ad8d895334900a0a060a7c3724519a4a49120d50e9cb0b1cad6e3c63fd7f16985333e35fb46b1bdaae3934750fbc52370dc36927f9bc8482fb5363
diff --git a/mail-client/mutt-wizard/metadata.xml b/mail-client/mutt-wizard/metadata.xml
new file mode 100644
index 00000000000..9dcfae8270a
--- /dev/null
+++ b/mail-client/mutt-wizard/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <longdescription>
+ A system for automatically configuring neomutt and isync with a simple
+ interface and safe passwords. Support for multiple domains and automatic
+ offline email sync. Integrable with a lot of other utilities for additional
+ functionality for managing emails.
+ </longdescription>
+ <maintainer type="person">
+ <email>gentoo@aisha.cc</email>
+ <name>Aisha Tammy</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/mail-client/mutt-wizard/mutt-wizard-0_pre20200606.ebuild b/mail-client/mutt-wizard/mutt-wizard-0_pre20200606.ebuild
new file mode 100644
index 00000000000..9eaf3859515
--- /dev/null
+++ b/mail-client/mutt-wizard/mutt-wizard-0_pre20200606.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils
+
+DESCRIPTION="A system for automatically configuring neomutt and isync"
+HOMEPAGE="https://github.com/LukeSmithxyz/mutt-wizard"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard.git"
+else
+ COMMIT=9ec2a49af03cf542c7db82bc0dd0ccdde81922d4
+ SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+ S="${WORKDIR}/${PN}-${COMMIT}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+RDEPEND="
+ app-admin/pass
+ mail-client/neomutt[notmuch]
+ mail-mta/msmtp
+ net-mail/isync[ssl]
+"
+
+# needed because there is no 'all' target defined in MAKEFILE
+src_compile() {
+ return 0;
+}
+
+src_install() {
+ emake PREFIX="/usr" DESTDIR="${D}" install
+ einstalldocs
+}
+
+pkg_postinst() {
+ optfeature "enable viewing html mails" www-client/lynx
+ optfeature "enable periodic syncing of mails" virtual/cron
+ optfeature "enable viewing of simple images" media-gfx/imagemagick
+ optfeature "enable notifications when syncing using mailsync" x11-libs/libnotify
+ optfeature "enable command line address book" app-misc/abook
+ optfeature "enable use of gpg for signing and verifying" app-crypt/gnupg
+}
diff --git a/mail-client/mutt-wizard/mutt-wizard-9999.ebuild b/mail-client/mutt-wizard/mutt-wizard-9999.ebuild
new file mode 100644
index 00000000000..9eaf3859515
--- /dev/null
+++ b/mail-client/mutt-wizard/mutt-wizard-9999.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils
+
+DESCRIPTION="A system for automatically configuring neomutt and isync"
+HOMEPAGE="https://github.com/LukeSmithxyz/mutt-wizard"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard.git"
+else
+ COMMIT=9ec2a49af03cf542c7db82bc0dd0ccdde81922d4
+ SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+ S="${WORKDIR}/${PN}-${COMMIT}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+RDEPEND="
+ app-admin/pass
+ mail-client/neomutt[notmuch]
+ mail-mta/msmtp
+ net-mail/isync[ssl]
+"
+
+# needed because there is no 'all' target defined in MAKEFILE
+src_compile() {
+ return 0;
+}
+
+src_install() {
+ emake PREFIX="/usr" DESTDIR="${D}" install
+ einstalldocs
+}
+
+pkg_postinst() {
+ optfeature "enable viewing html mails" www-client/lynx
+ optfeature "enable periodic syncing of mails" virtual/cron
+ optfeature "enable viewing of simple images" media-gfx/imagemagick
+ optfeature "enable notifications when syncing using mailsync" x11-libs/libnotify
+ optfeature "enable command line address book" app-misc/abook
+ optfeature "enable use of gpg for signing and verifying" app-crypt/gnupg
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2020-08-21 7:15 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2020-08-21 7:15 UTC (permalink / raw
To: gentoo-commits
commit: 01575ebca75d1e6d5b9974685e294f9cb8478b6e
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Aug 11 22:40:44 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Aug 21 07:14:45 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01575ebc
mail-client/mutt-wizard: remove old version
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/17094
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
mail-client/mutt-wizard/Manifest | 1 -
.../mutt-wizard/mutt-wizard-0_pre20200606.ebuild | 48 ----------------------
2 files changed, 49 deletions(-)
diff --git a/mail-client/mutt-wizard/Manifest b/mail-client/mutt-wizard/Manifest
index 3ef08774caf..8a91ae2de62 100644
--- a/mail-client/mutt-wizard/Manifest
+++ b/mail-client/mutt-wizard/Manifest
@@ -1,2 +1 @@
-DIST mutt-wizard-0_pre20200606.tar.gz 32391 BLAKE2B 2ea165c8a94ebb7a7e28ff466c93f87a0a9f89de98ad71039ea610b6120c1c89922a39ee505159e4139d9a6d29b727ae706a2ec57378b838774a7564afe54e74 SHA512 008688a7d7ad8d895334900a0a060a7c3724519a4a49120d50e9cb0b1cad6e3c63fd7f16985333e35fb46b1bdaae3934750fbc52370dc36927f9bc8482fb5363
DIST mutt-wizard-0_pre20200808.tar.gz 30797 BLAKE2B 90b7382b6d2a687fa2ce5b267a00ee582c1ea89169185eb556f7e3aab4bbc822068fd691fbdaa843df0c525ec737a34acb39bc8a09d3c608837487825e57344b SHA512 e49de65658d4222d8932b1dd117631fffcd08493dc6e20a5157f8a3e336e179bf754ef64387f2b538c70898183a0413c99425a2751debb4b8d7cea5465076f57
diff --git a/mail-client/mutt-wizard/mutt-wizard-0_pre20200606.ebuild b/mail-client/mutt-wizard/mutt-wizard-0_pre20200606.ebuild
deleted file mode 100644
index 9eaf3859515..00000000000
--- a/mail-client/mutt-wizard/mutt-wizard-0_pre20200606.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit eutils
-
-DESCRIPTION="A system for automatically configuring neomutt and isync"
-HOMEPAGE="https://github.com/LukeSmithxyz/mutt-wizard"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard.git"
-else
- COMMIT=9ec2a49af03cf542c7db82bc0dd0ccdde81922d4
- SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
- S="${WORKDIR}/${PN}-${COMMIT}"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-RDEPEND="
- app-admin/pass
- mail-client/neomutt[notmuch]
- mail-mta/msmtp
- net-mail/isync[ssl]
-"
-
-# needed because there is no 'all' target defined in MAKEFILE
-src_compile() {
- return 0;
-}
-
-src_install() {
- emake PREFIX="/usr" DESTDIR="${D}" install
- einstalldocs
-}
-
-pkg_postinst() {
- optfeature "enable viewing html mails" www-client/lynx
- optfeature "enable periodic syncing of mails" virtual/cron
- optfeature "enable viewing of simple images" media-gfx/imagemagick
- optfeature "enable notifications when syncing using mailsync" x11-libs/libnotify
- optfeature "enable command line address book" app-misc/abook
- optfeature "enable use of gpg for signing and verifying" app-crypt/gnupg
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2020-08-21 7:15 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2020-08-21 7:15 UTC (permalink / raw
To: gentoo-commits
commit: a5ebc9e221f29a92ece0eef16daab03e3be233ac
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Aug 11 22:40:13 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Aug 21 07:14:45 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5ebc9e2
mail-client/mutt-wizard: bump dated version
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
mail-client/mutt-wizard/Manifest | 1 +
.../mutt-wizard/mutt-wizard-0_pre20200808.ebuild | 48 ++++++++++++++++++++++
2 files changed, 49 insertions(+)
diff --git a/mail-client/mutt-wizard/Manifest b/mail-client/mutt-wizard/Manifest
index 2fe037de081..3ef08774caf 100644
--- a/mail-client/mutt-wizard/Manifest
+++ b/mail-client/mutt-wizard/Manifest
@@ -1 +1,2 @@
DIST mutt-wizard-0_pre20200606.tar.gz 32391 BLAKE2B 2ea165c8a94ebb7a7e28ff466c93f87a0a9f89de98ad71039ea610b6120c1c89922a39ee505159e4139d9a6d29b727ae706a2ec57378b838774a7564afe54e74 SHA512 008688a7d7ad8d895334900a0a060a7c3724519a4a49120d50e9cb0b1cad6e3c63fd7f16985333e35fb46b1bdaae3934750fbc52370dc36927f9bc8482fb5363
+DIST mutt-wizard-0_pre20200808.tar.gz 30797 BLAKE2B 90b7382b6d2a687fa2ce5b267a00ee582c1ea89169185eb556f7e3aab4bbc822068fd691fbdaa843df0c525ec737a34acb39bc8a09d3c608837487825e57344b SHA512 e49de65658d4222d8932b1dd117631fffcd08493dc6e20a5157f8a3e336e179bf754ef64387f2b538c70898183a0413c99425a2751debb4b8d7cea5465076f57
diff --git a/mail-client/mutt-wizard/mutt-wizard-0_pre20200808.ebuild b/mail-client/mutt-wizard/mutt-wizard-0_pre20200808.ebuild
new file mode 100644
index 00000000000..49dfef7ec51
--- /dev/null
+++ b/mail-client/mutt-wizard/mutt-wizard-0_pre20200808.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils
+
+DESCRIPTION="A system for automatically configuring neomutt and isync"
+HOMEPAGE="https://github.com/LukeSmithxyz/mutt-wizard"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard.git"
+else
+ COMMIT=1492a11b3ee0a1c3f5544a351089ff154521b68b
+ SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+ S="${WORKDIR}/${PN}-${COMMIT}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+RDEPEND="
+ app-admin/pass
+ mail-client/neomutt[notmuch]
+ mail-mta/msmtp
+ net-mail/isync[ssl]
+"
+
+# needed because there is no 'all' target defined in MAKEFILE
+src_compile() {
+ return 0;
+}
+
+src_install() {
+ emake PREFIX="/usr" DESTDIR="${D}" install
+ einstalldocs
+}
+
+pkg_postinst() {
+ optfeature "enable viewing html mails" www-client/lynx
+ optfeature "enable periodic syncing of mails" virtual/cron
+ optfeature "enable viewing of simple images" media-gfx/imagemagick
+ optfeature "enable notifications when syncing using mailsync" x11-libs/libnotify
+ optfeature "enable command line address book" app-misc/abook
+ optfeature "enable use of gpg for signing and verifying" app-crypt/gnupg
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2021-01-22 4:15 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2021-01-22 4:15 UTC (permalink / raw
To: gentoo-commits
commit: c7c424dbd6f41ce918c5a5c02ac503b4039d3853
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Jan 19 00:44:19 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 22 03:56:38 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7c424db
mail-client/mutt-wizard: version bump to 3.1.1
upstream finally started releasing versions :D
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Signed-off-by: Sam James <sam <AT> gentoo.org>
mail-client/mutt-wizard/Manifest | 1 +
.../{mutt-wizard-9999.ebuild => mutt-wizard-3.1.1.ebuild} | 6 ++----
mail-client/mutt-wizard/mutt-wizard-9999.ebuild | 6 ++----
3 files changed, 5 insertions(+), 8 deletions(-)
diff --git a/mail-client/mutt-wizard/Manifest b/mail-client/mutt-wizard/Manifest
index 8a91ae2de62..bbade360d27 100644
--- a/mail-client/mutt-wizard/Manifest
+++ b/mail-client/mutt-wizard/Manifest
@@ -1 +1,2 @@
DIST mutt-wizard-0_pre20200808.tar.gz 30797 BLAKE2B 90b7382b6d2a687fa2ce5b267a00ee582c1ea89169185eb556f7e3aab4bbc822068fd691fbdaa843df0c525ec737a34acb39bc8a09d3c608837487825e57344b SHA512 e49de65658d4222d8932b1dd117631fffcd08493dc6e20a5157f8a3e336e179bf754ef64387f2b538c70898183a0413c99425a2751debb4b8d7cea5465076f57
+DIST mutt-wizard-3.1.1.tar.gz 33346 BLAKE2B 0f4d8e973fedc0d102242a06922627039f4244ad9fc901d6e3d7235089164c3a7f255587978c95762242146441d8a48f57401e9ec86754194b531d38f0074652 SHA512 b385bab603eff561bca8aade49f3d11a4ac031cbceb4a64d80be9b591dc34757a05bb3c56c23ec9f1942392833725872d4871bf34964c4503bc01d5223286ddb
diff --git a/mail-client/mutt-wizard/mutt-wizard-9999.ebuild b/mail-client/mutt-wizard/mutt-wizard-3.1.1.ebuild
similarity index 83%
copy from mail-client/mutt-wizard/mutt-wizard-9999.ebuild
copy to mail-client/mutt-wizard/mutt-wizard-3.1.1.ebuild
index 995d3d16cda..dc33b5c3168 100644
--- a/mail-client/mutt-wizard/mutt-wizard-9999.ebuild
+++ b/mail-client/mutt-wizard/mutt-wizard-3.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -12,10 +12,8 @@ if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard.git"
else
- COMMIT=9ec2a49af03cf542c7db82bc0dd0ccdde81922d4
- SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+ SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
- S="${WORKDIR}/${PN}-${COMMIT}"
fi
LICENSE="GPL-3"
diff --git a/mail-client/mutt-wizard/mutt-wizard-9999.ebuild b/mail-client/mutt-wizard/mutt-wizard-9999.ebuild
index 995d3d16cda..dc33b5c3168 100644
--- a/mail-client/mutt-wizard/mutt-wizard-9999.ebuild
+++ b/mail-client/mutt-wizard/mutt-wizard-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -12,10 +12,8 @@ if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard.git"
else
- COMMIT=9ec2a49af03cf542c7db82bc0dd0ccdde81922d4
- SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+ SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
- S="${WORKDIR}/${PN}-${COMMIT}"
fi
LICENSE="GPL-3"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2021-01-22 4:15 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2021-01-22 4:15 UTC (permalink / raw
To: gentoo-commits
commit: 140ee803a46524ab5a1dcb0916341f88938cb75d
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Jan 19 00:44:40 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 22 03:56:38 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=140ee803
mail-client/mutt-wizard: drop commit based old version
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/19119
Signed-off-by: Sam James <sam <AT> gentoo.org>
mail-client/mutt-wizard/Manifest | 1 -
.../mutt-wizard/mutt-wizard-0_pre20200808.ebuild | 48 ----------------------
2 files changed, 49 deletions(-)
diff --git a/mail-client/mutt-wizard/Manifest b/mail-client/mutt-wizard/Manifest
index bbade360d27..062ed1c019f 100644
--- a/mail-client/mutt-wizard/Manifest
+++ b/mail-client/mutt-wizard/Manifest
@@ -1,2 +1 @@
-DIST mutt-wizard-0_pre20200808.tar.gz 30797 BLAKE2B 90b7382b6d2a687fa2ce5b267a00ee582c1ea89169185eb556f7e3aab4bbc822068fd691fbdaa843df0c525ec737a34acb39bc8a09d3c608837487825e57344b SHA512 e49de65658d4222d8932b1dd117631fffcd08493dc6e20a5157f8a3e336e179bf754ef64387f2b538c70898183a0413c99425a2751debb4b8d7cea5465076f57
DIST mutt-wizard-3.1.1.tar.gz 33346 BLAKE2B 0f4d8e973fedc0d102242a06922627039f4244ad9fc901d6e3d7235089164c3a7f255587978c95762242146441d8a48f57401e9ec86754194b531d38f0074652 SHA512 b385bab603eff561bca8aade49f3d11a4ac031cbceb4a64d80be9b591dc34757a05bb3c56c23ec9f1942392833725872d4871bf34964c4503bc01d5223286ddb
diff --git a/mail-client/mutt-wizard/mutt-wizard-0_pre20200808.ebuild b/mail-client/mutt-wizard/mutt-wizard-0_pre20200808.ebuild
deleted file mode 100644
index 7dacc055767..00000000000
--- a/mail-client/mutt-wizard/mutt-wizard-0_pre20200808.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit optfeature
-
-DESCRIPTION="A system for automatically configuring neomutt and isync"
-HOMEPAGE="https://github.com/LukeSmithxyz/mutt-wizard"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard.git"
-else
- COMMIT=1492a11b3ee0a1c3f5544a351089ff154521b68b
- SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
- S="${WORKDIR}/${PN}-${COMMIT}"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-RDEPEND="
- app-admin/pass
- mail-client/neomutt[notmuch]
- mail-mta/msmtp
- net-mail/isync[ssl]
-"
-
-# needed because there is no 'all' target defined in MAKEFILE
-src_compile() {
- return 0;
-}
-
-src_install() {
- emake PREFIX="/usr" DESTDIR="${D}" install
- einstalldocs
-}
-
-pkg_postinst() {
- optfeature "enable viewing html mails" www-client/lynx
- optfeature "enable periodic syncing of mails" virtual/cron
- optfeature "enable viewing of simple images" media-gfx/imagemagick
- optfeature "enable notifications when syncing using mailsync" x11-libs/libnotify
- optfeature "enable command line address book" app-misc/abook
- optfeature "enable use of gpg for signing and verifying" app-crypt/gnupg
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2021-02-12 15:10 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2021-02-12 15:10 UTC (permalink / raw
To: gentoo-commits
commit: 315c8dd574b458b417d16e4cba74d84acb22fa75
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 12 14:47:46 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Feb 12 15:10:13 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=315c8dd5
mail-client/mutt-wizard: respect EPREFIX
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild b/mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild
index dc33b5c3168..118819de42a 100644
--- a/mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild
+++ b/mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild
@@ -32,7 +32,7 @@ src_compile() {
}
src_install() {
- emake PREFIX="/usr" DESTDIR="${D}" install
+ emake PREFIX="${EPREFIX}/usr" DESTDIR="${D}" install
einstalldocs
}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2021-02-12 15:10 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2021-02-12 15:10 UTC (permalink / raw
To: gentoo-commits
commit: 0e8f165b487aa8cb01e0ffa44ac94f229c454268
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Thu Feb 11 23:57:20 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Feb 12 15:10:13 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e8f165b
mail-client/mutt-wizard: version bump to 3.2.1
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/19421
Signed-off-by: Sam James <sam <AT> gentoo.org>
mail-client/mutt-wizard/Manifest | 1 +
mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild | 46 ++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/mail-client/mutt-wizard/Manifest b/mail-client/mutt-wizard/Manifest
index 062ed1c019f..92b86702b9a 100644
--- a/mail-client/mutt-wizard/Manifest
+++ b/mail-client/mutt-wizard/Manifest
@@ -1 +1,2 @@
DIST mutt-wizard-3.1.1.tar.gz 33346 BLAKE2B 0f4d8e973fedc0d102242a06922627039f4244ad9fc901d6e3d7235089164c3a7f255587978c95762242146441d8a48f57401e9ec86754194b531d38f0074652 SHA512 b385bab603eff561bca8aade49f3d11a4ac031cbceb4a64d80be9b591dc34757a05bb3c56c23ec9f1942392833725872d4871bf34964c4503bc01d5223286ddb
+DIST mutt-wizard-3.2.1.tar.gz 33468 BLAKE2B 60087ca8b6cfe2f69e1f078942ef24be8d387fbadcacfdf0105e6ee6df315a57fb21320635b685dad5e5e15860adb9cef147dc9b029d77bfdfd196f219faca91 SHA512 bcd72a937d142bddb2c3b55bd6f5442a96421850ef57931e147aad8feefd6752de90cc7076802f5c806edc9a530e05a24576e33f301196eee707a75aa16279a6
diff --git a/mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild b/mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild
new file mode 100644
index 00000000000..dc33b5c3168
--- /dev/null
+++ b/mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit optfeature
+
+DESCRIPTION="A system for automatically configuring neomutt and isync"
+HOMEPAGE="https://github.com/LukeSmithxyz/mutt-wizard"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard.git"
+else
+ SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+RDEPEND="
+ app-admin/pass
+ mail-client/neomutt[notmuch]
+ mail-mta/msmtp
+ net-mail/isync[ssl]
+"
+
+# needed because there is no 'all' target defined in MAKEFILE
+src_compile() {
+ return 0;
+}
+
+src_install() {
+ emake PREFIX="/usr" DESTDIR="${D}" install
+ einstalldocs
+}
+
+pkg_postinst() {
+ optfeature "enable viewing html mails" www-client/lynx
+ optfeature "enable periodic syncing of mails" virtual/cron
+ optfeature "enable viewing of simple images" media-gfx/imagemagick
+ optfeature "enable notifications when syncing using mailsync" x11-libs/libnotify
+ optfeature "enable command line address book" app-misc/abook
+ optfeature "enable use of gpg for signing and verifying" app-crypt/gnupg
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2021-04-29 11:43 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2021-04-29 11:43 UTC (permalink / raw
To: gentoo-commits
commit: ab158443b2d8870be2de8b1709e7638d2dfd4720
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 29 11:12:17 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Apr 29 11:43:43 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab158443
mail-client/mutt-wizard: revbump to populate previous changes
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
.../mutt-wizard/{mutt-wizard-3.1.1.ebuild => mutt-wizard-3.1.1-r1.ebuild} | 0
.../mutt-wizard/{mutt-wizard-3.2.1.ebuild => mutt-wizard-3.2.1-r1.ebuild} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
diff --git a/mail-client/mutt-wizard/mutt-wizard-3.1.1.ebuild b/mail-client/mutt-wizard/mutt-wizard-3.1.1-r1.ebuild
similarity index 100%
rename from mail-client/mutt-wizard/mutt-wizard-3.1.1.ebuild
rename to mail-client/mutt-wizard/mutt-wizard-3.1.1-r1.ebuild
diff --git a/mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild b/mail-client/mutt-wizard/mutt-wizard-3.2.1-r1.ebuild
similarity index 100%
rename from mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild
rename to mail-client/mutt-wizard/mutt-wizard-3.2.1-r1.ebuild
^ permalink raw reply [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2021-04-29 11:43 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2021-04-29 11:43 UTC (permalink / raw
To: gentoo-commits
commit: 247ab6acae171ecc0601cfdbc06017fef2229d37
Author: Aisha Tammy <floss <AT> bsd <DOT> ac>
AuthorDate: Sun Apr 18 20:29:15 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Apr 29 11:43:42 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=247ab6ac
mail-client/mutt-wizard: add sasl runtime neomutt dependency
Closes: https://bugs.gentoo.org/765763
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/20446
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
mail-client/mutt-wizard/mutt-wizard-3.1.1.ebuild | 2 +-
mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild | 2 +-
mail-client/mutt-wizard/mutt-wizard-9999.ebuild | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/mail-client/mutt-wizard/mutt-wizard-3.1.1.ebuild b/mail-client/mutt-wizard/mutt-wizard-3.1.1.ebuild
index dc33b5c3168..17c4d75f3c7 100644
--- a/mail-client/mutt-wizard/mutt-wizard-3.1.1.ebuild
+++ b/mail-client/mutt-wizard/mutt-wizard-3.1.1.ebuild
@@ -21,7 +21,7 @@ SLOT="0"
RDEPEND="
app-admin/pass
- mail-client/neomutt[notmuch]
+ mail-client/neomutt[notmuch,sasl]
mail-mta/msmtp
net-mail/isync[ssl]
"
diff --git a/mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild b/mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild
index 118819de42a..65f792c8e17 100644
--- a/mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild
+++ b/mail-client/mutt-wizard/mutt-wizard-3.2.1.ebuild
@@ -21,7 +21,7 @@ SLOT="0"
RDEPEND="
app-admin/pass
- mail-client/neomutt[notmuch]
+ mail-client/neomutt[notmuch,sasl]
mail-mta/msmtp
net-mail/isync[ssl]
"
diff --git a/mail-client/mutt-wizard/mutt-wizard-9999.ebuild b/mail-client/mutt-wizard/mutt-wizard-9999.ebuild
index dc33b5c3168..17c4d75f3c7 100644
--- a/mail-client/mutt-wizard/mutt-wizard-9999.ebuild
+++ b/mail-client/mutt-wizard/mutt-wizard-9999.ebuild
@@ -21,7 +21,7 @@ SLOT="0"
RDEPEND="
app-admin/pass
- mail-client/neomutt[notmuch]
+ mail-client/neomutt[notmuch,sasl]
mail-mta/msmtp
net-mail/isync[ssl]
"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2022-04-17 19:00 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2022-04-17 19:00 UTC (permalink / raw
To: gentoo-commits
commit: 0f3b775826633b852c93dd1bc998f834b68b683b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 17 18:56:02 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 17 19:00:04 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f3b7758
mail-client/mutt-wizard: drop 3.1.1-r1
Signed-off-by: Sam James <sam <AT> gentoo.org>
mail-client/mutt-wizard/Manifest | 1 -
.../mutt-wizard/mutt-wizard-3.1.1-r1.ebuild | 46 ----------------------
2 files changed, 47 deletions(-)
diff --git a/mail-client/mutt-wizard/Manifest b/mail-client/mutt-wizard/Manifest
index 92b86702b9a2..b90033263cea 100644
--- a/mail-client/mutt-wizard/Manifest
+++ b/mail-client/mutt-wizard/Manifest
@@ -1,2 +1 @@
-DIST mutt-wizard-3.1.1.tar.gz 33346 BLAKE2B 0f4d8e973fedc0d102242a06922627039f4244ad9fc901d6e3d7235089164c3a7f255587978c95762242146441d8a48f57401e9ec86754194b531d38f0074652 SHA512 b385bab603eff561bca8aade49f3d11a4ac031cbceb4a64d80be9b591dc34757a05bb3c56c23ec9f1942392833725872d4871bf34964c4503bc01d5223286ddb
DIST mutt-wizard-3.2.1.tar.gz 33468 BLAKE2B 60087ca8b6cfe2f69e1f078942ef24be8d387fbadcacfdf0105e6ee6df315a57fb21320635b685dad5e5e15860adb9cef147dc9b029d77bfdfd196f219faca91 SHA512 bcd72a937d142bddb2c3b55bd6f5442a96421850ef57931e147aad8feefd6752de90cc7076802f5c806edc9a530e05a24576e33f301196eee707a75aa16279a6
diff --git a/mail-client/mutt-wizard/mutt-wizard-3.1.1-r1.ebuild b/mail-client/mutt-wizard/mutt-wizard-3.1.1-r1.ebuild
deleted file mode 100644
index 17c4d75f3c78..000000000000
--- a/mail-client/mutt-wizard/mutt-wizard-3.1.1-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit optfeature
-
-DESCRIPTION="A system for automatically configuring neomutt and isync"
-HOMEPAGE="https://github.com/LukeSmithxyz/mutt-wizard"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard.git"
-else
- SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-RDEPEND="
- app-admin/pass
- mail-client/neomutt[notmuch,sasl]
- mail-mta/msmtp
- net-mail/isync[ssl]
-"
-
-# needed because there is no 'all' target defined in MAKEFILE
-src_compile() {
- return 0;
-}
-
-src_install() {
- emake PREFIX="/usr" DESTDIR="${D}" install
- einstalldocs
-}
-
-pkg_postinst() {
- optfeature "enable viewing html mails" www-client/lynx
- optfeature "enable periodic syncing of mails" virtual/cron
- optfeature "enable viewing of simple images" media-gfx/imagemagick
- optfeature "enable notifications when syncing using mailsync" x11-libs/libnotify
- optfeature "enable command line address book" app-misc/abook
- optfeature "enable use of gpg for signing and verifying" app-crypt/gnupg
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2022-11-25 8:09 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2022-11-25 8:09 UTC (permalink / raw
To: gentoo-commits
commit: 7ecdb86e475d263c967289aa0793800b4734b5cf
Author: Efe İzbudak <efe.izbudak <AT> metu <DOT> edu <DOT> tr>
AuthorDate: Fri Nov 18 14:43:35 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Nov 25 08:09:35 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ecdb86e
mail-client/mutt-wizard: add 3.3.1
Signed-off-by: Efe İzbudak <efe.izbudak <AT> metu.edu.tr>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
mail-client/mutt-wizard/Manifest | 1 +
mail-client/mutt-wizard/mutt-wizard-3.3.1.ebuild | 46 ++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/mail-client/mutt-wizard/Manifest b/mail-client/mutt-wizard/Manifest
index b90033263cea..ff044cd6f8da 100644
--- a/mail-client/mutt-wizard/Manifest
+++ b/mail-client/mutt-wizard/Manifest
@@ -1 +1,2 @@
DIST mutt-wizard-3.2.1.tar.gz 33468 BLAKE2B 60087ca8b6cfe2f69e1f078942ef24be8d387fbadcacfdf0105e6ee6df315a57fb21320635b685dad5e5e15860adb9cef147dc9b029d77bfdfd196f219faca91 SHA512 bcd72a937d142bddb2c3b55bd6f5442a96421850ef57931e147aad8feefd6752de90cc7076802f5c806edc9a530e05a24576e33f301196eee707a75aa16279a6
+DIST mutt-wizard-3.3.1.tar.gz 34813 BLAKE2B 8f900700349441fb1d80e16697c2310d4a9319d8abb655657306bced8826b3a31b31e89146eef89610c18ff3eae39462a43670148336de527ffd7434c78d6ce2 SHA512 be41917935e21f8d2fe1eac4efcd832484c8cc93d8c6b6891c679615f8d5309b8450d2fe64e85742bae5e9fd8ef069be5764a667feccece25d2e775961e6c58c
diff --git a/mail-client/mutt-wizard/mutt-wizard-3.3.1.ebuild b/mail-client/mutt-wizard/mutt-wizard-3.3.1.ebuild
new file mode 100644
index 000000000000..29ac2070ab81
--- /dev/null
+++ b/mail-client/mutt-wizard/mutt-wizard-3.3.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2019-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit optfeature
+
+DESCRIPTION="A system for automatically configuring neomutt and isync"
+HOMEPAGE="https://github.com/LukeSmithxyz/mutt-wizard"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard.git"
+else
+ SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+RDEPEND="
+ app-admin/pass
+ mail-client/neomutt[notmuch,sasl]
+ mail-mta/msmtp
+ net-mail/isync[ssl]
+"
+
+# needed because there is no 'all' target defined in MAKEFILE
+src_compile() {
+ return 0;
+}
+
+src_install() {
+ emake PREFIX="${EPREFIX}/usr" DESTDIR="${D}" install
+ einstalldocs
+}
+
+pkg_postinst() {
+ optfeature "enable viewing html mails" www-client/lynx
+ optfeature "enable periodic syncing of mails" virtual/cron
+ optfeature "enable viewing of simple images" media-gfx/imagemagick
+ optfeature "enable notifications when syncing using mailsync" x11-libs/libnotify
+ optfeature "enable command line address book" app-misc/abook
+ optfeature "enable use of gpg for signing and verifying" app-crypt/gnupg
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2022-11-25 8:09 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2022-11-25 8:09 UTC (permalink / raw
To: gentoo-commits
commit: c50436aeb4f83e91da1510a48b8cdb0c045b78bf
Author: Efe İzbudak <efe.izbudak <AT> metu <DOT> edu <DOT> tr>
AuthorDate: Fri Nov 18 14:59:50 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Nov 25 08:09:35 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c50436ae
mail-client/mutt-wizard: add myself as a maintainer
Signed-off-by: Efe İzbudak <efe.izbudak <AT> metu.edu.tr>
Closes: https://github.com/gentoo/gentoo/pull/28327
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
mail-client/mutt-wizard/metadata.xml | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/mail-client/mutt-wizard/metadata.xml b/mail-client/mutt-wizard/metadata.xml
index 1a535a7c7137..a0f043a76c4f 100644
--- a/mail-client/mutt-wizard/metadata.xml
+++ b/mail-client/mutt-wizard/metadata.xml
@@ -7,5 +7,15 @@
offline email sync. Integrable with a lot of other utilities for additional
functionality for managing emails.
</longdescription>
- <!-- maintainer-needed -->
- </pkgmetadata>
+ <maintainer type="person" proxied="yes">
+ <email>efe.izbudak@metu.edu.tr</email>
+ <name>Efe İzbudak</name>
+ </maintainer>
+ <maintainer type="project" proxied="proxy">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">LukeSmithxyz/mutt-wizard</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2022-12-09 6:54 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2022-12-09 6:54 UTC (permalink / raw
To: gentoo-commits
commit: 6774ffaaab66f3149ab99fd7a2f0994b5c008e0b
Author: Efe İzbudak <efe.izbudak <AT> metu <DOT> edu <DOT> tr>
AuthorDate: Fri Nov 25 14:01:25 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Dec 9 06:53:58 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6774ffaa
mail-client/mutt-wizard: drop 3.2.1-r1
Signed-off-by: Efe İzbudak <efe.izbudak <AT> metu.edu.tr>
Closes: https://github.com/gentoo/gentoo/pull/28425
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
mail-client/mutt-wizard/Manifest | 1 -
.../mutt-wizard/mutt-wizard-3.2.1-r1.ebuild | 46 ----------------------
2 files changed, 47 deletions(-)
diff --git a/mail-client/mutt-wizard/Manifest b/mail-client/mutt-wizard/Manifest
index ff044cd6f8da..d8c5b9e977c6 100644
--- a/mail-client/mutt-wizard/Manifest
+++ b/mail-client/mutt-wizard/Manifest
@@ -1,2 +1 @@
-DIST mutt-wizard-3.2.1.tar.gz 33468 BLAKE2B 60087ca8b6cfe2f69e1f078942ef24be8d387fbadcacfdf0105e6ee6df315a57fb21320635b685dad5e5e15860adb9cef147dc9b029d77bfdfd196f219faca91 SHA512 bcd72a937d142bddb2c3b55bd6f5442a96421850ef57931e147aad8feefd6752de90cc7076802f5c806edc9a530e05a24576e33f301196eee707a75aa16279a6
DIST mutt-wizard-3.3.1.tar.gz 34813 BLAKE2B 8f900700349441fb1d80e16697c2310d4a9319d8abb655657306bced8826b3a31b31e89146eef89610c18ff3eae39462a43670148336de527ffd7434c78d6ce2 SHA512 be41917935e21f8d2fe1eac4efcd832484c8cc93d8c6b6891c679615f8d5309b8450d2fe64e85742bae5e9fd8ef069be5764a667feccece25d2e775961e6c58c
diff --git a/mail-client/mutt-wizard/mutt-wizard-3.2.1-r1.ebuild b/mail-client/mutt-wizard/mutt-wizard-3.2.1-r1.ebuild
deleted file mode 100644
index 65f792c8e17d..000000000000
--- a/mail-client/mutt-wizard/mutt-wizard-3.2.1-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit optfeature
-
-DESCRIPTION="A system for automatically configuring neomutt and isync"
-HOMEPAGE="https://github.com/LukeSmithxyz/mutt-wizard"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard.git"
-else
- SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-RDEPEND="
- app-admin/pass
- mail-client/neomutt[notmuch,sasl]
- mail-mta/msmtp
- net-mail/isync[ssl]
-"
-
-# needed because there is no 'all' target defined in MAKEFILE
-src_compile() {
- return 0;
-}
-
-src_install() {
- emake PREFIX="${EPREFIX}/usr" DESTDIR="${D}" install
- einstalldocs
-}
-
-pkg_postinst() {
- optfeature "enable viewing html mails" www-client/lynx
- optfeature "enable periodic syncing of mails" virtual/cron
- optfeature "enable viewing of simple images" media-gfx/imagemagick
- optfeature "enable notifications when syncing using mailsync" x11-libs/libnotify
- optfeature "enable command line address book" app-misc/abook
- optfeature "enable use of gpg for signing and verifying" app-crypt/gnupg
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2022-12-09 6:54 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2022-12-09 6:54 UTC (permalink / raw
To: gentoo-commits
commit: 01b11c445398a145074730f50bbaf598b7fb80a6
Author: Efe İzbudak <efe.izbudak <AT> metu <DOT> edu <DOT> tr>
AuthorDate: Fri Nov 25 13:57:06 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Dec 9 06:53:58 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01b11c44
mail-client/mutt-wizard: update EAPI 7 -> 8 for -9999
Signed-off-by: Efe İzbudak <efe.izbudak <AT> metu.edu.tr>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
mail-client/mutt-wizard/mutt-wizard-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mail-client/mutt-wizard/mutt-wizard-9999.ebuild b/mail-client/mutt-wizard/mutt-wizard-9999.ebuild
index 17c4d75f3c78..a22384dc1b7c 100644
--- a/mail-client/mutt-wizard/mutt-wizard-9999.ebuild
+++ b/mail-client/mutt-wizard/mutt-wizard-9999.ebuild
@@ -1,7 +1,7 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit optfeature
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2023-07-10 5:43 Joonas Niilola
0 siblings, 0 replies; 17+ messages in thread
From: Joonas Niilola @ 2023-07-10 5:43 UTC (permalink / raw
To: gentoo-commits
commit: 33e55b2589482036cd88d62a5223e3a3b8db63fc
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 10 05:42:45 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Jul 10 05:43:02 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33e55b25
mail-client/mutt-wizard: mark ALLARCHES
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
mail-client/mutt-wizard/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/mail-client/mutt-wizard/metadata.xml b/mail-client/mutt-wizard/metadata.xml
index a0f043a76c4f..dc9b6dea4a4c 100644
--- a/mail-client/mutt-wizard/metadata.xml
+++ b/mail-client/mutt-wizard/metadata.xml
@@ -7,6 +7,7 @@
offline email sync. Integrable with a lot of other utilities for additional
functionality for managing emails.
</longdescription>
+ <stabilize-allarches/>
<maintainer type="person" proxied="yes">
<email>efe.izbudak@metu.edu.tr</email>
<name>Efe İzbudak</name>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2023-07-10 7:46 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2023-07-10 7:46 UTC (permalink / raw
To: gentoo-commits
commit: b30b2bef4afa6d625b1d3eb40cf207deaa29218e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 10 07:46:36 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jul 10 07:46:36 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b30b2bef
mail-client/mutt-wizard: Stabilize 3.3.1 amd64, #910162
Signed-off-by: Sam James <sam <AT> gentoo.org>
mail-client/mutt-wizard/mutt-wizard-3.3.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mail-client/mutt-wizard/mutt-wizard-3.3.1.ebuild b/mail-client/mutt-wizard/mutt-wizard-3.3.1.ebuild
index 29ac2070ab81..eca80ecc8bd5 100644
--- a/mail-client/mutt-wizard/mutt-wizard-3.3.1.ebuild
+++ b/mail-client/mutt-wizard/mutt-wizard-3.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2022 Gentoo Authors
+# Copyright 2019-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard.git"
else
SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="amd64 ~x86"
fi
LICENSE="GPL-3"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/
@ 2023-07-10 7:46 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2023-07-10 7:46 UTC (permalink / raw
To: gentoo-commits
commit: c55df572efe6c84562550a379646f9342b3bbeb9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 10 07:46:37 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jul 10 07:46:37 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c55df572
mail-client/mutt-wizard: Stabilize 3.3.1 x86, #910162
Signed-off-by: Sam James <sam <AT> gentoo.org>
mail-client/mutt-wizard/mutt-wizard-3.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mail-client/mutt-wizard/mutt-wizard-3.3.1.ebuild b/mail-client/mutt-wizard/mutt-wizard-3.3.1.ebuild
index eca80ecc8bd5..29da5748fc61 100644
--- a/mail-client/mutt-wizard/mutt-wizard-3.3.1.ebuild
+++ b/mail-client/mutt-wizard/mutt-wizard-3.3.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard.git"
else
SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~x86"
+ KEYWORDS="amd64 x86"
fi
LICENSE="GPL-3"
^ permalink raw reply related [flat|nested] 17+ messages in thread
end of thread, other threads:[~2023-07-10 7:46 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-09 6:54 [gentoo-commits] repo/gentoo:master commit in: mail-client/mutt-wizard/ Joonas Niilola
-- strict thread matches above, loose matches on Subject: below --
2023-07-10 7:46 Sam James
2023-07-10 7:46 Sam James
2023-07-10 5:43 Joonas Niilola
2022-12-09 6:54 Joonas Niilola
2022-11-25 8:09 Joonas Niilola
2022-11-25 8:09 Joonas Niilola
2022-04-17 19:00 Sam James
2021-04-29 11:43 Joonas Niilola
2021-04-29 11:43 Joonas Niilola
2021-02-12 15:10 Sam James
2021-02-12 15:10 Sam James
2021-01-22 4:15 Sam James
2021-01-22 4:15 Sam James
2020-08-21 7:15 Joonas Niilola
2020-08-21 7:15 Joonas Niilola
2020-06-08 7:46 Joonas Niilola
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox