Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: arti-0.5.0
@ 2022-06-27 21:29 daniel-eys
  2022-07-01 10:08 ` [PR PATCH] [Updated] " daniel-eys
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: daniel-eys @ 2022-06-27 21:29 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages arti
https://github.com/void-linux/void-packages/pull/37715

New package: arti-0.5.0
<!-- Uncomment relevant sections and delete options which are not applicable -->

The Tor Project is re-implementing Tor in Rust.

https://gitlab.torproject.org/tpo/core/arti
https://blog.torproject.org/arti_050_released/

Not yet production ready, nor feature-parity with C Tor but basic SOCKS proxy support via
```
$ arti proxy -p 9150
```
is usable.

When arti is production ready, I'm planning to add a proper runit service.

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- 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
-->


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

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

From 36b2e62f6f7c939375d8d7438910ad38d915a8d4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Tue, 15 Mar 2022 20:03:17 +0100
Subject: [PATCH] New package: arti-0.5.0

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

diff --git a/srcpkgs/arti/template b/srcpkgs/arti/template
new file mode 100644
index 000000000000..f0dee7978034
--- /dev/null
+++ b/srcpkgs/arti/template
@@ -0,0 +1,21 @@
+# Template file for 'arti'
+pkgname=arti
+version=0.5.0
+revision=1
+wrksrc="arti-arti-v${version}"
+build_style=cargo
+make_check_args="-- --skip internal::test::internal_macro_test" # fails with --release builds
+make_install_args="--path crates/arti"
+hostmakedepends="pkg-config"
+makedepends="openssl-devel sqlite-devel"
+short_desc="Tor implementation in Rust"
+maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://gitlab.torproject.org/tpo/core/arti"
+changelog="https://gitlab.torproject.org/tpo/core/arti/-/raw/main/CHANGELOG.md"
+distfiles="https://gitlab.torproject.org/tpo/core/arti/-/archive/arti-v${version}/arti-arti-v${version}.tar.gz"
+checksum=d1bb168a2f8733a301dddbaa49c0981e0019e17290c0946690abe533a184e0a6
+
+post_install() {
+	vlicense LICENSE-MIT
+}

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

* Re: [PR PATCH] [Updated] New package: arti-0.5.0
  2022-06-27 21:29 [PR PATCH] New package: arti-0.5.0 daniel-eys
@ 2022-07-01 10:08 ` daniel-eys
  2022-07-01 11:36 ` daniel-eys
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: daniel-eys @ 2022-07-01 10:08 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages arti
https://github.com/void-linux/void-packages/pull/37715

New package: arti-0.5.0
<!-- Uncomment relevant sections and delete options which are not applicable -->

The Tor Project is re-implementing Tor in Rust.

https://gitlab.torproject.org/tpo/core/arti
https://blog.torproject.org/arti_050_released/

Not yet production ready, nor feature-parity with C Tor but basic SOCKS proxy support via
```
$ arti proxy -p 9150
```
is usable.

When arti is production ready, I'm planning to add a proper runit service.

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- 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
-->


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

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

From c43a72dc103f290845d9a864deb7dcbc8b335380 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Tue, 15 Mar 2022 20:03:17 +0100
Subject: [PATCH] New package: arti-0.5.0

---
 srcpkgs/arti/template | 31 +++++++++++++++++++++++++++++++
 srcpkgs/arti/update   |  1 +
 2 files changed, 32 insertions(+)
 create mode 100644 srcpkgs/arti/template
 create mode 100644 srcpkgs/arti/update

diff --git a/srcpkgs/arti/template b/srcpkgs/arti/template
new file mode 100644
index 000000000000..f796a0a77429
--- /dev/null
+++ b/srcpkgs/arti/template
@@ -0,0 +1,31 @@
+# Template file for 'arti'
+pkgname=arti
+version=0.5.0
+revision=1
+wrksrc="arti-arti-v${version}"
+build_style=cargo
+make_check_args="-- --skip internal::test::internal_macro_test" # fails with --release builds
+make_install_args="--path crates/arti"
+hostmakedepends="pkg-config"
+makedepends="openssl-devel sqlite-devel"
+short_desc="Tor implementation in Rust"
+maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://gitlab.torproject.org/tpo/core/arti"
+changelog="https://gitlab.torproject.org/tpo/core/arti/-/raw/main/CHANGELOG.md"
+distfiles="https://gitlab.torproject.org/tpo/core/arti/-/archive/arti-v${version}/arti-arti-v${version}.tar.gz"
+checksum=d1bb168a2f8733a301dddbaa49c0981e0019e17290c0946690abe533a184e0a6
+
+if [ "$XBPS_CHECK_PKGS" ]; then
+	case "$XBPS_TARGET_MACHINE" in
+		# Disable LTO for i686 because otherwise tests fail with:
+		# ---- src/address.rs - address::TorAddr (line 79) stdout ----
+		# error: ran out of registers during register allocation
+		# LLVM ERROR: Cannot emit physreg copy instruction
+		i686*) export CARGO_PROFILE_RELEASE_LTO=false ;;
+	esac
+fi
+
+post_install() {
+	vlicense LICENSE-MIT
+}
diff --git a/srcpkgs/arti/update b/srcpkgs/arti/update
new file mode 100644
index 000000000000..4d7a8d07c702
--- /dev/null
+++ b/srcpkgs/arti/update
@@ -0,0 +1 @@
+pkgname=arti-arti

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

* Re: New package: arti-0.5.0
  2022-06-27 21:29 [PR PATCH] New package: arti-0.5.0 daniel-eys
  2022-07-01 10:08 ` [PR PATCH] [Updated] " daniel-eys
