diff --git a/app-arch/fuse-archive/Manifest b/app-arch/fuse-archive/Manifest index cb1ac39211..1e4638805d 100644 --- a/app-arch/fuse-archive/Manifest +++ b/app-arch/fuse-archive/Manifest @@ -1 +1,6 @@ +DIST assert-boost-1.87.0.tar.gz 20645 BLAKE2B 28ba5b22b5b9811140afb640fa9f891638fd21e4c1e57cee85a5371b1f0b85baf5f2a57a0a7219075c1da6bd136e13c1c723831c3855d2355a42e90d555b1196 SHA512 da141f67e0c8926e21d4fae6a1665f1706b300b1a85c1d870546eb74d7382369148846bb939d1d23b84fb0dfc542fdc1dafed613f34adacc5931df7655406276 +DIST config-boost-1.87.0.tar.gz 386554 BLAKE2B e1c7f9dcaf190c8b7d6a70bb161535af3d177c66a4305f25e9e192c4b6fa20e7823bff956859440a5fe41bc10d13f0f1bc85b7ce0c54acabf60be6c10da86d00 SHA512 8958ac0f764ab83481f38931a860c0b7cdad8ced4882d1fa57f570d6ebcb0ef000f33ca896faca392c85336406cbb791bf5114c38a15e0a5dcba5bb69ee5526f DIST fuse-archive-0.1.14.tar.gz 59066 BLAKE2B f60a9d5c2f722ba1a8a9f853bb268923d16957137dcb503c4b8499415c98ce4f3c55e2db2d77d11e98ecf7539aaaf6851d44499303ec5f286b95cfe0e293b433 SHA512 03bdb9d360e3677dc10e2728919c3c6cdd712487d768db4cd2ccf9f1b7e725828119132bf539f08e54d0fc9df9fa534e4b374a626c4bd1f4ca519e46e90a6a8b +DIST fuse-archive-1.4.tar.gz 870121 BLAKE2B 218735c0610ddb461c80157fbab23f3f57bfc88d52af0250d688e42c4d79c1298007670921c82b1c9a23ea85fe13770b51ebf8598f6b8b6388a9f9aaed2c1c83 SHA512 71fc289f99340f3e65e8eb5d9799eb5f1b5a5c020f3b6b53cdcb683c20a6809e3a4ab1ecd7715ffc83209eafd73cad4c675c24eb76e08d1545388639051f3898 +DIST intrusive-boost-1.87.0.tar.gz 342888 BLAKE2B 199a381231c6d4262cb1a434b9f6517dd5d0bc0be6424ad51010c09a7537e392bb3d508b38ed0384ecf71106522ea5bcc5e3d4ba9babc1e36618b4a5d257c8f1 SHA512 121621bd745c26d095f09837db60ea736bd5ae2657407ee7ca82f00c9cfd22e94c5d160809da974912bee07e41b607504b3c5f6634dc390bdf88be48568341f5 +DIST move-boost-1.87.0.tar.gz 133396 BLAKE2B 14946fc2f3bfd70a6e0a76c4d8560ef05ff7c71350b7a72799c1cd935fcf3ba834ad5e52e71d9210650af57257efa107af3d427296c874d3027eb9a907f8a5a1 SHA512 3257cd363abe95c73c0f02df60b60d08ff3b3d28f24de36269ee8f58e1b81a9831052dbf463dcbd1ea789368f37d3eeff37e005bc26fe9dd6c179b949c71ba9b diff --git a/app-arch/fuse-archive/fuse-archive-1.4.ebuild b/app-arch/fuse-archive/fuse-archive-1.4.ebuild new file mode 100644 index 0000000000..797a38971a --- /dev/null +++ b/app-arch/fuse-archive/fuse-archive-1.4.ebuild @@ -0,0 +1,51 @@ +# Copyright 2023-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Read-only FUSE file system for mounting archives and compressed files" +HOMEPAGE="https://github.com/google/fuse-archive" + +# Only uses some header-only library from boost-intrusive +# Just vendor it to avoid bringing in entirety of boost as a dependency +BOOST_VERSION="boost-1.87.0" +SRC_URI=" + https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz + https://github.com/boostorg/intrusive/archive/refs/tags/${BOOST_VERSION}.tar.gz -> intrusive-${BOOST_VERSION}.tar.gz + https://github.com/boostorg/config/archive/refs/tags/${BOOST_VERSION}.tar.gz -> config-${BOOST_VERSION}.tar.gz + https://github.com/boostorg/assert/archive/refs/tags/${BOOST_VERSION}.tar.gz -> assert-${BOOST_VERSION}.tar.gz + https://github.com/boostorg/move/archive/refs/tags/${BOOST_VERSION}.tar.gz -> move-${BOOST_VERSION}.tar.gz +" +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + sys-fs/fuse:0 + app-arch/libarchive +" +BDEPEND="virtual/pkgconfig" +RDEPEND="${DEPEND}" + +# TODO(NRK): enable tests. requires python. +# also takes a lot of disk space (and time) by generating big.zip. +src_test() { + : +} + +src_compile() { + local incpath="" + incpath="${incpath} -I../intrusive-${BOOST_VERSION}/include" + incpath="${incpath} -I../config-${BOOST_VERSION}/include" + incpath="${incpath} -I../assert-${BOOST_VERSION}/include" + incpath="${incpath} -I../move-${BOOST_VERSION}/include" + emake CXX="$(tc-getCXX)" PKG_CONFIG="$(tc-getPKG_CONFIG)" \ + CPPFLAGS="${incpath} ${CPPFLAGS}" +} + +src_install() { + dobin out/fuse-archive + doman fuse-archive.1 +} diff --git a/app-misc/afetch/afetch-2.2.0.ebuild b/app-misc/afetch/afetch-2.2.0.ebuild index 11fcd6361f..89d7a834b3 100644 --- a/app-misc/afetch/afetch-2.2.0.ebuild +++ b/app-misc/afetch/afetch-2.2.0.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit savedconfig @@ -16,11 +16,15 @@ IUSE="savedconfig" src_prepare() { default - sed -e '/^CFLAGS/d' -e 's/LDFLAGS =/LDFLAGS +=/' -i Makefile || die + sed -e 's/-O2//' \ + -e 's/-Wextra//' \ + -e 's/CFLAGS =/CFLAGS +=/' \ + -e 's/LDFLAGS =/LDFLAGS +=/' -i Makefile || die + restore_config src/config.h } src_install() { - emake DESTDIR="${D}" PREFIX="/usr" install + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install save_config src/config.h } diff --git a/app-misc/catt/Manifest b/app-misc/catt/Manifest index 37b15306e0..0971e0d6f5 100644 --- a/app-misc/catt/Manifest +++ b/app-misc/catt/Manifest @@ -1 +1,2 @@ DIST catt-0.12.12.tar.gz 79042 BLAKE2B d0885f6030d4ece8f233c568d626fa4e67cba2f7be499dcc290c4d54cf9c6bde6cebe80b37b0147e463ed90694fc8f58d07f95ecfe9454209d05c1598741394e SHA512 8838f7b2e8700dbe924c53dff7c776fcd31646c061065a297ae2399134af7cd5d4bf359d3b7aed23faa3e8987e0e6db4af1cf54a703ba8ce86e532a56586b228 +DIST catt-0.12.13.tar.gz 79044 BLAKE2B 627ca1a83e35e9021972268c2a920c0b8d2d219dfc6eca7d8c175efe3e5ed248ebb417fad7fd4088d2d1f2758d32801c15c928cc14c87a0f5d170900f2ba4f7e SHA512 20b249d522b5f0bc10473185882102a1a114b6b12d6961e2d510337cf80151384d19c7085ca0881321e1cf6fe043a1570a7c554e5eafcd331275d4e2685fb551 diff --git a/app-misc/catt/catt-0.12.12.ebuild b/app-misc/catt/catt-0.12.13.ebuild similarity index 89% rename from app-misc/catt/catt-0.12.12.ebuild rename to app-misc/catt/catt-0.12.13.ebuild index 8099a6ed4c..e0a292fe75 100644 --- a/app-misc/catt/catt-0.12.12.ebuild +++ b/app-misc/catt/catt-0.12.13.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{10..11} ) +PYTHON_COMPAT=( python3_{10..12} ) DISTUTILS_USE_PEP517=poetry inherit distutils-r1 @@ -20,7 +20,7 @@ RESTRICT="test" DEPEND=" dev-python/click[${PYTHON_USEDEP}] - dev-python/pychromecast[${PYTHON_USEDEP}] + - - contact@hacktivis.me - Haelwenn (lanodan) Monnier - + quotient-im/Quaternion diff --git a/net-im/WasIstLos/metadata.xml b/net-im/WasIstLos/metadata.xml index 0a811440c7..2d71653d89 100644 --- a/net-im/WasIstLos/metadata.xml +++ b/net-im/WasIstLos/metadata.xml @@ -6,7 +6,9 @@ Thomas Clarke - xeco23/WasIstLos https://github.com/xeco23/WasIstLos/issues + https://github.com/xeco23/WasIstLos/releases + https://github.com/xeco23/WasIstLos/wiki + xeco23/WasIstLos diff --git a/net-p2p/gridcoin/Manifest b/net-p2p/gridcoin/Manifest index e5a01a3cae..d7fefb7a77 100644 --- a/net-p2p/gridcoin/Manifest +++ b/net-p2p/gridcoin/Manifest @@ -1,2 +1 @@ -DIST gridcoin-5.4.8.0.tar.gz 42846011 BLAKE2B 915500d6b953d1fe2b735092d6c3e5e72d3ce64a6f3f4d1cb94bd8561969663dc98ca3b784b0ea643e9fb7bb70e0439abc122b9382bec073fe0eff4ad3715a8b SHA512 2e37d982ee257e87241d7545e5b15d4d756813089ff029c5c53863f791805942c0f4fb78c2d92684967ca9b5623c530d234e17d1c1f12a48fac8e6119f3f2957 DIST gridcoin-5.4.8.0_p1.tar.gz 42849990 BLAKE2B 4c2c071b5de9ddae46cfbec2d575a79e1c9e4941efbfba8af7f412e776b1bdcc19529fc50249b20a4bcd42630826fbff580519b7bc5e38320a7a9cf0e82b71d5 SHA512 6c0662bf31fbc927ef447c54c1720c39754695dfa5fcdf8ac62d558eebe9142cc38d3bbf9ca72143229b8f5c7f6e121efe3e7901699ab51fa611dd0cd68a9a5a diff --git a/net-p2p/gridcoin/gridcoin-5.4.8.0.ebuild b/net-p2p/gridcoin/gridcoin-5.4.8.0_p1-r1.ebuild similarity index 94% rename from net-p2p/gridcoin/gridcoin-5.4.8.0.ebuild rename to net-p2p/gridcoin/gridcoin-5.4.8.0_p1-r1.ebuild index 06cd4113c5..9a39c07009 100644 --- a/net-p2p/gridcoin/gridcoin-5.4.8.0.ebuild +++ b/net-p2p/gridcoin/gridcoin-5.4.8.0_p1-r1.ebuild @@ -5,10 +5,11 @@ EAPI=8 inherit cmake db-use multilib xdg-utils +MY_PV="${PV/_p/-hotfix-}" DESCRIPTION="Proof-of-Stake based cryptocurrency that rewards BOINC computation" HOMEPAGE="https://gridcoin.us/ https://gridcoin.world/" -SRC_URI="https://github.com/${PN}-community/${PN^}-Research/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN^}-Research-${PV}" +SRC_URI="https://github.com/${PN}-community/${PN^}-Research/archive/refs/tags/${MY_PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN^}-Research-${MY_PV}" LICENSE="BSD BSD-2 Boost-1.0 MIT SSLeay" SLOT="0" @@ -25,6 +26,7 @@ REQUIRED_USE=" BDB_SLOT="5.3" RDEPEND=" >=dev-libs/boost-1.63.0:=[zlib(+)] + =dev-libs/libsecp256k1-0.2.0:=[recovery(+)] >=dev-libs/leveldb-1.21:= dev-libs/libzip:= diff --git a/net-vpn/GlobalProtect-openconnect/GlobalProtect-openconnect-2.3.9.ebuild b/net-vpn/GlobalProtect-openconnect/GlobalProtect-openconnect-2.3.9-r1.ebuild similarity index 99% rename from net-vpn/GlobalProtect-openconnect/GlobalProtect-openconnect-2.3.9.ebuild rename to net-vpn/GlobalProtect-openconnect/GlobalProtect-openconnect-2.3.9-r1.ebuild index 04ac41e48b..8023d1a824 100644 --- a/net-vpn/GlobalProtect-openconnect/GlobalProtect-openconnect-2.3.9.ebuild +++ b/net-vpn/GlobalProtect-openconnect/GlobalProtect-openconnect-2.3.9-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2024 Gentoo Authors +# Copyright 2024-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # Autogenerated by pycargoebuild 0.13.3 @@ -549,7 +549,7 @@ RDEPEND=" >=net-vpn/openconnect-8.2.0:= x11-libs/cairo x11-libs/gdk-pixbuf:2 - x11-libs/gtk+:3 + x11-libs/gtk+:3[wayland] " DEPEND="${RDEPEND}"