From 46225adcb29a471740e1f3e04847303af0b4ede0 Mon Sep 17 00:00:00 2001 From: Zoltan Puskas Date: Mon, 22 May 2023 22:50:01 -0700 Subject: x11-misc/ydotool: Really fix license, fix OpenRC script Signed-off-by: Zoltan Puskas Closes: https://github.com/gentoo/gentoo/pull/31138 Signed-off-by: Matthew Smith --- x11-misc/ydotool/files/ydotool-openrc.patch | 25 +++++++++++++++++++++++++ x11-misc/ydotool/ydotool-1.0.4-r1.ebuild | 24 ------------------------ x11-misc/ydotool/ydotool-1.0.4-r2.ebuild | 21 +++++++++++++++++++++ 3 files changed, 46 insertions(+), 24 deletions(-) create mode 100644 x11-misc/ydotool/files/ydotool-openrc.patch delete mode 100644 x11-misc/ydotool/ydotool-1.0.4-r1.ebuild create mode 100644 x11-misc/ydotool/ydotool-1.0.4-r2.ebuild diff --git a/x11-misc/ydotool/files/ydotool-openrc.patch b/x11-misc/ydotool/files/ydotool-openrc.patch new file mode 100644 index 000000000000..2a90087109e3 --- /dev/null +++ b/x11-misc/ydotool/files/ydotool-openrc.patch @@ -0,0 +1,25 @@ +diff -Naur ydotool-1.0.4-orig/Daemon/CMakeLists.txt ydotool-1.0.4/Daemon/CMakeLists.txt +--- ydotool-1.0.4-orig/Daemon/CMakeLists.txt 2023-01-30 03:53:24.000000000 -0800 ++++ ydotool-1.0.4/Daemon/CMakeLists.txt 2023-05-22 22:42:53.960568790 -0700 +@@ -2,4 +2,9 @@ + "${CMAKE_CURRENT_SOURCE_DIR}/ydotool.service.in" + "${PROJECT_BINARY_DIR}/ydotool.service" + @ONLY) ++configure_file( ++ "${CMAKE_CURRENT_SOURCE_DIR}/ydotool.service-openrc.in" ++ "${PROJECT_BINARY_DIR}/ydotool.openrc" ++ @ONLY) + install(FILES "${PROJECT_BINARY_DIR}/ydotool.service" DESTINATION ${SD_UNITDIR}) ++install(FILES "${PROJECT_BINARY_DIR}/ydotool.openrc" DESTINATION "/etc/init.d" RENAME ydotool) +diff -Naur ydotool-1.0.4-orig/Daemon/ydotool.service-openrc.in ydotool-1.0.4/Daemon/ydotool.service-openrc.in +--- ydotool-1.0.4-orig/Daemon/ydotool.service-openrc.in 2023-01-30 03:53:24.000000000 -0800 ++++ ydotool-1.0.4/Daemon/ydotool.service-openrc.in 2023-05-22 22:38:49.822064144 -0700 +@@ -3,7 +3,7 @@ + name=$RC_SVCNAME + description="Starts ydotoold service" + supervisor="supervise-daemon" +-command="/usr/local/bin/ydotoold" ++command="@CMAKE_INSTALL_FULL_BINDIR@/ydotoold" + + reload() { + ebegin "Reloading $RC_SVCNAME" diff --git a/x11-misc/ydotool/ydotool-1.0.4-r1.ebuild b/x11-misc/ydotool/ydotool-1.0.4-r1.ebuild deleted file mode 100644 index 7e5ec069a404..000000000000 --- a/x11-misc/ydotool/ydotool-1.0.4-r1.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="Generic command-line automation tool (no X!)" -HOMEPAGE="https://github.com/ReimuNotMoe/ydotool" -SRC_URI="https://github.com/ReimuNotMoe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" - -BDEPEND=" - app-text/scdoc - virtual/pkgconfig -" - -src_install() { - cmake_src_install - newinitd Daemon/ydotool.service-openrc.in ${PN} -} diff --git a/x11-misc/ydotool/ydotool-1.0.4-r2.ebuild b/x11-misc/ydotool/ydotool-1.0.4-r2.ebuild new file mode 100644 index 000000000000..ff0493be7ad9 --- /dev/null +++ b/x11-misc/ydotool/ydotool-1.0.4-r2.ebuild @@ -0,0 +1,21 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Generic command-line automation tool (no X!)" +HOMEPAGE="https://github.com/ReimuNotMoe/ydotool" +SRC_URI="https://github.com/ReimuNotMoe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="AGPL-3+" +SLOT="0" +KEYWORDS="~amd64" + +BDEPEND=" + app-text/scdoc + virtual/pkgconfig +" + +PATCHES=( "${FILESDIR}"/${PN}-openrc.patch ) -- cgit v1.2.3-65-gdbad