Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: dumpasn1
@ 2024-02-13  1:08 felix
  2024-02-13  1:12 ` [PR PATCH] [Updated] " felix
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: felix @ 2024-02-13  1:08 UTC (permalink / raw)
  To: ml

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

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

https://github.com/felix/void-packages dumpasn1
https://github.com/void-linux/void-packages/pull/48681

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

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (amd64-glibc)

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

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

From cd4f221a47b23960a59fd9b8bfc09f71a837ab1d Mon Sep 17 00:00:00 2001
From: Felix Hanley <felix@userspace.com.au>
Date: Tue, 13 Feb 2024 12:01:08 +1100
Subject: [PATCH] New package: dumpasn1

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

diff --git a/srcpkgs/dumpasn1/template b/srcpkgs/dumpasn1/template
new file mode 100644
index 0000000000000..30084622f7bd5
--- /dev/null
+++ b/srcpkgs/dumpasn1/template
@@ -0,0 +1,28 @@
+# Template file for 'dumpasn1'
+pkgname=dumpasn1
+version=20210422
+revision=1
+makedepends="curl"
+short_desc="ASN.1 data display"
+maintainer="Felix Hanley <felix@userspace.com.au>"
+license="BSD"
+homepage="https://www.cs.auckland.ac.nz/~pgut001/"
+checksum=8ce8fdbf2e9b11d410b0ab4e44a6b3f89c27080113f051ec1054d230e050a0b8
+
+do_fetch() {
+	mkdir -p ${wrksrc}
+	$fetch_cmd "${homepage}/dumpasn1.c"
+}
+do_extract() {
+	mv ../dumpasn1.c ./
+}
+
+do_build() {
+	$CC -o dumpasn1 dumpasn1.c
+}
+
+do_install() {
+	vbin dumpasn1
+	head -n59 dumpasn1.c >LICENSE
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: dumpasn1
  2024-02-13  1:08 [PR PATCH] New package: dumpasn1 felix
@ 2024-02-13  1:12 ` felix
  2024-02-13  1:18 ` felix
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: felix @ 2024-02-13  1:12 UTC (permalink / raw)
  To: ml

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

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

https://github.com/felix/void-packages dumpasn1
https://github.com/void-linux/void-packages/pull/48681

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

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (amd64-glibc)

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

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

From 347f0eb66b086f98889c8265daf72abe691ea0f5 Mon Sep 17 00:00:00 2001
From: Felix Hanley <felix@userspace.com.au>
Date: Tue, 13 Feb 2024 12:01:08 +1100
Subject: [PATCH] New package: dumpasn1

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

diff --git a/srcpkgs/dumpasn1/template b/srcpkgs/dumpasn1/template
new file mode 100644
index 0000000000000..d87eb8f7872e9
--- /dev/null
+++ b/srcpkgs/dumpasn1/template
@@ -0,0 +1,29 @@
+# Template file for 'dumpasn1'
+pkgname=dumpasn1
+version=20210422
+revision=1
+makedepends="curl"
+short_desc="ASN.1 data display"
+maintainer="Felix Hanley <felix@userspace.com.au>"
+distfiles="https://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c"
+license=BSD
+homepage="https://www.cs.auckland.ac.nz/~pgut001/"
+checksum=8ce8fdbf2e9b11d410b0ab4e44a6b3f89c27080113f051ec1054d230e050a0b8
+
+do_fetch() {
+	mkdir -p ${wrksrc}
+	$fetch_cmd "${homepage}/dumpasn1.c"
+}
+do_extract() {
+	mv ../dumpasn1.c ./
+}
+
+do_build() {
+	$CC -o dumpasn1 dumpasn1.c
+}
+
+do_install() {
+	vbin dumpasn1
+	head -n59 dumpasn1.c >LICENSE
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: dumpasn1
  2024-02-13  1:08 [PR PATCH] New package: dumpasn1 felix
  2024-02-13  1:12 ` [PR PATCH] [Updated] " felix
@ 2024-02-13  1:18 ` felix
  2024-02-13  3:06 ` [PR REVIEW] " classabbyamp
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: felix @ 2024-02-13  1:18 UTC (permalink / raw)
  To: ml

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

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

https://github.com/felix/void-packages dumpasn1
https://github.com/void-linux/void-packages/pull/48681

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

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (amd64-glibc)

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

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

From 7ea1eb6f61fda2fb02a36cd67d45d2cf4c2f461b Mon Sep 17 00:00:00 2001
From: Felix Hanley <felix@userspace.com.au>
Date: Tue, 13 Feb 2024 12:01:08 +1100
Subject: [PATCH] New package: dumpasn1

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

