Github messages for voidlinux
 help / color / mirror / Atom feed
* Re: New package: reduce-algebra-bin-20190413
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-14099@inbox.vuxu.org>
@ 2019-09-01 14:29 ` voidlinux-github
  2019-10-24 11:49 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: voidlinux-github @ 2019-09-01 14:29 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/14099#issuecomment-526922914

Comment:
> Why can't this be built from source?

I started by trying to package it from source. The problem is that its makefile has no meaningful install target. I can copy the files in the $DESTDIR in the do_install function and use sed for the necessary modifications, but I do not have the time, patience and experience in CL to test and verify that everything works correctly. So Ι choose to use the binaries provided by the project instead. I will appreciate any help to make the template better. If using the binary package from the upstream project is problematic, that is fine, I can provide the template and -maybe-  the package myself.

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

* Re: [PR PATCH] [Updated] New package: reduce-algebra-bin-20190413
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-14099@inbox.vuxu.org>
  2019-09-01 14:29 ` New package: reduce-algebra-bin-20190413 voidlinux-github
  2019-10-24 11:49 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-24 11:49 ` voidlinux-github
  2019-10-24 11:51 ` New package: reduce-algebra-bin-20190915 voidlinux-github
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: voidlinux-github @ 2019-10-24 11:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages xtra-templates
https://github.com/void-linux/void-packages/pull/14099

New package: reduce-algebra-bin-20190413


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

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

From 4f1b58c2caa65a518edf78b2f5a8c1fbccafbeb5 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 31 Aug 2019 15:30:12 +0300
Subject: [PATCH] New package: reduce-algebra-bin-20190413

---
 srcpkgs/reduce-algebra-bin/template | 42 +++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)
 create mode 100644 srcpkgs/reduce-algebra-bin/template

