summaryrefslogtreecommitdiff
path: root/app-emacs
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2025-12-04 17:36:59 +0100
committerMaciej Barć <xgqt@gentoo.org>2025-12-04 17:47:53 +0100
commitac82b09f6029eacfff3ebc643896cc07bf9f080c (patch)
treecdde8f78c0514b193260a2986ab8021c80a83caa /app-emacs
parent05e1b6810d90cb35e091458eb94bc9e1c91b670b (diff)
downloadgentoo-ac82b09f6029eacfff3ebc643896cc07bf9f080c.tar.gz
gentoo-ac82b09f6029eacfff3ebc643896cc07bf9f080c.tar.bz2
gentoo-ac82b09f6029eacfff3ebc643896cc07bf9f080c.zip
app-emacs/osm: bump to 1.10
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r--app-emacs/osm/Manifest1
-rw-r--r--app-emacs/osm/osm-1.10.ebuild42
2 files changed, 43 insertions, 0 deletions
diff --git a/app-emacs/osm/Manifest b/app-emacs/osm/Manifest
index d34c5abd9316..0766ed922d05 100644
--- a/app-emacs/osm/Manifest
+++ b/app-emacs/osm/Manifest
@@ -1 +1,2 @@
+DIST osm-1.10.gh.tar.gz 36764 BLAKE2B c41841a5432ecb75c60b27284adb906131837a15a3f63b11dc69b55ea375b2eacd7d1cf1de967c92ee0b2a7fe15d62b88b139fdf57dd7594523220f6eb7ffcfc SHA512 93582b37480e8b0913333648167f2992bc7f99272768241d9ba79d5f29e4ea63753e1d40289ad967768121f0836e31f5777b46ef0f7b4cfce18d2376697a5279
DIST osm-1.9.gh.tar.gz 36716 BLAKE2B 344f3c82e074690a8b51c2d373059a6762122b5ffbb04a7e10c0fa1b0583a6a74fa6a62860865e0d755ffd91f0c62d91b6bc99e344eceb075c354b61fc0b870d SHA512 3f93dee481493f5df4e0e0da2b4a0d14d1114910444cf297cf703826566b66a5ec9a02df9ed0df792c2f0212eb6f330a9d4ea1b2f4d81538422201510c2ecf5f
diff --git a/app-emacs/osm/osm-1.10.ebuild b/app-emacs/osm/osm-1.10.ebuild
new file mode 100644
index 000000000000..1bbe89039011
--- /dev/null
+++ b/app-emacs/osm/osm-1.10.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS="29.1"
+
+inherit elisp
+
+DESCRIPTION="OpenStreetMap tile-based viewer for GNU Emacs"
+HOMEPAGE="https://github.com/minad/osm/"
+
+if [[ "${PV}" == *9999* ]] ; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://github.com/minad/${PN}"
+else
+ SRC_URI="https://github.com/minad/${PN}/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz"
+
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+
+BDEPEND="
+ >=app-editors/emacs-${NEED_EMACS}:*[jpeg,json(+),libxml2,png,svg]
+ app-emacs/compat
+"
+RDEPEND="
+ ${BDEPEND}
+ net-misc/curl[ssl]
+"
+
+DOCS=( CHANGELOG.org README.org )
+SITEFILE="50${PN}-gentoo.el"
+
+src_compile() {
+ elisp_src_compile
+ elisp-make-autoload-file
+}