Diff openrsync-0.5.0_p20220508 with a openrsync-0.5.0_p20250127
| /usr/portage/net-misc/openrsync/openrsync-0.5.0_p20250127.ebuild 2026-04-10 12:17:39.964065571 +0300 | ||
|---|---|---|
| 1 |
# Copyright 2022 Gentoo Authors |
|
| 1 |
# Copyright 2022-2026 Gentoo Authors |
|
| 2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 | |
| 4 |
EAPI=8 |
|
| 4 |
EAPI=9 |
|
| 5 | 5 | |
| 6 |
inherit edo toolchain-funcs |
|
| 6 |
inherit toolchain-funcs |
|
| 7 | 7 | |
| 8 | 8 |
DESCRIPTION="BSD-licensed implementation of rsync" |
| 9 | 9 |
HOMEPAGE="https://www.openrsync.org/" |
| 10 | 10 | |
| 11 | 11 |
if [[ ${PV} == *_p* ]] ; then
|
| 12 |
MY_COMMIT="f50d0f8204ea18306a0c29c6ae850292ea826995" |
|
| 13 |
SRC_URI="https://github.com/kristapsdz/openrsync/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
| 14 |
S="${WORKDIR}"/${PN}-${MY_COMMIT}
|
|
| 12 |
OPENRSYNC_COMMIT="a257c0f495af2b5ee6b41efc6724850a445f87ed" |
|
| 13 |
SRC_URI="https://github.com/kristapsdz/openrsync/archive/${OPENRSYNC_COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
| 14 |
S="${WORKDIR}"/${PN}-${OPENRSYNC_COMMIT}
|
|
| 15 | 15 |
else |
| 16 | 16 |
SRC_URI="https://github.com/kristapsdz/openrsync/archive/refs/tags/VERSION_$(ver_rs 3 _).tar.gz -> ${P}.tar.gz"
|
| 17 | 17 |
fi |
| ... | ... | |
| 20 | 20 |
SLOT="0" |
| 21 | 21 |
KEYWORDS="~amd64" |
| 22 | 22 | |
| 23 |
PATCHES=( |
|
| 24 |
"${FILESDIR}"/${PN}-0.5.0_p20220508-extern-stdint-include.patch
|
|
| 25 |
"${FILESDIR}"/${PN}-0.5.0_p20220508-musl-include.patch
|
|
| 23 |
QA_CONFIG_IMPL_DECL_SKIP=( |
|
| 24 |
# OpenBSD |
|
| 25 |
crypt_checkpass crypt_newhash errc getexecname getprogname |
|
| 26 |
memset_s pledge recallocarray strtonum TAILQ_FOREACH_SAFE |
|
| 27 |
timingsafe_bcmp timingsafe_memcmp unveil warnc |
|
| 26 | 28 |
) |
| 27 | 29 | |
| 28 | 30 |
src_configure() {
|