diff --git a/srcpkgs/reduce-algebra-bin/template b/srcpkgs/reduce-algebra-bin/template
new file mode 100644
index 00000000000..75180529cd6
--- /dev/null
+++ b/srcpkgs/reduce-algebra-bin/template
@@ -0,0 +1,42 @@
+# Template file for 'reduce-algebra-bin'
+pkgname=reduce-algebra-bin
+version=20190413
+revision=1
+archs="i686 x86_64"
+_svnrev=4961
+_upstr_version=snapshot_2019-04-13
+wrksrc="reduce"
+create_wrksrc="yes"
+makedepends="patchelf"
+depends="gnuplot texlive-bin ImageMagick ncurses-libs"
+short_desc="Portable general-purpose computer algebra system"
+maintainer="mobinmob <mobinmob@disroot.org>"
+license="BSD-2-Clause"
+homepage="https://reduce-algebra.sourceforge.io/"
+# Strip when used after patchelf messes some executables.
+nostrip="yes"
+# libncurses.so.6.1 is not in shlibs
+allow_unknown_shlibs=yes
+
+
+if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
+	distfiles="$SOURCEFORGE_SITE/reduce-algebra/${_upstr_version}/linux64/reduce-complete_${_svnrev}_amd64.tgz"
+	checksum="ee611fb08179e9b78ca0904177afb65ba16e35c60cecafb12d4bfd0d2df94897"
+else
+	distfiles="https://sourceforge.net/projects/reduce-algebra/files/${_upstr_version}/linux32/reduce-complete_${_svnrev}_i386.tgz"
+	checksum="67fc8ff83df08b90d72ba168b0b12b125a427c7477d87d67883a25a21d948371"
+fi
+
+do_install() {
+	# Patch elf headers
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/cslbuild/csl/reduce
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/cslbuild/csl/csl
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/pslbuild/psl/bpsl
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/cslbuild/csl/bootstrapreduce
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/bin/rfcsl
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/bin/rfpsl
+	# Copy all files and folders
+	vcopy *  .
+	# Install license
+	vlicense usr/share/reduce/packages/LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: reduce-algebra-bin-20190413
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-14099@inbox.vuxu.org>
  2019-09-01 14:29 ` New package: reduce-algebra-bin-20190413 voidlinux-github
@ 2019-10-24 11:49 ` voidlinux-github
  2019-10-24 11:49 ` voidlinux-github
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: voidlinux-github @ 2019-10-24 11:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages xtra-templates
https://github.com/void-linux/void-packages/pull/14099

New package: reduce-algebra-bin-20190413


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

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

From 4f1b58c2caa65a518edf78b2f5a8c1fbccafbeb5 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 31 Aug 2019 15:30:12 +0300
Subject: [PATCH] New package: reduce-algebra-bin-20190413

---
 srcpkgs/reduce-algebra-bin/template | 42 +++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)
 create mode 100644 srcpkgs/reduce-algebra-bin/template

diff --git a/srcpkgs/reduce-algebra-bin/template b/srcpkgs/reduce-algebra-bin/template
new file mode 100644
index 00000000000..75180529cd6
--- /dev/null
+++ b/srcpkgs/reduce-algebra-bin/template
@@ -0,0 +1,42 @@
+# Template file for 'reduce-algebra-bin'
+pkgname=reduce-algebra-bin
+version=20190413
+revision=1
+archs="i686 x86_64"
+_svnrev=4961
+_upstr_version=snapshot_2019-04-13
+wrksrc="reduce"
+create_wrksrc="yes"
+makedepends="patchelf"
+depends="gnuplot texlive-bin ImageMagick ncurses-libs"
+short_desc="Portable general-purpose computer algebra system"
+maintainer="mobinmob <mobinmob@disroot.org>"
+license="BSD-2-Clause"
+homepage="https://reduce-algebra.sourceforge.io/"
+# Strip when used after patchelf messes some executables.
+nostrip="yes"
+# libncurses.so.6.1 is not in shlibs
+allow_unknown_shlibs=yes
+
+
+if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
+	distfiles="$SOURCEFORGE_SITE/reduce-algebra/${_upstr_version}/linux64/reduce-complete_${_svnrev}_amd64.tgz"
+	checksum="ee611fb08179e9b78ca0904177afb65ba16e35c60cecafb12d4bfd0d2df94897"
+else
+	distfiles="https://sourceforge.net/projects/reduce-algebra/files/${_upstr_version}/linux32/reduce-complete_${_svnrev}_i386.tgz"
+	checksum="67fc8ff83df08b90d72ba168b0b12b125a427c7477d87d67883a25a21d948371"
+fi
+
+do_install() {
+	# Patch elf headers
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/cslbuild/csl/reduce
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/cslbuild/csl/csl
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/pslbuild/psl/bpsl
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/cslbuild/csl/bootstrapreduce
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/bin/rfcsl
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/bin/rfpsl
+	# Copy all files and folders
+	vcopy *  .
+	# Install license
+	vlicense usr/share/reduce/packages/LICENSE
+}

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

* Re: New package: reduce-algebra-bin-20190915
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-14099@inbox.vuxu.org>
                   ` (2 preceding siblings ...)
  2019-10-24 11:49 ` voidlinux-github
@ 2019-10-24 11:51 ` voidlinux-github
  2019-10-24 12:00 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: voidlinux-github @ 2019-10-24 11:51 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/14099#issuecomment-545881824

Comment:
- New version.
- Drop i686 - no longer provided by upstream.

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

* Re: [PR PATCH] [Updated] New package: reduce-algebra-bin-20190915
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-14099@inbox.vuxu.org>
                   ` (4 preceding siblings ...)
  2019-10-24 12:00 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-24 12:00 ` voidlinux-github
  2020-01-19 20:23 ` voidlinux-github
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: voidlinux-github @ 2019-10-24 12:00 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages xtra-templates
https://github.com/void-linux/void-packages/pull/14099

New package: reduce-algebra-bin-20190915


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

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

From 164bfe41dcd8959cae7a13ce59e0809642e44272 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 31 Aug 2019 15:30:12 +0300
Subject: [PATCH] New package: reduce-algebra-bin-20190413

---
 srcpkgs/reduce-algebra-bin/template | 37 +++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)
 create mode 100644 srcpkgs/reduce-algebra-bin/template

diff --git a/srcpkgs/reduce-algebra-bin/template b/srcpkgs/reduce-algebra-bin/template
new file mode 100644
index 00000000000..4b14e50697d
--- /dev/null
+++ b/srcpkgs/reduce-algebra-bin/template
@@ -0,0 +1,37 @@
+# Template file for 'reduce-algebra-bin'
+pkgname=reduce-algebra-bin
+version=20190915
+revision=1
+archs="x86_64"
+_svnrev=5129
+_upstr_version=snapshot_2019-09-15
+wrksrc="reduce"
+create_wrksrc="yes"
+makedepends="patchelf"
+depends="gnuplot texlive-bin ImageMagick ncurses-libs"
+short_desc="Portable general-purpose computer algebra system"
+maintainer="mobinmob <mobinmob@disroot.org>"
+license="BSD-2-Clause"
+homepage="https://reduce-algebra.sourceforge.io/"
+distfiles="${SOURCEFORGE_SITE}/reduce-algebra/${_upstr_version}/linux64/reduce-complete_${_svnrev}_amd64.tgz"
+checksum=1cd9438dc16c54639d612292b1bd223e7a421950915895b6cbedeeb8696df88f
+# Strip when used after patchelf messes some executables.
+nostrip="yes"
+# libncurses.so.6.1 is not in shlibs
+allow_unknown_shlibs=yes
+
+
+
+do_install() {
+	# Patch elf headers
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/cslbuild/csl/reduce
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/cslbuild/csl/csl
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/pslbuild/psl/bpsl
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/cslbuild/csl/bootstrapreduce
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/bin/rfcsl
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/bin/rfpsl
+	# Copy all files and folders
+	vcopy *  .
+	# Install license
+	vlicense usr/share/reduce/packages/LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: reduce-algebra-bin-20190915
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-14099@inbox.vuxu.org>
                   ` (3 preceding siblings ...)
  2019-10-24 11:51 ` New package: reduce-algebra-bin-20190915 voidlinux-github
@ 2019-10-24 12:00 ` voidlinux-github
  2019-10-24 12:00 ` voidlinux-github
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 9+ messages in thread
From: voidlinux-github @ 2019-10-24 12:00 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages xtra-templates
https://github.com/void-linux/void-packages/pull/14099

New package: reduce-algebra-bin-20190915


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

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

From 164bfe41dcd8959cae7a13ce59e0809642e44272 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 31 Aug 2019 15:30:12 +0300
Subject: [PATCH] New package: reduce-algebra-bin-20190413

---
 srcpkgs/reduce-algebra-bin/template | 37 +++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)
 create mode 100644 srcpkgs/reduce-algebra-bin/template

diff --git a/srcpkgs/reduce-algebra-bin/template b/srcpkgs/reduce-algebra-bin/template
new file mode 100644
index 00000000000..4b14e50697d
--- /dev/null
+++ b/srcpkgs/reduce-algebra-bin/template
@@ -0,0 +1,37 @@
+# Template file for 'reduce-algebra-bin'
+pkgname=reduce-algebra-bin
+version=20190915
+revision=1
+archs="x86_64"
+_svnrev=5129
+_upstr_version=snapshot_2019-09-15
+wrksrc="reduce"
+create_wrksrc="yes"
+makedepends="patchelf"
+depends="gnuplot texlive-bin ImageMagick ncurses-libs"
+short_desc="Portable general-purpose computer algebra system"
+maintainer="mobinmob <mobinmob@disroot.org>"
+license="BSD-2-Clause"
+homepage="https://reduce-algebra.sourceforge.io/"
+distfiles="${SOURCEFORGE_SITE}/reduce-algebra/${_upstr_version}/linux64/reduce-complete_${_svnrev}_amd64.tgz"
+checksum=1cd9438dc16c54639d612292b1bd223e7a421950915895b6cbedeeb8696df88f
+# Strip when used after patchelf messes some executables.
+nostrip="yes"
+# libncurses.so.6.1 is not in shlibs
+allow_unknown_shlibs=yes
+
+
+
+do_install() {
+	# Patch elf headers
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/cslbuild/csl/reduce
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/cslbuild/csl/csl
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/pslbuild/psl/bpsl
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/cslbuild/csl/bootstrapreduce
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/bin/rfcsl
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/bin/rfpsl
+	# Copy all files and folders
+	vcopy *  .
+	# Install license
+	vlicense usr/share/reduce/packages/LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: reduce-algebra-bin-20190915
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-14099@inbox.vuxu.org>
                   ` (5 preceding siblings ...)
  2019-10-24 12:00 ` voidlinux-github
@ 2020-01-19 20:23 ` voidlinux-github
  2020-01-19 20:25 ` New package: reduce-algebra-bin-20200101 voidlinux-github
  2020-03-16 12:34 ` mobinmob
  8 siblings, 0 replies; 9+ messages in thread
From: voidlinux-github @ 2020-01-19 20:23 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages xtra-templates
https://github.com/void-linux/void-packages/pull/14099

New package: reduce-algebra-bin-20190915


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

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

From 1783cdf70990bb8fae67ce9ae21b046cbbd8c2da Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 31 Aug 2019 15:30:12 +0300
Subject: [PATCH] New package: reduce-algebra-bin-20200101

---
 srcpkgs/reduce-algebra-bin/template | 37 +++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)
 create mode 100644 srcpkgs/reduce-algebra-bin/template

