From: nonchip <nonchip@users.noreply.github.com> To: ml@inbox.vuxu.org Subject: Re: [PR PATCH] [Updated] yosys: update to 0.17. Date: Sun, 15 May 2022 18:26:29 +0200 [thread overview] Message-ID: <20220515162629.tVvrVBB864L4U11tqZ66K9A30qYLnxDpet9Upu6-CXY@z> (raw) In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-37089@inbox.vuxu.org> [-- Attachment #1: Type: text/plain, Size: 478 bytes --] There is an updated pull request by nonchip against master on the void-packages repository https://github.com/nonchip/void-packages yosys https://github.com/void-linux/void-packages/pull/37089 yosys: update to 0.17. #### Testing the changes - I tested the changes in this PR: **YES** #### Local build testing - I built this PR locally for my native architecture, `x86_64-glibc` A patch file from https://github.com/void-linux/void-packages/pull/37089.patch is attached [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #2: github-pr-yosys-37089.patch --] [-- Type: text/x-diff, Size: 2843 bytes --] From 972b1f197b6d4c72e12bf937731d9eb4e8455783 Mon Sep 17 00:00:00 2001 From: Kyra Zimmer <me@nonchip.de> Date: Thu, 12 May 2022 08:23:19 +0200 Subject: [PATCH] yosys: update to 0.17. --- ...0010-Fix-adding-of-sys.path-in-yosys-smtbmc.patch | 8 ++++---- srcpkgs/yosys/template | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/srcpkgs/yosys/patches/debian_patches_0010-Fix-adding-of-sys.path-in-yosys-smtbmc.patch b/srcpkgs/yosys/patches/debian_patches_0010-Fix-adding-of-sys.path-in-yosys-smtbmc.patch index 6c0758083bfa..5698b0e4555e 100644 --- a/srcpkgs/yosys/patches/debian_patches_0010-Fix-adding-of-sys.path-in-yosys-smtbmc.patch +++ b/srcpkgs/yosys/patches/debian_patches_0010-Fix-adding-of-sys.path-in-yosys-smtbmc.patch @@ -11,11 +11,11 @@ index 92941d4..2c0b7c6 100644 --- a/backends/smt2/Makefile.inc +++ b/backends/smt2/Makefile.inc @@ -22,7 +22,7 @@ else - TARGETS += yosys-smtbmc + TARGETS += $(PROGRAM_PREFIX)yosys-smtbmc - yosys-smtbmc: backends/smt2/smtbmc.py -- $(P) sed 's|##yosys-sys-path##|sys.path += [os.path.dirname(os.path.realpath(__file__)) + p for p in ["/share/python3", "/../share/yosys/python3"]]|;' < $< > $@.new -+ $(P) sed 's|##yosys-sys-path##|sys.path += ["/usr/share/yosys"]|;' < $< > $@.new + $(PROGRAM_PREFIX)yosys-smtbmc: backends/smt2/smtbmc.py +- $(P) sed 's|##yosys-sys-path##|sys.path += [os.path.dirname(os.path.realpath(__file__)) + p for p in ["/share/python3", "/../share/$(PROGRAM_PREFIX)yosys/python3"]]|;' < $< > $@.new ++ $(P) sed 's|##yosys-sys-path##|sys.path += ["/usr/share/$(PROGRAM_PREFIX)yosys"]|;' < $< > $@.new $(Q) chmod +x $@.new $(Q) mv $@.new $@ endif diff --git a/srcpkgs/yosys/template b/srcpkgs/yosys/template index 72e7da38f402..53093507a511 100644 --- a/srcpkgs/yosys/template +++ b/srcpkgs/yosys/template @@ -1,21 +1,21 @@ # Template file for 'yosys' pkgname=yosys # Remember to correct _gitrev on updating -_gitrev=1979e0b -version=0.9 -revision=3 +_gitrev=6f9602b +version=0.17 +revision=1 wrksrc=${pkgname}-${pkgname}-${version} build_style=gnu-makefile make_use_env=yes hostmakedepends="python3 bison flex pkg-config tcl" -makedepends="tcl-devel readline-devel libffi-devel" -depends="graphviz xdot berkeley-abc" +makedepends="tcl-devel readline-devel libffi-devel zlib-devel" +depends="graphviz xdot berkeley-abc zlib" short_desc="Verilog RTL Synthesis Suite" maintainer="Jasper Chan <jasperchan515@gmail.com>" license="ISC, MIT" homepage="http://www.clifford.at/yosys/about.html" distfiles="https://github.com/cliffordwolf/yosys/archive/yosys-${version}.tar.gz" -checksum=f2e31371f9cf1b36cb4f57b23fd6eb849adc7d935dcf49f3c905aa5136382c2f +checksum=37db450d08884a7c411f44ddf639284967ed1a39e11cd6b78d816186113d0173 post_patch() { vsed -i -e 's,-I[$](PREFIX)/include,,' \
next prev parent reply other threads:[~2022-05-15 16:26 UTC|newest] Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-05-12 6:20 [PR PATCH] " nonchip 2022-05-12 6:24 ` [PR PATCH] [Updated] " nonchip 2022-05-13 19:18 ` paper42 2022-05-15 16:26 ` nonchip [this message] 2022-05-15 16:27 ` nonchip 2022-06-30 18:00 ` Duncaen
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=20220515162629.tVvrVBB864L4U11tqZ66K9A30qYLnxDpet9Upu6-CXY@z \ --to=nonchip@users.noreply.github.com \ --cc=ml@inbox.vuxu.org \ --subject='Re: [PR PATCH] [Updated] yosys: update to 0.17.' \ /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
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).