Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: ngspice-bin-32
@ 2020-06-01 14:02 mamins1376
  2020-06-01 14:24 ` abenson
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: mamins1376 @ 2020-06-01 14:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mamins1376/void-packages new/ngs-bin
https://github.com/void-linux/void-packages/pull/22496

New package: ngspice-bin-32
`ngspice` package itself only contains shared library version, and doesn't provide a way to execute ngspice scripts. This package compiles ngspice without `--with-ngshared` flag and contains only binary and it's manpage.

Original `ngspice` package is neither a dependency of this nor conflicts with.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-new/ngs-bin-22496.patch --]
[-- Type: text/x-diff, Size: 1482 bytes --]

From 7a7b6faa467899e44416bafbb64d43690306fb00 Mon Sep 17 00:00:00 2001
From: Mohammad Amin Sameti <mamins1376@gmail.com>
Date: Mon, 1 Jun 2020 18:20:48 +0430
Subject: [PATCH] New package: ngspice-bin-32

---
 srcpkgs/ngspice-bin/template | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 srcpkgs/ngspice-bin/template

diff --git a/srcpkgs/ngspice-bin/template b/srcpkgs/ngspice-bin/template
new file mode 100644
index 00000000000..9ab4413b941
--- /dev/null
+++ b/srcpkgs/ngspice-bin/template
@@ -0,0 +1,24 @@
+# Template file for 'ngspice-bin'
+pkgname=ngspice-bin
+version=32
+revision=1
+wrksrc=ngspice-${version}
+build_style=gnu-configure
+configure_args="--with-readline=yes --with-fftw3=yes --enable-xspice --enable-cider --disable-debug"
+hostmakedepends="bison byacc"
+makedepends="readline-devel libX11-devel libXaw-devel fftw-devel"
+short_desc="Mixed Mode Mixed Level Circuit Simulator based on Spice3F5 - executable binary"
+maintainer="Mohammad Amin Sameti <mamins1376@gmail.com>"
+license="BSD-3-Clause"
+homepage="http://ngspice.sourceforge.net"
+distfiles="${SOURCEFORGE_SITE}/ngspice/ng-spice-rework/${version}/ngspice-${version}.tar.gz"
+checksum=3cd90c4e94516d87c5b4d02a3a6405b1136b25d05c871d4fee1fd7c4c0d03ef2
+
+post_install() {
+	rm -f "${DESTDIR}/usr/bin/cmpp"
+	rm -f "${DESTDIR}/usr/share/man/man1/cmpp.1"
+
+	rm -rf "${DESTDIR}/usr/include"
+	rm -rf "${DESTDIR}/usr/lib/ngspice"
+	rm -rf "${DESTDIR}/usr/share/ngspice"
+}

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

* Re: New package: ngspice-bin-32
  2020-06-01 14:02 [PR PATCH] New package: ngspice-bin-32 mamins1376
@ 2020-06-01 14:24 ` abenson
  2020-06-01 14:56 ` ericonr
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: abenson @ 2020-06-01 14:24 UTC (permalink / raw)
  To: ml

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

New comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/22496#issuecomment-636890604

Comment:
Is there a way to get the other ngspice package to build both the executable and the shared libraries?

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

* Re: New package: ngspice-bin-32
  2020-06-01 14:02 [PR PATCH] New package: ngspice-bin-32 mamins1376
  2020-06-01 14:24 ` abenson
@ 2020-06-01 14:56 ` ericonr
  2020-06-01 15:10 ` ericonr
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: ericonr @ 2020-06-01 14:56 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/22496#issuecomment-636906690

Comment:
We might be missing some other `--with` flag to get binaries as well. I'd prefer if this went into the `ngspice` package. Since you are deleting the includes and library files, it should be possible to update the current template to include everything.

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

* Re: New package: ngspice-bin-32
  2020-06-01 14:02 [PR PATCH] New package: ngspice-bin-32 mamins1376
  2020-06-01 14:24 ` abenson
  2020-06-01 14:56 ` ericonr
@ 2020-06-01 15:10 ` ericonr
  2020-06-01 15:19 ` ericonr
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: ericonr @ 2020-06-01 15:10 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/22496#issuecomment-636906690

Comment:
We might be missing some other `--with` flag to get binaries as well. I'd prefer if this went into the `ngspice` package. Since you are deleting the includes and library files, it should be possible to update the current template to include everything.

Also, the name `-bin` tends to indicate a pre-built package, which isn't the case here.

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

* Re: New package: ngspice-bin-32
  2020-06-01 14:02 [PR PATCH] New package: ngspice-bin-32 mamins1376
                   ` (2 preceding siblings ...)
  2020-06-01 15:10 ` ericonr
@ 2020-06-01 15:19 ` ericonr
  2020-06-01 15:23 ` ericonr
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: ericonr @ 2020-06-01 15:19 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/22496#issuecomment-636918983

Comment:
From the config step of the current template:

```
No X display!
ngnutmeg ngsconvert ngproc2mod ngmultidec ngmakeidx nghelp are not made.
```

