diff options
author | Petr Vaněk <arkamar@gentoo.org> | 2024-12-21 18:14:53 +0100 |
---|---|---|
committer | Petr Vaněk <arkamar@gentoo.org> | 2024-12-21 18:17:48 +0100 |
commit | a5bd4b1ab3cd1e4366a631aaef7df968e811772b (patch) | |
tree | 516ef563f199e33638490f3d3f1bd9ec68c95932 /app-admin | |
parent | x11-themes/adwaita-icon-theme: Stabilize 46.2 sparc, #946484 (diff) | |
download | gentoo-a5bd4b1ab3cd1e4366a631aaef7df968e811772b.tar.gz gentoo-a5bd4b1ab3cd1e4366a631aaef7df968e811772b.tar.bz2 gentoo-a5bd4b1ab3cd1e4366a631aaef7df968e811772b.zip |
app-admin/lsyncd: drop 2.2.3
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/lsyncd/Manifest | 1 | ||||
-rw-r--r-- | app-admin/lsyncd/files/lsyncd-2.2.3-cmake_lua_version.patch | 20 | ||||
-rw-r--r-- | app-admin/lsyncd/files/lsyncd-2.2.3-mandir.patch | 9 | ||||
-rw-r--r-- | app-admin/lsyncd/lsyncd-2.2.3.ebuild | 40 |
4 files changed, 0 insertions, 70 deletions
diff --git a/app-admin/lsyncd/Manifest b/app-admin/lsyncd/Manifest index e57d9dcadd25..4711b683c98f 100644 --- a/app-admin/lsyncd/Manifest +++ b/app-admin/lsyncd/Manifest @@ -1,2 +1 @@ -DIST lsyncd-2.2.3.tar.gz 85165 BLAKE2B 9b3ce9ad882f12a0cf800ca0418092807c5c30451fe273eae18486b2ab245fbdc77dee937983bf78f678e20448dda39771c4bca96d8efe010cc45d470a30eba3 SHA512 2193a342f8aa7d8cfb55378c9c59ca61d2d8e4026263fd6e6560c730c712cef1f189305a3f9bca58f5b9c9ffae5af12e1d75e5355d5bdae86a47ad9595b8169a DIST lsyncd-2.3.1.tar.gz 125126 BLAKE2B b966e2ea1887c93fe26b4fbaeedec50c4d6fd2a66eee0fbafc859a49a4b85eddc20d78ae6483be7a8f9acc66c67da3199dad757bc7b772dead2cccc9d60e621d SHA512 195cc46e00c58301aca6afb027eb0ad663254b3028bcf3e5d4fb7709bbcf2a6eb8ba9a39cae62c951eb4562795e0a147efb1ddcdd22a0b46742ec7c17f478fbe diff --git a/app-admin/lsyncd/files/lsyncd-2.2.3-cmake_lua_version.patch b/app-admin/lsyncd/files/lsyncd-2.2.3-cmake_lua_version.patch deleted file mode 100644 index 7a6cccb1445d..000000000000 --- a/app-admin/lsyncd/files/lsyncd-2.2.3-cmake_lua_version.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/cmake/FindLua.cmake -+++ b/cmake/FindLua.cmake -@@ -36,7 +36,7 @@ - #SET(_POSSIBLE_LUA_LIBRARY lua) - - # Determine possible naming suffixes (there is no standard for this) --SET(_POSSIBLE_SUFFIXES "52" "5.2" "-5.2" "53" "5.3" "-5.3" "") -+SET(_POSSIBLE_SUFFIXES "${LUA_ABI_VERSION}") - - # Set up possible search names and locations - FOREACH(_SUFFIX ${_POSSIBLE_SUFFIXES}) -@@ -53,7 +53,7 @@ - - # Find the lua executable - FIND_PROGRAM(LUA_COMPILER -- NAMES luac5.3 ${_POSSIBLE_LUA_COMPILER} -+ NAMES ${_POSSIBLE_LUA_COMPILER} - ) - - # Find the lua header diff --git a/app-admin/lsyncd/files/lsyncd-2.2.3-mandir.patch b/app-admin/lsyncd/files/lsyncd-2.2.3-mandir.patch deleted file mode 100644 index 240ad6dce8fa..000000000000 --- a/app-admin/lsyncd/files/lsyncd-2.2.3-mandir.patch +++ /dev/null @@ -1,9 +0,0 @@ ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -107,5 +107,5 @@ add_executable( lsyncd ${LSYNCD_SRC} ) - target_link_libraries( lsyncd ${LUA_LIBRARIES} ) - - install( TARGETS lsyncd RUNTIME DESTINATION bin ) --install( FILES doc/manpage/lsyncd.1 DESTINATION man ) -+install( FILES doc/manpage/lsyncd.1 DESTINATION share/man/man1 ) - diff --git a/app-admin/lsyncd/lsyncd-2.2.3.ebuild b/app-admin/lsyncd/lsyncd-2.2.3.ebuild deleted file mode 100644 index afa60bc84968..000000000000 --- a/app-admin/lsyncd/lsyncd-2.2.3.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -LUA_COMPAT=( lua5-{2,3} ) -LUA_REQ_USE="deprecated" - -inherit cmake lua-single - -DESCRIPTION="Live Syncing (Mirror) Daemon" -HOMEPAGE="https://github.com/lsyncd/lsyncd" -SRC_URI="https://github.com/lsyncd/lsyncd/archive/release-${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-release-${PV}" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" - -REQUIRED_USE="${LUA_REQUIRED_USE}" - -DEPEND="${LUA_DEPS}" -RDEPEND="${LUA_DEPS} - net-misc/rsync" -# Both lua and luac are invoked at build time -BDEPEND="${LUA_DEPS} - app-text/asciidoc - virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${PN}-2.2.3-cmake_lua_version.patch - "${FILESDIR}"/${PN}-2.2.3-mandir.patch -) - -src_configure() { - local mycmakeargs=( - -DLUA_ABI_VERSION=$(ver_cut 1-2 $(lua_get_version)) - ) - cmake_src_configure -} |