public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/whoogle-search/
@ 2023-11-02  1:34 Bailey Kasin
  0 siblings, 0 replies; 9+ messages in thread
From: Bailey Kasin @ 2023-11-02  1:34 UTC (permalink / raw
  To: gentoo-commits

commit:     e06882f0156717113609a6e4b4be4ac5241505c7
Author:     Bailey Kasin <baileykasin <AT> gmail <DOT> com>
AuthorDate: Thu Nov  2 01:34:20 2023 +0000
Commit:     Bailey Kasin <baileykasin <AT> gmail <DOT> com>
CommitDate: Thu Nov  2 01:34:20 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e06882f0

gpg --list-secret-keys --keyid-format=long

Signed-off-by: Bailey Kasin <baileykasin <AT> gmail.com>

 www-apps/whoogle-search/Manifest                   |  1 +
 .../whoogle-search/whoogle-search-0.8.4.ebuild     | 47 ++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/www-apps/whoogle-search/Manifest b/www-apps/whoogle-search/Manifest
index 08e76ab42b..679442cc8c 100644
--- a/www-apps/whoogle-search/Manifest
+++ b/www-apps/whoogle-search/Manifest
@@ -1 +1,2 @@
 DIST v0.8.3.tar.gz 612951 BLAKE2B b413727cd3bf43646b4754fd7d3d55009ca7dff7601e4c28910347427719aa541da7cab544dcb6ff7f5fab8134e50a484790a5e8c46a06ac723b45eb39980bab SHA512 ea795435809d7b0e5c7860716ed05dfdc1e38b73fcbc6e4c482367cb03d2a84db48e619fb82520e3ef3041971ca9f35f0641b61a13dc4a68c9c38d9699c4182a
+DIST v0.8.4.tar.gz 616189 BLAKE2B 23c547d330b3b098eea4d63029ba109f8ecc0f4fefe031c77fcdb52d657aeb93d8d6fa3ae8f54ff9a7218c7c31aa1eccba57b333c376b92cc6a841f60cb14240 SHA512 6a9f7e7502253c2c6b72e8753595f4d57dca6fad2fceb1fece6e40203f7b85eb0ef7debda4852ed347b103ae89c1a188ccb989e56bc7c0ad81dccdda69dc2b58

diff --git a/www-apps/whoogle-search/whoogle-search-0.8.4.ebuild b/www-apps/whoogle-search/whoogle-search-0.8.4.ebuild
new file mode 100644
index 0000000000..3ee914a883
--- /dev/null
+++ b/www-apps/whoogle-search/whoogle-search-0.8.4.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=no
+PYTHON_COMPAT=( python3_{10..12} )
+inherit distutils-r1 systemd
+
+DESCRIPTION="A self-hosted, ad-free, privacy-respecting metasearch engine"
+HOMEPAGE="https://github.com/benbusby/whoogle-search"
+SRC_URI="https://github.com/benbusby/whoogle-search/archive/refs/tags/v${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+		dev-python/cssutils[${PYTHON_USEDEP}]
+		dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+		dev-python/cryptography[${PYTHON_USEDEP}]
+		dev-python/flask[${PYTHON_USEDEP}]
+        dev-python/python-dotenv[${PYTHON_USEDEP}]
+		dev-python/defusedxml[${PYTHON_USEDEP}]
+		dev-python/waitress[${PYTHON_USEDEP}]
+        app-arch/brotli[${PYTHON_USEDEP},python]
+        net-libs/stem
+        acct-user/whoogle
+        acct-group/whoogle
+"
+
+
+src_install() {
+    rm -r .github docs test .dockerignore .gitignore .replit docker-compose.yml Dockerfile heroku.yml MANIFEST.in README.md requirements.txt
+    mkdir -p "${ED}/opt/whoogle-search" || die
+    insinto /opt/whoogle-search
+    doins -r ./*
+    fperms -R 0755 /opt/whoogle-search
+	fowners -R whoogle:whoogle /opt/whoogle-search
+
+    insinto /etc/default/
+    doins ${FILESDIR}/whoogle
+    insinto /usr/lib/sysusers.d/
+    doins ${FILESDIR}/whoogle.conf
+
+    systemd_dounit ${FILESDIR}/whoogle.service
+}
\ No newline at end of file


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/whoogle-search/
@ 2023-11-02  1:57 Bailey Kasin
  0 siblings, 0 replies; 9+ messages in thread
From: Bailey Kasin @ 2023-11-02  1:57 UTC (permalink / raw
  To: gentoo-commits

commit:     be32aad09bceb8c7cde52bf15277041f2a026829
Author:     Bailey Kasin <baileykasin <AT> gmail <DOT> com>
AuthorDate: Thu Nov  2 01:57:37 2023 +0000
Commit:     Bailey Kasin <baileykasin <AT> gmail <DOT> com>
CommitDate: Thu Nov  2 01:57:37 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=be32aad0

www-apps/whoogle-search: 0.8.4 add missing depend

Signed-off-by: Bailey Kasin <baileykasin <AT> gmail.com>

 www-apps/whoogle-search/whoogle-search-0.8.4.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/www-apps/whoogle-search/whoogle-search-0.8.4.ebuild b/www-apps/whoogle-search/whoogle-search-0.8.4.ebuild
index 3ee914a883..c419bbdc77 100644
--- a/www-apps/whoogle-search/whoogle-search-0.8.4.ebuild
+++ b/www-apps/whoogle-search/whoogle-search-0.8.4.ebuild
@@ -23,6 +23,7 @@ RDEPEND="
         dev-python/python-dotenv[${PYTHON_USEDEP}]
 		dev-python/defusedxml[${PYTHON_USEDEP}]
 		dev-python/waitress[${PYTHON_USEDEP}]
+		dev-python/validators[${PYTHON_USEDEP}]
         app-arch/brotli[${PYTHON_USEDEP},python]
         net-libs/stem
         acct-user/whoogle
@@ -44,4 +45,4 @@ src_install() {
     doins ${FILESDIR}/whoogle.conf
 
     systemd_dounit ${FILESDIR}/whoogle.service
-}
\ No newline at end of file
+}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/whoogle-search/
  2024-04-24 12:11 [gentoo-commits] repo/proj/guru:master " David Roman
@ 2024-04-23 22:46 ` David Roman
  0 siblings, 0 replies; 9+ messages in thread
From: David Roman @ 2024-04-23 22:46 UTC (permalink / raw
  To: gentoo-commits

commit:     3862a0f26e10523d98d8b8c141aa06b5bd226e9e
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Tue Apr 23 22:45:51 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Apr 23 22:45:51 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3862a0f2

www-apps/whoogle-search: update SRC_URI

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 www-apps/whoogle-search/Manifest                       | 2 +-
 www-apps/whoogle-search/whoogle-search-0.8.4-r3.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-apps/whoogle-search/Manifest b/www-apps/whoogle-search/Manifest
index 679442cc8c..09586eb867 100644
--- a/www-apps/whoogle-search/Manifest
+++ b/www-apps/whoogle-search/Manifest
@@ -1,2 +1,2 @@
 DIST v0.8.3.tar.gz 612951 BLAKE2B b413727cd3bf43646b4754fd7d3d55009ca7dff7601e4c28910347427719aa541da7cab544dcb6ff7f5fab8134e50a484790a5e8c46a06ac723b45eb39980bab SHA512 ea795435809d7b0e5c7860716ed05dfdc1e38b73fcbc6e4c482367cb03d2a84db48e619fb82520e3ef3041971ca9f35f0641b61a13dc4a68c9c38d9699c4182a
-DIST v0.8.4.tar.gz 616189 BLAKE2B 23c547d330b3b098eea4d63029ba109f8ecc0f4fefe031c77fcdb52d657aeb93d8d6fa3ae8f54ff9a7218c7c31aa1eccba57b333c376b92cc6a841f60cb14240 SHA512 6a9f7e7502253c2c6b72e8753595f4d57dca6fad2fceb1fece6e40203f7b85eb0ef7debda4852ed347b103ae89c1a188ccb989e56bc7c0ad81dccdda69dc2b58
+DIST whoogle-search-0.8.4.gh.tar.gz 616189 BLAKE2B 23c547d330b3b098eea4d63029ba109f8ecc0f4fefe031c77fcdb52d657aeb93d8d6fa3ae8f54ff9a7218c7c31aa1eccba57b333c376b92cc6a841f60cb14240 SHA512 6a9f7e7502253c2c6b72e8753595f4d57dca6fad2fceb1fece6e40203f7b85eb0ef7debda4852ed347b103ae89c1a188ccb989e56bc7c0ad81dccdda69dc2b58

diff --git a/www-apps/whoogle-search/whoogle-search-0.8.4-r3.ebuild b/www-apps/whoogle-search/whoogle-search-0.8.4-r3.ebuild
index 73c7650736..865171b121 100644
--- a/www-apps/whoogle-search/whoogle-search-0.8.4-r3.ebuild
+++ b/www-apps/whoogle-search/whoogle-search-0.8.4-r3.ebuild
@@ -9,7 +9,7 @@ inherit distutils-r1 systemd
 
 DESCRIPTION="A self-hosted, ad-free, privacy-respecting metasearch engine"
 HOMEPAGE="https://github.com/benbusby/whoogle-search"
-SRC_URI="https://github.com/benbusby/whoogle-search/archive/refs/tags/v${PV}.tar.gz"
+SRC_URI="https://github.com/benbusby/whoogle-search/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/whoogle-search/
  2024-04-24 12:11 [gentoo-commits] repo/proj/guru:master " David Roman
@ 2024-04-23 22:46 ` David Roman
  0 siblings, 0 replies; 9+ messages in thread
From: David Roman @ 2024-04-23 22:46 UTC (permalink / raw
  To: gentoo-commits

commit:     ab8383b5caf6eb507c6edde68c35831147a2794c
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Tue Apr 23 22:46:22 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Apr 23 22:46:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ab8383b5

www-apps/whoogle-search: drop 0.8.3-r3

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 www-apps/whoogle-search/Manifest                   |  1 -
 .../whoogle-search/whoogle-search-0.8.3-r3.ebuild  | 49 ----------------------
 2 files changed, 50 deletions(-)

diff --git a/www-apps/whoogle-search/Manifest b/www-apps/whoogle-search/Manifest
index 09586eb867..4570793a36 100644
--- a/www-apps/whoogle-search/Manifest
+++ b/www-apps/whoogle-search/Manifest
@@ -1,2 +1 @@
-DIST v0.8.3.tar.gz 612951 BLAKE2B b413727cd3bf43646b4754fd7d3d55009ca7dff7601e4c28910347427719aa541da7cab544dcb6ff7f5fab8134e50a484790a5e8c46a06ac723b45eb39980bab SHA512 ea795435809d7b0e5c7860716ed05dfdc1e38b73fcbc6e4c482367cb03d2a84db48e619fb82520e3ef3041971ca9f35f0641b61a13dc4a68c9c38d9699c4182a
 DIST whoogle-search-0.8.4.gh.tar.gz 616189 BLAKE2B 23c547d330b3b098eea4d63029ba109f8ecc0f4fefe031c77fcdb52d657aeb93d8d6fa3ae8f54ff9a7218c7c31aa1eccba57b333c376b92cc6a841f60cb14240 SHA512 6a9f7e7502253c2c6b72e8753595f4d57dca6fad2fceb1fece6e40203f7b85eb0ef7debda4852ed347b103ae89c1a188ccb989e56bc7c0ad81dccdda69dc2b58

diff --git a/www-apps/whoogle-search/whoogle-search-0.8.3-r3.ebuild b/www-apps/whoogle-search/whoogle-search-0.8.3-r3.ebuild
deleted file mode 100644
index 7cbca25768..0000000000
--- a/www-apps/whoogle-search/whoogle-search-0.8.3-r3.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=no
-PYTHON_COMPAT=( python3_{10..12} )
-inherit distutils-r1 systemd
-
-DESCRIPTION="A self-hosted, ad-free, privacy-respecting metasearch engine"
-HOMEPAGE="https://github.com/benbusby/whoogle-search"
-SRC_URI="https://github.com/benbusby/whoogle-search/archive/refs/tags/v${PV}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-		dev-python/cssutils[${PYTHON_USEDEP}]
-		dev-python/beautifulsoup4[${PYTHON_USEDEP}]
-		dev-python/cryptography[${PYTHON_USEDEP}]
-		dev-python/flask[${PYTHON_USEDEP}]
-		dev-python/python-dotenv[${PYTHON_USEDEP}]
-		dev-python/defusedxml[${PYTHON_USEDEP}]
-		dev-python/waitress[${PYTHON_USEDEP}]
-		app-arch/brotli[${PYTHON_USEDEP},python]
-		net-libs/stem
-		acct-user/whoogle
-		acct-group/whoogle
-"
-
-src_install() {
-	rm -r .github docs test .dockerignore .gitignore .replit \
-		docker-compose.yml Dockerfile heroku.yml MANIFEST.in README.md \
-		requirements.txt
-	mkdir -p "${ED}/opt/whoogle-search" || die
-	insinto /opt/whoogle-search
-	doins -r ./*
-	fperms -R 0755 /opt/whoogle-search
-	fowners -R whoogle:whoogle /opt/whoogle-search
-
-	insinto /etc/default/
-	doins "${FILESDIR}/whoogle"
-	insinto /usr/lib/sysusers.d/
-	doins "${FILESDIR}/whoogle.conf"
-
-	newinitd "${FILESDIR}"/whoogle.initd whoogle
-	systemd_dounit "${FILESDIR}/whoogle.service"
-}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/whoogle-search/
@ 2024-10-01  2:46 Bailey Kasin
  0 siblings, 0 replies; 9+ messages in thread
From: Bailey Kasin @ 2024-10-01  2:46 UTC (permalink / raw
  To: gentoo-commits

commit:     04bbe1405e17cd3aa739dfb9aee421c16516ae18
Author:     Bailey Kasin <baileykasin <AT> gmail <DOT> com>
AuthorDate: Tue Oct  1 02:42:21 2024 +0000
Commit:     Bailey Kasin <baileykasin <AT> gmail <DOT> com>
CommitDate: Tue Oct  1 02:46:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=04bbe140

www-apps/whoogle-search: drop 0.8.4-r3

Signed-off-by: Cat Kasin <baileykasin <AT> gmail.com>

 www-apps/whoogle-search/Manifest                   |  1 -
 .../whoogle-search/whoogle-search-0.8.4-r3.ebuild  | 50 ----------------------
 2 files changed, 51 deletions(-)

diff --git a/www-apps/whoogle-search/Manifest b/www-apps/whoogle-search/Manifest
index 8da5dcb80..db1b3e4c9 100644
--- a/www-apps/whoogle-search/Manifest
+++ b/www-apps/whoogle-search/Manifest
@@ -1,2 +1 @@
-DIST whoogle-search-0.8.4.gh.tar.gz 616189 BLAKE2B 23c547d330b3b098eea4d63029ba109f8ecc0f4fefe031c77fcdb52d657aeb93d8d6fa3ae8f54ff9a7218c7c31aa1eccba57b333c376b92cc6a841f60cb14240 SHA512 6a9f7e7502253c2c6b72e8753595f4d57dca6fad2fceb1fece6e40203f7b85eb0ef7debda4852ed347b103ae89c1a188ccb989e56bc7c0ad81dccdda69dc2b58
 DIST whoogle-search-0.9.0.gh.tar.gz 617855 BLAKE2B f4051918971609f82062bd6796aea63c491ef6bb8263a94d1b3f93096ffd2db5a64d890a1990c9bfbdc191bb739c092d15bc313ec8dc26e2ba8a660bb7995e25 SHA512 eb6edc8a25dfc374439480370ae35c87e334c845f8e1128888a5be1c9033dbc83148c732126fdb493f928a1f40a925789c91d1fca83d5ff2b51c519e6e795dc7

diff --git a/www-apps/whoogle-search/whoogle-search-0.8.4-r3.ebuild b/www-apps/whoogle-search/whoogle-search-0.8.4-r3.ebuild
deleted file mode 100644
index d2825e84a..000000000
--- a/www-apps/whoogle-search/whoogle-search-0.8.4-r3.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=no
-PYTHON_COMPAT=( python3_{10..12} )
-inherit distutils-r1 systemd
-
-DESCRIPTION="A self-hosted, ad-free, privacy-respecting metasearch engine"
-HOMEPAGE="https://github.com/benbusby/whoogle-search"
-SRC_URI="https://github.com/benbusby/whoogle-search/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-		dev-python/cssutils[${PYTHON_USEDEP}]
-		dev-python/beautifulsoup4[${PYTHON_USEDEP}]
-		dev-python/cryptography[${PYTHON_USEDEP}]
-		dev-python/flask[${PYTHON_USEDEP}]
-		dev-python/python-dotenv[${PYTHON_USEDEP}]
-		dev-python/defusedxml[${PYTHON_USEDEP}]
-		dev-python/waitress[${PYTHON_USEDEP}]
-		dev-python/validators[${PYTHON_USEDEP}]
-		app-arch/brotli[${PYTHON_USEDEP},python]
-		net-libs/stem
-		acct-user/whoogle
-		acct-group/whoogle
-"
-
-src_install() {
-	rm -r .github docs test .dockerignore .gitignore .replit \
-		docker-compose.yml Dockerfile heroku.yml MANIFEST.in README.md \
-		requirements.txt
-	mkdir -p "${ED}/opt/whoogle-search" || die
-	insinto /opt/whoogle-search
-	doins -r ./*
-	fperms -R 0755 /opt/whoogle-search
-	fowners -R whoogle:whoogle /opt/whoogle-search
-
-	insinto /etc/default/
-	doins "${FILESDIR}/whoogle"
-	insinto /usr/lib/sysusers.d/
-	doins "${FILESDIR}/whoogle.conf"
-
-	newinitd "${FILESDIR}"/whoogle.initd whoogle
-	systemd_dounit "${FILESDIR}/whoogle.service"
-}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/whoogle-search/
@ 2024-10-01  2:46 Bailey Kasin
  0 siblings, 0 replies; 9+ messages in thread
From: Bailey Kasin @ 2024-10-01  2:46 UTC (permalink / raw
  To: gentoo-commits

commit:     81d2911d3000b77371a394697505391f3ea70e07
Author:     Bailey Kasin <baileykasin <AT> gmail <DOT> com>
AuthorDate: Tue Oct  1 02:38:23 2024 +0000
Commit:     Bailey Kasin <baileykasin <AT> gmail <DOT> com>
CommitDate: Tue Oct  1 02:46:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=81d2911d

www-apps/whoogle-search: add 0.9.0

Signed-off-by: Cat Kasin <baileykasin <AT> gmail.com>

 www-apps/whoogle-search/Manifest                   |  1 +
 .../whoogle-search/whoogle-search-0.9.0.ebuild     | 50 ++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/www-apps/whoogle-search/Manifest b/www-apps/whoogle-search/Manifest
index 4570793a3..8da5dcb80 100644
--- a/www-apps/whoogle-search/Manifest
+++ b/www-apps/whoogle-search/Manifest
@@ -1 +1,2 @@
 DIST whoogle-search-0.8.4.gh.tar.gz 616189 BLAKE2B 23c547d330b3b098eea4d63029ba109f8ecc0f4fefe031c77fcdb52d657aeb93d8d6fa3ae8f54ff9a7218c7c31aa1eccba57b333c376b92cc6a841f60cb14240 SHA512 6a9f7e7502253c2c6b72e8753595f4d57dca6fad2fceb1fece6e40203f7b85eb0ef7debda4852ed347b103ae89c1a188ccb989e56bc7c0ad81dccdda69dc2b58
+DIST whoogle-search-0.9.0.gh.tar.gz 617855 BLAKE2B f4051918971609f82062bd6796aea63c491ef6bb8263a94d1b3f93096ffd2db5a64d890a1990c9bfbdc191bb739c092d15bc313ec8dc26e2ba8a660bb7995e25 SHA512 eb6edc8a25dfc374439480370ae35c87e334c845f8e1128888a5be1c9033dbc83148c732126fdb493f928a1f40a925789c91d1fca83d5ff2b51c519e6e795dc7

diff --git a/www-apps/whoogle-search/whoogle-search-0.9.0.ebuild b/www-apps/whoogle-search/whoogle-search-0.9.0.ebuild
new file mode 100644
index 000000000..5c4cd6b33
--- /dev/null
+++ b/www-apps/whoogle-search/whoogle-search-0.9.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=no
+PYTHON_COMPAT=( python3_{10..13} )
+inherit distutils-r1 systemd
+
+DESCRIPTION="A self-hosted, ad-free, privacy-respecting metasearch engine"
+HOMEPAGE="https://github.com/benbusby/whoogle-search"
+SRC_URI="https://github.com/benbusby/whoogle-search/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+		dev-python/cssutils[${PYTHON_USEDEP}]
+		dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+		dev-python/cryptography[${PYTHON_USEDEP}]
+		dev-python/flask[${PYTHON_USEDEP}]
+		dev-python/python-dotenv[${PYTHON_USEDEP}]
+		dev-python/defusedxml[${PYTHON_USEDEP}]
+		dev-python/waitress[${PYTHON_USEDEP}]
+		dev-python/validators[${PYTHON_USEDEP}]
+		app-arch/brotli[${PYTHON_USEDEP},python]
+		net-libs/stem
+		acct-user/whoogle
+		acct-group/whoogle
+"
+
+src_install() {
+	rm -r .github docs test .dockerignore .gitignore .replit \
+		docker-compose.yml Dockerfile heroku.yml MANIFEST.in README.md \
+		requirements.txt
+	mkdir -p "${ED}/opt/whoogle-search" || die
+	insinto /opt/whoogle-search
+	doins -r ./*
+	fperms -R 0755 /opt/whoogle-search
+	fowners -R whoogle:whoogle /opt/whoogle-search
+
+	insinto /etc/default/
+	doins "${FILESDIR}/whoogle"
+	insinto /usr/lib/sysusers.d/
+	doins "${FILESDIR}/whoogle.conf"
+
+	newinitd "${FILESDIR}"/whoogle.initd whoogle
+	systemd_dounit "${FILESDIR}/whoogle.service"
+}


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/whoogle-search/
@ 2024-11-02  4:13 Bailey Kasin
  0 siblings, 0 replies; 9+ messages in thread
From: Bailey Kasin @ 2024-11-02  4:13 UTC (permalink / raw
  To: gentoo-commits

commit:     cde8bd22858b7abcd67d7a0d6aca943bb0e81985
Author:     Cat Kasin <cat <AT> aulucya <DOT> gay>
AuthorDate: Sat Nov  2 04:12:52 2024 +0000
Commit:     Bailey Kasin <baileykasin <AT> gmail <DOT> com>
CommitDate: Sat Nov  2 04:12:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cde8bd22

www-apps/whoogle-search: add 0.9.1, drop 0.9.0

Signed-off-by: Cat Kasin <cat <AT> aulucya.gay>

 www-apps/whoogle-search/Manifest                                        | 2 +-
 .../{whoogle-search-0.9.0.ebuild => whoogle-search-0.9.1.ebuild}        | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/whoogle-search/Manifest b/www-apps/whoogle-search/Manifest
index db1b3e4c9..0642e2ec1 100644
--- a/www-apps/whoogle-search/Manifest
+++ b/www-apps/whoogle-search/Manifest
@@ -1 +1 @@
-DIST whoogle-search-0.9.0.gh.tar.gz 617855 BLAKE2B f4051918971609f82062bd6796aea63c491ef6bb8263a94d1b3f93096ffd2db5a64d890a1990c9bfbdc191bb739c092d15bc313ec8dc26e2ba8a660bb7995e25 SHA512 eb6edc8a25dfc374439480370ae35c87e334c845f8e1128888a5be1c9033dbc83148c732126fdb493f928a1f40a925789c91d1fca83d5ff2b51c519e6e795dc7
+DIST whoogle-search-0.9.1.gh.tar.gz 617547 BLAKE2B c5e877fe5190440b9cf2b4a2171d764e1557029cf4cbf00e8a5ae5114025b8fd61f094c125927850081a481be990a96cd3226824c6cbe9623d9ece6fb97c9175 SHA512 db37b5132f663a6654c0ade25b04e6ba45fc4fb44925e1f7ddc8e589986af8e284858a5f46ddbd280d9e74829f2dc18ee88c2b1d5b07bdc34b6e4d1d866861f8

diff --git a/www-apps/whoogle-search/whoogle-search-0.9.0.ebuild b/www-apps/whoogle-search/whoogle-search-0.9.1.ebuild
similarity index 100%
rename from www-apps/whoogle-search/whoogle-search-0.9.0.ebuild
rename to www-apps/whoogle-search/whoogle-search-0.9.1.ebuild


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/whoogle-search/
@ 2025-01-26  4:03 Cat Kasin
  0 siblings, 0 replies; 9+ messages in thread
From: Cat Kasin @ 2025-01-26  4:03 UTC (permalink / raw
  To: gentoo-commits

commit:     5e7cdf5368d0c9e763ee3332e0c0364c5e4f4fa1
Author:     Cat Kasin <cat <AT> aulucya <DOT> gay>
AuthorDate: Sun Jan 26 03:46:42 2025 +0000
Commit:     Cat Kasin <cat <AT> aulucya <DOT> gay>
CommitDate: Sun Jan 26 03:46:42 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5e7cdf53

www-apps/whoogle-search: update maintainer name

Signed-off-by: Cat Kasin <cat <AT> aulucya.gay>

 www-apps/whoogle-search/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/whoogle-search/metadata.xml b/www-apps/whoogle-search/metadata.xml
index 479b38662..34324416d 100644
--- a/www-apps/whoogle-search/metadata.xml
+++ b/www-apps/whoogle-search/metadata.xml
@@ -3,7 +3,7 @@
 <pkgmetadata>
 	<maintainer type="person">
 		<email>cat@aulucya.gay</email>
-		<name>Bailey Kasin</name>
+		<name>Cat Kasin</name>
 	</maintainer>
 	<upstream>
 		<remote-id type="github">benbusby/whoogle-search</remote-id>


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: www-apps/whoogle-search/
@ 2025-01-26  4:03 Cat Kasin
  0 siblings, 0 replies; 9+ messages in thread
From: Cat Kasin @ 2025-01-26  4:03 UTC (permalink / raw
  To: gentoo-commits

commit:     3183024d9167b8888f810eb6cea442838aa697cf
Author:     Cat Kasin <cat <AT> aulucya <DOT> gay>
AuthorDate: Sun Jan 26 04:02:38 2025 +0000
Commit:     Cat Kasin <cat <AT> aulucya <DOT> gay>
CommitDate: Sun Jan 26 04:02:38 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3183024d

www-apps/whoogle-search: add 0.9.3, drop 0.9.1

Signed-off-by: Cat Kasin <cat <AT> aulucya.gay>

 www-apps/whoogle-search/Manifest                                        | 2 +-
 .../{whoogle-search-0.9.1.ebuild => whoogle-search-0.9.3.ebuild}        | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/whoogle-search/Manifest b/www-apps/whoogle-search/Manifest
index 0642e2ec1..62c809ab0 100644
--- a/www-apps/whoogle-search/Manifest
+++ b/www-apps/whoogle-search/Manifest
@@ -1 +1 @@
-DIST whoogle-search-0.9.1.gh.tar.gz 617547 BLAKE2B c5e877fe5190440b9cf2b4a2171d764e1557029cf4cbf00e8a5ae5114025b8fd61f094c125927850081a481be990a96cd3226824c6cbe9623d9ece6fb97c9175 SHA512 db37b5132f663a6654c0ade25b04e6ba45fc4fb44925e1f7ddc8e589986af8e284858a5f46ddbd280d9e74829f2dc18ee88c2b1d5b07bdc34b6e4d1d866861f8
+DIST whoogle-search-0.9.3.gh.tar.gz 619500 BLAKE2B 8a6782c8b4dadf2e46c066b9de9e165454bbffbb4a271d85f746244c38486e2008a5ec3c6b7e4688b4f8570791b528a58a989b16631a613bd2563a976da20520 SHA512 711523ea826ea4b64ea3f845ef4cab07ddb7fdb474c32ac13153fcb2dc753895e0b6b83f0a5646952ef983a762d36e17e2e230ac7b826db29a6431ffea87e23a

diff --git a/www-apps/whoogle-search/whoogle-search-0.9.1.ebuild b/www-apps/whoogle-search/whoogle-search-0.9.3.ebuild
similarity index 100%
rename from www-apps/whoogle-search/whoogle-search-0.9.1.ebuild
rename to www-apps/whoogle-search/whoogle-search-0.9.3.ebuild


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2025-01-26  4:03 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-02  4:13 [gentoo-commits] repo/proj/guru:dev commit in: www-apps/whoogle-search/ Bailey Kasin
  -- strict thread matches above, loose matches on Subject: below --
2025-01-26  4:03 Cat Kasin
2025-01-26  4:03 Cat Kasin
2024-10-01  2:46 Bailey Kasin
2024-10-01  2:46 Bailey Kasin
2024-04-24 12:11 [gentoo-commits] repo/proj/guru:master " David Roman
2024-04-23 22:46 ` [gentoo-commits] repo/proj/guru:dev " David Roman
2024-04-24 12:11 [gentoo-commits] repo/proj/guru:master " David Roman
2024-04-23 22:46 ` [gentoo-commits] repo/proj/guru:dev " David Roman
2023-11-02  1:57 Bailey Kasin
2023-11-02  1:34 Bailey Kasin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox