diff options
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | dev-scheme/guile-email/Manifest | 2 | ||||
| -rw-r--r-- | dev-scheme/guile-email/guile-email-0.2.2.ebuild | 39 |
3 files changed, 42 insertions, 0 deletions
@@ -10,6 +10,7 @@ other overlays, or modifying less-than-ideals in the upstream ebuild repository. - [crispy-doom](https://github.com/fabiangreffrath/crispy-doom) as games-fps/crispy-doom - [Doom64EX](https://doom64ex.wordpress.com/) as games-fps/doom64ex - [dosbox-x](https://github.com/joncampbell123/dosbox-x) as games-emulation/dosbox-x +- [guile-email](https://guile-email.systemreboot.net/) as dev-scheme/guile-email - [GoatTracker 2](http://covertbitops.c64.org/) as media-sound/goattracker - [MilkyTracker](https://milkytracker.titandemo.org/) as media-sound/milkytracker - [NBlood](https://nukeykt.retrohost.net/) as games-fps/nblood diff --git a/dev-scheme/guile-email/Manifest b/dev-scheme/guile-email/Manifest new file mode 100644 index 0000000..dd9f58c --- /dev/null +++ b/dev-scheme/guile-email/Manifest @@ -0,0 +1,2 @@ +DIST guile-email-0.2.2.tar.lz 181954 BLAKE2B c75dee14b5d5b7c7bac235b8178c0fc3698139e2fe539e3035bbde3394ba46592497bac43f8d51098e801cb060cfa189831afa7c4b1548be1bd651aba6d79198 SHA512 b3849a9ffebaf9feeb1d1b56fed74804366b2f041b85e723bccf899c85c7d174c79a77237b20d489a6d1363ff557bb37bdef9f2f5f69c479abd82372f8693db8 +EBUILD guile-email-0.2.2.ebuild 954 BLAKE2B 1d3f1cd27bcc4e2e02ae4e8a7a80947dc44c53934956bb041058d15fc606eb953b00706326e5556a4b7881e0072f1365cf00fff9a5d37ec7449f4efec9f03540 SHA512 2722d8d1f994566bb7682bc369e042afabebbe386a64d313b9e5870fe233ea8264f7f614e42465a85ef6e1db101f785340d6067c3c0bbb2abae4b1e81d2eabb4 diff --git a/dev-scheme/guile-email/guile-email-0.2.2.ebuild b/dev-scheme/guile-email/guile-email-0.2.2.ebuild new file mode 100644 index 0000000..67a3827 --- /dev/null +++ b/dev-scheme/guile-email/guile-email-0.2.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit unpacker + +DESCRIPTION="A collection of email utilities implemented in pure guile" +HOMEPAGE="https://guile-email.systemreboot.net/" +SRC_URI="https://guile-email.systemreboot.net/releases/guile-email-${PV}.tar.lz" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + >=dev-scheme/guile-2.0.11:= +" +DEPEND="${RDEPEND}" + +src_prepare() { + default + + # guile is trying to avoid recompilation by checking if file + # /usr/lib64/guile/2.2/site-ccache/<foo> + # is newer than + # <foo> + # In case it is instead of using <foo> guile + # loads system one (from potentially older version of package). + # To work it around we bump last modification timestamp of + # '*.scm' files. + # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112 + find "${S}" -name "*.scm" -exec touch {} + || die +} + +src_test() { + emake check VERBOSE=1 +} |