forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]> Signed-off-by: Sam James <[email protected]>
- Loading branch information
1 parent
4a0369c
commit c7c424d
Showing
3 changed files
with
49 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters