Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] rustypaste: update to 0.9.0.
@ 2023-05-17 14:54 lukas-jo
  2023-05-17 15:40 ` classabbyamp
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: lukas-jo @ 2023-05-17 14:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/lukas-jo/void-packages rustypaste-0.9.0
https://github.com/void-linux/void-packages/pull/43917

rustypaste: update to 0.9.0.
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, x86_64-musl
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - armv6l-musl


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

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

From 98fac7c9d8edd68f24b35c6d5d095230b999645f Mon Sep 17 00:00:00 2001
From: lukas-jo <lukas.jordan@pm.me>
Date: Wed, 17 May 2023 16:50:48 +0200
Subject: [PATCH] rustypaste: update to 0.9.0.

---
 srcpkgs/rustypaste/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/rustypaste/template b/srcpkgs/rustypaste/template
index d5cef12dda5d..52eae3caaf96 100644
--- a/srcpkgs/rustypaste/template
+++ b/srcpkgs/rustypaste/template
@@ -1,6 +1,6 @@
-# Template file for 'rustypaste' 
+# Template file for 'rustypaste'
 pkgname=rustypaste
-version=0.8.4
+version=0.9.0
 revision=1
 build_style=cargo
 make_check_args="-- --test-threads 1"
@@ -12,7 +12,7 @@ license="MIT"
 homepage="https://github.com/orhun/rustypaste"
 changelog="https://raw.githubusercontent.com/orhun/rustypaste/master/CHANGELOG.md"
 distfiles="https://github.com/orhun/rustypaste/archive/refs/tags/v${version}.tar.gz"
-checksum=ccdfa0ae412f25b3ea8e3756ff8d8c0ecfee1332b3bc2e584899914056ed2e2d
+checksum=16197a881ae0f1fd32d90956b656d82429a1bb111c918837487eef943a14fd76
 conf_files="/etc/rustypaste/config.toml"
 
 system_accounts="_rustypaste"

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

* Re: rustypaste: update to 0.9.0.
  2023-05-17 14:54 [PR PATCH] rustypaste: update to 0.9.0 lukas-jo
@ 2023-05-17 15:40 ` classabbyamp
  2023-05-17 15:49 ` tranzystorek-io
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: classabbyamp @ 2023-05-17 15:40 UTC (permalink / raw)
  To: ml

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

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/43917#issuecomment-1551630738

Comment:
> - Add new crate features
> 
>     - shuttle: enable an entry point for deploying on Shuttle
>     - openssl: use distro OpenSSL (binary size is reduced ~20% in release mode)
>     - rustls: use [rustls](https://github.com/rustls/rustls) (enabled as default)

should we switch to openssl?

```bash
configure_args="--features openssl"
makedepends+="openssl-devel"
```

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

* Re: rustypaste: update to 0.9.0.
  2023-05-17 14:54 [PR PATCH] rustypaste: update to 0.9.0 lukas-jo
  2023-05-17 15:40 ` classabbyamp
@ 2023-05-17 15:49 ` tranzystorek-io
  2023-05-17 18:18 ` lukas-jo
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: tranzystorek-io @ 2023-05-17 15:49 UTC (permalink / raw)
  To: ml

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

New comment by tranzystorek-io on void-packages repository

https://github.com/void-linux/void-packages/pull/43917#issuecomment-1551644004

Comment:
I'd stay with rustls unless there's some significant advantage

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

* Re: rustypaste: update to 0.9.0.
  2023-05-17 14:54 [PR PATCH] rustypaste: update to 0.9.0 lukas-jo
  2023-05-17 15:40 ` classabbyamp
  2023-05-17 15:49 ` tranzystorek-io
@ 2023-05-17 18:18 ` lukas-jo
  2023-05-17 18:19 ` lukas-jo
  2023-05-17 21:02 ` [PR PATCH] [Merged]: " classabbyamp
  4 siblings, 0 replies; 6+ messages in thread
From: lukas-jo @ 2023-05-17 18:18 UTC (permalink / raw)
  To: ml

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

New comment by lukas-jo on void-packages repository

https://github.com/void-linux/void-packages/pull/43917#issuecomment-1551857026

Comment:
I saw the option too, but decided against it:

**Pro OpenSSL:**

- already installed, so technically less dependencies
- older, has been tested for a long time
- rustypaste binary will be smaller (as per rustypaste changelog)

**Pro rustls:**

- modern, comes with less baggage
- written in rust (partly in rust, because it uses [ring](https://github.com/briansmith/ring))
- it's faster (not really a concern, but still)
- no runtime dependencies

Just a _surface level_ comparison, but I didn't see a need to switch to openssl so I'd stick with rustls too.

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

* Re: rustypaste: update to 0.9.0.
  2023-05-17 14:54 [PR PATCH] rustypaste: update to 0.9.0 lukas-jo
                   ` (2 preceding siblings ...)
  2023-05-17 18:18 ` lukas-jo
@ 2023-05-17 18:19 ` lukas-jo
  2023-05-17 21:02 ` [PR PATCH] [Merged]: " classabbyamp
  4 siblings, 0 replies; 6+ messages in thread
From: lukas-jo @ 2023-05-17 18:19 UTC (permalink / raw)
  To: ml

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

New comment by lukas-jo on void-packages repository

https://github.com/void-linux/void-packages/pull/43917#issuecomment-1551857026

Comment:
I saw the option too, but decided against it:

**Pro OpenSSL:**

- already installed, so technically less dependencies
- older, has been tested for a long time
- rustypaste binary will be smaller (as per rustypaste changelog)

**Pro rustls:**

- modern, comes with less baggage
- written in rust (although partly in C, because it uses [ring](https://github.com/briansmith/ring))
- it's faster (not really a concern, but still)
- no runtime dependencies

Just a _surface level_ comparison, but I didn't see a need to switch to openssl so I'd stick with rustls too.

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

* Re: [PR PATCH] [Merged]: rustypaste: update to 0.9.0.
  2023-05-17 14:54 [PR PATCH] rustypaste: update to 0.9.0 lukas-jo
                   ` (3 preceding siblings ...)
  2023-05-17 18:19 ` lukas-jo
@ 2023-05-17 21:02 ` classabbyamp
  4 siblings, 0 replies; 6+ messages in thread
From: classabbyamp @ 2023-05-17 21:02 UTC (permalink / raw)
  To: ml

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

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

rustypaste: update to 0.9.0.
https://github.com/void-linux/void-packages/pull/43917

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

#### Local build testing
- I built this PR locally for my native architecture, x86_64-musl
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - armv6l-musl


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

end of thread, other threads:[~2023-05-17 21:02 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-17 14:54 [PR PATCH] rustypaste: update to 0.9.0 lukas-jo
2023-05-17 15:40 ` classabbyamp
2023-05-17 15:49 ` tranzystorek-io
2023-05-17 18:18 ` lukas-jo
2023-05-17 18:19 ` lukas-jo
2023-05-17 21:02 ` [PR PATCH] [Merged]: " classabbyamp

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