commit: 9f630913c641a40293796003f6edd7b2d25e1743 Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org> AuthorDate: Mon Nov 10 15:09:42 2025 +0000 Commit: Jimi Huotari <chiitoo <AT> gentoo <DOT> org> CommitDate: Mon Nov 10 15:12:10 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f630913
app-arch/lxqt-archiver: update manifest The original tarball seems to have been created prematurely, missing some commits. See also: https://github.com/lxqt/lxqt-archiver/issues/460 Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org> app-arch/lxqt-archiver/Manifest | 2 +- .../lxqt-archiver/lxqt-archiver-1.3.0-r1.ebuild | 46 ++++++++++++++++++++++ 2 files changed, 47 insertions(+), 1 deletion(-) diff --git a/app-arch/lxqt-archiver/Manifest b/app-arch/lxqt-archiver/Manifest index 23f430ac508a..057d43a8100c 100644 --- a/app-arch/lxqt-archiver/Manifest +++ b/app-arch/lxqt-archiver/Manifest @@ -1,4 +1,4 @@ DIST lxqt-archiver-1.0.0.tar.xz 187944 BLAKE2B c28e0c7c5a41fa5a1e2d417239e5de0b33d3a84a2833fab7239f50ae1b7f426c2b7fd630a09cea24f2032183e2bdcc037276462fdab3719fb709fd9f51ea8afd SHA512 12552539cb7601c3c1422ed00d6fa8ed0ebed744ce8b7b4a3e3cc8bd59bf8df165008fa63b0ce173b58309001f35c33a219cd80e7568acf12c4c896320fc5061 DIST lxqt-archiver-1.1.0.tar.xz 191944 BLAKE2B c4356f8ea35e6fa9477fd31e5f5371d832ba33cadc53a2ab2e9a5bafcf9a5ddef1cead1c99234a9e8ff8572a96d760e661d3b6599023ffb4abefa0ab48185d75 SHA512 7c2c1a9e9eae30452c3c6c276c5fe30f5b9d9ed8ca92291e69fdc32d1cb94e3a88de79a4379cddebec8ca201a57c70494b8e57c5704b885010a51ec6647f1a16 DIST lxqt-archiver-1.2.0.tar.xz 196992 BLAKE2B 0cb939846513af4aeda52cef1fe4a9fdd3a86159cb1c0b0ca5328e0e632c295cf6cb97d0361165b295ac4dc0467b91325d65d0c60c9ebc0e038962caf8e82669 SHA512 957e675829835ae8d930a65657b86eea991ea60b39d69c1532f282a495560cdf4ce9a273e8924ea7c9e685b728495e9266ebf5b1ae332ed22b68310bd9bf64db -DIST lxqt-archiver-1.3.0.tar.xz 197772 BLAKE2B 90316028888e078994d987c87a89d689cb82379218dae5f567cc57abe9af7acda0bc49aca5468c0204724fe2d33d34b2246fadb84fd6667aed3628be4a1d9689 SHA512 98325229c90be017c1e79106f5fe2504764f29876991b1acb4240d74682e9191be8f483ab425bdb244c93866cfaa4a5ea2394ce69f6db75798859a79227c3c6f +DIST lxqt-archiver-1.3.0.tar.xz 198084 BLAKE2B 4a19778493febad3b704ea78e2c3d66827df54ddd50dae4861a0b2a91832747a0f8a2e9bc7173b706781b5d851223c683565569231a2486cd7ddbf853166d941 SHA512 4c57828cb451f142f1757dc7316ee47085f1a5eba2b19aa69ec38a3a26ca2434b5ac83365a84fde9c8c656a6f81c8750eaf9c879a1a2e8a2a8a7c1796aecc673 diff --git a/app-arch/lxqt-archiver/lxqt-archiver-1.3.0-r1.ebuild b/app-arch/lxqt-archiver/lxqt-archiver-1.3.0-r1.ebuild new file mode 100644 index 000000000000..a006e7f2e663 --- /dev/null +++ b/app-arch/lxqt-archiver/lxqt-archiver-1.3.0-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PV="$(ver_cut 1-2)" + +inherit cmake xdg + +DESCRIPTION="Qt GUI File Archiver" +HOMEPAGE="https://lxqt-project.org/" + +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="GPL-2 GPL-2+" +SLOT="0" + +BDEPEND=" + >=dev-qt/qttools-6.6:6[linguist] + >=dev-util/lxqt-build-tools-2.3.0 +" +DEPEND=" + dev-libs/glib:2 + dev-libs/json-glib + >=dev-qt/qtbase-6.6:6[gui,widgets] + >=x11-libs/libfm-qt-2.3:= +" +RDEPEND="${DEPEND}" + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update + + elog "Please note that this is only a graphical front-end, and additional" + elog "packages are needed to have support for specific file formats." + elog "For example, to be able to work with the 7-Zip format, the" + elog "'app-arch/p7zip' package may be used." + elog "For the full list of supported formats, see the 'README.md' file:" + elog "https://github.com/lxqt/lxqt-archiver/blob/master/README.md" +}
