Package Details: nng-git v1.3.0-1

Git Clone URL: https://aur.archlinux.org/nng-git.git (read-only, click to copy)
Package Base: nng-git
Description: Rewrite of the SP protocol library known as libnanomsg
Upstream URL: https://nanomsg.github.io/nng/
Licenses: MIT
Conflicts: nng
Provides: nng
Submitter: vbmithr
Maintainer: None
Last Packager: vbmithr
Votes: 0
Popularity: 0.000000
First Submitted: 2018-05-16 17:58 (UTC)
Last Updated: 2020-03-01 12:42 (UTC)

Dependencies (4)

Required by (3)

Sources (1)

Latest Comments

1 2 Next › Last »

vbmithr commented on 2021-01-30 17:58 (UTC)

Use nng. I orphaned this package, I know it does not work

hurufu commented on 2021-01-30 13:05 (UTC)

Hi, package() fails with the following error:

==> Starting package()...
install: cannot stat 'build/tools/nngcat/nngcat': No such file or directory
==> ERROR: A failure occurred in package().
    Aborting..

Can you confirm this? I think a small change may fix it, just replace:

iff --git a/PKGBUILD b/PKGBUILD
index faa3088..be79b91 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -59,7 +59,7 @@ package() {
     install -d "$pkgdir/usr/include" "$pkgdir/usr/lib"
     cp -a include/* "$pkgdir/usr/include"
     cp -a build/libnng* "$pkgdir/usr/lib"
-    install -Dm755 build/tools/nngcat/nngcat "$pkgdir/usr/bin/nngcat"
+    install -Dm755 build/src/tools/nngcat/nngcat "$pkgdir/usr/bin/nngcat"
     install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
     for i in docs/man/*.adoc ; do
         generate_man $i

vbmithr commented on 2020-03-01 12:42 (UTC)

Updated, thanks.

nmset commented on 2020-02-29 21:20 (UTC)

Just built your package. Many files and directories are missing in include/nng/. They can be copied for the source tree, but are not in the package.

vbmithr commented on 2018-07-10 23:46 (UTC)

Fixed, thanks.

MichaelChou commented on 2018-07-06 06:33 (UTC)

In build directory, libs* are symbolic links like this:

libnng.so -> libnng.so.1*
libnng.so.1 -> libnng.so.1.0.0*
libnng.so.1.0.0*

But the way of copying them in the package section of PKGBUILD makes 3 copies of the libs (not keeping the symbolic links), which is not the best. ldconfig complains about this as well when installing the built package.

vbmithr commented on 2018-07-05 07:31 (UTC)

Updated, thanks.

diraimondo commented on 2018-07-04 10:41 (UTC)

Maybe something has changed in the git tree after the release but I was not able to build the AUR package. It looks that in my system the 'build' subdir was missing on the build attempt. In order to get the package I had to add a mkdir in the prepare() step.

diraimondo commented on 2018-07-04 10:33 (UTC)

the first stable version 1.0 has been release, what about creating another AUR for the non-git version?

Thanks

vbmithr commented on 2018-06-04 09:18 (UTC)

I have updated the PKGBUILD. Hopefully the pkgver field will not change anymore. Thanks.