Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] new package: hardened-malloc
@ 2023-01-02 17:34 dkwo
  2023-01-02 17:38 ` [PR PATCH] [Updated] " dkwo
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: dkwo @ 2023-01-02 17:34 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages stinger
https://github.com/void-linux/void-packages/pull/41412

new package: hardened-malloc
- I tested the changes in this PR: **YES**, using
```
$ cat /etc/ld.so.preload 
/usr/lib/libhardened_malloc.so
```
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, (x86_64-musl)

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

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

From 28fc1545fe2863be1f77351ad31f516224bfccfd Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 1 Jan 2023 15:41:11 +0100
Subject: [PATCH] new package: hardened-malloc

---
 srcpkgs/hardened-malloc/template | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 srcpkgs/hardened-malloc/template

diff --git a/srcpkgs/hardened-malloc/template b/srcpkgs/hardened-malloc/template
new file mode 100644
index 000000000000..9ee57f7e0707
--- /dev/null
+++ b/srcpkgs/hardened-malloc/template
@@ -0,0 +1,30 @@
+# Template file for 'hardened-malloc'
+pkgname=hardened-malloc
+version=11
+revision=1
+archs="x86_64* aarch64*"
+checkdepends="python3"
+short_desc="Hardened allocator designed for modern systems"
+maintainer="dkwo <npiazza@disroot.org>"
+license="MIT"
+homepage="https://grapheneos.org/"
+distfiles=" https://github.com/GrapheneOS/hardened_malloc/archive/refs/tags/${version}.tar.gz"
+checksum=14331990899b91f9323230c280d66f0d1a77c386eb5d206d4cd0d8b5683098da
+
+do_build() {
+	make VARIANT=default
+	make VARIANT=light
+}
+
+do_install() {
+	vinstall out/libhardened_malloc.so 755 usr/lib/
+	vinstall out-light/libhardened_malloc-light.so 755 usr/lib/
+}
+
+do_check() {
+	make test
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] new package: hardened-malloc
  2023-01-02 17:34 [PR PATCH] new package: hardened-malloc dkwo
@ 2023-01-02 17:38 ` dkwo
  2023-01-03 10:15 ` dkwo
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: dkwo @ 2023-01-02 17:38 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages stinger
https://github.com/void-linux/void-packages/pull/41412

new package: hardened-malloc
- I tested the changes in this PR: **YES**, using
```
$ cat /etc/ld.so.preload 
/usr/lib/libhardened_malloc.so
```
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, (x86_64-musl)

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

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

From 96c50f9ea11d856423e51606f8eda8e6e6765646 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 1 Jan 2023 15:41:11 +0100
Subject: [PATCH] new package: hardened-malloc

---
 srcpkgs/hardened-malloc/template | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 srcpkgs/hardened-malloc/template

diff --git a/srcpkgs/hardened-malloc/template b/srcpkgs/hardened-malloc/template
new file mode 100644
index 000000000000..89ec55598738
--- /dev/null
+++ b/srcpkgs/hardened-malloc/template
@@ -0,0 +1,30 @@
+# Template file for 'hardened-malloc'
+pkgname=hardened-malloc
+version=11
+revision=1
+checkdepends="python3"
+short_desc="Hardened allocator designed for modern systems"
+maintainer="dkwo <npiazza@disroot.org>"
+license="MIT"
+homepage="https://grapheneos.org/"
+distfiles=" https://github.com/GrapheneOS/hardened_malloc/archive/refs/tags/${version}.tar.gz"
+checksum=14331990899b91f9323230c280d66f0d1a77c386eb5d206d4cd0d8b5683098da
+nocross=yes
+
+do_build() {
+	make VARIANT=default
+	make VARIANT=light
+}
+
+do_install() {
+	vinstall out/libhardened_malloc.so 755 usr/lib/
+	vinstall out-light/libhardened_malloc-light.so 755 usr/lib/
+}
+
+do_check() {
+	make test
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] new package: hardened-malloc
  2023-01-02 17:34 [PR PATCH] new package: hardened-malloc dkwo
  2023-01-02 17:38 ` [PR PATCH] [Updated] " dkwo
