* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/freshrss/, www-apps/freshrss/files/
@ 2024-11-19 10:42 Julien Roy
2024-11-19 10:46 ` [gentoo-commits] repo/proj/guru:master " Julien Roy
0 siblings, 1 reply; 4+ messages in thread
From: Julien Roy @ 2024-11-19 10:42 UTC (permalink / raw
To: gentoo-commits
commit: e30d010072cc11228dd4ef242c21a50e42dc3cc1
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue Nov 19 09:32:56 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Tue Nov 19 10:42:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e30d0100
www-apps/freshrss: add 1.24.3
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
| 1 +
.../files/disable-network-tests-1.24.3.patch | 31 ++++++++++++++
| 48 ++++++++++++++++++++++
3 files changed, 80 insertions(+)
--git a/www-apps/freshrss/Manifest b/www-apps/freshrss/Manifest
index f3cd5deae..6103a54f7 100644
--- a/www-apps/freshrss/Manifest
+++ b/www-apps/freshrss/Manifest
@@ -1,2 +1,3 @@
DIST freshrss-1.23.1.gh.tar.gz 4321975 BLAKE2B 583fe3895b2d7b82d77c202bed985de46214affc3e35f022e64a818954667f10b4838f1c25854394b9896f834b21b0af1265f32936110329202bd7dfd275ced2 SHA512 df4c7eedf3dc8c5c9d0de722e00e3846d1bb1b1605d53a9415b5fd49715b91d6cf22f7f64503a706af32dc6f96415e28d772f7442816e76e266b4aa908984e95
DIST freshrss-1.24.1.gh.tar.gz 4383585 BLAKE2B 9ad14320930fa4baae3edd3ec31add9ac0f66dda5cbc1997947595907df550d9363e3d87f0fcacdf06781e4be14070b78b66e04cbe8610cecca0d0185162724c SHA512 42edbfc22f7231fafea42d4c32fb285a4ec40132645c0ec1613abf5cbc8b4017e0ad1cb5eeaaefdda9077760f73999111ba9e15c1bff41dd7af411bcecca32c9
+DIST freshrss-1.24.3.gh.tar.gz 4403538 BLAKE2B f944f36256c59790938588491385b91de6a8af602bdb51731c7c76c816a4536855b7ed27a5595b4f825d2b7420a58feb17a0b7b8343b198bf8ae1a5ecb8705ba SHA512 757f37fd51d63b56735c54d7ee2a5bd76c8e55b8e4d6b16767b9f99581142dd11987eb4256b114ebb012bfba93acf3d9189ca4fa9c0fbf66bdd4048d12ea8bf6
diff --git a/www-apps/freshrss/files/disable-network-tests-1.24.3.patch b/www-apps/freshrss/files/disable-network-tests-1.24.3.patch
new file mode 100644
index 000000000..62becb99f
--- /dev/null
+++ b/www-apps/freshrss/files/disable-network-tests-1.24.3.patch
@@ -0,0 +1,31 @@
+diff --git a/Makefile b/Makefile
+index 15f259bf..4bf54ecf 100644
+--- a/Makefile
++++ b/Makefile
+@@ -70,10 +70,6 @@ lint: vendor/bin/phpcs ## Run the linter on the PHP files
+ lint-fix: vendor/bin/phpcbf ## Fix the errors detected by the linter
+ $(PHP) vendor/bin/phpcbf . -p -s
+
+-bin/composer:
+- mkdir -p bin/
+- wget 'https://raw.githubusercontent.com/composer/getcomposer.org/163a517dbb7eba0eb25633061c76e648392c6738/web/installer' -O - -q | php -- --quiet --install-dir='./bin/' --filename='composer'
+-
+ vendor/bin/phpunit: bin/composer
+ bin/composer install --prefer-dist --no-progress
+ ln -s ../vendor/bin/phpunit bin/phpunit
+@@ -86,15 +82,6 @@ vendor/bin/phpcbf: bin/composer
+ bin/composer install --prefer-dist --no-progress
+ ln -s ../vendor/bin/phpcbf bin/phpcbf
+
+-bin/typos:
+- mkdir -p bin/
+- cd bin ; \
+- wget -q 'https://github.com/crate-ci/typos/releases/download/v1.23.1/typos-v1.23.1-x86_64-unknown-linux-musl.tar.gz' && \
+- tar -xvf *.tar.gz './typos' && \
+- chmod +x typos && \
+- rm *.tar.gz ; \
+- cd ..
+-
+ node_modules/.bin/eslint:
+ npm install
+
--git a/www-apps/freshrss/freshrss-1.24.3.ebuild b/www-apps/freshrss/freshrss-1.24.3.ebuild
new file mode 100644
index 000000000..869493dc8
--- /dev/null
+++ b/www-apps/freshrss/freshrss-1.24.3.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit webapp
+
+DESCRIPTION="A free, self-hostable news aggregator"
+HOMEPAGE="
+ https://freshrss.org/
+ https://github.com/FreshRSS/FreshRSS
+"
+SRC_URI="https://github.com/FreshRSS/FreshRSS/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/FreshRSS-${PV}"
+
+LICENSE="AGPL-3"
+KEYWORDS="~amd64"
+IUSE="mysql +postgres sqlite"
+REQUIRED_USE="|| ( mysql postgres sqlite )"
+
+RDEPEND="
+ dev-lang/php[ctype,curl,fileinfo,fpm,jit,mysql?,pdo,postgres?,sqlite?,unicode,xml,zip,zlib]
+ virtual/httpd-php
+"
+DEPEND="${RDEPEND}"
+
+need_httpd_fastcgi
+
+PATCHES=(
+ "${FILESDIR}"/disable-network-tests-1.24.3.patch
+)
+
+src_compile() {
+ :
+}
+
+src_install() {
+ webapp_src_preinst
+
+ insinto "${MY_HTDOCSDIR}"
+ doins -r .
+
+ webapp_serverowned "${MY_HTDOCSDIR}"/data
+ webapp_serverowned "${MY_HTDOCSDIR}"/data/{index.html,cache,favicons,fever,users,users/_,tokens}
+ webapp_serverowned "${MY_HTDOCSDIR}"/data/{cache,favicons,fever,users,users/_,tokens}/index.html
+
+ webapp_src_install
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: www-apps/freshrss/, www-apps/freshrss/files/
2024-11-19 10:42 [gentoo-commits] repo/proj/guru:dev commit in: www-apps/freshrss/, www-apps/freshrss/files/ Julien Roy
@ 2024-11-19 10:46 ` Julien Roy
0 siblings, 0 replies; 4+ messages in thread
From: Julien Roy @ 2024-11-19 10:46 UTC (permalink / raw
To: gentoo-commits
commit: e30d010072cc11228dd4ef242c21a50e42dc3cc1
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue Nov 19 09:32:56 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Tue Nov 19 10:42:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e30d0100
www-apps/freshrss: add 1.24.3
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
| 1 +
.../files/disable-network-tests-1.24.3.patch | 31 ++++++++++++++
| 48 ++++++++++++++++++++++
3 files changed, 80 insertions(+)
--git a/www-apps/freshrss/Manifest b/www-apps/freshrss/Manifest
index f3cd5deae..6103a54f7 100644
--- a/www-apps/freshrss/Manifest
+++ b/www-apps/freshrss/Manifest
@@ -1,2 +1,3 @@
DIST freshrss-1.23.1.gh.tar.gz 4321975 BLAKE2B 583fe3895b2d7b82d77c202bed985de46214affc3e35f022e64a818954667f10b4838f1c25854394b9896f834b21b0af1265f32936110329202bd7dfd275ced2 SHA512 df4c7eedf3dc8c5c9d0de722e00e3846d1bb1b1605d53a9415b5fd49715b91d6cf22f7f64503a706af32dc6f96415e28d772f7442816e76e266b4aa908984e95
DIST freshrss-1.24.1.gh.tar.gz 4383585 BLAKE2B 9ad14320930fa4baae3edd3ec31add9ac0f66dda5cbc1997947595907df550d9363e3d87f0fcacdf06781e4be14070b78b66e04cbe8610cecca0d0185162724c SHA512 42edbfc22f7231fafea42d4c32fb285a4ec40132645c0ec1613abf5cbc8b4017e0ad1cb5eeaaefdda9077760f73999111ba9e15c1bff41dd7af411bcecca32c9
+DIST freshrss-1.24.3.gh.tar.gz 4403538 BLAKE2B f944f36256c59790938588491385b91de6a8af602bdb51731c7c76c816a4536855b7ed27a5595b4f825d2b7420a58feb17a0b7b8343b198bf8ae1a5ecb8705ba SHA512 757f37fd51d63b56735c54d7ee2a5bd76c8e55b8e4d6b16767b9f99581142dd11987eb4256b114ebb012bfba93acf3d9189ca4fa9c0fbf66bdd4048d12ea8bf6
diff --git a/www-apps/freshrss/files/disable-network-tests-1.24.3.patch b/www-apps/freshrss/files/disable-network-tests-1.24.3.patch
new file mode 100644
index 000000000..62becb99f
--- /dev/null
+++ b/www-apps/freshrss/files/disable-network-tests-1.24.3.patch
@@ -0,0 +1,31 @@
+diff --git a/Makefile b/Makefile
+index 15f259bf..4bf54ecf 100644
+--- a/Makefile
++++ b/Makefile
+@@ -70,10 +70,6 @@ lint: vendor/bin/phpcs ## Run the linter on the PHP files
+ lint-fix: vendor/bin/phpcbf ## Fix the errors detected by the linter
+ $(PHP) vendor/bin/phpcbf . -p -s
+
+-bin/composer:
+- mkdir -p bin/
+- wget 'https://raw.githubusercontent.com/composer/getcomposer.org/163a517dbb7eba0eb25633061c76e648392c6738/web/installer' -O - -q | php -- --quiet --install-dir='./bin/' --filename='composer'
+-
+ vendor/bin/phpunit: bin/composer
+ bin/composer install --prefer-dist --no-progress
+ ln -s ../vendor/bin/phpunit bin/phpunit
+@@ -86,15 +82,6 @@ vendor/bin/phpcbf: bin/composer
+ bin/composer install --prefer-dist --no-progress
+ ln -s ../vendor/bin/phpcbf bin/phpcbf
+
+-bin/typos:
+- mkdir -p bin/
+- cd bin ; \
+- wget -q 'https://github.com/crate-ci/typos/releases/download/v1.23.1/typos-v1.23.1-x86_64-unknown-linux-musl.tar.gz' && \
+- tar -xvf *.tar.gz './typos' && \
+- chmod +x typos && \
+- rm *.tar.gz ; \
+- cd ..
+-
+ node_modules/.bin/eslint:
+ npm install
+
--git a/www-apps/freshrss/freshrss-1.24.3.ebuild b/www-apps/freshrss/freshrss-1.24.3.ebuild
new file mode 100644
index 000000000..869493dc8
--- /dev/null
+++ b/www-apps/freshrss/freshrss-1.24.3.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit webapp
+
+DESCRIPTION="A free, self-hostable news aggregator"
+HOMEPAGE="
+ https://freshrss.org/
+ https://github.com/FreshRSS/FreshRSS
+"
+SRC_URI="https://github.com/FreshRSS/FreshRSS/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/FreshRSS-${PV}"
+
+LICENSE="AGPL-3"
+KEYWORDS="~amd64"
+IUSE="mysql +postgres sqlite"
+REQUIRED_USE="|| ( mysql postgres sqlite )"
+
+RDEPEND="
+ dev-lang/php[ctype,curl,fileinfo,fpm,jit,mysql?,pdo,postgres?,sqlite?,unicode,xml,zip,zlib]
+ virtual/httpd-php
+"
+DEPEND="${RDEPEND}"
+
+need_httpd_fastcgi
+
+PATCHES=(
+ "${FILESDIR}"/disable-network-tests-1.24.3.patch
+)
+
+src_compile() {
+ :
+}
+
+src_install() {
+ webapp_src_preinst
+
+ insinto "${MY_HTDOCSDIR}"
+ doins -r .
+
+ webapp_serverowned "${MY_HTDOCSDIR}"/data
+ webapp_serverowned "${MY_HTDOCSDIR}"/data/{index.html,cache,favicons,fever,users,users/_,tokens}
+ webapp_serverowned "${MY_HTDOCSDIR}"/data/{cache,favicons,fever,users,users/_,tokens}/index.html
+
+ webapp_src_install
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/freshrss/, www-apps/freshrss/files/
@ 2025-01-11 22:19 Julien Roy
0 siblings, 0 replies; 4+ messages in thread
From: Julien Roy @ 2025-01-11 22:19 UTC (permalink / raw
To: gentoo-commits
commit: 47d1f0664608fb6a5532c44bb73a32bf25982359
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Jan 11 18:45:01 2025 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Jan 11 22:19:31 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=47d1f066
www-apps/freshrss: add 1.25.0
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
| 1 +
.../files/disable-network-tests-1.25.0.patch | 31 ++++++++++++++
| 48 ++++++++++++++++++++++
3 files changed, 80 insertions(+)
--git a/www-apps/freshrss/Manifest b/www-apps/freshrss/Manifest
index 7fc421302..03ca35165 100644
--- a/www-apps/freshrss/Manifest
+++ b/www-apps/freshrss/Manifest
@@ -1,2 +1,3 @@
DIST freshrss-1.24.1.gh.tar.gz 4383585 BLAKE2B 9ad14320930fa4baae3edd3ec31add9ac0f66dda5cbc1997947595907df550d9363e3d87f0fcacdf06781e4be14070b78b66e04cbe8610cecca0d0185162724c SHA512 42edbfc22f7231fafea42d4c32fb285a4ec40132645c0ec1613abf5cbc8b4017e0ad1cb5eeaaefdda9077760f73999111ba9e15c1bff41dd7af411bcecca32c9
DIST freshrss-1.24.3.gh.tar.gz 4403538 BLAKE2B f944f36256c59790938588491385b91de6a8af602bdb51731c7c76c816a4536855b7ed27a5595b4f825d2b7420a58feb17a0b7b8343b198bf8ae1a5ecb8705ba SHA512 757f37fd51d63b56735c54d7ee2a5bd76c8e55b8e4d6b16767b9f99581142dd11987eb4256b114ebb012bfba93acf3d9189ca4fa9c0fbf66bdd4048d12ea8bf6
+DIST freshrss-1.25.0.gh.tar.gz 4488412 BLAKE2B b995404a2979aa2e92a03ce316f6405c3bc476daf1a0c2f9ccb6a7c2e274ff934721dca7771adee7ff7aefed0349febcc80581cdb7dbc56334c8ff72626f443f SHA512 e3882227ce422c8d1c38bcf557e29219153fc2bf2829df3ddd6c716c6ee75b6d44849f65b9a15fbdaf3542a78f11f26442893a8b561825b7b1ac8ee50ab93266
diff --git a/www-apps/freshrss/files/disable-network-tests-1.25.0.patch b/www-apps/freshrss/files/disable-network-tests-1.25.0.patch
new file mode 100644
index 000000000..8b5d0d474
--- /dev/null
+++ b/www-apps/freshrss/files/disable-network-tests-1.25.0.patch
@@ -0,0 +1,31 @@
+diff --git a/Makefile b/Makefile
+index d8b33824..83604d97 100644
+--- a/Makefile
++++ b/Makefile
+@@ -70,10 +70,6 @@ lint: bin/phpcs ## Run the linter on the PHP files
+ lint-fix: bin/phpcbf ## Fix the errors detected by the linter
+ $(PHP) bin/phpcbf . -p -s
+
+-bin/composer:
+- mkdir -p bin/
+- wget 'https://raw.githubusercontent.com/composer/getcomposer.org/1a26c0dcb361332cb504e4861ed0f758281575aa/web/installer' -O - -q | php -- --quiet --install-dir='./bin/' --filename='composer'
+-
+ # building any of these builds them all
+ vendor/bin/phpunit vendor/bin/phpcs vendor/bin/phpcbf vendor/bin/phpstan &: bin/composer
+ bin/composer install --prefer-dist --no-progress
+@@ -83,15 +79,6 @@ vendor/bin/phpunit vendor/bin/phpcs vendor/bin/phpcbf vendor/bin/phpstan &: bin/
+ bin/phpunit bin/phpcs bin/phpcbf bin/phpstan : % : vendor/%
+ ln -sf $< $@
+
+-bin/typos:
+- mkdir -p bin/
+- cd bin ; \
+- wget -q 'https://github.com/crate-ci/typos/releases/download/v1.23.1/typos-v1.23.1-x86_64-unknown-linux-musl.tar.gz' && \
+- tar -xvf *.tar.gz './typos' && \
+- chmod +x typos && \
+- rm *.tar.gz ; \
+- cd ..
+-
+ node_modules/.bin/eslint:
+ npm install
+
--git a/www-apps/freshrss/freshrss-1.25.0.ebuild b/www-apps/freshrss/freshrss-1.25.0.ebuild
new file mode 100644
index 000000000..d3ba00ef5
--- /dev/null
+++ b/www-apps/freshrss/freshrss-1.25.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2023-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit webapp
+
+DESCRIPTION="A free, self-hostable news aggregator"
+HOMEPAGE="
+ https://freshrss.org/
+ https://github.com/FreshRSS/FreshRSS
+"
+SRC_URI="https://github.com/FreshRSS/FreshRSS/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/FreshRSS-${PV}"
+
+LICENSE="AGPL-3"
+KEYWORDS="~amd64"
+IUSE="mysql +postgres sqlite"
+REQUIRED_USE="|| ( mysql postgres sqlite )"
+
+RDEPEND="
+ dev-lang/php[ctype,curl,fileinfo,fpm,jit,mysql?,pdo,postgres?,sqlite?,unicode,xml,zip,zlib]
+ virtual/httpd-php
+"
+DEPEND="${RDEPEND}"
+
+need_httpd_fastcgi
+
+PATCHES=(
+ "${FILESDIR}"/disable-network-tests-1.25.0.patch
+)
+
+src_compile() {
+ :
+}
+
+src_install() {
+ webapp_src_preinst
+
+ insinto "${MY_HTDOCSDIR}"
+ doins -r .
+
+ webapp_serverowned "${MY_HTDOCSDIR}"/data
+ webapp_serverowned "${MY_HTDOCSDIR}"/data/{index.html,cache,favicons,fever,users,users/_,tokens}
+ webapp_serverowned "${MY_HTDOCSDIR}"/data/{cache,favicons,fever,users,users/_,tokens}/index.html
+
+ webapp_src_install
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/freshrss/, www-apps/freshrss/files/
@ 2025-07-16 7:49 Joe Kappus
0 siblings, 0 replies; 4+ messages in thread
From: Joe Kappus @ 2025-07-16 7:49 UTC (permalink / raw
To: gentoo-commits
commit: c3667ed8858946c968369898fc64af4edd640ba3
Author: Joe Kappus <joe <AT> wt <DOT> gd>
AuthorDate: Wed Jul 16 07:46:15 2025 +0000
Commit: Joe Kappus <joe <AT> wt <DOT> gd>
CommitDate: Wed Jul 16 07:46:23 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c3667ed8
www-apps/freshrss: drop vulnerable 1.24.3, 1.25.0
https://github.com/FreshRSS/FreshRSS/security/advisories/GHSA-w3m8-wcf4-h8vm
Signed-off-by: Joe Kappus <joe <AT> wt.gd>
| 2 -
.../files/disable-network-tests-1.24.3.patch | 31 --------------
.../files/disable-network-tests-1.25.0.patch | 31 --------------
| 48 ----------------------
| 48 ----------------------
5 files changed, 160 deletions(-)
--git a/www-apps/freshrss/Manifest b/www-apps/freshrss/Manifest
index 811261dd33..ef34672cef 100644
--- a/www-apps/freshrss/Manifest
+++ b/www-apps/freshrss/Manifest
@@ -1,3 +1 @@
-DIST freshrss-1.24.3.gh.tar.gz 4403538 BLAKE2B f944f36256c59790938588491385b91de6a8af602bdb51731c7c76c816a4536855b7ed27a5595b4f825d2b7420a58feb17a0b7b8343b198bf8ae1a5ecb8705ba SHA512 757f37fd51d63b56735c54d7ee2a5bd76c8e55b8e4d6b16767b9f99581142dd11987eb4256b114ebb012bfba93acf3d9189ca4fa9c0fbf66bdd4048d12ea8bf6
-DIST freshrss-1.25.0.gh.tar.gz 4488412 BLAKE2B b995404a2979aa2e92a03ce316f6405c3bc476daf1a0c2f9ccb6a7c2e274ff934721dca7771adee7ff7aefed0349febcc80581cdb7dbc56334c8ff72626f443f SHA512 e3882227ce422c8d1c38bcf557e29219153fc2bf2829df3ddd6c716c6ee75b6d44849f65b9a15fbdaf3542a78f11f26442893a8b561825b7b1ac8ee50ab93266
DIST freshrss-1.26.3.gh.tar.gz 4557875 BLAKE2B a75e9fe6cd9e30c21c5787e529fbf7823e11f23f74b0a5b6f1c06bf61709dd6d12a8ff34f190b5ee094d0cc2cf3e4c4a9b1da3f27c96a60e7968d8034f6151a4 SHA512 41ab9b872522a19c479a2b9a8a67399238c89d0f83638668ca466f31da8dc780812b5be2cb11e250da72f5942416278803323b3114e5de4862c2d5a6b18c9fc0
diff --git a/www-apps/freshrss/files/disable-network-tests-1.24.3.patch b/www-apps/freshrss/files/disable-network-tests-1.24.3.patch
deleted file mode 100644
index 62becb99f5..0000000000
--- a/www-apps/freshrss/files/disable-network-tests-1.24.3.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff --git a/Makefile b/Makefile
-index 15f259bf..4bf54ecf 100644
---- a/Makefile
-+++ b/Makefile
-@@ -70,10 +70,6 @@ lint: vendor/bin/phpcs ## Run the linter on the PHP files
- lint-fix: vendor/bin/phpcbf ## Fix the errors detected by the linter
- $(PHP) vendor/bin/phpcbf . -p -s
-
--bin/composer:
-- mkdir -p bin/
-- wget 'https://raw.githubusercontent.com/composer/getcomposer.org/163a517dbb7eba0eb25633061c76e648392c6738/web/installer' -O - -q | php -- --quiet --install-dir='./bin/' --filename='composer'
--
- vendor/bin/phpunit: bin/composer
- bin/composer install --prefer-dist --no-progress
- ln -s ../vendor/bin/phpunit bin/phpunit
-@@ -86,15 +82,6 @@ vendor/bin/phpcbf: bin/composer
- bin/composer install --prefer-dist --no-progress
- ln -s ../vendor/bin/phpcbf bin/phpcbf
-
--bin/typos:
-- mkdir -p bin/
-- cd bin ; \
-- wget -q 'https://github.com/crate-ci/typos/releases/download/v1.23.1/typos-v1.23.1-x86_64-unknown-linux-musl.tar.gz' && \
-- tar -xvf *.tar.gz './typos' && \
-- chmod +x typos && \
-- rm *.tar.gz ; \
-- cd ..
--
- node_modules/.bin/eslint:
- npm install
-
diff --git a/www-apps/freshrss/files/disable-network-tests-1.25.0.patch b/www-apps/freshrss/files/disable-network-tests-1.25.0.patch
deleted file mode 100644
index 8b5d0d4746..0000000000
--- a/www-apps/freshrss/files/disable-network-tests-1.25.0.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff --git a/Makefile b/Makefile
-index d8b33824..83604d97 100644
---- a/Makefile
-+++ b/Makefile
-@@ -70,10 +70,6 @@ lint: bin/phpcs ## Run the linter on the PHP files
- lint-fix: bin/phpcbf ## Fix the errors detected by the linter
- $(PHP) bin/phpcbf . -p -s
-
--bin/composer:
-- mkdir -p bin/
-- wget 'https://raw.githubusercontent.com/composer/getcomposer.org/1a26c0dcb361332cb504e4861ed0f758281575aa/web/installer' -O - -q | php -- --quiet --install-dir='./bin/' --filename='composer'
--
- # building any of these builds them all
- vendor/bin/phpunit vendor/bin/phpcs vendor/bin/phpcbf vendor/bin/phpstan &: bin/composer
- bin/composer install --prefer-dist --no-progress
-@@ -83,15 +79,6 @@ vendor/bin/phpunit vendor/bin/phpcs vendor/bin/phpcbf vendor/bin/phpstan &: bin/
- bin/phpunit bin/phpcs bin/phpcbf bin/phpstan : % : vendor/%
- ln -sf $< $@
-
--bin/typos:
-- mkdir -p bin/
-- cd bin ; \
-- wget -q 'https://github.com/crate-ci/typos/releases/download/v1.23.1/typos-v1.23.1-x86_64-unknown-linux-musl.tar.gz' && \
-- tar -xvf *.tar.gz './typos' && \
-- chmod +x typos && \
-- rm *.tar.gz ; \
-- cd ..
--
- node_modules/.bin/eslint:
- npm install
-
diff --git a/www-apps/freshrss/freshrss-1.24.3.ebuild b/www-apps/freshrss/freshrss-1.24.3.ebuild
deleted file mode 100644
index 869493dc87..0000000000
--- a/www-apps/freshrss/freshrss-1.24.3.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit webapp
-
-DESCRIPTION="A free, self-hostable news aggregator"
-HOMEPAGE="
- https://freshrss.org/
- https://github.com/FreshRSS/FreshRSS
-"
-SRC_URI="https://github.com/FreshRSS/FreshRSS/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
-S="${WORKDIR}/FreshRSS-${PV}"
-
-LICENSE="AGPL-3"
-KEYWORDS="~amd64"
-IUSE="mysql +postgres sqlite"
-REQUIRED_USE="|| ( mysql postgres sqlite )"
-
-RDEPEND="
- dev-lang/php[ctype,curl,fileinfo,fpm,jit,mysql?,pdo,postgres?,sqlite?,unicode,xml,zip,zlib]
- virtual/httpd-php
-"
-DEPEND="${RDEPEND}"
-
-need_httpd_fastcgi
-
-PATCHES=(
- "${FILESDIR}"/disable-network-tests-1.24.3.patch
-)
-
-src_compile() {
- :
-}
-
-src_install() {
- webapp_src_preinst
-
- insinto "${MY_HTDOCSDIR}"
- doins -r .
-
- webapp_serverowned "${MY_HTDOCSDIR}"/data
- webapp_serverowned "${MY_HTDOCSDIR}"/data/{index.html,cache,favicons,fever,users,users/_,tokens}
- webapp_serverowned "${MY_HTDOCSDIR}"/data/{cache,favicons,fever,users,users/_,tokens}/index.html
-
- webapp_src_install
-}
diff --git a/www-apps/freshrss/freshrss-1.25.0.ebuild b/www-apps/freshrss/freshrss-1.25.0.ebuild
deleted file mode 100644
index d3ba00ef5d..0000000000
--- a/www-apps/freshrss/freshrss-1.25.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 2023-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit webapp
-
-DESCRIPTION="A free, self-hostable news aggregator"
-HOMEPAGE="
- https://freshrss.org/
- https://github.com/FreshRSS/FreshRSS
-"
-SRC_URI="https://github.com/FreshRSS/FreshRSS/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
-S="${WORKDIR}/FreshRSS-${PV}"
-
-LICENSE="AGPL-3"
-KEYWORDS="~amd64"
-IUSE="mysql +postgres sqlite"
-REQUIRED_USE="|| ( mysql postgres sqlite )"
-
-RDEPEND="
- dev-lang/php[ctype,curl,fileinfo,fpm,jit,mysql?,pdo,postgres?,sqlite?,unicode,xml,zip,zlib]
- virtual/httpd-php
-"
-DEPEND="${RDEPEND}"
-
-need_httpd_fastcgi
-
-PATCHES=(
- "${FILESDIR}"/disable-network-tests-1.25.0.patch
-)
-
-src_compile() {
- :
-}
-
-src_install() {
- webapp_src_preinst
-
- insinto "${MY_HTDOCSDIR}"
- doins -r .
-
- webapp_serverowned "${MY_HTDOCSDIR}"/data
- webapp_serverowned "${MY_HTDOCSDIR}"/data/{index.html,cache,favicons,fever,users,users/_,tokens}
- webapp_serverowned "${MY_HTDOCSDIR}"/data/{cache,favicons,fever,users,users/_,tokens}/index.html
-
- webapp_src_install
-}
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-07-16 7:49 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-19 10:42 [gentoo-commits] repo/proj/guru:dev commit in: www-apps/freshrss/, www-apps/freshrss/files/ Julien Roy
2024-11-19 10:46 ` [gentoo-commits] repo/proj/guru:master " Julien Roy
-- strict thread matches above, loose matches on Subject: below --
2025-01-11 22:19 [gentoo-commits] repo/proj/guru:dev " Julien Roy
2025-07-16 7:49 Joe Kappus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox