Github messages for voidlinux
 help / color / mirror / Atom feed
From: Eloitor <Eloitor@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New math package: m4rie-20200125
Date: Tue, 24 Aug 2021 11:19:36 +0200	[thread overview]
Message-ID: <20210824091936._Y7W1031z6DkLO4e5zL8xGs6JvwYGtBG5yYzviRYgNs@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-32601@inbox.vuxu.org>

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

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

https://github.com/Eloitor/void-packages m4rie
https://github.com/void-linux/void-packages/pull/32601

New math package: m4rie-20200125
Requirement for #19090.

I get the following error and I don't know how to change a file during the configuration.

```
Makefile.am:5: error: Libtool library used but 'LIBTOOL' is undefined
Makefile.am:5:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
Makefile.am:5:   to 'configure.ac' and run 'aclocal' and 'autoconf' again.
Makefile.am:5:   If 'LT_INIT' is in 'configure.ac', make sure
Makefile.am:5:   its definition is in aclocal's search path.
Makefile.am: installing './depcomp'
parallel-tests: installing './test-driver'
autoreconf: automake failed with exit status: 1
=> ERROR: m4rie-20200115_1: pre_configure: 'autoreconf --install' exited with 1
=> ERROR:   in pre_configure() at srcpkgs/m4rie/template:25
```

<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] 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/32601.patch is attached

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

From a647668450254e930be0c692912051774ab74a12 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloi.torrentsj@gmail.com>
Date: Tue, 24 Aug 2021 09:53:54 +0200
Subject: [PATCH 1/2] New package: m4ri-20200125

---
 common/shlibs         |  2 ++
 srcpkgs/m4ri-devel    |  1 +
 srcpkgs/m4ri/template | 25 +++++++++++++++++++++++++
 3 files changed, 28 insertions(+)
 create mode 120000 srcpkgs/m4ri-devel
 create mode 100644 srcpkgs/m4ri/template

diff --git a/common/shlibs b/common/shlibs
index befa6484dfee..d2154f0ca25a 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -22,6 +22,8 @@ libm.so.6 glibc-2.32_1
 libpthread.so.0 glibc-2.32_1
 librt.so.1 glibc-2.32_1
 libdl.so.2 glibc-2.32_1
+libm4ri-0.0.20200125.so m4ri-20200125_1
+libm4ri-0.0.20200125.so m4ri-devel-20200125_1
 ld-linux-x86-64.so.2 glibc-2.32_1 x86_64
 ld-linux.so.2 glibc-2.32_1 i686
 ld-linux.so.3 glibc-2.32_1 armv5tel
diff --git a/srcpkgs/m4ri-devel b/srcpkgs/m4ri-devel
new file mode 120000
index 000000000000..a269c97b0d75
--- /dev/null
+++ b/srcpkgs/m4ri-devel
@@ -0,0 +1 @@
+m4ri
\ No newline at end of file
diff --git a/srcpkgs/m4ri/template b/srcpkgs/m4ri/template
new file mode 100644
index 000000000000..e9b255fc6987
--- /dev/null
+++ b/srcpkgs/m4ri/template
@@ -0,0 +1,25 @@
+# Template file for 'm4ri'
+pkgname=m4ri
+version=20200125
+revision=1
+build_style=gnu-configure
+configure_args="--enable-openmp"
+hostmakedepends=pkg-config
+makedepends=libpng-devel
+short_desc="Library for fast arithmetic with dense matrices over GF(2)"
+maintainer="Eloi Torrents <eloitorrentsj@gmail.com>"
+license="GPL-2.0-or-later"
+homepage="https://bitbucket.org/malb/m4ri"
+distfiles="https://bitbucket.org/malb/m4ri/downloads/${pkgname}-${version}.tar.gz"
+checksum=0dfb34aed351882a0f2281535ea6f81c690a5efeb14edab131d9ba0dffe44863
+
+m4ri-devel_package() {
+	short_desc+=" - development files"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove usr/include
+		vmove "usr/lib/*.a"
+		vmove "usr/lib/libm4ri.so"
+		vmove usr/lib/pkgconfig
+	}
+}

From c7d6bbe0601a536267b59c827222e307c113d749 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloi.torrentsj@gmail.com>
Date: Tue, 24 Aug 2021 10:38:24 +0200
Subject: [PATCH 2/2] New package: m4rie-20200125

