Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] intermodal: update to 0.1.13
@ 2023-08-31 10:55 tranzystorek-io
  2023-08-31 11:06 ` [PR PATCH] [Updated] " tranzystorek-io
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: tranzystorek-io @ 2023-08-31 10:55 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages intermodal
https://github.com/void-linux/void-packages/pull/45843

intermodal: update to 0.1.13
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-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/45843.patch is attached

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

From 4ca22c14ae02446f2a7ddc112f5b7c1ceb6621bc Mon Sep 17 00:00:00 2001
From: Marcin Puc <tranzystorek.io@protonmail.com>
Date: Thu, 31 Aug 2023 12:51:17 +0200
Subject: [PATCH] intermodal: update to 0.1.13

---
 srcpkgs/intermodal/template | 55 +++++++++++--------------------------
 1 file changed, 16 insertions(+), 39 deletions(-)

diff --git a/srcpkgs/intermodal/template b/srcpkgs/intermodal/template
index c91be83b9171d..ca939a6a68d81 100644
--- a/srcpkgs/intermodal/template
+++ b/srcpkgs/intermodal/template
@@ -1,7 +1,7 @@
 # Template file for 'intermodal'
 pkgname=intermodal
-version=0.1.12
-revision=2
+version=0.1.13
+revision=1
 build_style=cargo
 make_check_args="-- --skip subcommand::torrent::verify::tests::output_multiple
  --skip subcommand::torrent::verify::tests::output_color"
@@ -9,45 +9,22 @@ short_desc="User-friendly and featureful command-line BitTorrent metainfo utilit
 maintainer="Pika <pika@lasagna.dev>"
 license="CC0-1.0"
 homepage="https://github.com/casey/intermodal"
-distfiles="https://github.com/casey/intermodal/archive/v${version}.tar.gz"
-checksum=cd62894e519dc5aa0284a5f48aab86e1a45c3bc96b8a5481741adb6960d4751a
-
-if [ "$CROSS_BUILD" ]; then
-	hostmakedepends="${pkgname}"
-else
-	hostmakedepends="help2man pkg-config"
-	makedepends="openssl-devel"
-fi
-
-post_build() {
-	if [ -z "$CROSS_BUILD" ]; then
-		IMDL="target/${RUST_TARGET}/release/imdl"
-		for target in completion-scripts man readme; do
-			cargo run --package gen -- --bin $IMDL $target
-		done
-	fi
-}
+distfiles="https://github.com/casey/intermodal/archive/refs/tags/v${version}.tar.gz
+ https://github.com/casey/intermodal/releases/download/v${version}/imdl-v${version}-x86_64-unknown-linux-musl.tar.gz"
+checksum="e0c7bbfb7c4f260b7be1dd2862778fd42dc091ba2525480bc86574f2abe806ae
+ 95b49234140d265ac7a9de8caa821c9d110713bf687bedb8a415354ac07dcfa3"
+skip_extraction="imdl-v${version}-x86_64-unknown-linux-musl.tar.gz"
 
 post_install() {
-	if [ -z "$CROSS_BUILD" ]; then
-		vdoc target/gen/README.md
-
-		vcompletion target/gen/completions/_imdl zsh
-		vcompletion target/gen/completions/imdl.bash bash
-		vcompletion target/gen/completions/imdl.fish fish
-
-		for page in target/gen/man/*; do
-			vman $page
-		done
-	else
-		vdoc /usr/share/doc/intermodal/README.md
+	bsdtar xf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/imdl-v${version}-x86_64-unknown-linux-musl.tar.gz \
+		--include="completions/*" \
+		--include="man/*"
 
-		vcompletion /usr/share/zsh/site-functions/_intermodal zsh
-		vcompletion /usr/share/bash-completion/completions/intermodal bash
-		vcompletion /usr/share/fish/vendor_completions.d/intermodal.fish fish
+	vcompletion completions/imdl.bash bash imdl
+	vcompletion completions/imdl.fish fish imdl
+	vcompletion completions/_imdl zsh imdl
 
-		for page in /usr/share/man/man1/imdl*; do
-			vman $page
-		done
-	fi
+	for manpage in man/*.1; do
+		vman ${manpage}
+	done
 }

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

* Re: [PR PATCH] [Updated] intermodal: update to 0.1.13
  2023-08-31 10:55 [PR PATCH] intermodal: update to 0.1.13 tranzystorek-io
@ 2023-08-31 11:06 ` tranzystorek-io
  2023-09-13 12:51 ` tranzystorek-io
  2023-09-23 13:17 ` [PR PATCH] [Merged]: " Duncaen
  2 siblings, 0 replies; 4+ messages in thread
From: tranzystorek-io @ 2023-08-31 11:06 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages intermodal
https://github.com/void-linux/void-packages/pull/45843

intermodal: update to 0.1.13
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-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/45843.patch is attached

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