Further changes to the template that I'd make would be `--enable-openmp`.

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

* Re: New package: ngspice-bin-32
  2020-06-01 14:02 [PR PATCH] New package: ngspice-bin-32 mamins1376
                   ` (3 preceding siblings ...)
  2020-06-01 15:19 ` ericonr
@ 2020-06-01 15:23 ` ericonr
  2020-06-01 16:06 ` abenson
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: ericonr @ 2020-06-01 15:23 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/22496#issuecomment-636918983

Comment:
From the config step of the current template:

```
No X display!
ngnutmeg ngsconvert ngproc2mod ngmultidec ngmakeidx nghelp are not made.
```

Further changes to the template that I'd make would be `--enable-openmp`. And I would package the docs too (I think I will do that, if you don't want to).

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

* Re: New package: ngspice-bin-32
  2020-06-01 14:02 [PR PATCH] New package: ngspice-bin-32 mamins1376
                   ` (4 preceding siblings ...)
  2020-06-01 15:23 ` ericonr
@ 2020-06-01 16:06 ` abenson
  2020-06-01 16:15 ` abenson
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: abenson @ 2020-06-01 16:06 UTC (permalink / raw)
  To: ml

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

New comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/22496#issuecomment-636948913

Comment:
From the `INSTALL` document:

    --with-ngshared
            This option let you compile ngspice as a shared
            library or dll, allowing an application controlling
            ngspice. This option excludes using --with-x or
            --with-wingui. Useful additional options are
            --enable-xspice --enable-cider --enable-openmp.
            No graphics inetrface is provided, this has to be
            handled by the controlling application.

I'm not sure why these are mutually exclusive.

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

* Re: New package: ngspice-bin-32
  2020-06-01 14:02 [PR PATCH] New package: ngspice-bin-32 mamins1376
                   ` (5 preceding siblings ...)
  2020-06-01 16:06 ` abenson
@ 2020-06-01 16:15 ` abenson
  2020-06-01 16:33 ` [PR PATCH] [Updated] " mamins1376
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: abenson @ 2020-06-01 16:15 UTC (permalink / raw)
  To: ml

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

New comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/22496#issuecomment-636959302

Comment:
As for the executables:

> Four executables (coming with source code) serve as examples for controlling ngspice. These are not meant to be "productive" programs, but just give some commented example usages of the interface.



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

* Re: [PR PATCH] [Updated] New package: ngspice-bin-32
  2020-06-01 14:02 [PR PATCH] New package: ngspice-bin-32 mamins1376
                   ` (6 preceding siblings ...)
  2020-06-01 16:15 ` abenson
@ 2020-06-01 16:33 ` mamins1376
  2020-06-01 17:24 ` mamins1376
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: mamins1376 @ 2020-06-01 16:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mamins1376/void-packages new/ngs-bin
https://github.com/void-linux/void-packages/pull/22496

New package: ngspice-bin-32
`ngspice` package itself only contains shared library version, and doesn't provide a way to execute ngspice scripts. This package compiles ngspice without `--with-ngshared` flag and contains only binary and it's manpage.

Original `ngspice` package is neither a dependency of this nor conflicts with.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-new/ngs-bin-22496.patch --]
[-- Type: text/x-diff, Size: 1498 bytes --]

From 4d9a8a6f0f01220102d8a300865599154d015e2e Mon Sep 17 00:00:00 2001
From: Mohammad Amin Sameti <mamins1376@gmail.com>
Date: Mon, 1 Jun 2020 18:20:48 +0430
Subject: [PATCH] New package: ngspice-bin-32

---
 srcpkgs/ngspice-bin/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/ngspice-bin/template

diff --git a/srcpkgs/ngspice-bin/template b/srcpkgs/ngspice-bin/template
new file mode 100644
index 00000000000..f98008e405e
--- /dev/null
+++ b/srcpkgs/ngspice-bin/template
@@ -0,0 +1,26 @@
+# Template file for 'ngspice-bin'
+pkgname=ngspice-bin
+version=32
+revision=1
+wrksrc=ngspice-${version}
+build_style=gnu-configure
+configure_args="--with-readline=yes --with-fftw3=yes --enable-xspice --enable-cider --disable-debug"
+hostmakedepends="bison byacc"
+makedepends="readline-devel libX11-devel libXaw-devel fftw-devel"
+short_desc="Mixed Mode Mixed Level Circuit Simulator based on Spice3F5 - executable"
+maintainer="Mohammad Amin Sameti <mamins1376@gmail.com>"
+license="BSD-3-Clause"
+homepage="http://ngspice.sourceforge.net"
+distfiles="${SOURCEFORGE_SITE}/ngspice/ng-spice-rework/${version}/ngspice-${version}.tar.gz"
+checksum=3cd90c4e94516d87c5b4d02a3a6405b1136b25d05c871d4fee1fd7c4c0d03ef2
+
+post_install() {
+	rm -f "${DESTDIR}/usr/bin/cmpp"
+	rm -f "${DESTDIR}/usr/share/man/man1/cmpp.1"
+
+	rm -rf "${DESTDIR}/usr/include"
+	rm -rf "${DESTDIR}/usr/lib/ngspice"
+	rm -rf "${DESTDIR}/usr/share/ngspice"
+
+	vlicense COPYING
+}

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

