Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] [WIP] New package: searx-1.0.0
@ 2021-04-22 16:22 FollieHiyuki
  2021-04-22 16:32 ` [PR PATCH] [Updated] " FollieHiyuki
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: FollieHiyuki @ 2021-04-22 16:22 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1711 bytes --]

There is a new pull request by FollieHiyuki against master on the void-packages repository

https://github.com/FollieHiyuki/void-packages searx
https://github.com/void-linux/void-packages/pull/30426

[WIP] New package: searx-1.0.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

What are still needed to be done:
- [ ] runit service (as `_searx` user)
- [ ] testing
- [ ] clean up post_install()

Help appreciated.


A patch file from https://github.com/void-linux/void-packages/pull/30426.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-searx-30426.patch --]
[-- Type: text/x-diff, Size: 2679 bytes --]

From 2bb166e81a9cdf62a92bc7560fd59e804bc2c5b7 Mon Sep 17 00:00:00 2001
From: FollieHiyuki <folliekazetani@protonmail.com>
Date: Thu, 22 Apr 2021 18:23:14 +0300
Subject: [PATCH 1/2] New package: python3-langdetect-1.0.8

---
 srcpkgs/python3-langdetect/template | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 srcpkgs/python3-langdetect/template

diff --git a/srcpkgs/python3-langdetect/template b/srcpkgs/python3-langdetect/template
new file mode 100644
index 000000000000..25d51a5ab290
--- /dev/null
+++ b/srcpkgs/python3-langdetect/template
@@ -0,0 +1,15 @@
+# Template file for 'python3-langdetect'
+pkgname=python3-langdetect
+version=1.0.8
+revision=1
+wrksrc=langdetect-${version}
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3-six"
+checkdepends="${depends} python3-pytest"
+short_desc="Port of Google's language detection library in Python"
+maintainer="FollieHiyuki <folliekazetani@protonmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/Mimino666/langdetect"
+distfiles="${PYPI_SITE}/l/langdetect/langdetect-${version}.tar.gz"
+checksum=363795ea005f1243c958e953245dac5d814fabdc025c9afa91588c5fa6b2fa83

From f518233847264bdc9be72b345d632212a4f65c8e Mon Sep 17 00:00:00 2001
From: FollieHiyuki <folliekazetani@protonmail.com>
Date: Thu, 22 Apr 2021 18:49:35 +0300
Subject: [PATCH 2/2] New package: searx-1.0.0

---
 srcpkgs/searx/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/searx/template

diff --git a/srcpkgs/searx/template b/srcpkgs/searx/template
new file mode 100644
index 000000000000..7e23a2b052a9
--- /dev/null
+++ b/srcpkgs/searx/template
@@ -0,0 +1,26 @@
+# Template file for 'searx'
+pkgname=searx
+version=1.0.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools python3-yaml"
+makedepends="openssl-devel"
+depends="python3-certifi python3-dateutil python3-Flask python3-Flask-Babel
+ python3-Babel python3-idna python3-lxml python3-Pygments python3-yaml
+ python3-requests python3-pysocks python3-langdetect uwsgi uwsgi-python3"
+short_desc="Privacy-respecting metasearch engine"
+maintainer="FollieHiyuki <folliekazetani@protonmail.com>"
+license="AGPL-3.0-or-later"
+homepage="https://searx.github.io/searx/"
+distfiles="https://github.com/searx/searx/archive/${version}.tar.gz"
+checksum=4587acc9bd2bf428fe9ac8e4d79d3637dac308a8e5bdeee4f0bae85bfe5c67fe
+# Test depends on python3-splinter
+make_check=no
+
+post_install() {
+	vlicense LICENSE
+
+	# Clean up
+	mkdir -p ${DESTDIR}/etc/searx
+	mv -f ${DESTDIR}/usr/lib/python${py3_ver}/site-packages/searx/settings.yml ${DESTDIR}/etc/searx/
+}

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

* Re: [PR PATCH] [Updated] [WIP] New package: searx-1.0.0
  2021-04-22 16:22 [PR PATCH] [WIP] New package: searx-1.0.0 FollieHiyuki
@ 2021-04-22 16:32 ` FollieHiyuki
  2021-04-22 16:34 ` FollieHiyuki
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: FollieHiyuki @ 2021-04-22 16:32 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1716 bytes --]

There is an updated pull request by FollieHiyuki against master on the void-packages repository

https://github.com/FollieHiyuki/void-packages searx
https://github.com/void-linux/void-packages/pull/30426

[WIP] New package: searx-1.0.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

What are still needed to be done:
- [ ] runit service (as `_searx` user)
- [ ] testing
- [ ] clean up post_install()

Help appreciated.


A patch file from https://github.com/void-linux/void-packages/pull/30426.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-searx-30426.patch --]
[-- Type: text/x-diff, Size: 2649 bytes --]

From 2bb166e81a9cdf62a92bc7560fd59e804bc2c5b7 Mon Sep 17 00:00:00 2001
From: FollieHiyuki <folliekazetani@protonmail.com>
Date: Thu, 22 Apr 2021 18:23:14 +0300
Subject: [PATCH 1/2] New package: python3-langdetect-1.0.8

---
 srcpkgs/python3-langdetect/template | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 srcpkgs/python3-langdetect/template

diff --git a/srcpkgs/python3-langdetect/template b/srcpkgs/python3-langdetect/template
new file mode 100644
index 000000000000..25d51a5ab290
--- /dev/null
+++ b/srcpkgs/python3-langdetect/template
@@ -0,0 +1,15 @@
+# Template file for 'python3-langdetect'
+pkgname=python3-langdetect
+version=1.0.8
+revision=1
+wrksrc=langdetect-${version}
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3-six"
+checkdepends="${depends} python3-pytest"
+short_desc="Port of Google's language detection library in Python"
+maintainer="FollieHiyuki <folliekazetani@protonmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/Mimino666/langdetect"
+distfiles="${PYPI_SITE}/l/langdetect/langdetect-${version}.tar.gz"
+checksum=363795ea005f1243c958e953245dac5d814fabdc025c9afa91588c5fa6b2fa83

From 1709c520afe551b199ef7d0e2a431997d035c517 Mon Sep 17 00:00:00 2001
From: FollieHiyuki <folliekazetani@protonmail.com>
Date: Thu, 22 Apr 2021 18:49:35 +0300
Subject: [PATCH 2/2] New package: searx-1.0.0

---
 srcpkgs/searx/template | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 srcpkgs/searx/template

diff --git a/srcpkgs/searx/template b/srcpkgs/searx/template
new file mode 100644
index 000000000000..edc9fee5901b
--- /dev/null
+++ b/srcpkgs/searx/template
@@ -0,0 +1,25 @@
+# Template file for 'searx'
+pkgname=searx
+version=1.0.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools python3-yaml"
+depends="python3-certifi python3-dateutil python3-Flask python3-Flask-Babel
+ python3-Babel python3-idna python3-lxml python3-Pygments python3-yaml
+ python3-requests python3-pysocks python3-langdetect uwsgi uwsgi-python3"
+short_desc="Privacy-respecting metasearch engine"
+maintainer="FollieHiyuki <folliekazetani@protonmail.com>"
+license="AGPL-3.0-or-later"
+homepage="https://searx.github.io/searx/"
+distfiles="https://github.com/searx/searx/archive/${version}.tar.gz"
+checksum=4587acc9bd2bf428fe9ac8e4d79d3637dac308a8e5bdeee4f0bae85bfe5c67fe
+# Test depends on python3-splinter
+make_check=no
+
+post_install() {
+	vlicense LICENSE
+
+	# Clean up
+	mkdir -p ${DESTDIR}/etc/searx
+	mv -f ${DESTDIR}/usr/lib/python${py3_ver}/site-packages/searx/settings.yml ${DESTDIR}/etc/searx/
+}

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

* Re: [WIP] New package: searx-1.0.0
  2021-04-22 16:22 [PR PATCH] [WIP] New package: searx-1.0.0 FollieHiyuki
  2021-04-22 16:32 ` [PR PATCH] [Updated] " FollieHiyuki
