diff options
author | Maciej Barć <xgqt@gentoo.org> | 2024-05-25 15:02:45 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2024-05-25 16:05:55 +0200 |
commit | e05f534f361761d9fb1624eee0d2b52906c33f09 (patch) | |
tree | 2870311f028195fea6b5565372f2ab076423a1ff /app-emacs | |
parent | app-emacs/mastodon: drop old 1.0.18 (diff) | |
download | gentoo-e05f534f361761d9fb1624eee0d2b52906c33f09.tar.gz gentoo-e05f534f361761d9fb1624eee0d2b52906c33f09.tar.bz2 gentoo-e05f534f361761d9fb1624eee0d2b52906c33f09.zip |
app-emacs/mastodon: bump to 1.0.21
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.21.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/app-emacs/mastodon/Manifest b/app-emacs/mastodon/Manifest index 4874eecd500f..9e35b6a89dc3 100644 --- a/app-emacs/mastodon/Manifest +++ b/app-emacs/mastodon/Manifest @@ -1 +1,2 @@ DIST mastodon-1.0.19.tar.gz 160533 BLAKE2B 4acf21f6b50296463c8083d237f2ab8f510f3372e0cd63437bc037dba8e3cdac9806ddf4a2e8727d2a39c0b0bef18688c0cce679019ac99cdf88b508830e25ef SHA512 27c56aa073c003b7063acd816230d1e5bf0f353b2d3c0a6cfa861130d4fbfd80bb5189d8bb1e036442f824d85bf96c0db21a927e4840057eaf17fff3114d3526 +DIST mastodon-1.0.21.tar.gz 161082 BLAKE2B a4a23e4ac06e0d922b084feaa1ff21168b9d30a72dbbcf63697e486b4f1641ea7beb1789f96874ee9eae1bcb2eea54b907c69a553aac6024d0b4635c82109416 SHA512 4362a34edef9e94948625acda86e9bbceb8a37642dd61cadabc0004e8636cbece48adc2119d8e2e302d0d2b4695f9844e9a9e8b8abe6378cc48b6e7ff34b4f8a diff --git a/app-emacs/mastodon/mastodon-1.0.21.ebuild b/app-emacs/mastodon/mastodon-1.0.21.ebuild new file mode 100644 index 000000000000..2a79521adfed --- /dev/null +++ b/app-emacs/mastodon/mastodon-1.0.21.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" |