* Re: New package: ngspice-bin-32
  2020-06-01 14:02 [PR PATCH] New package: ngspice-bin-32 mamins1376
                   ` (7 preceding siblings ...)
  2020-06-01 16:33 ` [PR PATCH] [Updated] " mamins1376
@ 2020-06-01 17:24 ` mamins1376
  2020-06-01 17:28 ` mamins1376
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: mamins1376 @ 2020-06-01 17:24 UTC (permalink / raw)
  To: ml

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

New comment by mamins1376 on void-packages repository

https://github.com/void-linux/void-packages/pull/22496#issuecomment-636999702

Comment:
> Further changes to the template that I'd make would be `--enable-openmp`. And I would package the docs too (I think I will do that, if you don't want to).

I tried to do this, but at final linking it goes ```undefined reference to `omp_set_num_threads'```. Tried with both `libgomp` and `libomp`

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

* Re: New package: ngspice-bin-32
  2020-06-01 14:02 [PR PATCH] New package: ngspice-bin-32 mamins1376
                   ` (8 preceding siblings ...)
  2020-06-01 17:24 ` mamins1376
@ 2020-06-01 17:28 ` mamins1376
  2020-06-01 17:33 ` abenson
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: mamins1376 @ 2020-06-01 17:28 UTC (permalink / raw)
  To: ml

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

New comment by mamins1376 on void-packages repository

https://github.com/void-linux/void-packages/pull/22496#issuecomment-637001495

Comment:
> Is there a way to get the other ngspice package to build both the executable and the shared libraries?

One way could be digging into `configure.ac`, figuring out what objects are affected by corresponding flags, and building them twice. Unfortunately I'm no expert at neither autoconf nor xbps-src's multipackaging.

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

* Re: New package: ngspice-bin-32
  2020-06-01 14:02 [PR PATCH] New package: ngspice-bin-32 mamins1376
                   ` (9 preceding siblings ...)
  2020-06-01 17:28 ` mamins1376
@ 2020-06-01 17:33 ` abenson
  2020-06-01 17:35 ` mamins1376
  2020-11-05 12:06 ` [PR PATCH] [Closed]: " mamins1376
  12 siblings, 0 replies; 14+ messages in thread
From: abenson @ 2020-06-01 17:33 UTC (permalink / raw)
  To: ml

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

New comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/22496#issuecomment-637004260

Comment:
`libgomp-devel` in `makedepends`

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

* Re: New package: ngspice-bin-32
  2020-06-01 14:02 [PR PATCH] New package: ngspice-bin-32 mamins1376
                   ` (10 preceding siblings ...)
  2020-06-01 17:33 ` abenson
@ 2020-06-01 17:35 ` mamins1376
  2020-11-05 12:06 ` [PR PATCH] [Closed]: " mamins1376
  12 siblings, 0 replies; 14+ messages in thread
From: mamins1376 @ 2020-06-01 17:35 UTC (permalink / raw)
  To: ml

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

New comment by mamins1376 on void-packages repository

https://github.com/void-linux/void-packages/pull/22496#issuecomment-637004809

Comment:
Is there any way other than that?

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

* Re: [PR PATCH] [Closed]: New package: ngspice-bin-32
  2020-06-01 14:02 [PR PATCH] New package: ngspice-bin-32 mamins1376
                   ` (11 preceding siblings ...)
  2020-06-01 17:35 ` mamins1376
@ 2020-11-05 12:06 ` mamins1376
  12 siblings, 0 replies; 14+ messages in thread
From: mamins1376 @ 2020-11-05 12:06 UTC (permalink / raw)
  To: ml

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

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

New package: ngspice-bin-32
https://github.com/void-linux/void-packages/pull/22496

Description:
`ngspice` package itself only contains shared library version, and doesn't provide a way to execute ngspice scripts. This package compiles ngspice without `--with-ngshared` flag and contains only binary and it's manpage.

Original `ngspice` package is neither a dependency of this nor conflicts with.

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

end of thread, other threads:[~2020-11-05 12:06 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-01 14:02 [PR PATCH] New package: ngspice-bin-32 mamins1376
2020-06-01 14:24 ` abenson
2020-06-01 14:56 ` ericonr
2020-06-01 15:10 ` ericonr
2020-06-01 15:19 ` ericonr
2020-06-01 15:23 ` ericonr
2020-06-01 16:06 ` abenson
2020-06-01 16:15 ` abenson
2020-06-01 16:33 ` [PR PATCH] [Updated] " mamins1376
2020-06-01 17:24 ` mamins1376
2020-06-01 17:28 ` mamins1376
2020-06-01 17:33 ` abenson
2020-06-01 17:35 ` mamins1376
2020-11-05 12:06 ` [PR PATCH] [Closed]: " mamins1376

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