public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Florian Schmaus" <flow@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/openhab-bin/
Date: Fri, 11 Oct 2024 13:27:29 +0000 (UTC)	[thread overview]
Message-ID: <1728653235.107e7393ad869e17db2eaab25eabc9c45f3459fd.flow@gentoo> (raw)

commit:     107e7393ad869e17db2eaab25eabc9c45f3459fd
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 11 13:25:50 2024 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Fri Oct 11 13:27:15 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=107e7393

app-misc/openhab-bin: drop 4.1.1, 4.1.2

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 app-misc/openhab-bin/Manifest                 |   2 -
 app-misc/openhab-bin/openhab-bin-4.1.1.ebuild | 103 ---------------------
 app-misc/openhab-bin/openhab-bin-4.1.2.ebuild | 124 --------------------------
 3 files changed, 229 deletions(-)

diff --git a/app-misc/openhab-bin/Manifest b/app-misc/openhab-bin/Manifest
index 837cb4dc3d59..d126cdd735dc 100644
--- a/app-misc/openhab-bin/Manifest
+++ b/app-misc/openhab-bin/Manifest
@@ -1,5 +1,3 @@
-DIST openhab-4.1.1.zip 110909555 BLAKE2B df89e2391e8abe926635fc1e0fbb5c7b1f6a03a87ba643d68a3c8bf1ef52f8b6ca862d8655112a225e1ec2f2d9cc90e0906c40a5dc00f52b53fcb4bac8059378 SHA512 50125e025e4ed8f3ea93359a777e0944150cf157b853bc3f6e777c04956c59346d77d4f3680756241d3d71b8c57014f777601cb5ca836b8e80046ce5a5aac770
-DIST openhab-4.1.2.tar.gz 110558399 BLAKE2B b77800898d5358caaadf31e921351d5431a09cf97ad881e091c0f7f7ca6efa13439f39075e15d4887df3b28d2548b10cbf44176328570cf2b8df8fc15bc25ecd SHA512 ccad90d1905f2190cd54284353981453d4d38f1206a427b91094dfd8e8a25e31cc15921544ac883f501ee33d018226b07e12e04bfd5c928771ff090826de3cba
 DIST openhab-4.2.0.tar.gz 110566875 BLAKE2B 25f07801258b958d3845cc43360eac9707416c424d61a8a2eeda55d522735bbf2690c989588cd40dee09ce72aee7aa53e2704d048645190981101cd293c5090b SHA512 83cc0c171de303bcc01198a94963933a7fde93f84a8ccf3cb27511de680576e14d03482d13abc0c0fdcbda6069a6d6f46dee44cb85f597aea2a8641c6693337a
 DIST openhab-4.2.1.tar.gz 110592664 BLAKE2B 6c1ef4ff6a25904a6bd56c5bbb5d6c08163e14723a61966930ffb96183a5890f86ddc73d316d8b48712b262eae80b7e086cdf53510d5a1a09a596b591fe3d037 SHA512 1d8b4b6b7ef4f76ecaee0355842b5bbfce9c422915bdc345e974bfe7d1c275dc4f8bc317f3e53ed6778d7875c7e7757bb3d26e68e016c1d3fbf1009a6a1e070d
 DIST openhab-cli-2024-01-14 8633 BLAKE2B 0b0999abcb884b779087b92f9f3e08fee3662753692392fbb30d218d0fc25fd1fca613c32b8193a3365764c55ac3525f8369aeea4edbf61223cd0219209c4cbf SHA512 bf24ae776d4362e8a60a0c71cb025834e5f645a24377a87484477f544026f2fdd996a1781f1082e62197fce33a9dadb5972df22ce3e4cd9f73d3088ec5bc0a98