@ 2023-01-03 10:15 ` dkwo
  2023-01-03 10:17 ` dkwo
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: dkwo @ 2023-01-03 10:15 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages stinger
https://github.com/void-linux/void-packages/pull/41412

new package: hardened-malloc
- I tested the changes in this PR: **YES**, using
```
$ cat /etc/ld.so.preload 
/usr/lib/libhardened_malloc.so
```
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, (x86_64-musl)

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

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

From 58d05153c3e1c0d77efe3679a111c247e6c4315f Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 1 Jan 2023 15:41:11 +0100
Subject: [PATCH] new package: hardened-malloc

---
 srcpkgs/hardened-malloc/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/hardened-malloc/template

diff --git a/srcpkgs/hardened-malloc/template b/srcpkgs/hardened-malloc/template
new file mode 100644
index 000000000000..d367b957c0a4
--- /dev/null
+++ b/srcpkgs/hardened-malloc/template
@@ -0,0 +1,31 @@
+# Template file for 'hardened-malloc'
+pkgname=hardened-malloc
+version=11
+revision=1
+archs="~i686*"
+checkdepends="python3"
+short_desc="Hardened allocator designed for modern systems"
+maintainer="dkwo <npiazza@disroot.org>"
+license="MIT"
+homepage="https://grapheneos.org/"
+distfiles=" https://github.com/GrapheneOS/hardened_malloc/archive/refs/tags/${version}.tar.gz"
+checksum=14331990899b91f9323230c280d66f0d1a77c386eb5d206d4cd0d8b5683098da
+nocross=yes
+
+do_build() {
+	make VARIANT=default
+	make VARIANT=light
+}
+
+do_install() {
+	vinstall out/libhardened_malloc.so 755 usr/lib/
+	vinstall out-light/libhardened_malloc-light.so 755 usr/lib/
+}
+
+do_check() {
+	make test
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] new package: hardened-malloc
  2023-01-02 17:34 [PR PATCH] new package: hardened-malloc dkwo
  2023-01-02 17:38 ` [PR PATCH] [Updated] " dkwo
  2023-01-03 10:15 ` dkwo
@ 2023-01-03 10:17 ` dkwo
  2023-01-05 17:54 ` [PR REVIEW] " mhmdanas
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: dkwo @ 2023-01-03 10:17 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages stinger
https://github.com/void-linux/void-packages/pull/41412

new package: hardened-malloc
- I tested the changes in this PR: **YES**, using
```
$ cat /etc/ld.so.preload 
/usr/lib/libhardened_malloc.so
```
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, (x86_64-musl)

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

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

From b4afa5b7d5c1e31b7f60f58afeb4c55157e6b5c3 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 1 Jan 2023 15:41:11 +0100
Subject: [PATCH] new package: hardened-malloc

---
 srcpkgs/hardened-malloc/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/hardened-malloc/template

diff --git a/srcpkgs/hardened-malloc/template b/srcpkgs/hardened-malloc/template
new file mode 100644
index 000000000000..8c7ea2fe7da5
--- /dev/null
+++ b/srcpkgs/hardened-malloc/template
@@ -0,0 +1,31 @@
+# Template file for 'hardened-malloc'
+pkgname=hardened-malloc
+version=11
+revision=1
+archs="~i686*"
+checkdepends="python3"
+short_desc="Hardened allocator designed for modern systems"
+maintainer="dkwo <npiazza@disroot.org>"
+license="MIT"
+homepage="https://grapheneos.org/"
+distfiles="https://github.com/GrapheneOS/hardened_malloc/archive/refs/tags/${version}.tar.gz"
+checksum=14331990899b91f9323230c280d66f0d1a77c386eb5d206d4cd0d8b5683098da
+nocross=yes
+
+do_build() {
+	make VARIANT=default
+	make VARIANT=light
+}
+
+do_install() {
+	vinstall out/libhardened_malloc.so 755 usr/lib/
+	vinstall out-light/libhardened_malloc-light.so 755 usr/lib/
+}
+
+do_check() {
+	make test
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR REVIEW] new package: hardened-malloc
  2023-01-02 17:34 [PR PATCH] new package: hardened-malloc dkwo
                   ` (2 preceding siblings ...)
  2023-01-03 10:17 ` dkwo
