diff options
author | 2024-08-10 18:25:29 +0200 | |
---|---|---|
committer | 2024-08-10 20:16:38 +0200 | |
commit | 2e545c51b6089e60d2e65d1d7ee420cc4d55d4ca (patch) | |
tree | 41168904eef5f3d596f1fcf0f3382c1fdda637f0 /app-emacs | |
parent | app-emacs/org-modern: bump to 1.5 (diff) | |
download | gentoo-2e545c51b6089e60d2e65d1d7ee420cc4d55d4ca.tar.gz gentoo-2e545c51b6089e60d2e65d1d7ee420cc4d55d4ca.tar.bz2 gentoo-2e545c51b6089e60d2e65d1d7ee420cc4d55d4ca.zip |
app-emacs/mastodon: bump to 1.0.25
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/mastodon/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/mastodon/mastodon-1.0.25.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/app-emacs/mastodon/Manifest b/app-emacs/mastodon/Manifest index 44e8d3827b1c..298fcda06fae 100644 --- a/app-emacs/mastodon/Manifest +++ b/app-emacs/mastodon/Manifest @@ -1 +1,2 @@ DIST mastodon-1.0.24.tar.gz 171101 BLAKE2B 53250b92428d1f962044805a628615ff76e6f418dfafd5785081ef8baa17a70046220801279a22f962fa204bee8cdc590aa43cc43abf7f866a1f5e05a489ac14 SHA512 adbb4dac02baf8e53794a85820257a9dfbc6cb840f412dc7dcb08af08d7d623831727a65f7a3ee90d9fd0d3e12a2bee722e7ad6658d29ed0d902186fe7b6778a +DIST mastodon-1.0.25.tar.gz 624494 BLAKE2B 50be585fd5419c94a3c81705130631882f6f71c69a70c7521b0a5b1df43245f0d1214d50c6c86cf32131437514f020c168bf612f3b32fc236bc0ae6c20418818 SHA512 dbb5e36a2db92242df25d0af0c829c693af70046522ba76a9f3da8bdba4877c29d1b3a774d95750cdaeb73bb8e84dbe04022148c420ba7f4e9324c6c2bfc3969 diff --git a/app-emacs/mastodon/mastodon-1.0.25.ebuild b/app-emacs/mastodon/mastodon-1.0.25.ebuild new file mode 100644 index 000000000000..2a79521adfed --- /dev/null +++ b/app-emacs/mastodon/mastodon-1.0.25.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=27.1 + +inherit elisp + +DESCRIPTION="Emacs client for Mastodon, federated microblogging social network" +HOMEPAGE="https://codeberg.org/martianh/mastodon.el/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://codeberg.org/martianh/mastodon.el.git" + S="${WORKDIR}/${P}/lisp" +else + SRC_URI="https://codeberg.org/martianh/${PN}.el/archive/${PV}.tar.gz + -> ${P}.tar.gz" + S="${WORKDIR}/${PN}.el/lisp" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + app-emacs/persist + app-emacs/request +" +BDEPEND=" + ${RDEPEND} +" + +DOCS=( ../README.org ) +ELISP_TEXINFO="../${PN}.texi" +SITEFILE="50${PN}-gentoo.el" |