commit: 9a5005db4f52709d1d699ed326220122a894f17a
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 1 19:27:29 2025 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Jun 1 19:27:54 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a5005db
sys-power/sandmann-bin: drop 1.2
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
sys-power/sandmann-bin/Manifest | 1 -
sys-power/sandmann-bin/sandmann-bin-1.2.ebuild | 59 --------------------------
2 files changed, 60 deletions(-)
diff --git a/sys-power/sandmann-bin/Manifest b/sys-power/sandmann-bin/Manifest
index 8a498e04e565..fc624a996e94 100644
--- a/sys-power/sandmann-bin/Manifest
+++ b/sys-power/sandmann-bin/Manifest
@@ -1,3 +1,2 @@
-DIST sandmann-1.2.tar.xz 16868444 BLAKE2B
b4e6bfefedc31af3b1fcb9c5b05349a23eb6150296dff6ee74a6626e6f6914a244bb7bb22ece4a28daa699f3291f1b7194307f1b524ed0c8ab924587e5b001f6
SHA512
44a3287f61361d0594988715ef8d302d772dbec40a50054c5091642cbba18ef006ddb59e52303f9482ddb66de6006ef340b3726be7486cdb40092302e5aa5501
DIST sandmann-1.3.1.tar.xz 16884480 BLAKE2B
6e16eae03f7ab43d5c3807b43587dbf65047ed86196623748e499eba20d6347bd074ff6ed167f7301c7cfdc746654811428f16569bd1b8a6ebb3cb3b660cf7f0
SHA512
8aaead9ff9b711737eecff49edee042b32fdbc194b67f99a6bfbca6a8915442cd60d505ce070685915fa7aae6b0fecd7eb5c55096580bf3f8f525650eddbd8cc
DIST sandmann-1.4.1.tar.xz 16923760 BLAKE2B
348b84642835ae17e28fec7d43488cc69a2c061aefebe7bbb129f3e67d29c3d70ab0c3bc097afa81e0f19e4f6e52d7ffb226ca19e97490c3521bd497dd8ac520
SHA512
8a8b8c6c41bd818df9e8477070a35df37d1a14b76de54e361937bec998393646d191f098154a91273e4e2d910f3eeb05ed4a790f1783d7fb7ea0a4a25b802fa9
diff --git a/sys-power/sandmann-bin/sandmann-bin-1.2.ebuild
b/sys-power/sandmann-bin/sandmann-bin-1.2.ebuild
deleted file mode 100644
index 62f852a65ff8..000000000000
--- a/sys-power/sandmann-bin/sandmann-bin-1.2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit java-utils-2 systemd tmpfiles
-
-MY_PN=${PN%-bin}
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="An autosuspend and wakeup daemon"
-HOMEPAGE="https://gitlab.com/flow/sandmann"
-SRC_URI="https://geekplace.eu/projects/${MY_PN}/archive/${MY_P}.tar.xz"
-
-S="${WORKDIR}/${MY_P}"
-LICENSE="GPL-3+ LGPL-3"
-SLOT="0"
-
-KEYWORDS="amd64"
-
-# >=java-config-2.3.2 to get the libdir fix.
-RDEPEND="
- acct-user/sandmann
- >=dev-java/java-config-2.3.2
- sys-apps/systemd
- sys-auth/polkit
- >=virtual/jre-17
-"
-
-src_prepare() {
- default
- sed -i \
- -e 's|^ExecStart=.*|ExecStart=/usr/bin/sandmann|' \
- sandmann.service || die
-}
-
-src_compile() {
- :
-}
-
-src_install() {
- local my_emake_args=(
- DESTDIR="${D}"
- SYSTEMD_SYSTEM_UNIT_DIR="$(systemd_get_systemunitdir)"
- TARGET_BINARY=
- SOURCELESS_INSTALL=true
- )
-
- emake ${my_emake_args[@]} install
-
- java-pkg_newjar out/main/assembly.dest/out.jar sandmann.jar
- java-pkg_dolauncher sandmann
-
- dodoc README.md
-}
-
-pkg_postinst() {
- tmpfiles_process sandmann.conf
-}