diff --git a/app-misc/openhab-bin/openhab-bin-4.1.1.ebuild b/app-misc/openhab-bin/openhab-bin-4.1.1.ebuild
deleted file mode 100644
index 633b026c41d4..000000000000
--- a/app-misc/openhab-bin/openhab-bin-4.1.1.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd tmpfiles
-
-MY_PN=${PN%-bin}
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="An open-source automation software for your home"
-HOMEPAGE="https://www.openhab.org/"
-SRC_URI="
-	https://github.com/openhab/openhab-distro/releases/download/${PV}/${MY_P}.zip
-	https://raw.githubusercontent.com/openhab/openhab-linuxpkg/10061acd36524afb12a033fea6dcf142b399bf56/resources/usr/bin/openhab-cli
-		 -> openhab-cli-2024-01-14
-"
-KEYWORDS="amd64 arm64"
-
-LICENSE="EPL-2.0"
-SLOT="0"
-
-MY_JAVA_DEPEND=">=virtual/jre-17"
-
-# app-arch/zip: openhab-cli backup
-RDEPEND="
-	${MY_JAVA_DEPEND}
-	acct-user/openhab
-	app-arch/zip
-	dev-java/java-config
-"
-
-BDEPEND="app-arch/unzip"
-
-S="${WORKDIR}"
-
-src_compile() {
-	:
-}
-
-src_install() {
-	# We use move here to preserve the executable bit on the files under
-	# openhab/runtime/bin.
-	domove() {
-		local source="${1}"
-		local target="${2}"
-
-		local dest="${ED}/${target}"
-
-		mkdir -p "${dest}" || die "Failed to create ${dest}"
-		mv "${source}"/* "${dest}" || die "Failed to move"
-	}
-
-	domove runtime /usr/share/openhab/runtime
-	domove conf /etc/openhab
-
-	domove userdata /var/lib/openhab
-	fowners -R openhab:openhab /var/lib/openhab
-
-	local dirs=(
-		/usr/share/openhab/addons
-		/var/log/openhab
-	)
-	local d
-	for d in "${dirs[@]}"; do
-		keepdir "${d}"
-		fowners openhab:openhab "${d}"
-	done
-
-	newenvd "${FILESDIR}"/openhab.env 50openhab
-
-	systemd_dounit "${FILESDIR}"/openhab.service
-	newtmpfiles "${FILESDIR}"/openhab.tmpfiles openhab.conf
-
-	newbin - openhab <<EOF
-#!/usr/bin/env bash
-set -eu
-
-if [[ -v JAVA_HOME_OVERRIDE ]]; then
-	JAVA_HOME="\${JAVA_HOME_OVERRIDE}"
-else
-	if ! GENTOO_JAVA_VM="\$(depend-java-query --get-vm '${MY_JAVA_DEPEND}')"; then
-		>&2 echo "Could not find Java VM for ${MY_JAVA_DEPEND}"
-	exit 1
-	fi
-
-	if ! JAVA_HOME_ASSIGNMENT=\$(java-config -P \${GENTOO_JAVA_VM} | grep JAVA_HOME); then
-		>&2 echo "Could not retrieve JAVA_HOME of \${GENTOO_JAVA_VM}"
-		exit 1
-	fi
-
-	eval \${JAVA_HOME_ASSIGNMENT}
-fi
-
-export JAVA_HOME
-exec /usr/share/openhab/runtime/bin/karaf "\$@"
-EOF
-	newbin "${DISTDIR}"/openhab-cli-2024-01-14 openhab-cli
-}
-
-pkg_postinst() {
-	tmpfiles_process openhab.conf
-}

diff --git a/app-misc/openhab-bin/openhab-bin-4.1.2.ebuild b/app-misc/openhab-bin/openhab-bin-4.1.2.ebuild
deleted file mode 100644
index 9b1c384fe722..000000000000
--- a/app-misc/openhab-bin/openhab-bin-4.1.2.ebuild
+++ /dev/null
@@ -1,124 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit edo systemd tmpfiles
-
-MY_PN=${PN%-bin}
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="An open-source automation software for your home"
-HOMEPAGE="https://www.openhab.org/"
-SRC_URI="
-	https://github.com/openhab/openhab-distro/releases/download/${PV}/${MY_P}.tar.gz
-	https://raw.githubusercontent.com/openhab/openhab-linuxpkg/10061acd36524afb12a033fea6dcf142b399bf56/resources/usr/bin/openhab-cli
-		 -> openhab-cli-2024-01-14
-"
-
-S="${WORKDIR}"
-LICENSE="EPL-2.0"
-SLOT="0"
-
-KEYWORDS="~amd64 ~arm64"
-
-MY_JAVA_DEPEND=">=virtual/jre-17"
-
-# app-arch/zip: used by "openhab-cli backup"
-RDEPEND="
-	${MY_JAVA_DEPEND}
-	acct-user/openhab
-	app-arch/zip
-	dev-java/java-config
-"
-
-BDEPEND="app-arch/unzip"
-
-src_compile() {
-	:
-}
-
-src_install() {
-	# We use move here to preserve the executable bit on the files under
-	# openhab/runtime/bin.
-	domove() {
-		local source="${1}"
-		local target="${2}"
-
-		local dest="${ED}/${target}"
-
-		mkdir -p "${dest}" || die "Failed to create ${dest}"
-		mv "${source}"/* "${dest}" || die "Failed to move"
-	}
-
-	domove runtime /usr/share/openhab/runtime
-	domove conf /etc/openhab
-
-	domove userdata /var/lib/openhab
-	fowners -R openhab:openhab /var/lib/openhab
-
-	local dirs=(
-		/usr/share/openhab/addons
-		/var/log/openhab
-	)
-	local d
-	for d in "${dirs[@]}"; do
-		keepdir "${d}"
-		fowners openhab:openhab "${d}"
-	done
-
-	newenvd "${FILESDIR}"/openhab.env 50openhab
-
-	systemd_dounit "${FILESDIR}"/openhab.service
-	newtmpfiles "${FILESDIR}"/openhab.tmpfiles openhab.conf
-
-	newbin - openhab <<EOF
-#!/usr/bin/env bash
-set -eu
-
-if [[ -v JAVA_HOME_OVERRIDE ]]; then
-	JAVA_HOME="\${JAVA_HOME_OVERRIDE}"
-else
-	if ! GENTOO_JAVA_VM="\$(depend-java-query --get-vm '${MY_JAVA_DEPEND}')"; then
-		>&2 echo "Could not find Java VM for ${MY_JAVA_DEPEND}"
-	exit 1
-	fi
-
-	if ! JAVA_HOME_ASSIGNMENT=\$(java-config -P \${GENTOO_JAVA_VM} | grep JAVA_HOME); then
-		>&2 echo "Could not retrieve JAVA_HOME of \${GENTOO_JAVA_VM}"
-		exit 1
-	fi
-
-	eval \${JAVA_HOME_ASSIGNMENT}
-fi
-
-export JAVA_HOME
-exec /usr/share/openhab/runtime/bin/karaf "\$@"
-EOF
-	newbin "${DISTDIR}"/openhab-cli-2024-01-14 openhab-cli
-}
-
-pkg_postinst() {
-	tmpfiles_process openhab.conf
-
-	if [[ -z ${REPLACING_VERSIONS} && -z ${OPENHAB_POSTINST_UPDATE} ]]; then
-	   return
-	fi
-
-	if [[ -d "${EROOT}"/run/systemd/system ]]; then
-		if systemctl is-active --quiet openhab; then
-			local openhab_service_active=1
-			einfo "Restarting OpenHAB service due to version update"
-			edob systemctl daemon-reload
-			edob systemctl stop openhab
-		fi
-
-		echo y | edob -m "Cleaning OpenHAB cache" \
-					  openhab-cli clean-cache
-		assert "Failed to clean OpenHAB cache"
-
-		if [[ -v openhab_service_active ]]; then
-			edob systemctl start openhab
-		fi
-	fi
-}


             reply	other threads:[~2024-10-11 13:27 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-11 13:27 Florian Schmaus [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-16  8:34 [gentoo-commits] repo/gentoo:master commit in: app-misc/openhab-bin/ Florian Schmaus
2025-01-04 10:32 Florian Schmaus
2025-01-04 10:32 Florian Schmaus
2025-01-04 10:30 Florian Schmaus
2024-12-22 11:47 Florian Schmaus
2024-12-04 11:04 Florian Schmaus
2024-12-04 11:04 Florian Schmaus
2024-11-10 10:10 Florian Schmaus
2024-11-10 10:10 Florian Schmaus
2024-10-11 13:27 Florian Schmaus
2024-10-11 13:27 Florian Schmaus
2024-08-22 12:13 Jakov Smolić
2024-08-22  9:51 Florian Schmaus
2024-07-15 19:39 Florian Schmaus
2024-07-15 19:39 Florian Schmaus
2024-03-29  9:29 Florian Schmaus
2024-03-12 14:02 Florian Schmaus
2024-03-12 14:02 Florian Schmaus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1728653235.107e7393ad869e17db2eaab25eabc9c45f3459fd.flow@gentoo \
    --to=flow@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox