mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
lxqt-base/lxqt-session: drop 2.0.0, 2.1.1
Signed-off-by: Jimi Huotari <chiitoo@gentoo.org>
This commit is contained in:
parent
cd47f785c2
commit
9f46e376a8
@ -1,4 +1,2 @@
|
||||
DIST lxqt-session-2.0.0.tar.xz 194480 BLAKE2B 18954f9d440ad8a553b9ccf0aa6bb28a971e7d2010a5b8f0dc32080d5829654bdbc5dd5bd292a0285b1e75af4e0cb0fe4585061e86814c0976c69824015719b4 SHA512 c0b8bbcb666b55b0218bfe1e6669fff0de44a89986dae9afb17ae169e13a2816ef56e62d0b9210449023113a8066d45ccef4fa54b0a5c08c60c2ca4311f142ed
|
||||
DIST lxqt-session-2.1.1.tar.xz 213328 BLAKE2B 4dac6bcd880b2c5e3908feb8c6f13b79e02235015cff7f270f345604f99aff258612cb14cb4243218ce39880181d22d82f81871191992126423bc12e39e2cad9 SHA512 31e5eb2bd4b8cf3b8e7b5dd102339b38f0f132e1dc5784debb6788b31adac877fb45e8885eeae5897ec8c497ed966feab2203325daaa525e1493587cf4e9ef9d
|
||||
DIST lxqt-session-2.2.0.tar.xz 217924 BLAKE2B ea5adba171ab007d8c5d71c7738c9335d8d8c564a2ecba4336df77931c4290feefd7da317419bb8534c45398bcc2d60a79e19e804962f6b4b363663361569395 SHA512 7518ca51bbf2017ae9e263a1d1e8c5c37ca099c23fc2885a9c5dc8be913225eb77c86f345782881f0020769d95fcd4b7c89f6b71b39bf42591de58f42bc20302
|
||||
DIST lxqt-session-2.3.0.tar.xz 221240 BLAKE2B f5afa5d0023c4049771a335c0fbc32388b853e528ce59d3fa8080f75cfbf161a9909872affcdb531e6aa3b02331d731f8b37b7fff3e50acc2f99e66e29768663 SHA512 d366e39e365b2986f524681e13de94d36e1b3b4aa7933423b19ea1defbded9cffac31a2ba62553b7d57a3975f6d849ed6b19f6b3d011481c1d81d94470872bb4
|
||||
|
||||
@ -1,58 +0,0 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="LXQt Session Manager"
|
||||
HOMEPAGE="https://lxqt-project.org/"
|
||||
|
||||
MY_PV="$(ver_cut 1-2)"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz"
|
||||
KEYWORDS="amd64 arm64 ~ppc64 ~riscv ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="LGPL-2.1 LGPL-2.1+"
|
||||
SLOT="0"
|
||||
IUSE="+udev"
|
||||
|
||||
BDEPEND="
|
||||
>=dev-qt/qttools-6.6:6[linguist]
|
||||
>=dev-util/lxqt-build-tools-2.0.0
|
||||
"
|
||||
DEPEND="
|
||||
>=app-misc/qtxdg-tools-4.0.0
|
||||
>=dev-libs/libqtxdg-4.0.0
|
||||
>=dev-qt/qtbase-6.6:6[dbus,gui,widgets]
|
||||
kde-frameworks/kwindowsystem:6[X]
|
||||
kde-plasma/layer-shell-qt:6
|
||||
=lxqt-base/liblxqt-${MY_PV}*:=
|
||||
sys-process/procps:=
|
||||
x11-libs/libX11
|
||||
x11-misc/xdg-user-dirs
|
||||
udev? ( virtual/libudev:= )
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DWITH_LIBUDEV=$(usex udev)
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake_src_install
|
||||
doman lxqt-config-session/man/*.1 lxqt-session/man/*.1
|
||||
|
||||
newenvd - 91lxqt-config-dir <<- _EOF_
|
||||
XDG_CONFIG_DIRS='${EPREFIX}/usr/share'
|
||||
_EOF_
|
||||
}
|
||||
@ -1,58 +0,0 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="LXQt Session Manager"
|
||||
HOMEPAGE="https://lxqt-project.org/"
|
||||
|
||||
MY_PV="$(ver_cut 1-2)"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz"
|
||||
KEYWORDS="amd64 arm64 ~ppc64 ~riscv ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="LGPL-2.1 LGPL-2.1+"
|
||||
SLOT="0"
|
||||
IUSE="+udev"
|
||||
|
||||
BDEPEND="
|
||||
>=dev-qt/qttools-6.6:6[linguist]
|
||||
>=dev-util/lxqt-build-tools-2.1.0
|
||||
"
|
||||
DEPEND="
|
||||
>=app-misc/qtxdg-tools-4.1.0
|
||||
>=dev-libs/libqtxdg-4.1.0
|
||||
>=dev-qt/qtbase-6.6:6[dbus,gui,widgets]
|
||||
kde-frameworks/kwindowsystem:6[X]
|
||||
kde-plasma/layer-shell-qt:6
|
||||
=lxqt-base/liblxqt-${MY_PV}*:=
|
||||
sys-process/procps:=
|
||||
x11-libs/libX11
|
||||
x11-misc/xdg-user-dirs
|
||||
udev? ( virtual/libudev:= )
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DWITH_LIBUDEV=$(usex udev)
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake_src_install
|
||||
doman lxqt-config-session/man/*.1 lxqt-session/man/*.1
|
||||
|
||||
newenvd - 91lxqt-config-dir <<- _EOF_
|
||||
XDG_CONFIG_DIRS='${EPREFIX}/usr/share'
|
||||
_EOF_
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user