@ 2023-01-05 17:54 ` mhmdanas
  2023-01-05 17:55 ` mhmdanas
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: mhmdanas @ 2023-01-05 17:54 UTC (permalink / raw)
  To: ml

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

New review comment by mhmdanas on void-packages repository

https://github.com/void-linux/void-packages/pull/41412#discussion_r1062741782

Comment:
```suggestion
homepage="https://grapheneos.org/"
changelog="https://github.com/GrapheneOS/hardened_malloc/releases"
```

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

* Re: [PR REVIEW] new package: hardened-malloc
  2023-01-02 17:34 [PR PATCH] new package: hardened-malloc dkwo
                   ` (3 preceding siblings ...)
  2023-01-05 17:54 ` [PR REVIEW] " mhmdanas
@ 2023-01-05 17:55 ` mhmdanas
  2023-01-06 15:50 ` dkwo
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: mhmdanas @ 2023-01-05 17:55 UTC (permalink / raw)
  To: ml

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

New review comment by mhmdanas on void-packages repository

https://github.com/void-linux/void-packages/pull/41412#discussion_r1062741782

Comment:
```suggestion
homepage="https://github.com/GrapheneOS/hardened_malloc"
changelog="https://github.com/GrapheneOS/hardened_malloc/releases"
```

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

* Re: [PR REVIEW] new package: hardened-malloc
  2023-01-02 17:34 [PR PATCH] new package: hardened-malloc dkwo
                   ` (4 preceding siblings ...)
  2023-01-05 17:55 ` mhmdanas
@ 2023-01-06 15:50 ` dkwo
  2023-01-06 15:50 ` [PR PATCH] [Updated] " dkwo
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: dkwo @ 2023-01-06 15:50 UTC (permalink / raw)
  To: ml

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

New review comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/pull/41412#discussion_r1063552212

Comment:
ok, thanks

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

* Re: [PR PATCH] [Updated] new package: hardened-malloc
  2023-01-02 17:34 [PR PATCH] new package: hardened-malloc dkwo
                   ` (5 preceding siblings ...)
  2023-01-06 15:50 ` dkwo
@ 2023-01-06 15:50 ` dkwo
  2023-04-07  1:49 ` github-actions
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: dkwo @ 2023-01-06 15:50 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages stinger
https://github.com/void-linux/void-packages/pull/41412

new package: hardened-malloc
- I tested the changes in this PR: **YES**, using
```
$ cat /etc/ld.so.preload 
/usr/lib/libhardened_malloc.so
```
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, (x86_64-musl)

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

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

From 06f2ad4101495a5c3da9797de654eaeae27744d0 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 1 Jan 2023 15:41:11 +0100
Subject: [PATCH] new package: hardened-malloc

---
 srcpkgs/hardened-malloc/template | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 srcpkgs/hardened-malloc/template