From a7327204aa163b3d2df8b86eb09521f002c78ba7 Mon Sep 17 00:00:00 2001
From: Marcin Puc <tranzystorek.io@protonmail.com>
Date: Thu, 31 Aug 2023 12:51:17 +0200
Subject: [PATCH] intermodal: update to 0.1.13

---
 srcpkgs/intermodal/template | 59 ++++++++++++-------------------------
 1 file changed, 19 insertions(+), 40 deletions(-)

diff --git a/srcpkgs/intermodal/template b/srcpkgs/intermodal/template
index c91be83b9171d..46166241c1506 100644
--- a/srcpkgs/intermodal/template
+++ b/srcpkgs/intermodal/template
@@ -1,53 +1,32 @@
 # Template file for 'intermodal'
 pkgname=intermodal
-version=0.1.12
-revision=2
+version=0.1.13
+revision=1
 build_style=cargo
 make_check_args="-- --skip subcommand::torrent::verify::tests::output_multiple
- --skip subcommand::torrent::verify::tests::output_color"
+ --skip subcommand::torrent::verify::tests::output_color
+ --skip tracker::client::tests::client_announce_ipv6
+ --skip tracker::client::tests::client_connect_v6"
 short_desc="User-friendly and featureful command-line BitTorrent metainfo utility"
 maintainer="Pika <pika@lasagna.dev>"
 license="CC0-1.0"
 homepage="https://github.com/casey/intermodal"