---
 common/shlibs          |  2 ++
 srcpkgs/m4rie-devel    |  1 +
 srcpkgs/m4rie/template | 23 +++++++++++++++++++++++
 3 files changed, 26 insertions(+)
 create mode 120000 srcpkgs/m4rie-devel
 create mode 100644 srcpkgs/m4rie/template

diff --git a/common/shlibs b/common/shlibs
index d2154f0ca25a..a85d6caa0f0a 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -24,6 +24,8 @@ librt.so.1 glibc-2.32_1
 libdl.so.2 glibc-2.32_1
 libm4ri-0.0.20200125.so m4ri-20200125_1
 libm4ri-0.0.20200125.so m4ri-devel-20200125_1
+libm4rie-0.0.20200125.so m4rie-20200125_1
+libm4rie-0.0.20200125.so m4rie-devel-20200125_1
 ld-linux-x86-64.so.2 glibc-2.32_1 x86_64
 ld-linux.so.2 glibc-2.32_1 i686
 ld-linux.so.3 glibc-2.32_1 armv5tel
diff --git a/srcpkgs/m4rie-devel b/srcpkgs/m4rie-devel
new file mode 120000
index 000000000000..664b7673e9ca
--- /dev/null
+++ b/srcpkgs/m4rie-devel
@@ -0,0 +1 @@
+m4rie
\ No newline at end of file
diff --git a/srcpkgs/m4rie/template b/srcpkgs/m4rie/template
new file mode 100644
index 000000000000..13ceb271468c
--- /dev/null
+++ b/srcpkgs/m4rie/template
@@ -0,0 +1,23 @@
+# Template file for 'm4rie'
+pkgname=m4rie
+version=20200125
+revision=1
+build_style=gnu-configure
+makedepends="m4ri-devel"
+short_desc="Library for fast arithmetic with dense matrices over GF(2^e)"
+maintainer="Eloi Torrents <eloi.torrentsj@gmail.com>"
+license="GPL-2.0-or-later"
+homepage="https://bitbucket.org/malb/m4rie/wiki/Home"
+distfiles="https://bitbucket.org/malb/m4rie/downloads/m4rie-${version}.tar.gz"
+checksum=7f3107f7cd10f6c22d9663d9536e1af2f551e10183601852a60d760918caf58d
+
+m4rie-devel_package() {
+	short_desc+=" - development files"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove usr/include
+		vmove "usr/lib/*.a"
+		vmove "usr/lib/libm4rie.so"
+		vmove usr/lib/pkgconfig
+	}
+}

  parent reply	other threads:[~2021-08-24  9:19 UTC|newest]