@ 2022-07-01 11:36 ` daniel-eys
  2022-08-11 20:36 ` [PR PATCH] [Updated] " daniel-eys
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: daniel-eys @ 2022-07-01 11:36 UTC (permalink / raw)
  To: ml

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

New comment by daniel-eys on void-packages repository

https://github.com/void-linux/void-packages/pull/37715#issuecomment-1172251912

Comment:
fixed failing i686 test and added update file

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

* Re: [PR PATCH] [Updated] New package: arti-0.5.0
  2022-06-27 21:29 [PR PATCH] New package: arti-0.5.0 daniel-eys
  2022-07-01 10:08 ` [PR PATCH] [Updated] " daniel-eys
  2022-07-01 11:36 ` daniel-eys
@ 2022-08-11 20:36 ` daniel-eys
  2022-09-04 14:22 ` New package: arti-0.6.0 jcgruenhage
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: daniel-eys @ 2022-08-11 20:36 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages arti
https://github.com/void-linux/void-packages/pull/37715

New package: arti-0.5.0
<!-- Uncomment relevant sections and delete options which are not applicable -->

The Tor Project is re-implementing Tor in Rust.

https://gitlab.torproject.org/tpo/core/arti
https://blog.torproject.org/arti_050_released/

Not yet production ready, nor feature-parity with C Tor but basic SOCKS proxy support via
```
$ arti proxy -p 9150
```
is usable.

When arti is production ready, I'm planning to add a proper runit service.

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- 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
-->


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

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

From fb72d18ccbc68f38ca44e0c03eda1d60905745cf Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Tue, 15 Mar 2022 20:03:17 +0100
Subject: [PATCH] New package: arti-0.6.0

---
 srcpkgs/arti/template | 31 +++++++++++++++++++++++++++++++
 srcpkgs/arti/update   |  1 +
 2 files changed, 32 insertions(+)
 create mode 100644 srcpkgs/arti/template
 create mode 100644 srcpkgs/arti/update

diff --git a/srcpkgs/arti/template b/srcpkgs/arti/template
new file mode 100644
index 000000000000..8f0bc61caf39
--- /dev/null
+++ b/srcpkgs/arti/template
@@ -0,0 +1,31 @@
+# Template file for 'arti'
+pkgname=arti
+version=0.6.0
+revision=1
+wrksrc="arti-arti-v${version}"
+build_style=cargo
+make_check_args="-- --skip internal::test::internal_macro_test" # fails with --release builds
+make_install_args="--path crates/arti"
+hostmakedepends="pkg-config"
+makedepends="openssl-devel sqlite-devel"
+short_desc="Tor implementation in Rust"
+maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://gitlab.torproject.org/tpo/core/arti"
+changelog="https://gitlab.torproject.org/tpo/core/arti/-/raw/main/CHANGELOG.md"
+distfiles="https://gitlab.torproject.org/tpo/core/arti/-/archive/arti-v${version}/arti-arti-v${version}.tar.gz"
+checksum=afdaf6ac98cdf1c2f27c8d24e7a68dbbd75752bfb92912bf52287cd00ba19c19
+
+if [ "$XBPS_CHECK_PKGS" ]; then
+	case "$XBPS_TARGET_MACHINE" in
+		# Disable LTO for i686 because otherwise tests fail with:
+		# ---- src/address.rs - address::TorAddr (line 79) stdout ----
+		# error: ran out of registers during register allocation
+		# LLVM ERROR: Cannot emit physreg copy instruction
+		i686*) export CARGO_PROFILE_RELEASE_LTO=false ;;
+	esac
+fi
+
+post_install() {
+	vlicense LICENSE-MIT
+}
diff --git a/srcpkgs/arti/update b/srcpkgs/arti/update
new file mode 100644
index 000000000000..4d7a8d07c702
--- /dev/null
+++ b/srcpkgs/arti/update
@@ -0,0 +1 @@
+pkgname=arti-arti

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