-distfiles="https://github.com/casey/intermodal/archive/v${version}.tar.gz"
-checksum=cd62894e519dc5aa0284a5f48aab86e1a45c3bc96b8a5481741adb6960d4751a
-
-if [ "$CROSS_BUILD" ]; then
-	hostmakedepends="${pkgname}"
-else
-	hostmakedepends="help2man pkg-config"
-	makedepends="openssl-devel"
-fi
-
-post_build() {
-	if [ -z "$CROSS_BUILD" ]; then
-		IMDL="target/${RUST_TARGET}/release/imdl"
-		for target in completion-scripts man readme; do
-			cargo run --package gen -- --bin $IMDL $target
-		done
-	fi
-}
+distfiles="https://github.com/casey/intermodal/archive/refs/tags/v${version}.tar.gz
+ https://github.com/casey/intermodal/releases/download/v${version}/imdl-v${version}-x86_64-unknown-linux-musl.tar.gz"
+checksum="e0c7bbfb7c4f260b7be1dd2862778fd42dc091ba2525480bc86574f2abe806ae
+ 95b49234140d265ac7a9de8caa821c9d110713bf687bedb8a415354ac07dcfa3"
+skip_extraction="imdl-v${version}-x86_64-unknown-linux-musl.tar.gz"
 
 post_install() {
-	if [ -z "$CROSS_BUILD" ]; then
-		vdoc target/gen/README.md
-
-		vcompletion target/gen/completions/_imdl zsh
-		vcompletion target/gen/completions/imdl.bash bash
-		vcompletion target/gen/completions/imdl.fish fish
-
-		for page in target/gen/man/*; do
-			vman $page
-		done
-	else
-		vdoc /usr/share/doc/intermodal/README.md
+	bsdtar xf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/imdl-v${version}-x86_64-unknown-linux-musl.tar.gz \
+		--include="completions/*" \
+		--include="man/*"
 
-		vcompletion /usr/share/zsh/site-functions/_intermodal zsh
-		vcompletion /usr/share/bash-completion/completions/intermodal bash
-		vcompletion /usr/share/fish/vendor_completions.d/intermodal.fish fish
+	vcompletion completions/imdl.bash bash imdl
+	vcompletion completions/imdl.fish fish imdl
+	vcompletion completions/_imdl zsh imdl
 
-		for page in /usr/share/man/man1/imdl*; do
-			vman $page
-		done
-	fi
+	for manpage in man/*.1; do
+		vman ${manpage}
+	done
 }

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

* Re: [PR PATCH] [Updated] intermodal: update to 0.1.13
  2023-08-31 10:55 [PR PATCH] intermodal: update to 0.1.13 tranzystorek-io
  2023-08-31 11:06 ` [PR PATCH] [Updated] " tranzystorek-io
@ 2023-09-13 12:51 ` tranzystorek-io
  2023-09-23 13:17 ` [PR PATCH] [Merged]: " Duncaen
  2 siblings, 0 replies; 4+ messages in thread
From: tranzystorek-io @ 2023-09-13 12:51 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorek-io/void-packages intermodal
https://github.com/void-linux/void-packages/pull/45843

intermodal: update to 0.1.13
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-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/45843.patch is attached

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

From be565444e6d21c083e3cca04f200445a040486cb Mon Sep 17 00:00:00 2001
From: Marcin Puc <tranzystorek.io@protonmail.com>
Date: Thu, 31 Aug 2023 12:51:17 +0200
Subject: [PATCH] intermodal: update to 0.1.13

---
 srcpkgs/intermodal/template | 59 ++++++++++++-------------------------
 1 file changed, 19 insertions(+), 40 deletions(-)

diff --git a/srcpkgs/intermodal/template b/srcpkgs/intermodal/template
index c91be83b9171d..46166241c1506 100644
--- a/srcpkgs/intermodal/template
+++ b/srcpkgs/intermodal/template
@@ -1,53 +1,32 @@
 # Template file for 'intermodal'
 pkgname=intermodal
-version=0.1.12
-revision=2
+version=0.1.13
+revision=1
 build_style=cargo
 make_check_args="-- --skip subcommand::torrent::verify::tests::output_multiple
- --skip subcommand::torrent::verify::tests::output_color"
+ --skip subcommand::torrent::verify::tests::output_color
+ --skip tracker::client::tests::client_announce_ipv6
+ --skip tracker::client::tests::client_connect_v6"
 short_desc="User-friendly and featureful command-line BitTorrent metainfo utility"
 maintainer="Pika <pika@lasagna.dev>"
 license="CC0-1.0"
 homepage="https://github.com/casey/intermodal"
-distfiles="https://github.com/casey/intermodal/archive/v${version}.tar.gz"
-checksum=cd62894e519dc5aa0284a5f48aab86e1a45c3bc96b8a5481741adb6960d4751a
-
-if [ "$CROSS_BUILD" ]; then
-	hostmakedepends="${pkgname}"
-else
-	hostmakedepends="help2man pkg-config"
-	makedepends="openssl-devel"
-fi
-
-post_build() {
-	if [ -z "$CROSS_BUILD" ]; then
-		IMDL="target/${RUST_TARGET}/release/imdl"
-		for target in completion-scripts man readme; do
-			cargo run --package gen -- --bin $IMDL $target
-		done
-	fi
-}
+distfiles="https://github.com/casey/intermodal/archive/refs/tags/v${version}.tar.gz
+ https://github.com/casey/intermodal/releases/download/v${version}/imdl-v${version}-x86_64-unknown-linux-musl.tar.gz"
+checksum="e0c7bbfb7c4f260b7be1dd2862778fd42dc091ba2525480bc86574f2abe806ae
+ 95b49234140d265ac7a9de8caa821c9d110713bf687bedb8a415354ac07dcfa3"
+skip_extraction="imdl-v${version}-x86_64-unknown-linux-musl.tar.gz"
 
 post_install() {
-	if [ -z "$CROSS_BUILD" ]; then
-		vdoc target/gen/README.md
-
-		vcompletion target/gen/completions/_imdl zsh
-		vcompletion target/gen/completions/imdl.bash bash
-		vcompletion target/gen/completions/imdl.fish fish
-
-		for page in target/gen/man/*; do
-			vman $page
-		done
-	else
-		vdoc /usr/share/doc/intermodal/README.md
+	bsdtar xf ${XBPS_SRCDISTDIR}/${pkgname}-${version}/imdl-v${version}-x86_64-unknown-linux-musl.tar.gz \
+		--include="completions/*" \
+		--include="man/*"
 
-		vcompletion /usr/share/zsh/site-functions/_intermodal zsh
-		vcompletion /usr/share/bash-completion/completions/intermodal bash
-		vcompletion /usr/share/fish/vendor_completions.d/intermodal.fish fish
+	vcompletion completions/imdl.bash bash imdl
+	vcompletion completions/imdl.fish fish imdl
+	vcompletion completions/_imdl zsh imdl
 
-		for page in /usr/share/man/man1/imdl*; do
-			vman $page
-		done
-	fi
+	for manpage in man/*.1; do
+		vman ${manpage}
+	done
 }

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

* Re: [PR PATCH] [Merged]: intermodal: update to 0.1.13
  2023-08-31 10:55 [PR PATCH] intermodal: update to 0.1.13 tranzystorek-io
  2023-08-31 11:06 ` [PR PATCH] [Updated] " tranzystorek-io
  2023-09-13 12:51 ` tranzystorek-io
@ 2023-09-23 13:17 ` Duncaen
  2 siblings, 0 replies; 4+ messages in thread
From: Duncaen @ 2023-09-23 13:17 UTC (permalink / raw)
  To: ml

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

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

intermodal: update to 0.1.13
https://github.com/void-linux/void-packages/pull/45843

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

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

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-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] 4+ messages in thread

end of thread, other threads:[~2023-09-23 13:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-31 10:55 [PR PATCH] intermodal: update to 0.1.13 tranzystorek-io
2023-08-31 11:06 ` [PR PATCH] [Updated] " tranzystorek-io
2023-09-13 12:51 ` tranzystorek-io
2023-09-23 13:17 ` [PR PATCH] [Merged]: " Duncaen

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