From 69da4a31d598962308d15a6f1652fc8e110cefcf Mon Sep 17 00:00:00 2001 From: speedie Date: Sun, 20 Nov 2022 02:48:45 +0100 Subject: [PATCH] Update overlay --- app-misc/mutt-wizard/Manifest | 4 ++ app-misc/mutt-wizard/mutt-wizard-3.1.1.ebuild | 42 ++++++++++++++++++ app-misc/mutt-wizard/mutt-wizard-3.1.ebuild | 42 ++++++++++++++++++ app-misc/mutt-wizard/mutt-wizard-3.2.1.ebuild | 43 +++++++++++++++++++ app-misc/mutt-wizard/mutt-wizard-3.3.1.ebuild | 43 +++++++++++++++++++ app-misc/mutt-wizard/mutt-wizard-9999.ebuild | 43 +++++++++++++++++++ metadata/md5-cache/app-misc/mutt-wizard-3.1 | 11 +++++ metadata/md5-cache/app-misc/mutt-wizard-3.1.1 | 11 +++++ metadata/md5-cache/app-misc/mutt-wizard-3.2.1 | 11 +++++ metadata/md5-cache/app-misc/mutt-wizard-3.3.1 | 11 +++++ metadata/md5-cache/app-misc/mutt-wizard-9999 | 13 ++++++ 11 files changed, 274 insertions(+) create mode 100644 app-misc/mutt-wizard/Manifest create mode 100644 app-misc/mutt-wizard/mutt-wizard-3.1.1.ebuild create mode 100644 app-misc/mutt-wizard/mutt-wizard-3.1.ebuild create mode 100644 app-misc/mutt-wizard/mutt-wizard-3.2.1.ebuild create mode 100644 app-misc/mutt-wizard/mutt-wizard-3.3.1.ebuild create mode 100644 app-misc/mutt-wizard/mutt-wizard-9999.ebuild create mode 100644 metadata/md5-cache/app-misc/mutt-wizard-3.1 create mode 100644 metadata/md5-cache/app-misc/mutt-wizard-3.1.1 create mode 100644 metadata/md5-cache/app-misc/mutt-wizard-3.2.1 create mode 100644 metadata/md5-cache/app-misc/mutt-wizard-3.3.1 create mode 100644 metadata/md5-cache/app-misc/mutt-wizard-9999 diff --git a/app-misc/mutt-wizard/Manifest b/app-misc/mutt-wizard/Manifest new file mode 100644 index 0000000..c1d75d4 --- /dev/null +++ b/app-misc/mutt-wizard/Manifest @@ -0,0 +1,4 @@ +DIST v3.1.1.tar.gz 33346 BLAKE2B 0f4d8e973fedc0d102242a06922627039f4244ad9fc901d6e3d7235089164c3a7f255587978c95762242146441d8a48f57401e9ec86754194b531d38f0074652 SHA512 b385bab603eff561bca8aade49f3d11a4ac031cbceb4a64d80be9b591dc34757a05bb3c56c23ec9f1942392833725872d4871bf34964c4503bc01d5223286ddb +DIST v3.1.tar.gz 33363 BLAKE2B 699c2a43231240bae49a7280ea4b983c5025c566b109d46e27c14fad7b4d0a9359af3f32581f74426464f4e16c37dc69b75a33944237316198b79007e408077a SHA512 508f401e4a14f7fb0b9fa1fe9bba740d77cda0540983fd3606efa550652300f9a1991d8273e9b37fc2f43af171c65c15a122ba511ec17fb3bae46fa5518f9a03 +DIST v3.2.1.tar.gz 33468 BLAKE2B 60087ca8b6cfe2f69e1f078942ef24be8d387fbadcacfdf0105e6ee6df315a57fb21320635b685dad5e5e15860adb9cef147dc9b029d77bfdfd196f219faca91 SHA512 bcd72a937d142bddb2c3b55bd6f5442a96421850ef57931e147aad8feefd6752de90cc7076802f5c806edc9a530e05a24576e33f301196eee707a75aa16279a6 +DIST v3.3.1.tar.gz 34813 BLAKE2B 8f900700349441fb1d80e16697c2310d4a9319d8abb655657306bced8826b3a31b31e89146eef89610c18ff3eae39462a43670148336de527ffd7434c78d6ce2 SHA512 be41917935e21f8d2fe1eac4efcd832484c8cc93d8c6b6891c679615f8d5309b8450d2fe64e85742bae5e9fd8ef069be5764a667feccece25d2e775961e6c58c diff --git a/app-misc/mutt-wizard/mutt-wizard-3.1.1.ebuild b/app-misc/mutt-wizard/mutt-wizard-3.1.1.ebuild new file mode 100644 index 0000000..192a1a0 --- /dev/null +++ b/app-misc/mutt-wizard/mutt-wizard-3.1.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A system for automatically configuring mutt and isync with a simple interface and safe passwords" +HOMEPAGE="https://muttwizard.com" +EGIT_REPO_URI="https://github.com/LukeSmithxyz/${PN}" + +LICENSE="GPL-3+" +SLOT="0" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard" +else + KEYWORDS="amd64 x86" + SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/v${PV}.tar.gz" +fi +IUSE="+local index html autologin" + +DEPEND=" + mail-client/neomutt[sasl] + net-misc/curl + local? ( net-mail/isync ) + autologin? ( app-crypt/gnupg ) + html? ( www-client/lynx ) + mail-mta/msmtp + app-admin/pass + index? ( net-mail/notmuch )" + +src_prepare() { + default +} + +src_compile() { + : +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install +} diff --git a/app-misc/mutt-wizard/mutt-wizard-3.1.ebuild b/app-misc/mutt-wizard/mutt-wizard-3.1.ebuild new file mode 100644 index 0000000..192a1a0 --- /dev/null +++ b/app-misc/mutt-wizard/mutt-wizard-3.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A system for automatically configuring mutt and isync with a simple interface and safe passwords" +HOMEPAGE="https://muttwizard.com" +EGIT_REPO_URI="https://github.com/LukeSmithxyz/${PN}" + +LICENSE="GPL-3+" +SLOT="0" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard" +else + KEYWORDS="amd64 x86" + SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/v${PV}.tar.gz" +fi +IUSE="+local index html autologin" + +DEPEND=" + mail-client/neomutt[sasl] + net-misc/curl + local? ( net-mail/isync ) + autologin? ( app-crypt/gnupg ) + html? ( www-client/lynx ) + mail-mta/msmtp + app-admin/pass + index? ( net-mail/notmuch )" + +src_prepare() { + default +} + +src_compile() { + : +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install +} diff --git a/app-misc/mutt-wizard/mutt-wizard-3.2.1.ebuild b/app-misc/mutt-wizard/mutt-wizard-3.2.1.ebuild new file mode 100644 index 0000000..5ee5b05 --- /dev/null +++ b/app-misc/mutt-wizard/mutt-wizard-3.2.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A system for automatically configuring mutt and isync with a simple interface and safe passwords" +HOMEPAGE="https://muttwizard.com" +EGIT_REPO_URI="https://github.com/LukeSmithxyz/${PN}" + +LICENSE="GPL-3+" +SLOT="0" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard" +else + KEYWORDS="amd64 x86" + SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/v${PV}.tar.gz" +fi +IUSE="+local index pop html autologin" + +DEPEND=" + mail-client/neomutt[sasl] + net-misc/curl + local? ( net-mail/isync ) + autologin? ( app-crypt/gnupg ) + html? ( www-client/lynx ) + mail-mta/msmtp + app-admin/pass + index? ( net-mail/notmuch ) + pop? ( net-mail/mpop )" + +src_prepare() { + default +} + +src_compile() { + : +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install +} diff --git a/app-misc/mutt-wizard/mutt-wizard-3.3.1.ebuild b/app-misc/mutt-wizard/mutt-wizard-3.3.1.ebuild new file mode 100644 index 0000000..5ee5b05 --- /dev/null +++ b/app-misc/mutt-wizard/mutt-wizard-3.3.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A system for automatically configuring mutt and isync with a simple interface and safe passwords" +HOMEPAGE="https://muttwizard.com" +EGIT_REPO_URI="https://github.com/LukeSmithxyz/${PN}" + +LICENSE="GPL-3+" +SLOT="0" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard" +else + KEYWORDS="amd64 x86" + SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/v${PV}.tar.gz" +fi +IUSE="+local index pop html autologin" + +DEPEND=" + mail-client/neomutt[sasl] + net-misc/curl + local? ( net-mail/isync ) + autologin? ( app-crypt/gnupg ) + html? ( www-client/lynx ) + mail-mta/msmtp + app-admin/pass + index? ( net-mail/notmuch ) + pop? ( net-mail/mpop )" + +src_prepare() { + default +} + +src_compile() { + : +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install +} diff --git a/app-misc/mutt-wizard/mutt-wizard-9999.ebuild b/app-misc/mutt-wizard/mutt-wizard-9999.ebuild new file mode 100644 index 0000000..5ee5b05 --- /dev/null +++ b/app-misc/mutt-wizard/mutt-wizard-9999.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A system for automatically configuring mutt and isync with a simple interface and safe passwords" +HOMEPAGE="https://muttwizard.com" +EGIT_REPO_URI="https://github.com/LukeSmithxyz/${PN}" + +LICENSE="GPL-3+" +SLOT="0" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/LukeSmithxyz/mutt-wizard" +else + KEYWORDS="amd64 x86" + SRC_URI="https://github.com/LukeSmithxyz/${PN}/archive/v${PV}.tar.gz" +fi +IUSE="+local index pop html autologin" + +DEPEND=" + mail-client/neomutt[sasl] + net-misc/curl + local? ( net-mail/isync ) + autologin? ( app-crypt/gnupg ) + html? ( www-client/lynx ) + mail-mta/msmtp + app-admin/pass + index? ( net-mail/notmuch ) + pop? ( net-mail/mpop )" + +src_prepare() { + default +} + +src_compile() { + : +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install +} diff --git a/metadata/md5-cache/app-misc/mutt-wizard-3.1 b/metadata/md5-cache/app-misc/mutt-wizard-3.1 new file mode 100644 index 0000000..1dcdbdb --- /dev/null +++ b/metadata/md5-cache/app-misc/mutt-wizard-3.1 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile install prepare +DEPEND=mail-client/neomutt[sasl] net-misc/curl local? ( net-mail/isync ) autologin? ( app-crypt/gnupg ) html? ( www-client/lynx ) mail-mta/msmtp app-admin/pass index? ( net-mail/notmuch ) pop? ( net-mail/mpop ) +DESCRIPTION=A system for automatically configuring mutt and isync with a simple interface and safe passwords +EAPI=8 +HOMEPAGE=https://muttwizard.com +IUSE=+local index pop html autologin +KEYWORDS=amd64 x86 +LICENSE=GPL-3+ +SLOT=0 +SRC_URI=https://github.com/LukeSmithxyz/mutt-wizard/archive/v3.1.tar.gz +_md5_=cb59960605af36ff98c9da64c6db8983 diff --git a/metadata/md5-cache/app-misc/mutt-wizard-3.1.1 b/metadata/md5-cache/app-misc/mutt-wizard-3.1.1 new file mode 100644 index 0000000..191b3e3 --- /dev/null +++ b/metadata/md5-cache/app-misc/mutt-wizard-3.1.1 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile install prepare +DEPEND=mail-client/neomutt[sasl] net-misc/curl local? ( net-mail/isync ) autologin? ( app-crypt/gnupg ) html? ( www-client/lynx ) mail-mta/msmtp app-admin/pass index? ( net-mail/notmuch ) pop? ( net-mail/mpop ) +DESCRIPTION=A system for automatically configuring mutt and isync with a simple interface and safe passwords +EAPI=8 +HOMEPAGE=https://muttwizard.com +IUSE=+local index pop html autologin +KEYWORDS=amd64 x86 +LICENSE=GPL-3+ +SLOT=0 +SRC_URI=https://github.com/LukeSmithxyz/mutt-wizard/archive/v3.1.1.tar.gz +_md5_=cb59960605af36ff98c9da64c6db8983 diff --git a/metadata/md5-cache/app-misc/mutt-wizard-3.2.1 b/metadata/md5-cache/app-misc/mutt-wizard-3.2.1 new file mode 100644 index 0000000..b7c2bea --- /dev/null +++ b/metadata/md5-cache/app-misc/mutt-wizard-3.2.1 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile install prepare +DEPEND=mail-client/neomutt[sasl] net-misc/curl local? ( net-mail/isync ) autologin? ( app-crypt/gnupg ) html? ( www-client/lynx ) mail-mta/msmtp app-admin/pass index? ( net-mail/notmuch ) pop? ( net-mail/mpop ) +DESCRIPTION=A system for automatically configuring mutt and isync with a simple interface and safe passwords +EAPI=8 +HOMEPAGE=https://muttwizard.com +IUSE=+local index pop html autologin +KEYWORDS=amd64 x86 +LICENSE=GPL-3+ +SLOT=0 +SRC_URI=https://github.com/LukeSmithxyz/mutt-wizard/archive/v3.2.1.tar.gz +_md5_=cb59960605af36ff98c9da64c6db8983 diff --git a/metadata/md5-cache/app-misc/mutt-wizard-3.3.1 b/metadata/md5-cache/app-misc/mutt-wizard-3.3.1 new file mode 100644 index 0000000..a273453 --- /dev/null +++ b/metadata/md5-cache/app-misc/mutt-wizard-3.3.1 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile install prepare +DEPEND=mail-client/neomutt[sasl] net-misc/curl local? ( net-mail/isync ) autologin? ( app-crypt/gnupg ) html? ( www-client/lynx ) mail-mta/msmtp app-admin/pass index? ( net-mail/notmuch ) pop? ( net-mail/mpop ) +DESCRIPTION=A system for automatically configuring mutt and isync with a simple interface and safe passwords +EAPI=8 +HOMEPAGE=https://muttwizard.com +IUSE=+local index pop html autologin +KEYWORDS=amd64 x86 +LICENSE=GPL-3+ +SLOT=0 +SRC_URI=https://github.com/LukeSmithxyz/mutt-wizard/archive/v3.3.1.tar.gz +_md5_=cb59960605af36ff98c9da64c6db8983 diff --git a/metadata/md5-cache/app-misc/mutt-wizard-9999 b/metadata/md5-cache/app-misc/mutt-wizard-9999 new file mode 100644 index 0000000..0a3b735 --- /dev/null +++ b/metadata/md5-cache/app-misc/mutt-wizard-9999 @@ -0,0 +1,13 @@ +BDEPEND=>=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=compile install prepare unpack +DEPEND=mail-client/neomutt[sasl] net-misc/curl local? ( net-mail/isync ) autologin? ( app-crypt/gnupg ) html? ( www-client/lynx ) mail-mta/msmtp app-admin/pass index? ( net-mail/notmuch ) pop? ( net-mail/mpop ) +DESCRIPTION=A system for automatically configuring mutt and isync with a simple interface and safe passwords +EAPI=8 +HOMEPAGE=https://muttwizard.com +INHERIT=git-r3 +IUSE=+local index pop html autologin +LICENSE=GPL-3+ +PROPERTIES=live +SLOT=0 +_eclasses_=git-r3 2347f8fe2d392b2a091191f94be37e6f +_md5_=cb59960605af36ff98c9da64c6db8983