diff --git a/srcpkgs/hardened-malloc/template b/srcpkgs/hardened-malloc/template
new file mode 100644
index 000000000000..6ff8f9d2dba2
--- /dev/null
+++ b/srcpkgs/hardened-malloc/template
@@ -0,0 +1,32 @@
+# Template file for 'hardened-malloc'
+pkgname=hardened-malloc
+version=11
+revision=1
+archs="~i686*"
+checkdepends="python3"
+short_desc="Hardened allocator designed for modern systems"
+maintainer="dkwo <npiazza@disroot.org>"
+license="MIT"
+homepage="https://github.com/GrapheneOS/hardened_malloc"
+changelog="https://github.com/GrapheneOS/hardened_malloc/releases"
+distfiles="https://github.com/GrapheneOS/hardened_malloc/archive/refs/tags/${version}.tar.gz"
+checksum=14331990899b91f9323230c280d66f0d1a77c386eb5d206d4cd0d8b5683098da
+nocross=yes
+
+do_build() {
+	make VARIANT=default
+	make VARIANT=light
+}
+
+do_install() {
+	vinstall out/libhardened_malloc.so 755 usr/lib/
+	vinstall out-light/libhardened_malloc-light.so 755 usr/lib/
+}
+
+do_check() {
+	make test
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: new package: hardened-malloc
  2023-01-02 17:34 [PR PATCH] new package: hardened-malloc dkwo
                   ` (6 preceding siblings ...)
  2023-01-06 15:50 ` [PR PATCH] [Updated] " dkwo
@ 2023-04-07  1:49 ` github-actions
  2023-04-07 14:23 ` [PR PATCH] [Updated] " dkwo
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: github-actions @ 2023-04-07  1:49 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/41412#issuecomment-1499834087

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] 13+ messages in thread

* Re: [PR PATCH] [Updated] new package: hardened-malloc
  2023-01-02 17:34 [PR PATCH] new package: hardened-malloc dkwo
                   ` (7 preceding siblings ...)
  2023-04-07  1:49 ` github-actions
@ 2023-04-07 14:23 ` dkwo
  2023-04-07 15:16 ` dkwo
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: dkwo @ 2023-04-07 14:23 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages stinger
https://github.com/void-linux/void-packages/pull/41412

new package: hardened-malloc
- I tested the changes in this PR: **YES**, using
```
$ cat /etc/ld.so.preload 
/usr/lib/libhardened_malloc.so
```
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, (x86_64-musl)

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

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

From 64473f8a5af0c2e99ddc70881e288cf32d70a399 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 1 Jan 2023 15:41:11 +0100
Subject: [PATCH] new package: hardened-malloc

---
 srcpkgs/hardened-malloc/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/hardened-malloc/template

diff --git a/srcpkgs/hardened-malloc/template b/srcpkgs/hardened-malloc/template
new file mode 100644
index 000000000000..7704d1285e36
--- /dev/null
+++ b/srcpkgs/hardened-malloc/template
@@ -0,0 +1,31 @@
+# Template file for 'hardened-malloc'
+pkgname=hardened-malloc
+version=11
+revision=1
+archs="~i686* ~armv6l* ~armv7l*" # requires 64-bit
+checkdepends="python3"
+short_desc="Hardened allocator designed for modern systems"
+maintainer="dkwo <npiazza@disroot.org>"
+license="MIT"
+homepage="https://github.com/GrapheneOS/hardened_malloc"
+changelog="https://github.com/GrapheneOS/hardened_malloc/releases"
+distfiles="https://github.com/GrapheneOS/hardened_malloc/archive/refs/tags/${version}.tar.gz"
+checksum=14331990899b91f9323230c280d66f0d1a77c386eb5d206d4cd0d8b5683098da
+
+do_build() {
+	make VARIANT=default
+	make VARIANT=light
+}
+
+do_install() {
+	vinstall out/libhardened_malloc.so 755 usr/lib/
+	vinstall out-light/libhardened_malloc-light.so 755 usr/lib/
+}
+
+do_check() {
+	make test
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] new package: hardened-malloc
  2023-01-02 17:34 [PR PATCH] new package: hardened-malloc dkwo
                   ` (8 preceding siblings ...)
  2023-04-07 14:23 ` [PR PATCH] [Updated] " dkwo