@ 2021-04-22 16:34 ` FollieHiyuki
  2021-04-29 13:31 ` [PR PATCH] [Updated] " FollieHiyuki
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: FollieHiyuki @ 2021-04-22 16:34 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 168 bytes --]

New comment by FollieHiyuki on void-packages repository

https://github.com/void-linux/void-packages/pull/30426#issuecomment-824998421

Comment:
Related issue: #12888


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

* Re: [PR PATCH] [Updated] [WIP] New package: searx-1.0.0
  2021-04-22 16:22 [PR PATCH] [WIP] New package: searx-1.0.0 FollieHiyuki
  2021-04-22 16:32 ` [PR PATCH] [Updated] " FollieHiyuki
  2021-04-22 16:34 ` FollieHiyuki
@ 2021-04-29 13:31 ` FollieHiyuki
  2022-05-18  2:09 ` github-actions
  2022-06-02  2:13 ` [PR PATCH] [Closed]: " github-actions
  4 siblings, 0 replies; 6+ messages in thread
From: FollieHiyuki @ 2021-04-29 13:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1716 bytes --]

There is an updated pull request by FollieHiyuki against master on the void-packages repository

https://github.com/FollieHiyuki/void-packages searx
https://github.com/void-linux/void-packages/pull/30426

[WIP] New package: searx-1.0.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

What are still needed to be done:
- [ ] runit service (as `_searx` user)
- [ ] testing
- [ ] clean up post_install()

Help appreciated.


A patch file from https://github.com/void-linux/void-packages/pull/30426.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-searx-30426.patch --]
[-- Type: text/x-diff, Size: 2649 bytes --]

From 2bb166e81a9cdf62a92bc7560fd59e804bc2c5b7 Mon Sep 17 00:00:00 2001
From: FollieHiyuki <folliekazetani@protonmail.com>
Date: Thu, 22 Apr 2021 18:23:14 +0300
Subject: [PATCH 1/2] New package: python3-langdetect-1.0.8

---
 srcpkgs/python3-langdetect/template | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 srcpkgs/python3-langdetect/template

diff --git a/srcpkgs/python3-langdetect/template b/srcpkgs/python3-langdetect/template
new file mode 100644
index 000000000000..25d51a5ab290
--- /dev/null
+++ b/srcpkgs/python3-langdetect/template
@@ -0,0 +1,15 @@
+# Template file for 'python3-langdetect'
+pkgname=python3-langdetect
+version=1.0.8
+revision=1
+wrksrc=langdetect-${version}
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3-six"
+checkdepends="${depends} python3-pytest"
+short_desc="Port of Google's language detection library in Python"
+maintainer="FollieHiyuki <folliekazetani@protonmail.com>"
+license="Apache-2.0"
+homepage="https://github.com/Mimino666/langdetect"
+distfiles="${PYPI_SITE}/l/langdetect/langdetect-${version}.tar.gz"
+checksum=363795ea005f1243c958e953245dac5d814fabdc025c9afa91588c5fa6b2fa83

From e25b58bf1fc23e94c022d434adf5e770a53f7497 Mon Sep 17 00:00:00 2001
From: FollieHiyuki <folliekazetani@protonmail.com>
Date: Thu, 22 Apr 2021 18:49:35 +0300
Subject: [PATCH 2/2] New package: searx-1.0.0

---
 srcpkgs/searx/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/searx/template

diff --git a/srcpkgs/searx/template b/srcpkgs/searx/template
new file mode 100644
index 000000000000..99687c5c92f8
--- /dev/null
+++ b/srcpkgs/searx/template
@@ -0,0 +1,26 @@
+# Template file for 'searx'
+pkgname=searx
+version=1.0.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools python3-yaml"
+depends="python3-certifi python3-dateutil python3-Flask python3-Flask-Babel
+ python3-Babel python3-idna python3-lxml python3-Pygments python3-yaml
+ python3-requests python3-pysocks python3-langdetect uwsgi uwsgi-python3"
+short_desc="Privacy-respecting metasearch engine"
+maintainer="FollieHiyuki <folliekazetani@protonmail.com>"
+license="AGPL-3.0-or-later"
+homepage="https://searx.github.io/searx/"
+distfiles="https://github.com/searx/searx/archive/${version}.tar.gz"
+checksum=4587acc9bd2bf428fe9ac8e4d79d3637dac308a8e5bdeee4f0bae85bfe5c67fe
+# Test depends on python3-splinter
+make_check=no
+
+system_accounts="_searx"
+
+post_install() {
+	vlicense LICENSE
+
+	vmkdir etc/searx
+	mv ${DESTDIR}/usr/lib/python${py3_ver}/site-packages/searx/settings.yml ${DESTDIR}/etc/searx/
+}

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

* Re: [WIP] New package: searx-1.0.0
  2021-04-22 16:22 [PR PATCH] [WIP] New package: searx-1.0.0 FollieHiyuki
                   ` (2 preceding siblings ...)
  2021-04-29 13:31 ` [PR PATCH] [Updated] " FollieHiyuki
@ 2022-05-18  2:09 ` github-actions
  2022-06-02  2:13 ` [PR PATCH] [Closed]: " github-actions
  4 siblings, 0 replies; 6+ messages in thread
From: github-actions @ 2022-05-18  2:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 305 bytes --]

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/30426#issuecomment-1129492959

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Closed]: [WIP] New package: searx-1.0.0
  2021-04-22 16:22 [PR PATCH] [WIP] New package: searx-1.0.0 FollieHiyuki
                   ` (3 preceding siblings ...)
  2022-05-18  2:09 ` github-actions
@ 2022-06-02  2:13 ` github-actions
  4 siblings, 0 replies; 6+ messages in thread
From: github-actions @ 2022-06-02  2:13 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1552 bytes --]

There's a closed pull request on the void-packages repository

[WIP] New package: searx-1.0.0
https://github.com/void-linux/void-packages/pull/30426

Description:
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

What are still needed to be done:
- [ ] runit service (as `_searx` user)
- [ ] testing
- [ ] clean up post_install()

Help appreciated.


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

end of thread, other threads:[~2022-06-02  2:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-22 16:22 [PR PATCH] [WIP] New package: searx-1.0.0 FollieHiyuki
2021-04-22 16:32 ` [PR PATCH] [Updated] " FollieHiyuki
2021-04-22 16:34 ` FollieHiyuki
2021-04-29 13:31 ` [PR PATCH] [Updated] " FollieHiyuki
2022-05-18  2:09 ` github-actions
2022-06-02  2:13 ` [PR PATCH] [Closed]: " github-actions

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).