gemini-client/lagrange: add 1.7.1, drop 1.6.5
This commit is contained in:
parent
86ff55f2ec
commit
6371d06082
|
@ -1,2 +1,2 @@
|
|||
DIST lagrange-1.6.5.tar.gz 22717536 BLAKE2B 6906696560ea329c82650f6f4ff00e45e7d094a28f6ecc100fdec9b6934ab5dc904003d67f259e74e71fd1685332ceefe0e40900366a2f4554cefd221ced2a76 SHA512 f86eac167f68221166fdb93ff26b33c070e771405a845884c3f1ccfd4c54cee6a207a21022d4e9ade48a33648ca3f5a607ac432879c6163ea494225448188e88
|
||||
DIST lagrange-1.7.0.tar.gz 22806723 BLAKE2B 39ff14fee8b057abe41034a7e3878cbf4693eed4b6fd98cecf91222e90f00ccd61ae1898161503c6adea15f301a335a7c4d0c87f59b81f405dcf96fa8f97ae0a SHA512 3ebf9b3bbcac0ba59eff76ded099abfc0a405b64accccf2dc529fd1e03529aff737c7456b840f9f81f71b2260610348c13c24f84ec41d3939705951f8fdd1b7b
|
||||
DIST lagrange-1.7.1.tar.gz 22808943 BLAKE2B d1c72bc78e3670500022fd1bfabb206f3528d24e9e67b553c328028a0f3eadcdcf64685815cc3055954a170960644a12ccb54c7e6f692fba64ca68a4aad4e6ac SHA512 be8b22355fd726161ee635f925ccbdc0e546450394bf95e12efb08bb4b6df2d195b793bfb8d9776d316ee50b2424cc0e051b04ad145fefc4c04a21f916a681ff
|
||||
|
|
|
@ -13,17 +13,18 @@ SRC_URI="https://git.skyjake.fi/gemini/${PN}/releases/download/v${PV}/${P}.tar.g
|
|||
LICENSE="|| ( MIT Unlicense ) Apache-2.0 BSD-2 OFL-1.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="cpu_flags_x86_sse4_1 +fribidi +harfbuzz +mp3"
|
||||
IUSE="cpu_flags_x86_sse4_1 +fribidi +harfbuzz mp3 webp"
|
||||
|
||||
DEPEND="
|
||||
dev-libs/libpcre:3
|
||||
dev-libs/libunistring
|
||||
dev-libs/openssl
|
||||
dev-libs/libunistring:=
|
||||
dev-libs/openssl:=
|
||||
media-libs/libsdl2[sound(+),video(+)]
|
||||
sys-libs/zlib
|
||||
sys-libs/zlib:=
|
||||
fribidi? ( dev-libs/fribidi )
|
||||
harfbuzz? ( media-libs/harfbuzz[truetype(+)] )
|
||||
harfbuzz? ( media-libs/harfbuzz:=[truetype(+)] )
|
||||
mp3? ( media-sound/mpg123 )
|
||||
webp? ( media-libs/libwebp:= )
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
|
@ -34,6 +35,7 @@ src_configure() {
|
|||
-DENABLE_FRIBIDI=$(usex fribidi)
|
||||
-DENABLE_HARFBUZZ=$(usex harfbuzz)
|
||||
-DENABLE_MPG123=$(usex mp3)
|
||||
-DENABLE_WEBP=$(usex webp)
|
||||
|
||||
# never build bundled libs
|
||||
-DENABLE_FRIBIDI_BUILD=OFF
|
||||
|
@ -50,11 +52,13 @@ src_configure() {
|
|||
pkg_postinst() {
|
||||
xdg_pkg_postinst
|
||||
|
||||
if [[ -n ${REPLACING_VERSIONS} ]] && ver_test ${REPLACING_VERSIONS} -lt 1.6.0 ; then
|
||||
ewarn "Lagrange 1.6 introduces some breaking changes:"
|
||||
if [[ -n ${REPLACING_VERSIONS} ]] && ver_test ${REPLACING_VERSIONS} -lt 1.7.0 ; then
|
||||
ewarn "Lagrange 1.7 introduces some backwards incompatible changes:"
|
||||
ewarn
|
||||
ewarn "- A new TOFU trust store will be created. The old one is kept around but ignored."
|
||||
ewarn "- App state serialization format has been updated. Downgrading to a previous release"
|
||||
ewarn " will cause app state to be reset (e.g., tabs closed, navigation history cleared)."
|
||||
ewarn "- Bookmarks file format has changed. Your existing bookmarks will be imported to"
|
||||
ewarn " the new format. The old bookmarks.txt file can be found in the config directory"
|
||||
ewarn " and is writable only by v1.6 and earlier versions."
|
||||
ewarn "- Saved UI state format has changed. Downgrading will reset window state, close"
|
||||
ewarn " all tabs, and clear the navigation cache."
|
||||
fi
|
||||
}
|
Loading…
Reference in a new issue