diff options
Diffstat (limited to 'net-proxy')
-rw-r--r-- | net-proxy/Manifest.gz | bin | 5547 -> 5547 bytes | |||
-rw-r--r-- | net-proxy/lyrebird/Manifest | 2 | ||||
-rw-r--r-- | net-proxy/lyrebird/lyrebird-0.5.0.ebuild | 18 |
3 files changed, 7 insertions, 13 deletions
diff --git a/net-proxy/Manifest.gz b/net-proxy/Manifest.gz Binary files differindex 197dbc6cc3a2..a2c02689d9f7 100644 --- a/net-proxy/Manifest.gz +++ b/net-proxy/Manifest.gz diff --git a/net-proxy/lyrebird/Manifest b/net-proxy/lyrebird/Manifest index 84e565d5eb2d..0406267d5102 100644 --- a/net-proxy/lyrebird/Manifest +++ b/net-proxy/lyrebird/Manifest @@ -3,5 +3,5 @@ DIST lyrebird-0.4.0.tar.bz2 80497 BLAKE2B 060ceba6389f8f6a739e43162bf6b54e410c52 DIST lyrebird-0.5.0-deps.tar.xz 49717604 BLAKE2B cb490f3c5b13512f2c9238c8ea47121627d1b77c33e637096cd466d1f59fc71b6113bb10ba2ac3cee16bf9f8c8885a8f4587384bfe6f09ff8b2bbcef087e819c SHA512 33b8ab0e4850c06720430df90ca0a174925b2c03366b1dc2b71480ed3c7c8344dee4c12145654e757d9c8c2dc583a5d44b952ed021b570b86878edfa57b1cfa5 DIST lyrebird-0.5.0.tar.bz2 111189 BLAKE2B d534074f6db7ad190b12010ddc44889c15ae2c3dc594e30dea41ae1f092ca83481ecb51611d763b63a8b3d8d97f887fdc4e216b41dab3b219d7c2df2f7b5d84f SHA512 8059583ae6ebc121cb853600d635382c9d85b6a98a71be0f7f71bfd780d4278804b89cdaa083233dcdb47ec64ebf00a32a57b84f5cd46d42c94e6a7ff74887a8 EBUILD lyrebird-0.4.0.ebuild 1254 BLAKE2B de1748071d2856c7010c444ea0d798f6ac05a1f49ca478ce6d5b633884f199e703fe3478281805aabc5c6c35467b9c0973f0694b6cb37de8ff1950f237b523e9 SHA512 d26b1d40a2000abc603558ed7dda8f2c3c53c49f1980f1ff66412e9950cc1c202546872e51b3a89d4bbdb6530b26bc40e82d81f0b4927102e0070c07d143879f -EBUILD lyrebird-0.5.0.ebuild 1257 BLAKE2B deda68235352780256ddd4b5b70d375857bd4c8ee1bc0c0a89744bdc001dd30632f0ed424b4fc26c5a4dcd744d9f54c2db96687225780e230c28176efdabb436 SHA512 69e2c55c7ea897f303c0b2c7bb767996496b54891c40fffb8d37c1a439a0ffabbbcc6eded0a53636319582061d9d96381cd06840b1cd39cf7587778fde5c72d7 +EBUILD lyrebird-0.5.0.ebuild 1127 BLAKE2B 2708c484b0fbbdeebf563198956a305a7da2211ebbfcf8cb398eae4c1bbbbb0ec11cbddba74e70629fd785c1ebebbda6a3ea26c6ff4757f8f96c468007308867 SHA512 9c9d1dad9f8046af60e6ac11e637dfcca25c76f4c3a1b84a652fce37e9e80b0c74c3804a31e3f2b46e3da154a6e07a64075de3134a6f822bae082268a73bece8 MISC metadata.xml 168 BLAKE2B 2e0e000b4c3b6ca04c12903fdbe278415c05a822623c52e9aa95cbbf3d50bcb1246b7edbda7d2f6b559af8950c6374e6e0a69b76319964cfe686bf50b0604a57 SHA512 4dcf45d1809e8390a2d8155c8ebfe0dd610203e392aeab0ccd8a10f42cc8532a4925eff32b35e7a6c35598a4efd288229034ec0732299dbd8cfa0acff705fed3 diff --git a/net-proxy/lyrebird/lyrebird-0.5.0.ebuild b/net-proxy/lyrebird/lyrebird-0.5.0.ebuild index 0313b779ac34..a85b87945ef9 100644 --- a/net-proxy/lyrebird/lyrebird-0.5.0.ebuild +++ b/net-proxy/lyrebird/lyrebird-0.5.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit go-module +inherit eapi9-ver go-module DESCRIPTION="An obfuscating proxy supporting Tor's pluggable transport protocol obfs4" HOMEPAGE="https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/lyrebird" @@ -31,15 +31,9 @@ src_install() { } pkg_postinst() { - if [[ ! -z "${REPLACING_VERSIONS}" ]]; then - local oldver - for oldver in ${REPLACING_VERSIONS}; do - if ver_test "${oldver}" -lt 0.1.0; then - ewarn "Since version 0.1.0 the proxy executable is called '${PN}' rather than 'obfs4proxy'." - ewarn "Please update your Tor configuration accordingly." - ewarn - break - fi - done + if ver_replacing -lt 0.1.0; then + ewarn "Since version 0.1.0 the proxy executable is called '${PN}' rather than 'obfs4proxy'." + ewarn "Please update your Tor configuration accordingly." + ewarn fi } |