diff --git a/srcpkgs/dumpasn1/template b/srcpkgs/dumpasn1/template
new file mode 100644
index 0000000000000..4df81fd64d9a2
--- /dev/null
+++ b/srcpkgs/dumpasn1/template
@@ -0,0 +1,29 @@
+# Template file for 'dumpasn1'
+pkgname=dumpasn1
+version=20210422
+revision=1
+makedepends="curl"
+short_desc="ASN.1 data display"
+maintainer="Felix Hanley <felix@userspace.com.au>"
+license=BSD
+homepage="https://www.cs.auckland.ac.nz/~pgut001/"
+distfiles="https://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c"
+checksum=8ce8fdbf2e9b11d410b0ab4e44a6b3f89c27080113f051ec1054d230e050a0b8
+
+do_fetch() {
+	mkdir -p ${wrksrc}
+	$fetch_cmd "${homepage}/dumpasn1.c"
+}
+do_extract() {
+	mv ../dumpasn1.c ./
+}
+
+do_build() {
+	$CC -o dumpasn1 dumpasn1.c
+}
+
+do_install() {
+	vbin dumpasn1
+	head -n59 dumpasn1.c >LICENSE
+	vlicense LICENSE
+}

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

* Re: [PR REVIEW] New package: dumpasn1
  2024-02-13  1:08 [PR PATCH] New package: dumpasn1 felix
  2024-02-13  1:12 ` [PR PATCH] [Updated] " felix
  2024-02-13  1:18 ` felix
@ 2024-02-13  3:06 ` classabbyamp
  2024-02-13  3:15 ` ahesford
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: classabbyamp @ 2024-02-13  3:06 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/48681#discussion_r1487097421

Comment:
you can use `skip_extraction` instead of this

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

* Re: New package: dumpasn1
  2024-02-13  1:08 [PR PATCH] New package: dumpasn1 felix
                   ` (2 preceding siblings ...)
  2024-02-13  3:06 ` [PR REVIEW] " classabbyamp
@ 2024-02-13  3:15 ` ahesford
  2024-02-13  3:17 ` [PR PATCH] [Closed]: " ahesford
  2024-02-13  4:21 ` felix
  5 siblings, 0 replies; 7+ messages in thread
From: ahesford @ 2024-02-13  3:15 UTC (permalink / raw)
  To: ml

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

New comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/48681#issuecomment-1940357182

Comment:
Given the comments at the start of the downloaded source file, the quoted passage about stylistic requirements for acceptance as a Void package, and the fact that the program author doesn't even make an attempt to package this for distribution, I don't believe this is suitable for Void.

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

* Re: [PR PATCH] [Closed]: New package: dumpasn1
  2024-02-13  1:08 [PR PATCH] New package: dumpasn1 felix
                   ` (3 preceding siblings ...)
  2024-02-13  3:15 ` ahesford
@ 2024-02-13  3:17 ` ahesford
  2024-02-13  4:21 ` felix
  5 siblings, 0 replies; 7+ messages in thread
From: ahesford @ 2024-02-13  3:17 UTC (permalink / raw)
  To: ml

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

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

New package: dumpasn1
https://github.com/void-linux/void-packages/pull/48681

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

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

#### Local build testing
- I built this PR locally for my native architecture, (amd64-glibc)

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

* Re: New package: dumpasn1
  2024-02-13  1:08 [PR PATCH] New package: dumpasn1 felix
                   ` (4 preceding siblings ...)
  2024-02-13  3:17 ` [PR PATCH] [Closed]: " ahesford
@ 2024-02-13  4:21 ` felix
  5 siblings, 0 replies; 7+ messages in thread
From: felix @ 2024-02-13  4:21 UTC (permalink / raw)
  To: ml

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

New comment by felix on void-packages repository

https://github.com/void-linux/void-packages/pull/48681#issuecomment-1940400870

Comment:
It is is [reasonably common](https://pkgs.org/search/?q=dumpasn1) but Void missing it is fine I suppose.

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

end of thread, other threads:[~2024-02-13  4:21 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-13  1:08 [PR PATCH] New package: dumpasn1 felix
2024-02-13  1:12 ` [PR PATCH] [Updated] " felix
2024-02-13  1:18 ` felix
2024-02-13  3:06 ` [PR REVIEW] " classabbyamp
2024-02-13  3:15 ` ahesford
2024-02-13  3:17 ` [PR PATCH] [Closed]: " ahesford
2024-02-13  4:21 ` felix

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