Github messages for voidlinux
 help / color / mirror / Atom feed
* [ISSUE] Package Request: PARI/GP
@ 2020-07-21 17:14 motorto
  2020-07-21 18:28 ` yopito
                   ` (35 more replies)
  0 siblings, 36 replies; 37+ messages in thread
From: motorto @ 2020-07-21 17:14 UTC (permalink / raw)
  To: ml

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

New issue by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692

Description:
Source: https://pari.math.u-bordeaux.fr/
License: GPL

PARI/GP is a widely used computer algebra system designed for fast computations in number theory

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

* Re: Package Request: PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
@ 2020-07-21 18:28 ` yopito
  2020-07-21 18:58 ` motorto
                   ` (34 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: yopito @ 2020-07-21 18:28 UTC (permalink / raw)
  To: ml

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

New comment by yopito on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662031623

Comment:
compute `checksum` this way ( is the checksum of the `distfiles` itself):
```
$ sha256sum pari-2.11.4.tar.gz 
bfc88fc4f7352f4840e6e352c72f0369cbea8a45403b1834a6269f3709970b1c  pari-2.11.4.tar.gz
```


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

* Re: Package Request: PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
  2020-07-21 18:28 ` yopito
@ 2020-07-21 18:58 ` motorto
  2020-07-21 20:08 ` motorto
                   ` (33 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-07-21 18:58 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662047185

Comment:
That solved the issue ! Thanks, now I am getting an error:
`=> ERROR: pari-gp-2.11.4_1: cannot access wrksrc directory [/builddir/pari]`

Well this is turning harder than I tough 

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

* Re: Package Request: PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
  2020-07-21 18:28 ` yopito
  2020-07-21 18:58 ` motorto
@ 2020-07-21 20:08 ` motorto
  2020-07-21 20:09 ` motorto
                   ` (32 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-07-21 20:08 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662047185

Comment:
That solved the issue ! Thanks, now I am getting an error:
`=> ERROR: pari-gp-2.11.4_1: cannot access wrksrc directory [/builddir/pari]`

Well this is turning harder than I tough 
---------------------------------------------------------------
Well, update fixed that error by inspiring myself on bc template, and now the error is compiler option:

```
ld: unrecognized option '-Wl,-z,relro'
ld: use the --help option for usage information
make[1]: *** [Makefile:1030: gp-dyn] Error 1
make[1]: Leaving directory '/builddir/pari-2.11.4/Olinux-x86_64'
make: *** [Makefile:34: install] Error 2
=> ERROR: pari-2.11.4_1: do_build: 'make install' exited with 2
=> ERROR:   in do_build() at srcpkgs/pari/template:26
```

My template 
```
# Template file for 'pari'
pkgname=pari
version=2.11.4
revision=1
archs="*"
build_style=gnu-configure
#configure_args=""
#make_build_args=""
#make_install_args=""
#conf_files=""
#make_dirs="/var/log/dir 0755 root root"
hostmakedepends=""
makedepends=""
depends=""
short_desc="pari/gp is a computer algebra system designed for fast computations in number theory"
maintainer="André Cerqueira <acerqueira021@gmail.com>"
license="GPL-3.0-or-later"
homepage="https://pari.math.u-bordeaux.fr"
distfiles="https://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.11.4.tar.gz"
checksum="bfc88fc4f7352f4840e6e352c72f0369cbea8a45403b1834a6269f3709970b1c" 
disable_parallel_build=yes

do_build() {
  ./Configure
  make install
}

do_install() {
    mv ${DESTDIR}/usr/bin/pari
    mv ${DESTDIR}/usr/bin/pari
    mv ${DESTDIR}/usr/share/man/man1/pari.1
    mv ${DESTDIR}/usr/share/man/man1/pari.1
}
```

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

* Re: Package Request: PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (2 preceding siblings ...)
  2020-07-21 20:08 ` motorto
@ 2020-07-21 20:09 ` motorto
  2020-07-21 20:09 ` motorto
                   ` (31 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-07-21 20:09 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662047185

Comment:
That solved the issue ! Thanks, now I am getting an error:
`=> ERROR: pari-gp-2.11.4_1: cannot access wrksrc directory [/builddir/pari]`

Well this is turning harder than I tough 

---------------------------------------------------------------
Well, update fixed that error by inspiring myself on bc template, and now the error is compiler option:

```
ld: unrecognized option '-Wl,-z,relro'
ld: use the --help option for usage information
make[1]: *** [Makefile:1030: gp-dyn] Error 1
make[1]: Leaving directory '/builddir/pari-2.11.4/Olinux-x86_64'
make: *** [Makefile:34: install] Error 2
=> ERROR: pari-2.11.4_1: do_build: 'make install' exited with 2
=> ERROR:   in do_build() at srcpkgs/pari/template:26
```

My template 
```
# Template file for 'pari'
pkgname=pari
version=2.11.4
revision=1
archs="*"
build_style=gnu-configure
#configure_args=""
#make_build_args=""
#make_install_args=""
#conf_files=""
#make_dirs="/var/log/dir 0755 root root"
hostmakedepends=""
makedepends=""
depends=""
short_desc="pari/gp is a computer algebra system designed for fast computations in number theory"
maintainer="André Cerqueira <acerqueira021@gmail.com>"
license="GPL-3.0-or-later"
homepage="https://pari.math.u-bordeaux.fr"
distfiles="https://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.11.4.tar.gz"
checksum="bfc88fc4f7352f4840e6e352c72f0369cbea8a45403b1834a6269f3709970b1c" 
disable_parallel_build=yes

do_build() {
  ./Configure
  make install
}

do_install() {
    mv ${DESTDIR}/usr/bin/pari
    mv ${DESTDIR}/usr/bin/pari
    mv ${DESTDIR}/usr/share/man/man1/pari.1
    mv ${DESTDIR}/usr/share/man/man1/pari.1
}
```

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

* Re: Package Request: PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (3 preceding siblings ...)
  2020-07-21 20:09 ` motorto
@ 2020-07-21 20:09 ` motorto
  2020-07-21 20:09 ` motorto
                   ` (30 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-07-21 20:09 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662047185

Comment:
That solved the issue ! Thanks, now I am getting an error:
`=> ERROR: pari-gp-2.11.4_1: cannot access wrksrc directory [/builddir/pari]`

Well this is turning harder than I tough 

---------------------------------------------------------------
Well, ###update fixed that error by inspiring myself on bc template, and now the error is compiler option:

```
ld: unrecognized option '-Wl,-z,relro'
ld: use the --help option for usage information
make[1]: *** [Makefile:1030: gp-dyn] Error 1
make[1]: Leaving directory '/builddir/pari-2.11.4/Olinux-x86_64'
make: *** [Makefile:34: install] Error 2
=> ERROR: pari-2.11.4_1: do_build: 'make install' exited with 2
=> ERROR:   in do_build() at srcpkgs/pari/template:26
```

My template 
```
# Template file for 'pari'
pkgname=pari
version=2.11.4
revision=1
archs="*"
build_style=gnu-configure
#configure_args=""
#make_build_args=""
#make_install_args=""
#conf_files=""
#make_dirs="/var/log/dir 0755 root root"
hostmakedepends=""
makedepends=""
depends=""
short_desc="pari/gp is a computer algebra system designed for fast computations in number theory"
maintainer="André Cerqueira <acerqueira021@gmail.com>"
license="GPL-3.0-or-later"
homepage="https://pari.math.u-bordeaux.fr"
distfiles="https://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.11.4.tar.gz"
checksum="bfc88fc4f7352f4840e6e352c72f0369cbea8a45403b1834a6269f3709970b1c" 
disable_parallel_build=yes

do_build() {
  ./Configure
  make install
}

do_install() {
    mv ${DESTDIR}/usr/bin/pari
    mv ${DESTDIR}/usr/bin/pari
    mv ${DESTDIR}/usr/share/man/man1/pari.1
    mv ${DESTDIR}/usr/share/man/man1/pari.1
}
```

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

* Re: Package Request: PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (4 preceding siblings ...)
  2020-07-21 20:09 ` motorto
@ 2020-07-21 20:09 ` motorto
  2020-07-21 20:10 ` motorto
                   ` (29 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-07-21 20:09 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662047185

Comment:
That solved the issue ! Thanks, now I am getting an error:
`=> ERROR: pari-gp-2.11.4_1: cannot access wrksrc directory [/builddir/pari]`

Well this is turning harder than I tough 

---------------------------------------------------------------
Update

Well,  fixed that error by inspiring myself on bc template, and now the error is compiler option:

```
ld: unrecognized option '-Wl,-z,relro'
ld: use the --help option for usage information
make[1]: *** [Makefile:1030: gp-dyn] Error 1
make[1]: Leaving directory '/builddir/pari-2.11.4/Olinux-x86_64'
make: *** [Makefile:34: install] Error 2
=> ERROR: pari-2.11.4_1: do_build: 'make install' exited with 2
=> ERROR:   in do_build() at srcpkgs/pari/template:26
```

My template 
```
# Template file for 'pari'
pkgname=pari
version=2.11.4
revision=1
archs="*"
build_style=gnu-configure
#configure_args=""
#make_build_args=""
#make_install_args=""
#conf_files=""
#make_dirs="/var/log/dir 0755 root root"
hostmakedepends=""
makedepends=""
depends=""
short_desc="pari/gp is a computer algebra system designed for fast computations in number theory"
maintainer="André Cerqueira <acerqueira021@gmail.com>"
license="GPL-3.0-or-later"
homepage="https://pari.math.u-bordeaux.fr"
distfiles="https://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.11.4.tar.gz"
checksum="bfc88fc4f7352f4840e6e352c72f0369cbea8a45403b1834a6269f3709970b1c" 
disable_parallel_build=yes

do_build() {
  ./Configure
  make install
}

do_install() {
    mv ${DESTDIR}/usr/bin/pari
    mv ${DESTDIR}/usr/bin/pari
    mv ${DESTDIR}/usr/share/man/man1/pari.1
    mv ${DESTDIR}/usr/share/man/man1/pari.1
}
```

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

* Re: Package Request: PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (5 preceding siblings ...)
  2020-07-21 20:09 ` motorto
@ 2020-07-21 20:10 ` motorto
  2020-07-21 20:25 ` motorto
                   ` (28 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-07-21 20:10 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662047185

Comment:
That solved the issue ! Thanks, now I am getting an error:
`=> ERROR: pari-gp-2.11.4_1: cannot access wrksrc directory [/builddir/pari]`

Well this is turning harder than I tough 

---------------------------------------------------------------
Update

Well,  fixed that error by inspiring myself on bc template, and now the error is compiler option:

```
ld: unrecognized option '-Wl,-z,relro'
ld: use the --help option for usage information
make[1]: *** [Makefile:1030: gp-dyn] Error 1
make[1]: Leaving directory '/builddir/pari-2.11.4/Olinux-x86_64'
make: *** [Makefile:34: install] Error 2
=> ERROR: pari-2.11.4_1: do_build: 'make install' exited with 2
=> ERROR:   in do_build() at srcpkgs/pari/template:26
```

My template 
```
# Template file for 'pari'
pkgname=pari
version=2.11.4
revision=1
archs="*"
build_style=gnu-configure
#configure_args=""
#make_build_args=""
#make_install_args=""
#conf_files=""
#make_dirs="/var/log/dir 0755 root root"
hostmakedepends=""
makedepends=""
depends=""
short_desc="pari/gp is a computer algebra system designed for fast computations in number theory"
maintainer="André Cerqueira <acerqueira021@gmail.com>"
license="GPL-3.0-or-later"
homepage="https://pari.math.u-bordeaux.fr"
distfiles="https://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.11.4.tar.gz"
checksum="bfc88fc4f7352f4840e6e352c72f0369cbea8a45403b1834a6269f3709970b1c" 
disable_parallel_build=yes

do_build() {
  ./Configure
  make install
}

do_install() {
    mv ${DESTDIR}/usr/bin/pari
    mv ${DESTDIR}/usr/bin/pari
    mv ${DESTDIR}/usr/share/man/man1/pari.1
    mv ${DESTDIR}/usr/share/man/man1/pari.1
}
```
Any help is welcomed even if its not a positive one !

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

* Re: Package Request: PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (6 preceding siblings ...)
  2020-07-21 20:10 ` motorto
@ 2020-07-21 20:25 ` motorto
  2020-07-21 20:58 ` Package Request/ Help Making Template for PARI/GP motorto
                   ` (27 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-07-21 20:25 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662047185

Comment:
That solved the issue ! Thanks, now I am getting an error:
`=> ERROR: pari-gp-2.11.4_1: cannot access wrksrc directory [/builddir/pari]`

Well this is turning harder than I tough 
---------------------------------------------------------------
Well, update fixed that error by inspiring myself on bc template, and now the error is compiler option:

```
ld: unrecognized option '-Wl,-z,relro'
ld: use the --help option for usage information
make[1]: *** [Makefile:1030: gp-dyn] Error 1
make[1]: Leaving directory '/builddir/pari-2.11.4/Olinux-x86_64'
make: *** [Makefile:34: install] Error 2
=> ERROR: pari-2.11.4_1: do_build: 'make install' exited with 2
=> ERROR:   in do_build() at srcpkgs/pari/template:26
```

My template 
```
# Template file for 'pari'
pkgname=pari
version=2.11.4
revision=1
archs="*"
build_style=gnu-configure
hostmakedepends=""
makedepends=""
depends=""
short_desc="pari/gp is a computer algebra system designed for fast computations in number theory"
maintainer="André Cerqueira <acerqueira021@gmail.com>"
license="GPL-3.0-or-later"
homepage="https://pari.math.u-bordeaux.fr"
distfiles="https://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.11.4.tar.gz"
checksum="bfc88fc4f7352f4840e6e352c72f0369cbea8a45403b1834a6269f3709970b1c" 
disable_parallel_build=yes

do_build() {
  ./Configure
  make install
}

do_install() {
    mv ${DESTDIR}/usr/bin/pari
    mv ${DESTDIR}/usr/bin/pari
    mv ${DESTDIR}/usr/share/man/man1/pari.1
    mv ${DESTDIR}/usr/share/man/man1/pari.1
}
```

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (7 preceding siblings ...)
  2020-07-21 20:25 ` motorto
@ 2020-07-21 20:58 ` motorto
  2020-07-21 21:44 ` motorto
                   ` (26 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-07-21 20:58 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662047185

Comment:
That solved the issue ! Thanks, now I am getting an error:
`=> ERROR: pari-gp-2.11.4_1: cannot access wrksrc directory [/builddir/pari]`

Well this is turning harder than I tough 
---------------------------------------------------------------
Well, update fixed that error by inspiring myself on bc template, and now the error is compiler option:

```
ld: unrecognized option '-Wl,-z,relro'
ld: use the --help option for usage information
make[1]: *** [Makefile:1030: gp-dyn] Error 1
make[1]: Leaving directory '/builddir/pari-2.11.4/Olinux-x86_64'
make: *** [Makefile:34: install] Error 2
=> ERROR: pari-2.11.4_1: do_build: 'make install' exited with 2
=> ERROR:   in do_build() at srcpkgs/pari/template:26
```

My template 
```
# Template file for 'pari'
pkgname=pari
version=2.11.4
revision=1
archs="*"
hostmakedepends=""
makedepends=""
#depends="gmp libx11 readline make"
build_style=gnu-configure
short_desc="pari/gp is a computer algebra system designed for fast computations in number theory"
maintainer="André Cerqueira <acerqueira021@gmail.com>"
license="GPL-3.0-or-later"
homepage="https://pari.math.u-bordeaux.fr"
distfiles="https://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.11.4.tar.gz"
checksum="bfc88fc4f7352f4840e6e352c72f0369cbea8a45403b1834a6269f3709970b1c"

```

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (8 preceding siblings ...)
  2020-07-21 20:58 ` Package Request/ Help Making Template for PARI/GP motorto
@ 2020-07-21 21:44 ` motorto
  2020-07-21 21:50 ` motorto
                   ` (25 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-07-21 21:44 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662047185

Comment:
That solved the issue ! Thanks, now I am getting an error:
`=> ERROR: pari-gp-2.11.4_1: cannot access wrksrc directory [/builddir/pari]`

Well this is turning harder than I tough 
---------------------------------------------------------------
Well, update fixed that error by inspiring myself on bc template, and now the error is compiler option:

```
ld: unrecognized option '-Wl,-z,relro'
ld: use the --help option for usage information
make[1]: *** [Makefile:1030: gp-dyn] Error 1
make[1]: Leaving directory '/builddir/pari-2.11.4/Olinux-x86_64'
make: *** [Makefile:34: install] Error 2
=> ERROR: pari-2.11.4_1: do_build: 'make install' exited with 2
=> ERROR:   in do_build() at srcpkgs/pari/template:26
```

My template 

```
# Template file for 'pari'
pkgname=pari
version=2.11.4
revision=1
short_desc="pari/gp is a computer algebra system designed for fast computations in number theory"
archs="*"
makedepends="perl texlive-core"
depends="gmp libX11 readline"
maintainer="André Cerqueira <acerqueira021@gmail.com>"
license="GPL-3.0-or-later"
homepage="https://pari.math.u-bordeaux.fr"
distfiles="https://pari.math.u-bordeaux.fr/pub/pari/unix/${pkgname}-${version}.tar.gz"
checksum="bfc88fc4f7352f4840e6e352c72f0369cbea8a45403b1834a6269f3709970b1c"

do_build(){
  export CFLAGS+=' -flto'

    ./Configure \
    --prefix=/usr \
    --with-readline \
    --mt=pthread \
    --with-gmp \

    make all
}

post_build() { 
    make bench
}

do_install(){
    make install
    ln -sf gp.1.gz /usr/share/man/man1/pari.1

    cd Olinux-x86_64
    make install-bin-sta
}
```

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (9 preceding siblings ...)
  2020-07-21 21:44 ` motorto
@ 2020-07-21 21:50 ` motorto
  2020-07-21 21:51 ` motorto
                   ` (24 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-07-21 21:50 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662047185

Comment:
That solved the issue ! Thanks, now I am getting an error:
`=> ERROR: pari-gp-2.11.4_1: cannot access wrksrc directory [/builddir/pari]`

Well this is turning harder than I tough 
---------------------------------------------------------------
Well, update fixed that error by inspiring myself on bc template, and now the error is compiler option:

```
ld: unrecognized option '-Wl,-z,relro'
ld: use the --help option for usage information
make[1]: *** [Makefile:1030: gp-dyn] Error 1
make[1]: Leaving directory '/builddir/pari-2.11.4/Olinux-x86_64'
make: *** [Makefile:34: install] Error 2
=> ERROR: pari-2.11.4_1: do_install: 'make install' exited with 2
=> ERROR:   in do_install() at srcpkgs/pari/template:31
```

My template 

```
# Template file for 'pari'
pkgname=pari
version=2.11.4
revision=1
short_desc="pari/gp is a computer algebra system designed for fast computations in number theory"
archs="*"
makedepends="perl texlive-core"
depends="gmp libX11 readline"
maintainer="André Cerqueira <acerqueira021@gmail.com>"
license="GPL-3.0-or-later"
homepage="https://pari.math.u-bordeaux.fr"
distfiles="https://pari.math.u-bordeaux.fr/pub/pari/unix/${pkgname}-${version}.tar.gz"
checksum="bfc88fc4f7352f4840e6e352c72f0369cbea8a45403b1834a6269f3709970b1c"

do_build(){
  export CFLAGS+=' -flto'

    ./Configure \
    --prefix=/usr \
    --with-readline \
    --mt=pthread \
    --with-gmp \

    make all
}

post_build() { 
    make bench
}

do_install(){
    make install
    ln -sf gp.1.gz /usr/share/man/man1/pari.1

    cd Olinux-x86_64
    make install-bin-sta
}
```

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (10 preceding siblings ...)
  2020-07-21 21:50 ` motorto
@ 2020-07-21 21:51 ` motorto
  2020-07-22  0:39 ` sgn
                   ` (23 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-07-21 21:51 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662047185

Comment:
That solved the issue ! Thanks, now I am getting an error:
`=> ERROR: pari-gp-2.11.4_1: cannot access wrksrc directory [/builddir/pari]`

Well this is turning harder than I tough 
---------------------------------------------------------------
Well, update fixed that error by inspiring myself on bc template, and now the error is compiler option:

```
ld: unrecognized option '-Wl,-z,relro'
ld: use the --help option for usage information
make[1]: *** [Makefile:1030: gp-dyn] Error 1
make[1]: Leaving directory '/builddir/pari-2.11.4/Olinux-x86_64'
make: *** [Makefile:34: install] Error 2
=> ERROR: pari-2.11.4_1: do_install: 'make install' exited with 2
=> ERROR:   in do_install() at srcpkgs/pari/template:31
```

My template 

```
# Template file for 'pari'
pkgname=pari
version=2.11.4
revision=1
makedepends="perl texlive-core"
depends="gmp libX11 readline"
short_desc="Pari/gp is designed for fast computations in number theory"
maintainer="André Cerqueira <acerqueira021@gmail.com>"
license="GPL-3.0-or-later"
homepage="https://pari.math.u-bordeaux.fr"
distfiles="https://pari.math.u-bordeaux.fr/pub/pari/unix/${pkgname}-${version}.tar.gz"
checksum="bfc88fc4f7352f4840e6e352c72f0369cbea8a45403b1834a6269f3709970b1c"

do_build() {
  export CFLAGS+=' -flto'

    ./Configure \
    --prefix=/usr \
    --with-readline \
    --mt=pthread \
    --with-gmp \

    make all
}

post_build() {
    make bench
}

do_install() {
    make install
    ln -sf gp.1.gz /usr/share/man/man1/pari.1

    cd Olinux-x86_64
    make install-bin-sta
}
```

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (11 preceding siblings ...)
  2020-07-21 21:51 ` motorto
@ 2020-07-22  0:39 ` sgn
  2020-07-22  9:19 ` motorto
                   ` (22 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: sgn @ 2020-07-22  0:39 UTC (permalink / raw)
  To: ml

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

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662176905

Comment:
```sh
# Template file for 'pari'
pkgname=pari
version=2.11.4
revision=1
build_style=configure
configure_script=./Configure
configure_args="--prefix=/usr"
make_build_target=all
hostmakedepends="perl texlive"
makedepends="gmp-devel libX11-devel readline-devel"
short_desc="Fast computations library in number theory"
maintainer="people <ad@dre.ss"
license="GPL-2.0-or-later"
homepage="https://pari.math.u-bordeaux.fr"
distfiles="https://pari.math.u-bordeaux.fr/pub/pari/unix/${pkgname}-${version}.tar.gz"
checksum="bfc88fc4f7352f4840e6e352c72f0369cbea8a45403b1834a6269f3709970b1c"
nocross=yes

post_patch() {
	vsed -i -e 's/ulong/unsigned long/' config/has_sse2.c
}

pre_configure() {
	export LD="$CC"
}

pari-devel_package() {
	short_desc+=" - development files"
	depends="pari-${version}_${revision}"
	pkg_install() {
		vmove usr/include
		vmove "usr/lib/*.so"
	}
}
```

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (12 preceding siblings ...)
  2020-07-22  0:39 ` sgn
@ 2020-07-22  9:19 ` motorto
  2020-07-22 10:30 ` motorto
                   ` (21 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-07-22  9:19 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662343500

Comment:
Oh uau thanks for it , I still have a lot to learn when it comes to this. Can you commit or you want me to do it ?

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (13 preceding siblings ...)
  2020-07-22  9:19 ` motorto
@ 2020-07-22 10:30 ` motorto
  2020-07-22 11:23 ` sgn
                   ` (20 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-07-22 10:30 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662343500

Comment:
Oh uau thanks for it , I still have a lot to learn when it comes to this. Can you commit or you want me to do it ?

Edit:
`=> ERROR: xbps-src: unexistent file: /void-packages/srcpkgs/pari-devel/template
`

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (14 preceding siblings ...)
  2020-07-22 10:30 ` motorto
@ 2020-07-22 11:23 ` sgn
  2020-07-22 11:34 ` sgn
                   ` (19 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: sgn @ 2020-07-22 11:23 UTC (permalink / raw)
  To: ml

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

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662398389

Comment:
On 2020-07-22 02:19:17-0700, André Cerqueira <notifications@github.com> wrote:
> Oh uau thanks for it , I still have a lot to learn when it comes to
> this. Can you commit or you want me to do it ?

I need someone, probably you, tests the binary,
I don't use the package myself.

-- 
Danh


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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (15 preceding siblings ...)
  2020-07-22 11:23 ` sgn
@ 2020-07-22 11:34 ` sgn
  2020-07-22 11:55 ` motorto
                   ` (18 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: sgn @ 2020-07-22 11:34 UTC (permalink / raw)
  To: ml

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

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662402899

Comment:
This is the latest update https://github.com/sgn/void-packages/commit/1e2f6bf9f383a3c86b83505f0e9b4cb09868ee9a

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (16 preceding siblings ...)
  2020-07-22 11:34 ` sgn
@ 2020-07-22 11:55 ` motorto
  2020-07-22 12:25 ` sgn
                   ` (17 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-07-22 11:55 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662410807

Comment:
I can definitly try the binary for you ! How can I clone your commit into my machine in order to try it ? 

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (17 preceding siblings ...)
  2020-07-22 11:55 ` motorto
@ 2020-07-22 12:25 ` sgn
  2020-07-22 13:28 ` motorto
                   ` (16 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: sgn @ 2020-07-22 12:25 UTC (permalink / raw)
  To: ml

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

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662423038

Comment:
Inside your clone of void-packages:
```sh
curl -L https://github.com/sgn/void-packages/commit/1e2f6bf9f383a3c86b83505f0e9b4cb09868ee9a.patch |
git am
```

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (18 preceding siblings ...)
  2020-07-22 12:25 ` sgn
@ 2020-07-22 13:28 ` motorto
  2020-07-22 13:49 ` sgn
                   ` (15 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-07-22 13:28 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662452842

Comment:
Thanks, It seems to be working ! But when compiling the package it gives me this warning.

`=> WARNING: pari-2.11.4_1: libpari-gmp.so.6 not found in common/shlibs!`

I don't know if is something you want to know !

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (19 preceding siblings ...)
  2020-07-22 13:28 ` motorto
@ 2020-07-22 13:49 ` sgn
  2020-07-22 13:49 ` [ISSUE] [CLOSED] " sgn
                   ` (14 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: sgn @ 2020-07-22 13:49 UTC (permalink / raw)
  To: ml

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

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-662464582

Comment:
https://github.com/void-linux/void-packages/commit/121b353b59fde7d7438066e6f7cfac749c337b01

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

* Re: [ISSUE] [CLOSED] Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (20 preceding siblings ...)
  2020-07-22 13:49 ` sgn
@ 2020-07-22 13:49 ` sgn
  2020-08-19  8:56 ` dkwo
                   ` (13 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: sgn @ 2020-07-22 13:49 UTC (permalink / raw)
  To: ml

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

Closed issue by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692

Description:
Source: https://pari.math.u-bordeaux.fr/
License: GPL

PARI/GP is a widely used computer algebra system designed for fast computations in number theory

EDIT:

I started trying to package it myself but I am having some trouble with the checksum , I download the tar.xz and did 

> tar xf <tarball.ext> --to-stdout | sha256sum

But when running I get an error that it can't configure checksum of distfiles, my package template at the moment looks like this: 

```
# Template file for 'pari-gp'
pkgname=pari-gp
version=2.11.4
revision=1
archs="*"
#wrksrc=
#create_wrksrc=yes
build_style=gnu-configure
#configure_args=""
#make_build_args=""
#make_install_args=""
#conf_files=""
#make_dirs="/var/log/dir 0755 root root"
hostmakedepends=""
makedepends=""
depends=""
short_desc="PARI/GP is a widely used computer algebra system designed for fast computations in number theory"
maintainer="André Cerqueira <acerqueira021@gmai.com>"
license="GPL-3.0-or-later"
homepage="https://pari.math.u-bordeaux.fr"
distfiles="https://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.11.4.tar.gz"
checksum=8f8b4cf6c3af54f74bb3e42929bc195d68563f353bba2a4e6f9c7fc096407a83
```
Any help is welcomed even if its not a positive one !

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (21 preceding siblings ...)
  2020-07-22 13:49 ` [ISSUE] [CLOSED] " sgn
@ 2020-08-19  8:56 ` dkwo
  2020-08-19  9:26 ` motorto
                   ` (12 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: dkwo @ 2020-08-19  8:56 UTC (permalink / raw)
  To: ml

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

New comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-675978684

Comment:
Is it possible to add certain extensions to pari?
When trying to build SageMath, I get that it is not possible to use pari from system package because it misses pari_elldata, pari_galdata, pari_galpol, pari_seadata. (This in turn forbids to use giac from system.)

```
## ----------------------------------------------------- ##
## Checking whether SageMath should install SPKG pari... ##
## ----------------------------------------------------- ##
configure:17312: checking whether any of gmp mpir readline is installed as or will be installed as SPKG
configure:17321: result: no
configure:17326: checking for gp
configure:17344: found /bin/gp
configure:17356: result: /bin/gp
configure:17370: checking for gphelp
configure:17388: found /bin/gphelp
configure:17400: result: /bin/gphelp
configure:17417: checking whether gphelp has access to the documentation
configure:17420: result: yes
configure:17432: checking is pari_elldata installed?
  ***   at top-level: r=ellinit("11a1");r[11]
  ***                   ^---------------------
  *** ellinit: error opening elldata file: `/usr/share/pari/elldata/ell0'.
configure:17439: result: no; cannot use system pari/GP without elldata package
configure:17441: Install elldata package and reconfigure.
configure:17443: Otherwise Sage will build its own pari/GP.
configure:17447: checking is pari_galdata installed?
  ***   at top-level: polgalois(x^8-2)[1]
  ***                 ^-------------------
  *** polgalois: error opening galois file: `/usr/share/pari/galdata/COS8_50_47'.
configure:17454: result: no; cannot use system pari/GP without galdata package
configure:17456: Install galdata package and reconfigure.
configure:17458: Otherwise Sage will build its own pari/GP.
configure:17462: checking is pari_galpol installed?
  ***   at top-level: galoisgetname(12,1)=="C3 : C4"
  ***                 ^------------------------------
  *** galoisgetname: error opening galpol file: `/usr/share/pari/galpol/12/nb'.
configure:17469: result: no; cannot use system pari/GP without galpol package
configure:17471: Install galpol package and reconfigure.
configure:17473: Otherwise Sage will build its own pari/GP.
configure:17477: checking is pari_seadata installed?
  ***   at top-level: poldegree(ellmodulareqn(211)[1])
  ***                           ^----------------------
  *** ellmodulareqn: error opening seadata file: `/usr/share/pari/seadata/sea211'.
configure:17484: result: no; cannot use system pari/GP without seadata package
configure:17486: Install seadata package and reconfigure.
configure:17488: Otherwise Sage will build its own pari/GP.
configure:17492: checking whether hyperellcharpoly bug is fixed
configure:17497: result: yes
configure:17508: checking whether bnfisunit bug of pari 2.11.3 is fixed
configure:17513: result: yes
configure:17750: no suitable system package found for SPKG pari 
```

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (22 preceding siblings ...)
  2020-08-19  8:56 ` dkwo
@ 2020-08-19  9:26 ` motorto
  2020-08-19  9:46 ` dkwo
                   ` (11 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-08-19  9:26 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-676023096

Comment:
@dkwo  what if you build sagemath first ? 

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (23 preceding siblings ...)
  2020-08-19  9:26 ` motorto
@ 2020-08-19  9:46 ` dkwo
  2020-08-19  9:53 ` motorto
                   ` (10 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: dkwo @ 2020-08-19  9:46 UTC (permalink / raw)
  To: ml

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

New comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-676050841

Comment:
Well, that's the idea :)
Right now it fails building giac (hence the need for pari).
The more I can use from system, the better.

On 8/19/20 11:27 AM, André Cerqueira wrote:
> @dkwo <https://github.com/dkwo> what if you build sagemath first ?
> 


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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (24 preceding siblings ...)
  2020-08-19  9:46 ` dkwo
@ 2020-08-19  9:53 ` motorto
  2020-08-19 10:19 ` dkwo
                   ` (9 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-08-19  9:53 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-676057033

Comment:
Oh I got the message wrong you are trying to build sagemath , but it needs pari is that correct ? 

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (25 preceding siblings ...)
  2020-08-19  9:53 ` motorto
@ 2020-08-19 10:19 ` dkwo
  2020-08-19 12:15 ` motorto
                   ` (8 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: dkwo @ 2020-08-19 10:19 UTC (permalink / raw)
  To: ml

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

New comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-676092961

Comment:
That is correct: it can either take pari from system or build it, but 
the latter is cumbersome/redundant and I'd like to avoid it.

I'm told that these missing pari/gp parts are just data, easy to package.


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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (26 preceding siblings ...)
  2020-08-19 10:19 ` dkwo
@ 2020-08-19 12:15 ` motorto
  2020-08-19 12:36 ` dkwo
                   ` (7 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-08-19 12:15 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-676252746

Comment:
Yeah probably by creating a subpackage pari-extra or something ...

@sgn Could you do it ? If no can I modify your template ? 

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (27 preceding siblings ...)
  2020-08-19 12:15 ` motorto
@ 2020-08-19 12:36 ` dkwo
  2020-08-19 12:37 ` dkwo
                   ` (6 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: dkwo @ 2020-08-19 12:36 UTC (permalink / raw)
  To: ml

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

New comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-676050841

Comment:
Well, that's the idea :)
Right now it fails building giac (hence the need for pari).
The more I can use from system, the better.

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (28 preceding siblings ...)
  2020-08-19 12:36 ` dkwo
@ 2020-08-19 12:37 ` dkwo
  2020-08-19 13:18 ` sgn
                   ` (5 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: dkwo @ 2020-08-19 12:37 UTC (permalink / raw)
  To: ml

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

New comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-676092961

Comment:
That is correct: it can either take pari from system or build it, but the latter is cumbersome/redundant and I'd like to avoid it.

I'm told that these missing pari/gp parts are just data, easy to package.

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (29 preceding siblings ...)
  2020-08-19 12:37 ` dkwo
@ 2020-08-19 13:18 ` sgn
  2020-08-19 13:54 ` motorto
                   ` (4 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: sgn @ 2020-08-19 13:18 UTC (permalink / raw)
  To: ml

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

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-676343494

Comment:
Please go ahead, I'm not using it anyway.

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (30 preceding siblings ...)
  2020-08-19 13:18 ` sgn
@ 2020-08-19 13:54 ` motorto
  2020-08-19 14:18 ` dkwo
                   ` (3 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-08-19 13:54 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-676396589

Comment:
Ok I am going to try that tonight ! 

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (31 preceding siblings ...)
  2020-08-19 13:54 ` motorto
@ 2020-08-19 14:18 ` dkwo
  2020-08-19 19:54 ` motorto
                   ` (2 subsequent siblings)
  35 siblings, 0 replies; 37+ messages in thread
From: dkwo @ 2020-08-19 14:18 UTC (permalink / raw)
  To: ml

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

New comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-676433662

Comment:
Thanks.
Looking at Arch Linux corresponding packages can help.


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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (32 preceding siblings ...)
  2020-08-19 14:18 ` dkwo
@ 2020-08-19 19:54 ` motorto
  2020-08-19 21:03 ` motorto
  2020-08-20  7:59 ` dkwo
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-08-19 19:54 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-676629002

Comment:
@dkwo hey quick question ! Do you have a preference if I create seadata with seadata-big or do you want a separate package for each (big and small)

https://pari.math.u-bordeaux.fr/packages.html

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (33 preceding siblings ...)
  2020-08-19 19:54 ` motorto
@ 2020-08-19 21:03 ` motorto
  2020-08-20  7:59 ` dkwo
  35 siblings, 0 replies; 37+ messages in thread
From: motorto @ 2020-08-19 21:03 UTC (permalink / raw)
  To: ml

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

New comment by motorto on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-676629002

Comment:
@dkwo hey quick question ! Do you have a preference if I create seadata with seadata-big or do you want a separate package for each (big and small)

https://pari.math.u-bordeaux.fr/packages.html

Edit: created one for each 

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

* Re: Package Request/ Help Making Template for PARI/GP
  2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
                   ` (34 preceding siblings ...)
  2020-08-19 21:03 ` motorto
@ 2020-08-20  7:59 ` dkwo
  35 siblings, 0 replies; 37+ messages in thread
From: dkwo @ 2020-08-20  7:59 UTC (permalink / raw)
  To: ml

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

New comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/issues/23692#issuecomment-677441011

Comment:
Thank you.
I think seadata-small should suffice.

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

end of thread, other threads:[~2020-08-20  8:00 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-21 17:14 [ISSUE] Package Request: PARI/GP motorto
2020-07-21 18:28 ` yopito
2020-07-21 18:58 ` motorto
2020-07-21 20:08 ` motorto
2020-07-21 20:09 ` motorto
2020-07-21 20:09 ` motorto
2020-07-21 20:09 ` motorto
2020-07-21 20:10 ` motorto
2020-07-21 20:25 ` motorto
2020-07-21 20:58 ` Package Request/ Help Making Template for PARI/GP motorto
2020-07-21 21:44 ` motorto
2020-07-21 21:50 ` motorto
2020-07-21 21:51 ` motorto
2020-07-22  0:39 ` sgn
2020-07-22  9:19 ` motorto
2020-07-22 10:30 ` motorto
2020-07-22 11:23 ` sgn
2020-07-22 11:34 ` sgn
2020-07-22 11:55 ` motorto
2020-07-22 12:25 ` sgn
2020-07-22 13:28 ` motorto
2020-07-22 13:49 ` sgn
2020-07-22 13:49 ` [ISSUE] [CLOSED] " sgn
2020-08-19  8:56 ` dkwo
2020-08-19  9:26 ` motorto
2020-08-19  9:46 ` dkwo
2020-08-19  9:53 ` motorto
2020-08-19 10:19 ` dkwo
2020-08-19 12:15 ` motorto
2020-08-19 12:36 ` dkwo
2020-08-19 12:37 ` dkwo
2020-08-19 13:18 ` sgn
2020-08-19 13:54 ` motorto
2020-08-19 14:18 ` dkwo
2020-08-19 19:54 ` motorto
2020-08-19 21:03 ` motorto
2020-08-20  7:59 ` dkwo

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