From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 361FD1580FD for ; Fri, 27 Dec 2024 18:52:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E16B5E084F; Fri, 27 Dec 2024 18:52:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C389CE084F for ; Fri, 27 Dec 2024 18:52:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DD48C33BEE9 for ; Fri, 27 Dec 2024 18:52:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3E5D19A2 for ; Fri, 27 Dec 2024 18:52:04 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1735325517.f028bb4f8001ab34d41f3143f1aabcbb387d469a.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/osm/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/osm/Manifest app-emacs/osm/osm-1.5.ebuild X-VCS-Directories: app-emacs/osm/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: f028bb4f8001ab34d41f3143f1aabcbb387d469a X-VCS-Branch: master Date: Fri, 27 Dec 2024 18:52:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 995a7d20-fdee-4fa7-af85-ebe10276aba8 X-Archives-Hash: 7b6a472939b00256456e5f3d18ea5804 commit: f028bb4f8001ab34d41f3143f1aabcbb387d469a Author: Maciej Barć gentoo org> AuthorDate: Fri Dec 27 17:15:43 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Fri Dec 27 18:51:57 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f028bb4f app-emacs/osm: bump to 1.5 Signed-off-by: Maciej Barć gentoo.org> app-emacs/osm/Manifest | 1 + app-emacs/osm/osm-1.5.ebuild | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) diff --git a/app-emacs/osm/Manifest b/app-emacs/osm/Manifest index 07c07451bfb6..e65cde722681 100644 --- a/app-emacs/osm/Manifest +++ b/app-emacs/osm/Manifest @@ -1 +1,2 @@ DIST osm-1.4.tar.gz 35286 BLAKE2B ec45051f7a9045115891e9d38bd2f311b25d02f9da907aa3730eef174af84221c2ae1461e6f7d9b3a866f35f20599f36973a00c5df41551766d4d9d310dbd7df SHA512 afc5ac0b8aa592ddbc8e3fdc5e1472d58c21008952b9208d5d89a6ab666542f1239e67c1c95b25bc90bcc3ad3e5bb0dca06e725355ada1413cfbfce07cf13167 +DIST osm-1.5.tar.gz 35470 BLAKE2B d6a253bc41081b051577ef94bb42baf8be60164e9c0e14852a78985656ceccd9a6ab5c2c0729a6650839fc03e5cd4898f590a65b8ea5b64f0c876fff65b72d40 SHA512 2e1bb170ab6cdc8f7c8acf6cb4720627462272a6d4f1ce6138f43bc34ebef6c468c2902c185070bfb5c6241f80a6574f2c1c3a5fa3e488fef18b0732a7050936 diff --git a/app-emacs/osm/osm-1.5.ebuild b/app-emacs/osm/osm-1.5.ebuild new file mode 100644 index 000000000000..144330f58794 --- /dev/null +++ b/app-emacs/osm/osm-1.5.ebuild @@ -0,0 +1,42 @@ +# 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="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}.git" +else + SRC_URI="https://github.com/minad/${PN}/archive/${PV}.tar.gz + -> ${P}.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-29.1.4.0 +" +RDEPEND=" + ${BDEPEND} + net-misc/curl[ssl] +" + +DOCS=( README.org ) +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp_src_compile + elisp-make-autoload-file +}