diff --git a/srcpkgs/reduce-algebra-bin/template b/srcpkgs/reduce-algebra-bin/template
new file mode 100644
index 00000000000..88afb800960
--- /dev/null
+++ b/srcpkgs/reduce-algebra-bin/template
@@ -0,0 +1,37 @@
+# Template file for 'reduce-algebra-bin'
+pkgname=reduce-algebra-bin
+version=20200101
+revision=1
+archs="x86_64"
+_svnrev=5241
+_upstr_version=snapshot_2020-01-01
+wrksrc="reduce"
+create_wrksrc="yes"
+makedepends="patchelf"
+depends="gnuplot texlive-bin ImageMagick ncurses-libs"
+short_desc="Portable general-purpose computer algebra system"
+maintainer="mobinmob <mobinmob@disroot.org>"
+license="BSD-2-Clause"
+homepage="https://reduce-algebra.sourceforge.io/"
+distfiles="${SOURCEFORGE_SITE}/reduce-algebra/${_upstr_version}/linux64/reduce-complete_${_svnrev}_amd64.tgz"
+checksum=1f62cccda48be4842da224bc6ebe159e55b8ace1354de55207b55e8b20e10a92
+# Strip when used after patchelf messes some executables.
+nostrip="yes"
+# libncurses.so.6.1 is not in shlibs
+allow_unknown_shlibs=yes
+
+
+
+do_install() {
+	# Patch elf headers
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/cslbuild/csl/reduce
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/cslbuild/csl/csl
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/pslbuild/psl/bpsl
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/lib/reduce/cslbuild/csl/bootstrapreduce
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/bin/rfcsl
+	patchelf --replace-needed libtinfo.so.5 libncurses.so.6.1 usr/bin/rfpsl
+	# Copy all files and folders
+	vcopy *  .
+	# Install license
+	vlicense usr/share/reduce/packages/LICENSE
+}

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