* Re: New package: arti-0.6.0
  2022-06-27 21:29 [PR PATCH] New package: arti-0.5.0 daniel-eys
                   ` (2 preceding siblings ...)
  2022-08-11 20:36 ` [PR PATCH] [Updated] " daniel-eys
@ 2022-09-04 14:22 ` jcgruenhage
  2022-09-05 20:19 ` [PR PATCH] [Updated] " daniel-eys
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: jcgruenhage @ 2022-09-04 14:22 UTC (permalink / raw)
  To: ml

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

New comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/37715#issuecomment-1236352510

Comment:
@daniel-eys Arti 1.0.0 has been released, see https://blog.torproject.org/arti_100_released/

Aside of that: Would be happy if we could move this forward some time.

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

* Re: [PR PATCH] [Updated] New package: arti-0.6.0
  2022-06-27 21:29 [PR PATCH] New package: arti-0.5.0 daniel-eys
                   ` (3 preceding siblings ...)
  2022-09-04 14:22 ` New package: arti-0.6.0 jcgruenhage
@ 2022-09-05 20:19 ` daniel-eys
  2022-09-05 20:31 ` New package: arti-1.0.0 daniel-eys
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: daniel-eys @ 2022-09-05 20:19 UTC (permalink / raw)
  To: ml

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

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

https://github.com/daniel-eys/void-packages arti
https://github.com/void-linux/void-packages/pull/37715

New package: arti-0.6.0
<!-- Uncomment relevant sections and delete options which are not applicable -->

The Tor Project is re-implementing Tor in Rust.

https://gitlab.torproject.org/tpo/core/arti
https://blog.torproject.org/arti_050_released/

Not yet production ready, nor feature-parity with C Tor but basic SOCKS proxy support via
```
$ arti proxy -p 9150
```
is usable.

When arti is production ready, I'm planning to add a proper runit service.

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- 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
-->


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

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

From 2e68ef1a015cfa295dfb52a587f961abb4c28d00 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Tue, 15 Mar 2022 20:03:17 +0100
Subject: [PATCH] New package: arti-1.0.0

---
 srcpkgs/arti/template | 31 +++++++++++++++++++++++++++++++
 srcpkgs/arti/update   |  1 +
 2 files changed, 32 insertions(+)
 create mode 100644 srcpkgs/arti/template
 create mode 100644 srcpkgs/arti/update

diff --git a/srcpkgs/arti/template b/srcpkgs/arti/template
new file mode 100644
index 000000000000..be5d565ec77f
--- /dev/null
+++ b/srcpkgs/arti/template
@@ -0,0 +1,31 @@
+# Template file for 'arti'
+pkgname=arti
+version=1.0.0
+revision=1
+wrksrc="arti-arti-v${version}"
+build_style=cargo
+make_check_args="-- --skip internal::test::internal_macro_test" # fails with --release builds
+make_install_args="--path crates/arti"
+hostmakedepends="pkg-config"
+makedepends="openssl-devel sqlite-devel"
+short_desc="Tor implementation in Rust"
+maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
+license="Apache-2.0, MIT"
+homepage="https://gitlab.torproject.org/tpo/core/arti"
+changelog="https://gitlab.torproject.org/tpo/core/arti/-/raw/main/CHANGELOG.md"
+distfiles="https://gitlab.torproject.org/tpo/core/arti/-/archive/arti-v${version}/arti-arti-v${version}.tar.gz"
+checksum=4aa5f2f8ce98b913a843542f26895b2f4819829fa3dec9082fa1e8da5e274267
+
+if [ "$XBPS_CHECK_PKGS" ]; then
+	case "$XBPS_TARGET_MACHINE" in
+		# Disable LTO for i686 because otherwise tests fail with:
+		# ---- src/address.rs - address::TorAddr (line 79) stdout ----
+		# error: ran out of registers during register allocation
+		# LLVM ERROR: Cannot emit physreg copy instruction
+		i686*) export CARGO_PROFILE_RELEASE_LTO=false ;;
+	esac
+fi
+
+post_install() {
+	vlicense LICENSE-MIT
+}
diff --git a/srcpkgs/arti/update b/srcpkgs/arti/update
new file mode 100644
index 000000000000..4d7a8d07c702
--- /dev/null
+++ b/srcpkgs/arti/update
@@ -0,0 +1 @@
+pkgname=arti-arti

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

