Diff tt-rss-20230901 with a tt-rss-99999999
/usr/portage/www-apps/tt-rss/tt-rss-99999999.ebuild 2023-10-09 14:52:35.880368511 +0300 | ||
---|---|---|
3 | 3 | |
4 | 4 |
EAPI=8 |
5 | 5 | |
6 |
inherit webapp |
|
6 |
inherit git-r3 webapp |
|
7 | 7 | |
8 | 8 |
DESCRIPTION="Tiny Tiny RSS - A web-based news feed (RSS/Atom) aggregator using AJAX" |
9 | 9 |
HOMEPAGE="https://tt-rss.org/" |
10 |
SRC_URI="https://dev.gentoo.org/~chewi/distfiles/${P}.tar.xz" |
|
10 |
EGIT_REPO_URI="https://git.tt-rss.org/fox/${PN}.git" |
|
11 | 11 |
LICENSE="GPL-3" |
12 |
KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86" |
|
12 |
SLOT="${PV}" # Single live slot. |
|
13 | 13 |
IUSE="+acl daemon gd +mysqli postgres" |
14 | 14 |
REQUIRED_USE="|| ( mysqli postgres )" |
15 | 15 | |
... | ... | |
50 | 50 | |
51 | 51 |
need_httpd_cgi # From webapp.eclass |
52 | 52 | |
53 |
S="${WORKDIR}/${PN}" |
|
54 | ||
55 | 53 |
PATCHES=( |
56 | 54 |
"${FILESDIR}"/${PN}-no-chmod.patch |
57 | 55 |
) |
... | ... | |
88 | 86 | |
89 | 87 |
webapp_src_install |
90 | 88 |
} |
89 | ||
90 |
pkg_postinst() { |
|
91 |
if use vhosts && [[ -n ${REPLACING_VERSIONS} ]]; then |
|
92 |
elog |
|
93 |
elog "The live ebuild does not automatically upgrade your installations so" |
|
94 |
elog "don't forget to do so manually." |
|
95 |
fi |
|
96 | ||
97 |
webapp_pkg_postinst |
|
98 |
} |