@ 2023-04-07 15:16 ` dkwo
  2023-07-07  2:06 ` github-actions
  2023-07-22  1:53 ` [PR PATCH] [Closed]: " github-actions
  11 siblings, 0 replies; 13+ messages in thread
From: dkwo @ 2023-04-07 15:16 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages stinger
https://github.com/void-linux/void-packages/pull/41412

new package: hardened-malloc
- I tested the changes in this PR: **YES**, using
```
$ cat /etc/ld.so.preload 
/usr/lib/libhardened_malloc.so
```
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, (x86_64-musl)

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

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

From 4cbc373265adcd5864cda5c32d98682774e0867c Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 1 Jan 2023 15:41:11 +0100
Subject: [PATCH] new package: hardened-malloc

---
 srcpkgs/hardened-malloc/template | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 srcpkgs/hardened-malloc/template

diff --git a/srcpkgs/hardened-malloc/template b/srcpkgs/hardened-malloc/template
new file mode 100644
index 000000000000..2eae39f001dc
--- /dev/null
+++ b/srcpkgs/hardened-malloc/template
@@ -0,0 +1,32 @@
+# Template file for 'hardened-malloc'
+pkgname=hardened-malloc
+version=11
+revision=1
+archs="~i686* ~armv6l* ~armv7l*" # requires 64-bit
+checkdepends="python3"
+short_desc="Hardened allocator designed for modern systems"
+maintainer="dkwo <npiazza@disroot.org>"
+license="MIT"
+homepage="https://github.com/GrapheneOS/hardened_malloc"
+changelog="https://github.com/GrapheneOS/hardened_malloc/releases"
+distfiles="https://github.com/GrapheneOS/hardened_malloc/archive/refs/tags/${version}.tar.gz"
+checksum=14331990899b91f9323230c280d66f0d1a77c386eb5d206d4cd0d8b5683098da
+nocross=yes
+
+do_build() {
+	make VARIANT=default
+	make VARIANT=light
+}
+
+do_install() {
+	vinstall out/libhardened_malloc.so 755 usr/lib/
+	vinstall out-light/libhardened_malloc-light.so 755 usr/lib/
+}
+
+do_check() {
+	make test
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: new package: hardened-malloc
  2023-01-02 17:34 [PR PATCH] new package: hardened-malloc dkwo
                   ` (9 preceding siblings ...)
  2023-04-07 15:16 ` dkwo
@ 2023-07-07  2:06 ` github-actions
  2023-07-22  1:53 ` [PR PATCH] [Closed]: " github-actions
  11 siblings, 0 replies; 13+ messages in thread
From: github-actions @ 2023-07-07  2:06 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/41412#issuecomment-1624538660

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] 13+ messages in thread

* Re: [PR PATCH] [Closed]: new package: hardened-malloc
  2023-01-02 17:34 [PR PATCH] new package: hardened-malloc dkwo
                   ` (10 preceding siblings ...)
  2023-07-07  2:06 ` github-actions
@ 2023-07-22  1:53 ` github-actions
  11 siblings, 0 replies; 13+ messages in thread
From: github-actions @ 2023-07-22  1:53 UTC (permalink / raw)
  To: ml

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

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

new package: hardened-malloc
https://github.com/void-linux/void-packages/pull/41412

Description:
- I tested the changes in this PR: **YES**, using
```
$ cat /etc/ld.so.preload 
/usr/lib/libhardened_malloc.so
```
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**
- I built this PR locally for my native architecture, (x86_64-musl)

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

end of thread, other threads:[~2023-07-22  1:53 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-02 17:34 [PR PATCH] new package: hardened-malloc dkwo
2023-01-02 17:38 ` [PR PATCH] [Updated] " dkwo
2023-01-03 10:15 ` dkwo
2023-01-03 10:17 ` dkwo
2023-01-05 17:54 ` [PR REVIEW] " mhmdanas
2023-01-05 17:55 ` mhmdanas
2023-01-06 15:50 ` dkwo
2023-01-06 15:50 ` [PR PATCH] [Updated] " dkwo
2023-04-07  1:49 ` github-actions
2023-04-07 14:23 ` [PR PATCH] [Updated] " dkwo
2023-04-07 15:16 ` dkwo
2023-07-07  2:06 ` github-actions
2023-07-22  1:53 ` [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).