Diff pshs-0.4.1 with a pshs-0.4.2

/usr/portage/www-servers/pshs/pshs-0.4.2.ebuild 2023-10-09 14:52:35.900368512 +0300
1 1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit meson
7 7

  
8 8
DESCRIPTION="Pretty small HTTP server -- a command-line tool to share files"
9 9
HOMEPAGE="https://github.com/projg2/pshs/"
10 10
SRC_URI="
11
	https://github.com/projg2/pshs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
11
	https://github.com/projg2/pshs/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz
12
"
12 13

  
13 14
LICENSE="BSD"
14 15
SLOT="0"
15
KEYWORDS="amd64 x86"
16
KEYWORDS=""
16 17
IUSE="+magic qrcode ssl upnp"
17 18

  
18
RDEPEND=">=dev-libs/libevent-2:0=
19
DEPEND="
20
	>=dev-libs/libevent-2.2:0=
19 21
	magic? ( sys-apps/file:0= )
20 22
	qrcode? ( media-gfx/qrencode:0= )
21
	ssl? ( >=dev-libs/libevent-2.1:0=[ssl]
23
	ssl? (
24
		>=dev-libs/libevent-2.1:0=[ssl]
22 25
		dev-libs/openssl:0=
23 26
	)
24
	upnp? ( net-libs/miniupnpc:0= )"
25
DEPEND="${RDEPEND}"
27
	upnp? ( net-libs/miniupnpc:0= )
28
"
29
RDEPEND="
30
	${DEPEND}
31
"
26 32

  
27 33
src_configure() {
28 34
	local emesonargs=(
Thank you!