pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/nextpnr
Module Name: pkgsrc
Committed By: adam
Date: Sun Apr 21 16:28:25 UTC 2024
Modified Files:
pkgsrc/devel/nextpnr: distinfo nextpnr.mk
pkgsrc/devel/nextpnr/patches: patch-common_kernel_command.cc
Added Files:
pkgsrc/devel/nextpnr/patches: patch-bba_main.cc
Log Message:
nextpnr: fix build with newer boost
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/nextpnr/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/nextpnr/nextpnr.mk
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/nextpnr/patches/patch-bba_main.cc
cvs rdiff -u -r1.2 -r1.3 \
pkgsrc/devel/nextpnr/patches/patch-common_kernel_command.cc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/nextpnr/distinfo
diff -u pkgsrc/devel/nextpnr/distinfo:1.2 pkgsrc/devel/nextpnr/distinfo:1.3
--- pkgsrc/devel/nextpnr/distinfo:1.2 Sat Mar 2 23:07:59 2024
+++ pkgsrc/devel/nextpnr/distinfo Sun Apr 21 16:28:25 2024
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.2 2024/03/02 23:07:59 thorpej Exp $
+$NetBSD: distinfo,v 1.3 2024/04/21 16:28:25 adam Exp $
BLAKE2s (nextpnr-0.7.tar.gz) = 27dfd76a6c8bc84b3178083a1b21bf4d542387a29ebaf533553121ac6c31a486
SHA512 (nextpnr-0.7.tar.gz) = feb190d3a656c7bcdd2bcc1def9972e2c9bec7171a064308b16260240ce9f552eb03d907ef7d032a17ae7ef7e869950e7399c61df22ba36484a4cf2ef7ce7de2
Size (nextpnr-0.7.tar.gz) = 4711765 bytes
-SHA1 (patch-common_kernel_command.cc) = 48c0536839f18583d7be190c16a97d6537d80172
+SHA1 (patch-bba_main.cc) = e3713835b14ac9155d0465d8102636ac02fa7c16
+SHA1 (patch-common_kernel_command.cc) = bbb8e02cf0d79092d4517bf492fc1d91ea7e3ad6
Index: pkgsrc/devel/nextpnr/nextpnr.mk
diff -u pkgsrc/devel/nextpnr/nextpnr.mk:1.3 pkgsrc/devel/nextpnr/nextpnr.mk:1.4
--- pkgsrc/devel/nextpnr/nextpnr.mk:1.3 Sat Mar 2 23:07:59 2024
+++ pkgsrc/devel/nextpnr/nextpnr.mk Sun Apr 21 16:28:25 2024
@@ -1,4 +1,4 @@
-# $NetBSD: nextpnr.mk,v 1.3 2024/03/02 23:07:59 thorpej Exp $
+# $NetBSD: nextpnr.mk,v 1.4 2024/04/21 16:28:25 adam Exp $
NEXTPNR_VERSION=0.7
DISTNAME= nextpnr-${NEXTPNR_VERSION}
@@ -9,7 +9,7 @@ GITHUB_PROJECT= nextpnr
GITHUB_TAG= ${DISTNAME}
WRKSRC= ${WRKDIR}/nextpnr-${DISTNAME}
-PKGREVISION?= 1
+PKGREVISION?= 2
MAINTAINER?= thorpej%NetBSD.org@localhost
HOMEPAGE= https://github.com/YosysHQ/nextpnr
Index: pkgsrc/devel/nextpnr/patches/patch-common_kernel_command.cc
diff -u pkgsrc/devel/nextpnr/patches/patch-common_kernel_command.cc:1.2 pkgsrc/devel/nextpnr/patches/patch-common_kernel_command.cc:1.3
--- pkgsrc/devel/nextpnr/patches/patch-common_kernel_command.cc:1.2 Sat Mar 2 23:08:00 2024
+++ pkgsrc/devel/nextpnr/patches/patch-common_kernel_command.cc Sun Apr 21 16:28:25 2024
@@ -1,9 +1,19 @@
-$NetBSD: patch-common_kernel_command.cc,v 1.2 2024/03/02 23:08:00 thorpej Exp $
+$NetBSD: patch-common_kernel_command.cc,v 1.3 2024/04/21 16:28:25 adam Exp $
+Fix build with newer boost.
On NetBSD, also use KERN_PROC_PATHNAME to get the path to the executable.
--- common/kernel/command.cc.orig 2024-01-23 13:00:29.000000000 +0000
-+++ common/kernel/command.cc 2024-03-02 22:33:39.900391210 +0000
++++ common/kernel/command.cc
+@@ -29,7 +29,7 @@
+
+ #include <boost/algorithm/string.hpp>
+ #include <boost/algorithm/string/join.hpp>
+-#include <boost/filesystem/convenience.hpp>
++#include <boost/filesystem/path.hpp>
+ #include <boost/program_options.hpp>
+ #include <fstream>
+ #include <iostream>
@@ -61,7 +61,7 @@
#include <unistd.h>
#endif
Added files:
Index: pkgsrc/devel/nextpnr/patches/patch-bba_main.cc
diff -u /dev/null pkgsrc/devel/nextpnr/patches/patch-bba_main.cc:1.1
--- /dev/null Sun Apr 21 16:28:25 2024
+++ pkgsrc/devel/nextpnr/patches/patch-bba_main.cc Sun Apr 21 16:28:25 2024
@@ -0,0 +1,15 @@
+$NetBSD: patch-bba_main.cc,v 1.1 2024/04/21 16:28:25 adam Exp $
+
+Fix build with newer boost.
+
+--- bba/main.cc.orig 2024-04-21 16:11:14.140919358 +0000
++++ bba/main.cc
+@@ -19,7 +19,7 @@
+ */
+
+ #include <assert.h>
+-#include <boost/filesystem/convenience.hpp>
++#include <boost/filesystem/path.hpp>
+ #include <boost/program_options.hpp>
+ #include <iostream>
+ #include <map>
Home |
Main Index |
Thread Index |
Old Index