Diff mktorrent-1.1_p20180912 with a mktorrent-1.1_p20210130

/usr/portage/net-p2p/mktorrent/mktorrent-1.1_p20210130.ebuild 2023-10-09 14:52:34.740368482 +0300
5 5
inherit toolchain-funcs
6 6

  
7 7
DESCRIPTION="Simple command line utility to create BitTorrent metainfo files"
8
HOMEPAGE="https://github.com/Rudde/mktorrent"
8
HOMEPAGE="https://github.com/pobrn/mktorrent"
9 9

  
10 10
if [[ ${PV} == *9999 ]]; then
11 11
	inherit git-r3
12
	EGIT_REPO_URI="https://github.com/Rudde/mktorrent.git"
12
	EGIT_REPO_URI="https://github.com/pobrn/mktorrent"
13 13
else
14
	COMMIT_ID="4c221a05d949a3767a2671de139c6014909daf6b"
15
	SRC_URI="https://github.com/Rudde/${PN}/archive/${COMMIT_ID}.tar.gz -> ${PN}-${COMMIT_ID}.tar.gz"
16
	KEYWORDS="amd64 ~arm x86"
14
	COMMIT_ID="de7d011b35458de1472665f50b96c9cf6c303f39"
15
	SRC_URI="https://github.com/pobrn/${PN}/archive/${COMMIT_ID}.tar.gz -> ${PN}-${COMMIT_ID}.tar.gz"
17 16
	S="${WORKDIR}/${PN}-${COMMIT_ID}"
18 17
fi
19 18

  
19
KEYWORDS="amd64 ~arm x86"
20 20
LICENSE="GPL-2+"
21 21
SLOT="0"
22 22
IUSE="threads +ssl debug"
......
31 31
	tc-export CC
32 32

  
33 33
	local myemakeargs=(
34
		USE_LONG_OPTIONS=1
35 34
		USE_LARGE_FILES=1
36 35
		DEBUG=$(usex debug)
37 36
		USE_OPENSSL=$(usex ssl)
Thank you!