Thread overview: 116+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-20  9:37 [PR PATCH] [WIP] New " Eloitor
2021-08-20 11:37 ` [WIP] New math " tornaria
2021-08-20 16:24 ` dkwo
2021-08-21  6:16 ` [PR PATCH] [Updated] " Eloitor
2021-08-21  7:22 ` [PR REVIEW] " dkwo
2021-08-21  7:22 ` dkwo
2021-08-21  7:25 ` dkwo
2021-08-21  7:45 ` [PR PATCH] [Updated] " Eloitor
2021-08-21  7:58 ` [PR PATCH] [Updated] " Eloitor
2021-08-21  8:00 ` Eloitor
2021-08-21  8:02 ` Eloitor
2021-08-21  8:09 ` Eloitor
2021-08-21  8:10 ` Eloitor
2021-08-21  8:10 ` Eloitor
2021-08-21 10:38 ` dkwo
2021-08-21 10:52 ` dkwo
2021-08-21 12:28 ` dkwo
2021-08-21 13:20 ` [PR PATCH] [Updated] " Eloitor
2021-08-21 13:52 ` [PR REVIEW] " dkwo
2021-08-21 13:52 ` dkwo
2021-08-21 13:52 ` dkwo
2021-08-21 13:52 ` dkwo
2021-08-21 13:52 ` dkwo
2021-08-21 13:52 ` dkwo
2021-08-21 13:52 ` dkwo
2021-08-21 13:52 ` dkwo
2021-08-21 16:04 ` [PR PATCH] [Updated] " Eloitor
2021-08-21 16:09 ` Eloitor
2021-08-21 22:45 ` [PR REVIEW] " tornaria
2021-08-21 22:46 ` tornaria
2021-08-21 22:53 ` tornaria
2021-08-21 22:56 ` [PR REVIEW] " tornaria
2021-08-21 22:57 ` tornaria
2021-08-21 23:00 ` tornaria
2021-08-21 23:05 ` tornaria
2021-08-22 11:15 ` [PR PATCH] [Updated] " Eloitor
2021-08-22 11:16 ` Eloitor
2021-08-22 11:26 ` Eloitor
2021-08-22 13:32 ` [PR PATCH] [Updated] " Eloitor
2021-08-22 13:41 ` Eloitor
2021-08-22 13:41 ` Eloitor
2021-08-22 13:46 ` [PR PATCH] [Updated] " Eloitor
2021-08-22 13:51 ` Eloitor
2021-08-22 13:57 ` [PR REVIEW] " tornaria
2021-08-22 14:01 ` tornaria
2021-08-22 14:01 ` tornaria
2021-08-22 14:02 ` tornaria
2021-08-23 12:43 ` [PR PATCH] [Updated] " Eloitor
2021-08-23 12:51 ` dkwo
2021-08-23 12:54 ` [PR PATCH] [Updated] " Eloitor
2021-08-23 12:55 ` Eloitor
2021-08-23 12:57 ` Eloitor
2021-08-23 12:58 ` Eloitor
2021-08-23 14:28 ` Eloitor
2021-08-23 14:30 ` Eloitor
2021-08-23 15:20 ` tornaria
2021-08-23 18:19 ` [PR PATCH] [Updated] " Eloitor
2021-08-23 18:22 ` Eloitor
2021-08-23 18:22 ` Eloitor
2021-08-23 18:38 ` [PR REVIEW] " dkwo
2021-08-23 19:54 ` Eloitor
2021-08-23 19:55 ` [PR PATCH] [Updated] " Eloitor
2021-08-24  6:57 ` dkwo
2021-08-24  6:59 ` [PR PATCH] [Updated] " Eloitor
2021-08-24  7:00 ` Eloitor
2021-08-24  7:13 ` [PR PATCH] [Updated] " Eloitor
2021-08-24  7:19 ` Eloitor
2021-08-24  7:22 ` Eloitor
2021-08-24  7:30 ` Eloitor
2021-08-24  7:51 ` Eloitor
2021-08-24  7:53 ` Eloitor
2021-08-24  7:54 ` Eloitor
2021-08-24  8:22 ` Eloitor
2021-08-24  8:38 ` Eloitor
2021-08-24  8:50 ` [PR REVIEW] " dkwo
2021-08-24  8:52 ` dkwo
2021-08-24  9:19 ` Eloitor [this message]
2021-08-24  9:23 ` Eloitor
2021-08-24  9:25 ` dkwo
2021-08-24  9:26 ` dkwo
2021-08-24 11:48 ` [PR PATCH] [Updated] " Eloitor
2021-08-25 22:31 ` Eloitor
2021-08-26  7:19 ` dkwo
2021-08-26  8:46 ` Eloitor
2021-08-26  8:47 ` Eloitor
2021-08-26  9:05 ` dkwo
2021-08-26  9:05 ` [PR REVIEW] " dkwo
2021-08-26  9:06 ` dkwo
2021-08-26  9:18 ` dkwo
2021-09-02 21:29 ` [PR PATCH] [Updated] " Eloitor
2021-09-02 21:40 ` Eloitor
2021-09-02 21:41 ` [PR REVIEW] " tornaria
2021-09-02 21:41 ` tornaria
2021-09-02 21:41 ` tornaria
2021-09-02 21:41 ` tornaria
2021-09-02 21:47 ` tornaria
2021-09-02 21:49 ` tornaria
2021-09-02 21:50 ` tornaria
2021-09-02 22:22 ` tornaria
2021-09-03  5:34 ` [PR PATCH] [Updated] " Eloitor
2021-09-03  5:43 ` Eloitor
2021-09-03  9:23 ` dkwo
2021-09-03 13:26 ` tornaria
2021-11-08 17:31 ` [PR REVIEW] " leahneukirchen
2021-11-08 17:34 ` leahneukirchen
2021-11-08 17:35 ` leahneukirchen
2021-11-08 17:38 ` tornaria
2021-11-08 17:52 ` leahneukirchen
2021-11-08 17:55 ` leahneukirchen
2021-11-08 17:57 ` leahneukirchen
2021-11-08 19:54 ` Eloitor
2021-11-08 20:08 ` tornaria
2021-11-08 20:30 ` leahneukirchen
2021-11-08 20:36 ` dkwo
2021-11-09  1:01 ` tornaria
2021-11-09 14:56 ` [PR PATCH] [Closed]: " leahneukirchen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210824091936._Y7W1031z6DkLO4e5zL8xGs6JvwYGtBG5yYzviRYgNs@z \
    --to=eloitor@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).