* Re: New package: arti-1.0.0
  2022-06-27 21:29 [PR PATCH] New package: arti-0.5.0 daniel-eys
                   ` (4 preceding siblings ...)
  2022-09-05 20:19 ` [PR PATCH] [Updated] " daniel-eys
@ 2022-09-05 20:31 ` daniel-eys
  2022-10-03 14:20 ` daniel-eys
  2022-10-03 15:24 ` [PR PATCH] [Merged]: " Piraty
  7 siblings, 0 replies; 9+ messages in thread
From: daniel-eys @ 2022-09-05 20:31 UTC (permalink / raw)
  To: ml

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

New comment by daniel-eys on void-packages repository

https://github.com/void-linux/void-packages/pull/37715#issuecomment-1237442596

Comment:
updated to 1.0.0

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

* Re: New package: arti-1.0.0
  2022-06-27 21:29 [PR PATCH] New package: arti-0.5.0 daniel-eys
                   ` (5 preceding siblings ...)
  2022-09-05 20:31 ` New package: arti-1.0.0 daniel-eys
@ 2022-10-03 14:20 ` daniel-eys
  2022-10-03 15:24 ` [PR PATCH] [Merged]: " Piraty
  7 siblings, 0 replies; 9+ messages in thread
From: daniel-eys @ 2022-10-03 14:20 UTC (permalink / raw)
  To: ml

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

New comment by daniel-eys on void-packages repository

https://github.com/void-linux/void-packages/pull/37715#issuecomment-1265516963

Comment:
apologies for the delay.

afaik, the `ring` crate is only used when building with the `rustls` TLS backend, not with the default `native_tls`.

see https://gitlab.torproject.org/tpo/core/arti/-/tree/main/crates/arti#additive-features


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

* Re: [PR PATCH] [Merged]: New package: arti-1.0.0
  2022-06-27 21:29 [PR PATCH] New package: arti-0.5.0 daniel-eys
                   ` (6 preceding siblings ...)
  2022-10-03 14:20 ` daniel-eys
@ 2022-10-03 15:24 ` Piraty
  7 siblings, 0 replies; 9+ messages in thread
From: Piraty @ 2022-10-03 15:24 UTC (permalink / raw)
  To: ml

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

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

New package: arti-1.0.0
https://github.com/void-linux/void-packages/pull/37715

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

The Tor Project is re-implementing Tor in Rust.

https://gitlab.torproject.org/tpo/core/arti
https://blog.torproject.org/arti_050_released/

Not yet production ready, nor feature-parity with C Tor but basic SOCKS proxy support via
```
$ arti proxy -p 9150
```
is usable.

When arti is production ready, I'm planning to add a proper runit service.

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- 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
-->


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

end of thread, other threads:[~2022-10-03 15:24 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-27 21:29 [PR PATCH] New package: arti-0.5.0 daniel-eys
2022-07-01 10:08 ` [PR PATCH] [Updated] " daniel-eys
2022-07-01 11:36 ` daniel-eys
2022-08-11 20:36 ` [PR PATCH] [Updated] " daniel-eys
2022-09-04 14:22 ` New package: arti-0.6.0 jcgruenhage
2022-09-05 20:19 ` [PR PATCH] [Updated] " daniel-eys
2022-09-05 20:31 ` New package: arti-1.0.0 daniel-eys
2022-10-03 14:20 ` daniel-eys
2022-10-03 15:24 ` [PR PATCH] [Merged]: " Piraty

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).