* Re: New package: reduce-algebra-bin-20200101
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-14099@inbox.vuxu.org>
                   ` (6 preceding siblings ...)
  2020-01-19 20:23 ` voidlinux-github
@ 2020-01-19 20:25 ` voidlinux-github
  2020-03-16 12:34 ` mobinmob
  8 siblings, 0 replies; 9+ messages in thread
From: voidlinux-github @ 2020-01-19 20:25 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/14099#issuecomment-576043182

Comment:
- Update template to 20200101.

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

* Re: New package: reduce-algebra-bin-20200101
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-14099@inbox.vuxu.org>
                   ` (7 preceding siblings ...)
  2020-01-19 20:25 ` New package: reduce-algebra-bin-20200101 voidlinux-github
@ 2020-03-16 12:34 ` mobinmob
  8 siblings, 0 replies; 9+ messages in thread
From: mobinmob @ 2020-03-16 12:34 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/14099#issuecomment-599511587

Comment:
- Update template to 20200301.

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

end of thread, other threads:[~2020-03-16 12:34 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-14099@inbox.vuxu.org>
2019-09-01 14:29 ` New package: reduce-algebra-bin-20190413 voidlinux-github
2019-10-24 11:49 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-24 11:49 ` voidlinux-github
2019-10-24 11:51 ` New package: reduce-algebra-bin-20190915 voidlinux-github
2019-10-24 12:00 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-24 12:00 ` voidlinux-github
2020-01-19 20:23 ` voidlinux-github
2020-01-19 20:25 ` New package: reduce-algebra-bin-20200101 voidlinux-github
2020-03-16 12:34 ` mobinmob

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