aboutsummaryrefslogtreecommitdiffstats
path: root/net-mail
diff options
context:
space:
mode:
authorWynn Wolf Arbor2020-05-01 20:19:43 +0200
committerWynn Wolf Arbor2020-05-01 20:19:43 +0200
commit68d5b4a3c4224133fecfe98836661da1a9d3b2cb (patch)
tree67b1104e0e4bde7ed9914c5553c3cb1a299f00b2 /net-mail
parent0c378a92d08608d3e63bf205eafc9de54e01de04 (diff)
downloadpramantha-68d5b4a3c4224133fecfe98836661da1a9d3b2cb.tar.gz
net-mail/mblaze: Add mblaze-9999
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/mblaze/Manifest3
-rw-r--r--net-mail/mblaze/mblaze-0.6.ebuild10
-rw-r--r--net-mail/mblaze/mblaze-9999.ebuild24
3 files changed, 34 insertions, 3 deletions
diff --git a/net-mail/mblaze/Manifest b/net-mail/mblaze/Manifest
index 224ba17..4f8bbb5 100644
--- a/net-mail/mblaze/Manifest
+++ b/net-mail/mblaze/Manifest
@@ -1,3 +1,4 @@
DIST mblaze-0.6.tar.gz 91623 BLAKE2B 0438e73a845acd25ad3dc6415c96deca6b8ca33969baf7d46eb275e72f894dee850181b87e23a2a49f173676723d6d601de4581dd56db9c9487fb8424ea04c84 SHA512 3d3c50d6ea82271f2c1c4139111826df5457fed671ea22d36f168857cfb41861278af6aba687704f4bd5f7ff997abaf7b809c5d6c6767e39954aab0bfff0564d
-EBUILD mblaze-0.6.ebuild 424 BLAKE2B caeba9d4db7ee1029424e1b9d85a912f08e773800026aa93edb345eeb8f0e282aef9bab2d0766c9888e8635f60f9c2f6c7a60a146e40ab0426a4c95a4a7a0912 SHA512 2229fb705c0a4460ba547b7b1c1a88c5670aeb468b100caa5bea7391fd1ebcf49d13c921dfc9c1c2d841ba7d8a852852d30ac3433dc0ea05f2968d91facfd1a4
+EBUILD mblaze-0.6.ebuild 483 BLAKE2B 729a4215ead624539f705bad9dfa11890e680cc38c2bd7c85829340484e3a016743e49f335307e8bebe9850cab3991ae2fd087b27814753c14b1bfee61eec0e2 SHA512 38147fc4b08895fe2d825e984c1032527ebc90617c1b66e0d1eb5feba174b538ad428ba0c67143b53319ea437b3f17e82fa51f2281da3e66d76be48f7eb1c3f7
+EBUILD mblaze-9999.ebuild 483 BLAKE2B 729a4215ead624539f705bad9dfa11890e680cc38c2bd7c85829340484e3a016743e49f335307e8bebe9850cab3991ae2fd087b27814753c14b1bfee61eec0e2 SHA512 38147fc4b08895fe2d825e984c1032527ebc90617c1b66e0d1eb5feba174b538ad428ba0c67143b53319ea437b3f17e82fa51f2281da3e66d76be48f7eb1c3f7
MISC metadata.xml 219 BLAKE2B 4017e2b1f6b36f72c186cfeb0955be57076a02d087acfd6caf9b9ec56509b5299be8d40dddaffd04433bb290f6dd35c94c59ac02a4f1ad7e63b13648e465e594 SHA512 555d3bce3f8cd9b4d78f59f494c326d7893f12c1907c1eb92107595886fc4a5e89b8b9fda7f434e021a9eede5dfd6d0c1dfee721c268ccad3d6a1865a92204e0
diff --git a/net-mail/mblaze/mblaze-0.6.ebuild b/net-mail/mblaze/mblaze-0.6.ebuild
index a108686..2830e27 100644
--- a/net-mail/mblaze/mblaze-0.6.ebuild
+++ b/net-mail/mblaze/mblaze-0.6.ebuild
@@ -4,8 +4,14 @@
EAPI=7
DESCRIPTION="Unix utilities to deal with Maildir"
-HOMEPAGE="https://github.com/leahneukirchen/mblaze"
-SRC_URI="https://github.com/leahneukirchen/mblaze/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+HOMEPAGE="https://git.vuxu.org/mblaze/"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://git.vuxu.org/mblaze"
+else
+ SRC_URI="https://git.vuxu.org/mblaze/snapshot/${P}.tar.gz"
+fi
RESTRICT="mirror"
diff --git a/net-mail/mblaze/mblaze-9999.ebuild b/net-mail/mblaze/mblaze-9999.ebuild
new file mode 100644
index 0000000..2830e27
--- /dev/null
+++ b/net-mail/mblaze/mblaze-9999.ebuild
@@ -0,0 +1,24 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Unix utilities to deal with Maildir"
+HOMEPAGE="https://git.vuxu.org/mblaze/"
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://git.vuxu.org/mblaze"
+else
+ SRC_URI="https://git.vuxu.org/mblaze/snapshot/${P}.tar.gz"
+fi
+
+RESTRICT="mirror"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="amd64 x86"
+
+src_install() {
+ emake PREFIX="${D}/usr" install
+}