commit: b451f3a660b92c03591c897a2dde8df4ab81718e Author: Artemis Everfree <artemis <AT> artemis <DOT> sh> AuthorDate: Sun Aug 17 06:10:10 2025 +0000 Commit: David Roman <davidroman96 <AT> gmail <DOT> com> CommitDate: Sun Aug 17 06:10:10 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b451f3a6
www-apps/forgejo: drop 10.0.1, 10.0.3 Signed-off-by: Artemis Everfree <artemis <AT> artemis.sh> www-apps/forgejo/Manifest | 2 - www-apps/forgejo/forgejo-10.0.1.ebuild | 132 --------------------------------- www-apps/forgejo/forgejo-10.0.3.ebuild | 124 ------------------------------- 3 files changed, 258 deletions(-) diff --git a/www-apps/forgejo/Manifest b/www-apps/forgejo/Manifest index 3b5e8a8ce8..db5cb9dfa4 100644 --- a/www-apps/forgejo/Manifest +++ b/www-apps/forgejo/Manifest @@ -1,4 +1,2 @@ -DIST forgejo-10.0.1.tar.gz 56997906 BLAKE2B b87c9d7532557aa9a48a2a41562b1d6b90c8ca55f610f5eca459f8ad4a36a46e75b5cd149dfc6fcad92d27178a2a509e54bd32e483b7754f75a2e9ae68189fa3 SHA512 33b512c3ee8428eafbf6e730e9b550d49187b90665a90b9629bade47fd06b1e918eea29ff89141f0c580ffb000a39d6562f4741af31ffb4bf7a1a2a48e460bdf -DIST forgejo-10.0.3.tar.gz 57115818 BLAKE2B 0cee1cbcb6ef97f79891b1f5a3733c6d603a6d5c9db855c6e86b939739927901cc1e9a1a211ac004b73a9868da29b97f54f0f9e70183056f92b5c1f5b4955970 SHA512 fb771d5b1105da540ddea08e3d27b0e8e16eddfddaab1688a56c5b488f972b17e150c783b8b8d5d83f90500a0f7a32dbefa3b7d8bb103650c30719a3ed997a8f DIST forgejo-11.0.3.tar.gz 55567487 BLAKE2B 9aecc51d4c81e51686fd780a1c4e0850306d34f4e7d81bf97f8a705a10116edde6fa2b1f818d504477f9a39de65250234d7750033214bec97cae2fd689ac501e SHA512 7b1bb9cea2d6c8c0a1d44ab08ac64efead8773d8243a9e67aa0dded6a27dee38dcb232324e5215649f41f49008bb70163af4b2ac5c492678b69dbf12676088f2 DIST forgejo-12.0.1.tar.gz 54105467 BLAKE2B 78641b313e6c0831dbebd1a352a5aa229f9577d119c08f1ae623e015d01053e222134108162d25011e718878c909db820e538e4d3ee8241336dbf2d6b7691fec SHA512 4004475eb3d7cbb8747ffdb977e05c6d83c130feebc0701d00ea926e3835bbbaeeb34c477dcecc465dd0e2b43947228e654f1c791f74ead39401d58c89735eea diff --git a/www-apps/forgejo/forgejo-10.0.1.ebuild b/www-apps/forgejo/forgejo-10.0.1.ebuild deleted file mode 100644 index c596cf739b..0000000000 --- a/www-apps/forgejo/forgejo-10.0.1.ebuild +++ /dev/null @@ -1,132 +0,0 @@ -# Copyright 2016-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit fcaps go-module tmpfiles systemd flag-o-matic - -DESCRIPTION="A self-hosted lightweight software forge" -HOMEPAGE="https://forgejo.org/ https://codeberg.org/forgejo/forgejo" - -SRC_URI="https://codeberg.org/forgejo/forgejo/releases/download/v${PV}/forgejo-src-${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-src-${PV}" -LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0" -SLOT="0" - -KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" - -IUSE="+acct pam sqlite pie" - -DEPEND=" - acct? ( - acct-group/git - acct-user/git[gitea] ) - pam? ( sys-libs/pam )" -RDEPEND="${DEPEND} - dev-vcs/git - !www-apps/gitea" # until acct-user/git[forgejo] - -DOCS=( - custom/conf/app.example.ini CONTRIBUTING.md README.md -) -FILECAPS=( - -m 711 cap_net_bind_service+ep usr/bin/forgejo -) - -RESTRICT="test" - -src_prepare() { - default - - local sedcmds=( - -e "s#^ROOT =#ROOT = ${EPREFIX}/var/lib/gitea/gitea-repositories#" - -e "s#^ROOT_PATH =#ROOT_PATH = ${EPREFIX}/var/log/forgejo#" - -e "s#^APP_DATA_PATH = data#APP_DATA_PATH = ${EPREFIX}/var/lib/gitea/data#" - -e "s#^HTTP_ADDR = 0.0.0.0#HTTP_ADDR = 127.0.0.1#" - -e "s#^MODE = console#MODE = file#" - -e "s#^LEVEL = Trace#LEVEL = Info#" - -e "s#^LOG_SQL = true#LOG_SQL = false#" - -e "s#^DISABLE_ROUTER_LOG = false#DISABLE_ROUTER_LOG = true#" - ) - - sed -i "${sedcmds[@]}" custom/conf/app.example.ini || die - if use sqlite ; then - sed -i -e "s#^DB_TYPE = .*#DB_TYPE = sqlite3#" custom/conf/app.example.ini || die - fi -} - -src_configure() { - # bug 832756 - PIE build issues - filter-flags -fPIE - filter-ldflags -fPIE -pie -} - -src_compile() { - local forgejo_tags=( - bindata - $(usev pam) - $(usex sqlite 'sqlite sqlite_unlock_notify' '') - ) - local forgejo_settings=( - "-X code.gitea.io/gitea/modules/setting.CustomConf=${EPREFIX}/etc/forgejo/app.ini" - "-X code.gitea.io/gitea/modules/setting.CustomPath=${EPREFIX}/var/lib/gitea/custom" - "-X code.gitea.io/gitea/modules/setting.AppWorkPath=${EPREFIX}/var/lib/gitea" - ) - local makeenv=( - DRONE_TAG="${PV}" - LDFLAGS="-extldflags \"${LDFLAGS}\" ${forgejo_settings[*]}" - TAGS="${forgejo_tags[*]}" - ) - - GOFLAGS="" - if use pie ; then - GOFLAGS+="-buildmode=pie" - fi - - # need to set -j1 or build fails due to a race condition between MAKE jobs. - # this does not actually impact build parallelism, because the go compiler - # will still build everything in parallel when it's invoked. - env "${makeenv[@]}" emake -j1 EXTRA_GOFLAGS="${GOFLAGS}" backend -} - -src_install() { - cp gitea forgejo - dobin forgejo - - einstalldocs - - newconfd "${FILESDIR}/forgejo.confd-r1" forgejo - newinitd "${FILESDIR}/forgejo.initd-r3" forgejo - newtmpfiles - forgejo.conf <<-EOF - d /run/forgejo 0755 git git - EOF - systemd_newunit "${FILESDIR}"/forgejo.service-r3 forgejo.service - - insinto /etc/forgejo - newins custom/conf/app.example.ini app.ini - if use acct; then - fowners root:git /etc/forgejo/{,app.ini} - fperms g+w,o-rwx /etc/forgejo/{,app.ini} - - diropts -m0750 -o git -g git - keepdir /var/lib/gitea /var/lib/gitea/custom /var/lib/gitea/data - keepdir /var/log/forgejo - fi -} - -pkg_postinst() { - fcaps_pkg_postinst - tmpfiles_process forgejo.conf - - ewarn "${PN} ${PV} will continue to use /var/lib/gitea as the default home," - ewarn "as acct-user/git[gitea] depends on it, and acct-user[forgejo] does not" - ewarn "exist yet." - ewarn "" - ewarn "> The Gitea themes were renamed and the [ui].THEMES setting must be changed as follows:" - ewarn "> - gitea is replaced by gitea-light" - ewarn "> - arc-green is replaced by gitea-dark" - ewarn "> - auto is replaced by gitea-auto" - ewarn "" - ewarn "See https://codeberg.org/forgejo/forgejo/src/branch/forgejo/RELEASE-NOTES.md#7-0-0" - ewarn "for more information" -} diff --git a/www-apps/forgejo/forgejo-10.0.3.ebuild b/www-apps/forgejo/forgejo-10.0.3.ebuild deleted file mode 100644 index 56eb438e92..0000000000 --- a/www-apps/forgejo/forgejo-10.0.3.ebuild +++ /dev/null @@ -1,124 +0,0 @@ -# Copyright 2016-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit fcaps go-module tmpfiles systemd flag-o-matic - -DESCRIPTION="A self-hosted lightweight software forge" -HOMEPAGE="https://forgejo.org/ https://codeberg.org/forgejo/forgejo" - -SRC_URI="https://codeberg.org/forgejo/forgejo/releases/download/v${PV}/forgejo-src-${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-src-${PV}" -LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0" -SLOT="0" - -KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" - -IUSE="+acct pam sqlite pie" - -DEPEND=" - acct? ( - acct-group/git - acct-user/git[gitea] ) - pam? ( sys-libs/pam )" -RDEPEND="${DEPEND} - dev-vcs/git - !www-apps/gitea" # until acct-user/git[forgejo] - -DOCS=( - custom/conf/app.example.ini CONTRIBUTING.md README.md -) -FILECAPS=( - -m 711 cap_net_bind_service+ep usr/bin/forgejo -) - -RESTRICT="test" - -src_prepare() { - default - - local sedcmds=( - -e "s#^ROOT =#ROOT = ${EPREFIX}/var/lib/gitea/gitea-repositories#" - -e "s#^ROOT_PATH =#ROOT_PATH = ${EPREFIX}/var/log/forgejo#" - -e "s#^APP_DATA_PATH = data#APP_DATA_PATH = ${EPREFIX}/var/lib/gitea/data#" - -e "s#^HTTP_ADDR = 0.0.0.0#HTTP_ADDR = 127.0.0.1#" - -e "s#^MODE = console#MODE = file#" - -e "s#^LEVEL = Trace#LEVEL = Info#" - -e "s#^LOG_SQL = true#LOG_SQL = false#" - -e "s#^DISABLE_ROUTER_LOG = false#DISABLE_ROUTER_LOG = true#" - ) - - sed -i "${sedcmds[@]}" custom/conf/app.example.ini || die - if use sqlite ; then - sed -i -e "s#^DB_TYPE = .*#DB_TYPE = sqlite3#" custom/conf/app.example.ini || die - fi -} - -src_configure() { - # bug 832756 - PIE build issues - filter-flags -fPIE - filter-ldflags -fPIE -pie -} - -src_compile() { - local forgejo_tags=( - bindata - $(usev pam) - $(usex sqlite 'sqlite sqlite_unlock_notify' '') - ) - local forgejo_settings=( - "-X code.gitea.io/gitea/modules/setting.CustomConf=${EPREFIX}/etc/forgejo/app.ini" - "-X code.gitea.io/gitea/modules/setting.CustomPath=${EPREFIX}/var/lib/gitea/custom" - "-X code.gitea.io/gitea/modules/setting.AppWorkPath=${EPREFIX}/var/lib/gitea" - ) - local makeenv=( - DRONE_TAG="${PV}" - LDFLAGS="-extldflags \"${LDFLAGS}\" ${forgejo_settings[*]}" - TAGS="${forgejo_tags[*]}" - ) - - GOFLAGS="" - if use pie ; then - GOFLAGS+="-buildmode=pie" - fi - - # need to set -j1 or build fails due to a race condition between MAKE jobs. - # this does not actually impact build parallelism, because the go compiler - # will still build everything in parallel when it's invoked. - env "${makeenv[@]}" emake -j1 EXTRA_GOFLAGS="${GOFLAGS}" backend -} - -src_install() { - cp gitea forgejo - dobin forgejo - - einstalldocs - - newconfd "${FILESDIR}/forgejo.confd-r1" forgejo - newinitd "${FILESDIR}/forgejo.initd-r3" forgejo - newtmpfiles - forgejo.conf <<-EOF - d /run/forgejo 0755 git git - EOF - systemd_newunit "${FILESDIR}"/forgejo.service-r3 forgejo.service - - insinto /etc/forgejo - newins custom/conf/app.example.ini app.ini - if use acct; then - fowners root:git /etc/forgejo/{,app.ini} - fperms g+w,o-rwx /etc/forgejo/{,app.ini} - - diropts -m0750 -o git -g git - keepdir /var/lib/gitea /var/lib/gitea/custom /var/lib/gitea/data - keepdir /var/log/forgejo - fi -} - -pkg_postinst() { - fcaps_pkg_postinst - tmpfiles_process forgejo.conf - - ewarn "${PN} ${PV} will continue to use /var/lib/gitea as the default home," - ewarn "as acct-user/git[gitea] depends on it, and acct-user[forgejo] does not" - ewarn "exist yet." -}
