From d6fd09596bef8a4e96bdfdddbef71f98a1720974 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Fri, 29 Jun 2018 09:59:17 +0200 Subject: [PATCH 01/42] Rebuilt for Python 3.7 --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index d546c54..aebd1b3 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2018.06 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs Group: Development/Tools @@ -150,6 +150,9 @@ pushd bindings/python/ %endif %changelog +* Fri Jun 29 2018 Miro Hrončok - 2018.06-2 +- Rebuilt for Python 3.7 + * Mon Jun 25 2018 Jiri Kastner - 2018.06-1 - update to 2018.06 From d6af331b8902a78dd6453479fac334929630f026 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 9 Jul 2018 19:06:53 +0200 Subject: [PATCH 02/42] add BuildRequires: gcc Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- urjtag.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/urjtag.spec b/urjtag.spec index aebd1b3..cb9082a 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -26,6 +26,7 @@ Patch0: %{name}-fixarm.patch %global py3_prefix python3 %endif +BuildRequires: gcc BuildRequires: libftdi-devel BuildRequires: swig BuildRequires: %{py2_prefix}-devel From b650266bc6a6a3df34e59e130b7a4178ff7f4ffb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 08:19:02 +0000 Subject: [PATCH 03/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index cb9082a..5f381c8 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2018.06 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs Group: Development/Tools @@ -151,6 +151,9 @@ pushd bindings/python/ %endif %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 2018.06-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Jun 29 2018 Miro Hrončok - 2018.06-2 - Rebuilt for Python 3.7 From 5df97148a5b3f0d63303b66ca03f5072afe409f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 12 Nov 2018 17:53:23 +0100 Subject: [PATCH 04/42] Remove python2 subpackage (#1628187) --- urjtag.spec | 51 ++++----------------------------------------------- 1 file changed, 4 insertions(+), 47 deletions(-) diff --git a/urjtag.spec b/urjtag.spec index 5f381c8..22400dd 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2018.06 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs Group: Development/Tools @@ -15,28 +15,16 @@ URL: http://urjtag.org Source0: %{name}-%{version}.tar.xz Patch0: %{name}-fixarm.patch - -%if 0%{?rhel} || 0%{?centos} -%global py2_prefix python -%else -%global py2_prefix python2 -%endif - -%if 0%{?with_python3} %global py3_prefix python3 -%endif BuildRequires: gcc BuildRequires: libftdi-devel BuildRequires: swig -BuildRequires: %{py2_prefix}-devel -%if 0%{?with_python3} %if 0%{?rhel} || 0%{?centos} BuildRequires: %{py3_prefix}4-devel %else BuildRequires: %{py3_prefix}-devel %endif -%endif BuildRequires: bison BuildRequires: flex @@ -54,38 +42,18 @@ Requires: %{name} = %{version}-%{release} The %{name}-devel package contains libraries and header files for developing applications that use %{name}. -%package -n %{py2_prefix}-%{name} -%{?python_provide:%python_provide %{py2_prefix}-%{name}} -# Remove before F30 -Provides: %{name}-python = %{version}-%{release} -Provides: %{name}-python%{?_isa} = %{version}-%{release} -Obsoletes: %{name}-python < %{version}-%{release} -Summary: Python bindings for %{name} -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} - -%if 0%{?with_python3} %package -n %{py3_prefix}-%{name} %if 0%{?rhel} || 0%{?centos} Provides: python3-%{name} %else %{?python_provide:%python_provide %{py3_prefix}-%{name}} %endif -# Remove before F30 -Provides: %{name}-python%{?_isa} = %{version}-%{release} -Obsoletes: %{name}-python < %{version}-%{release} Summary: Python bindings for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} -%endif -%description -n %{py2_prefix}-%{name} -Python bindings and examples for %{name}. - -%if 0%{?with_python3} %description -n %{py3_prefix}-%{name} Python bindings and examples for %{name}. -%endif %prep %setup -q @@ -96,10 +64,7 @@ Python bindings and examples for %{name}. # V=1: verbose build, disables AM_SILENT_RULES %{__make} %{?_smp_mflags} V=1 pushd bindings/python/ -%py2_build -%if 0%{?with_python3} %py3_build -%endif %install # cd urjtag @@ -108,10 +73,7 @@ rm -f %{buildroot}%{_libdir}/*.la rm -f %{buildroot}%{_libdir}/*.a %find_lang %{name} pushd bindings/python/ -%py2_install -%if 0%{?with_python3} %py3_install -%endif %post -p /sbin/ldconfig @@ -136,21 +98,16 @@ pushd bindings/python/ %{_libdir}/liburjtag.so %{_libdir}/pkgconfig/urjtag.pc -%files -n %{py2_prefix}-%{name} -%{python2_sitearch}/urjtag* -%doc doc/urjtag-python.txt -%doc bindings/python/t_urjtag_chain.py -%doc bindings/python/t_srst.py - -%if 0%{?with_python3} %files -n %{py3_prefix}-%{name} %{python3_sitearch}/urjtag* %doc doc/urjtag-python.txt %doc bindings/python/t_urjtag_chain.py %doc bindings/python/t_srst.py -%endif %changelog +* Mon Nov 12 2018 Miro Hrončok - 2018.06-4 +- Remove python2 subpackage (#1628187) + * Sat Jul 14 2018 Fedora Release Engineering - 2018.06-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 2b05789607f0828fc9ae78359013bf391779f5c0 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 22 Jan 2019 18:41:15 +0100 Subject: [PATCH 05/42] Remove obsolete ldconfig scriptlets References: https://fedoraproject.org/wiki/Changes/RemoveObsoleteScriptlets Signed-off-by: Igor Gnatenko --- urjtag.spec | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/urjtag.spec b/urjtag.spec index 22400dd..f6e2498 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -75,9 +75,7 @@ rm -f %{buildroot}%{_libdir}/*.a pushd bindings/python/ %py3_install -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files -f %{name}.lang %doc README NEWS ChangeLog COPYING AUTHORS From 8c21065f211fc2385874cd091ee1a33b9925a779 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:29 +0100 Subject: [PATCH 06/42] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- urjtag.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/urjtag.spec b/urjtag.spec index f6e2498..90d92f7 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -8,7 +8,6 @@ Name: urjtag Version: 2018.06 Release: 4%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs -Group: Development/Tools License: GPLv2+ URL: http://urjtag.org @@ -34,7 +33,6 @@ over JTAG with flash chips, CPUs, and many more. %package devel Summary: Development files for %{name} -Group: Development/Libraries Requires: %{name} = %{version}-%{release} @@ -49,7 +47,6 @@ Provides: python3-%{name} %{?python_provide:%python_provide %{py3_prefix}-%{name}} %endif Summary: Python bindings for %{name} -Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description -n %{py3_prefix}-%{name} From f8e74905ba7e7e6a288186b5f3bd03d6054a25c7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 10:55:55 +0000 Subject: [PATCH 07/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 90d92f7..fea86f5 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2018.06 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -100,6 +100,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 2018.06-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Mon Nov 12 2018 Miro Hrončok - 2018.06-4 - Remove python2 subpackage (#1628187) From 071a55bf4c970dd6e9e9e63270d569ec64bd55cc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 02:37:41 +0000 Subject: [PATCH 08/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index fea86f5..9d92e4b 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2018.06 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -100,6 +100,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 2018.06-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 03 2019 Fedora Release Engineering - 2018.06-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 6c52884f4db11d4b149d324cca8dc8e20781308f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Wed, 31 Jul 2019 20:54:34 +0200 Subject: [PATCH 09/42] - update to 2018.09 --- .gitignore | 1 + ...guard-against-chain-cable-being-NULL.patch | 48 ------------------- sources | 2 +- urjtag-fixftdi.patch | 16 ------- urjtag.spec | 9 ++-- 5 files changed, 8 insertions(+), 68 deletions(-) delete mode 100644 0001-svf-guard-against-chain-cable-being-NULL.patch delete mode 100644 urjtag-fixftdi.patch diff --git a/.gitignore b/.gitignore index eb31d2b..85c1301 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /urjtag-20171020-git-49a4f5b5.tar.bz2 /urjtag-2017.10.tar.xz /urjtag-2018.06.tar.xz +/urjtag-2018.09.tar.xz diff --git a/0001-svf-guard-against-chain-cable-being-NULL.patch b/0001-svf-guard-against-chain-cable-being-NULL.patch deleted file mode 100644 index dacec66..0000000 --- a/0001-svf-guard-against-chain-cable-being-NULL.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 84eeef108d36c7aa725e6b8098960937c5d1b38e Mon Sep 17 00:00:00 2001 -From: Scott Tsai -Date: Fri, 16 Dec 2011 05:56:39 +0800 -Subject: [PATCH] svf: guard against chain->cable being NULL - -While processing: -cable ft2232 vid=0x0403 pid=0x6011 -bsdl path . -detect -svf ./orpsoc_top.svf stop progress -quit - -If the specified cable isn't present, jtag would SEGFAULT with this backtrace: - #0 urj_tap_cable_get_frequency (cable=0x0) at cable.c:529 - #1 0x00007fefd4f4803a in urj_svf_run (chain=0x20562a0, SVF_FILE=0x20567b0, stop_on_mismatch=1, ref_freq=0) at svf.c:1117 - #2 0x00007fefd4f40681 in cmd_svf_run (chain=0x20562a0, params=0x20565a0) at cmd_svf.c:83 - #3 0x00007fefd4f3e9ad in urj_cmd_run (chain=0x20562a0, params=0x20565a0) at cmd_cmd.c:276 - #4 0x00007fefd4f4438d in urj_parse_line (chain=0x20562a0, line=0x2056520 "svf ./orpsoc_top.svf stop progress") at parse.c:165 - #5 0x00007fefd4f44447 in urj_parse_stream (chain=0x20562a0, f=0x20562e0) at parse.c:207 - #6 0x00007fefd4f4456b in urj_parse_file (chain=0x20562a0, filename=0x7fff90576b92 "./program_fpga.jtag") at parse.c:235 - #7 0x00000000004016c1 in main (argc=2, argv=) at jtag.c:486 - -This patch changes urj_svf_run to guard against chain->cable being NULL. ---- - urjtag/src/svf/svf.c | 7 ++++++- - 1 files changed, 6 insertions(+), 1 deletions(-) - -diff --git a/urjtag/src/svf/svf.c b/urjtag/src/svf/svf.c -index 9552a6d..2282c77 100644 ---- a/urjtag/src/svf/svf.c -+++ b/urjtag/src/svf/svf.c -@@ -1114,7 +1114,12 @@ urj_svf_run (urj_chain_t *chain, FILE *SVF_FILE, int stop_on_mismatch, - urj_svf_parser_priv_t priv; - int c = ~EOF; - int num_lines; -- uint32_t old_frequency = urj_tap_cable_get_frequency (chain->cable); -+ uint32_t old_frequency; -+ -+ if (chain == NULL || chain->cable == NULL) -+ return URJ_STATUS_FAIL; -+ -+ old_frequency = urj_tap_cable_get_frequency (chain->cable); - - /* get number of lines in svf file so we can give user some feedback on long - files or slow cables */ --- -1.7.7.5 - diff --git a/sources b/sources index ec46b98..f44e266 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urjtag-2018.06.tar.xz) = d999d8d84b64e27f978947d8f2b16026bf41080f0fc64ebd775d0933bc3d1745219deca810ca8e4470ade3507f702c44ad2b3d829f6f0804f30f010a6fadb780 +SHA512 (urjtag-2018.09.tar.xz) = e7feafac07f7af2e7af9bdcd457be4ac42bfbe8f5e8edfcd010380f2b0db9378aef48186baaf42f5d6319b83dca9868e74718f99e42019810648aefe48a94c5f diff --git a/urjtag-fixftdi.patch b/urjtag-fixftdi.patch deleted file mode 100644 index 0a1aef8..0000000 --- a/urjtag-fixftdi.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- urjtag-20111215-git-e1a4227/urjtag/configure.ac.orig 2016-12-09 11:56:56.978518212 +0100 -+++ urjtag-20111215-git-e1a4227/urjtag/configure.ac 2016-12-09 11:57:07.681363295 +0100 -@@ -241,10 +241,10 @@ - save_CPPFLAGS=$CPPFLAGS - PKG_CHECK_MODULES(LIBFTDI, libftdi, [:;], [dnl - AS_IF([test "x$with_libftdi" != xyes -a "x$with_libftdi" != xcheck], [ -- LIBFTDI_LIBS="-L$with_libftdi -lftdi" -- LIBFTDI_CFLAGS="-I$with_libftdi" -+ LIBFTDI_LIBS="-L$with_libftdi1 -lftdi1" -+ LIBFTDI_CFLAGS="-I$with_libftdi1" - ],[ -- AC_PATH_TOOL(LIBFTDI_CONFIG, libftdi-config, no) -+ AC_PATH_TOOL(LIBFTDI_CONFIG, libftdi1-config, no) - AS_IF([test "$LIBFTDI_CONFIG" != "no"],[ - LIBFTDI_LIBS=`$LIBFTDI_CONFIG --libs` - LIBFTDI_CFLAGS=`$LIBFTDI_CONFIG --cflags` diff --git a/urjtag.spec b/urjtag.spec index 9d92e4b..24e4488 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -5,13 +5,13 @@ %endif Name: urjtag -Version: 2018.06 -Release: 6%{?dist} +Version: 2018.09 +Release: 1%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ URL: http://urjtag.org -Source0: %{name}-%{version}.tar.xz +Source0: https://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.xz Patch0: %{name}-fixarm.patch %global py3_prefix python3 @@ -100,6 +100,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Wed Jul 31 2019 Dan Horák - 2018.09-1 +- update to 2018.09 + * Sat Jul 27 2019 Fedora Release Engineering - 2018.06-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 094522218435662df2f666b2a806d1dcca8e9c00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 19 Aug 2019 11:08:47 +0200 Subject: [PATCH 10/42] Rebuilt for Python 3.8 --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 24e4488..790fecf 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2018.09 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -100,6 +100,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Mon Aug 19 2019 Miro Hrončok - 2018.09-2 +- Rebuilt for Python 3.8 + * Wed Jul 31 2019 Dan Horák - 2018.09-1 - update to 2018.09 From a24fc9e8e448f539688369e792df4eea75e1eed4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Sat, 21 Dec 2019 22:37:05 +0100 Subject: [PATCH 11/42] - update to 2019.12 --- .gitignore | 1 + sources | 2 +- urjtag.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 85c1301..99486a5 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /urjtag-2017.10.tar.xz /urjtag-2018.06.tar.xz /urjtag-2018.09.tar.xz +/urjtag-2019.12.tar.xz diff --git a/sources b/sources index f44e266..b6aa3c7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urjtag-2018.09.tar.xz) = e7feafac07f7af2e7af9bdcd457be4ac42bfbe8f5e8edfcd010380f2b0db9378aef48186baaf42f5d6319b83dca9868e74718f99e42019810648aefe48a94c5f +SHA512 (urjtag-2019.12.tar.xz) = e149e53410a6591bdadc2c0138c6f81dac0fd6e35601461e19d356decdb820ec8e6bd53d59a1fd9781dfa1fee88d23dcafbd8df9adc0f8e51256c626d2ee0f36 diff --git a/urjtag.spec b/urjtag.spec index 790fecf..8aad7ff 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -5,8 +5,8 @@ %endif Name: urjtag -Version: 2018.09 -Release: 2%{?dist} +Version: 2019.12 +Release: 1%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -100,6 +100,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Sat Dec 21 2019 Dan Horák - 2019.12-1 +- update to 2019.12 + * Mon Aug 19 2019 Miro Hrončok - 2018.09-2 - Rebuilt for Python 3.8 From 00ee56cba5531c27cdfe64d11c893488848dd710 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 02:44:27 +0000 Subject: [PATCH 12/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 8aad7ff..d40b637 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2019.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -100,6 +100,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 2019.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Dec 21 2019 Dan Horák - 2019.12-1 - update to 2019.12 From 130aaccfcd19840e2f7dabdc1bd947d575191172 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Thu, 13 Feb 2020 16:46:12 +0100 Subject: [PATCH 13/42] - fix FTBFS with gcc10 (#1793499) --- urjtag-gcc10.patch | 25 +++++++++++++++++++++++++ urjtag.spec | 7 ++++++- 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 urjtag-gcc10.patch diff --git a/urjtag-gcc10.patch b/urjtag-gcc10.patch new file mode 100644 index 0000000..c9046e6 --- /dev/null +++ b/urjtag-gcc10.patch @@ -0,0 +1,25 @@ +From c6a6b7730e61e00fbaa461e07cee456aff0a6d2b Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Dan=20Hor=C3=A1k?= +Date: Thu, 13 Feb 2020 16:36:44 +0100 +Subject: [PATCH] fix UrjtagError declaration + +--- + urjtag/bindings/python/py_urjtag.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/urjtag/bindings/python/py_urjtag.h b/urjtag/bindings/python/py_urjtag.h +index 38582ebb..16b120d8 100644 +--- a/urjtag/bindings/python/py_urjtag.h ++++ b/urjtag/bindings/python/py_urjtag.h +@@ -35,7 +35,7 @@ struct urj_pyregister + extern PyTypeObject urj_pyregister_Type; + + extern PyObject *urj_py_chkret (int rc); +-PyObject *UrjtagError; ++extern PyObject *UrjtagError; + + extern int urj_pyc_precheck (urj_chain_t *urc, int checks_needed); + #define UPRC_CBL 1 +-- +2.21.1 + diff --git a/urjtag.spec b/urjtag.spec index d40b637..fbef6a7 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,13 +6,14 @@ Name: urjtag Version: 2019.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ URL: http://urjtag.org Source0: https://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.xz Patch0: %{name}-fixarm.patch +Patch1: %{name}-gcc10.patch %global py3_prefix python3 @@ -55,6 +56,7 @@ Python bindings and examples for %{name}. %prep %setup -q %patch0 -p2 -b .armfix +%patch1 -p2 -b .gcc10 %build %configure --enable-jedec-exp --enable-stapl --enable-bsdl --enable-svf --disable-static --enable-shared @@ -100,6 +102,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Thu Feb 13 2020 Dan Horák - 2019.12-3 +- fix FTBFS with gcc10 (#1793499) + * Fri Jan 31 2020 Fedora Release Engineering - 2019.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From da1da58c7c3b3b672642dc3755bd15841e70e418 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 26 May 2020 03:54:06 +0200 Subject: [PATCH 14/42] Rebuilt for Python 3.9 --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index fbef6a7..bc7e0b4 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2019.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -102,6 +102,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Tue May 26 2020 Miro Hrončok - 2019.12-4 +- Rebuilt for Python 3.9 + * Thu Feb 13 2020 Dan Horák - 2019.12-3 - fix FTBFS with gcc10 (#1793499) From 5a82dcd79822b1a7c1b105806ff72ea91d3675e0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 13:23:48 +0000 Subject: [PATCH 15/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index bc7e0b4..91b524e 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2019.12 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -102,6 +102,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 2019.12-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue May 26 2020 Miro Hrončok - 2019.12-4 - Rebuilt for Python 3.9 From 6db5508b251ef1000772e3bed4fd792019708de6 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Sat, 9 Jan 2021 00:27:52 +0000 Subject: [PATCH 16/42] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- urjtag.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/urjtag.spec b/urjtag.spec index 91b524e..96ce42f 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -17,6 +17,7 @@ Patch1: %{name}-gcc10.patch %global py3_prefix python3 +BuildRequires: make BuildRequires: gcc BuildRequires: libftdi-devel BuildRequires: swig From aa8970a2c86bfad7c2df04144fbc967253db2918 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 22:45:53 +0000 Subject: [PATCH 17/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 96ce42f..a8439bf 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2019.12 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -103,6 +103,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 2019.12-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 2019.12-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 1097fc28638a81f6ab3453aaf0213e774e3e1b39 Mon Sep 17 00:00:00 2001 From: Jiri Kastner Date: Thu, 15 Apr 2021 19:59:13 +0200 Subject: [PATCH 18/42] update to 2021.03 --- .gitignore | 1 + sources | 2 +- urjtag.spec | 9 +++++---- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 99486a5..91e7003 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /urjtag-2018.06.tar.xz /urjtag-2018.09.tar.xz /urjtag-2019.12.tar.xz +/urjtag-2021.03.tar.xz diff --git a/sources b/sources index b6aa3c7..9956e30 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urjtag-2019.12.tar.xz) = e149e53410a6591bdadc2c0138c6f81dac0fd6e35601461e19d356decdb820ec8e6bd53d59a1fd9781dfa1fee88d23dcafbd8df9adc0f8e51256c626d2ee0f36 +SHA512 (urjtag-2021.03.tar.xz) = baf203e556d1d41437539d3f5c018b35fbb496f71391c2bec2786ffa47bff33d38654b3e7d106e38bcf36d075d86fc02b18eaaf634cdb65e2840ff50ca0da8b2 diff --git a/urjtag.spec b/urjtag.spec index a8439bf..3ace6a4 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -5,15 +5,14 @@ %endif Name: urjtag -Version: 2019.12 -Release: 6%{?dist} +Version: 2021.03 +Release: 1%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ URL: http://urjtag.org Source0: https://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.xz Patch0: %{name}-fixarm.patch -Patch1: %{name}-gcc10.patch %global py3_prefix python3 @@ -57,7 +56,6 @@ Python bindings and examples for %{name}. %prep %setup -q %patch0 -p2 -b .armfix -%patch1 -p2 -b .gcc10 %build %configure --enable-jedec-exp --enable-stapl --enable-bsdl --enable-svf --disable-static --enable-shared @@ -103,6 +101,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Sat Apr 10 2021 Jiri Kastner - 2021.03-1 +- update to 2021.03 + * Wed Jan 27 2021 Fedora Release Engineering - 2019.12-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From c55886772ddd9d4be2601f961d5695babfc4212e Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 4 Jun 2021 21:18:55 +0200 Subject: [PATCH 19/42] Rebuilt for Python 3.10 --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 3ace6a4..bb1bcdb 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -101,6 +101,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Fri Jun 04 2021 Python Maint - 2021.03-2 +- Rebuilt for Python 3.10 + * Sat Apr 10 2021 Jiri Kastner - 2021.03-1 - update to 2021.03 From 3f750a02a5f2472f5f70cd9b3ca38c4b78a79f3f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 20:08:35 +0000 Subject: [PATCH 20/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index bb1bcdb..0907d67 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -101,6 +101,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 2021.03-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Fri Jun 04 2021 Python Maint - 2021.03-2 - Rebuilt for Python 3.10 From 82c1022f16e94a4a69fb7b414ef0ec0ef2a0e5b0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 03:37:39 +0000 Subject: [PATCH 21/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 0907d67..c95bd41 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -101,6 +101,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 2021.03-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 2021.03-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 83f0e1c925ebc1bfae03b7b5d3262c0dabcb1ecd Mon Sep 17 00:00:00 2001 From: Python Maint Date: Thu, 16 Jun 2022 15:55:57 +0200 Subject: [PATCH 22/42] Rebuilt for Python 3.11 --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index c95bd41..41abfd3 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -101,6 +101,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Thu Jun 16 2022 Python Maint - 2021.03-5 +- Rebuilt for Python 3.11 + * Sat Jan 22 2022 Fedora Release Engineering - 2021.03-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 0357bed0f5aefed7ea6b2f98449e07e937cb23c2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 11:30:32 +0000 Subject: [PATCH 23/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 41abfd3..5ba37a0 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -101,6 +101,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 2021.03-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Thu Jun 16 2022 Python Maint - 2021.03-5 - Rebuilt for Python 3.11 From 54c791cf29bb3d3116f5c9489b1e0f9b87df114a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 05:55:44 +0000 Subject: [PATCH 24/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 5ba37a0..e3bb596 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -101,6 +101,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 2021.03-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jul 23 2022 Fedora Release Engineering - 2021.03-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 6eec8331c01733172104e7e3596db059dd625717 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Wed, 14 Jun 2023 00:06:36 +0200 Subject: [PATCH 25/42] Rebuilt for Python 3.12 --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index e3bb596..e4ed13d 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -101,6 +101,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Tue Jun 13 2023 Python Maint - 2021.03-8 +- Rebuilt for Python 3.12 + * Sat Jan 21 2023 Fedora Release Engineering - 2021.03-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 76bc22ac03a85d177167012aca861e967a408ff3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 17:13:43 +0000 Subject: [PATCH 26/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index e4ed13d..a983084 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -101,6 +101,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 2021.03-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Tue Jun 13 2023 Python Maint - 2021.03-8 - Rebuilt for Python 3.12 From 556c5f2571799415896ed6db6eb1de3932fe2c61 Mon Sep 17 00:00:00 2001 From: Filipe Rosset Date: Sun, 30 Jul 2023 20:59:13 -0300 Subject: [PATCH 27/42] - Fix FTBFS rhbz#2226495 rhbz#2220616 rhbz#2175186 and rhbz#1785878 --- urjtag.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/urjtag.spec b/urjtag.spec index a983084..5170521 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -16,9 +16,11 @@ Patch0: %{name}-fixarm.patch %global py3_prefix python3 -BuildRequires: make +BuildRequires: make BuildRequires: gcc BuildRequires: libftdi-devel +BuildRequires: (python3-setuptools if python3-devel >= 3.12) +BuildRequires: readline-devel BuildRequires: swig %if 0%{?rhel} || 0%{?centos} BuildRequires: %{py3_prefix}4-devel @@ -101,6 +103,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Sun Jul 30 2023 Filipe Rosset - 2021.03-10 +- Fix FTBFS rhbz#2226495 rhbz#2220616 rhbz#2175186 and rhbz#1785878 + * Sat Jul 22 2023 Fedora Release Engineering - 2021.03-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 3d73a470924cc8aad17181afa32baa143cd65a63 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 07:13:47 +0000 Subject: [PATCH 28/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 5170521..5b0892a 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -103,6 +103,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 2021.03-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sun Jul 30 2023 Filipe Rosset - 2021.03-10 - Fix FTBFS rhbz#2226495 rhbz#2220616 rhbz#2175186 and rhbz#1785878 From b2645a201cadbbca5667cc24c4cb462d9639a74a Mon Sep 17 00:00:00 2001 From: Software Management Team Date: Thu, 30 May 2024 12:46:49 +0200 Subject: [PATCH 29/42] Eliminate use of obsolete %patchN syntax (#2283636) --- urjtag.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 5b0892a..47e7b42 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -57,7 +57,7 @@ Python bindings and examples for %{name}. %prep %setup -q -%patch0 -p2 -b .armfix +%patch -P0 -p2 -b .armfix %build %configure --enable-jedec-exp --enable-stapl --enable-bsdl --enable-svf --disable-static --enable-shared From e62ac39a35fecc441e665e2d4909f546646540ba Mon Sep 17 00:00:00 2001 From: Python Maint Date: Sun, 9 Jun 2024 02:10:30 +0200 Subject: [PATCH 30/42] Rebuilt for Python 3.13 --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 47e7b42..08c5ae0 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 11%{?dist} +Release: 12%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -103,6 +103,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Sun Jun 09 2024 Python Maint - 2021.03-12 +- Rebuilt for Python 3.13 + * Sat Jan 27 2024 Fedora Release Engineering - 2021.03-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From ba2a67947b41da2d6cb207b39dbcfba81cb7f7ba Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 08:22:45 +0000 Subject: [PATCH 31/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 08c5ae0..ae4a5ef 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 12%{?dist} +Release: 13%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs License: GPLv2+ @@ -103,6 +103,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 2021.03-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sun Jun 09 2024 Python Maint - 2021.03-12 - Rebuilt for Python 3.13 From 5fe6142f8af550253f72b49fa84c0048bd288b74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 26 Jul 2024 03:28:44 +0200 Subject: [PATCH 32/42] convert GPLv2+ license to SPDX This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 --- urjtag.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/urjtag.spec b/urjtag.spec index ae4a5ef..2fd898c 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,10 +6,11 @@ Name: urjtag Version: 2021.03 -Release: 13%{?dist} +Release: 14%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs -License: GPLv2+ +# Automatically converted from old format: GPLv2+ - review is highly recommended. +License: GPL-2.0-or-later URL: http://urjtag.org Source0: https://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.xz Patch0: %{name}-fixarm.patch @@ -103,6 +104,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Fri Jul 26 2024 Miroslav Suchý - 2021.03-14 +- convert license to SPDX + * Sat Jul 20 2024 Fedora Release Engineering - 2021.03-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From ab6e4662690c8de13219fac19d91f44288019ab0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 13:53:31 +0000 Subject: [PATCH 33/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 2fd898c..127e66d 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 14%{?dist} +Release: 15%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -104,6 +104,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 2021.03-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Fri Jul 26 2024 Miroslav Suchý - 2021.03-14 - convert license to SPDX From 5c2fdc74a5a6cf03bb642c3dc7ddc58d0cde1e5c Mon Sep 17 00:00:00 2001 From: Python Maint Date: Tue, 3 Jun 2025 15:26:30 +0200 Subject: [PATCH 34/42] Rebuilt for Python 3.14 --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 127e66d..593b98b 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 15%{?dist} +Release: 16%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -104,6 +104,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Tue Jun 03 2025 Python Maint - 2021.03-16 +- Rebuilt for Python 3.14 + * Sun Jan 19 2025 Fedora Release Engineering - 2021.03-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 2aced2cd1e023163a21d2f6209bc9b3719719bc3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 19:51:08 +0000 Subject: [PATCH 35/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 593b98b..26515fe 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 16%{?dist} +Release: 17%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -104,6 +104,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 2021.03-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Tue Jun 03 2025 Python Maint - 2021.03-16 - Rebuilt for Python 3.14 From a685874fec81095811a34fb0ee94f764f4e31836 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 15 Aug 2025 15:21:34 +0200 Subject: [PATCH 36/42] Rebuilt for Python 3.14.0rc2 bytecode --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 26515fe..8338566 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 17%{?dist} +Release: 18%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -104,6 +104,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Fri Aug 15 2025 Python Maint - 2021.03-18 +- Rebuilt for Python 3.14.0rc2 bytecode + * Fri Jul 25 2025 Fedora Release Engineering - 2021.03-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 8c5155178847f5e8aeead975c03d6a9be0236800 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 19 Sep 2025 15:01:34 +0200 Subject: [PATCH 37/42] Rebuilt for Python 3.14.0rc3 bytecode --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 8338566..f25699f 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 18%{?dist} +Release: 19%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -104,6 +104,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Fri Sep 19 2025 Python Maint - 2021.03-19 +- Rebuilt for Python 3.14.0rc3 bytecode + * Fri Aug 15 2025 Python Maint - 2021.03-18 - Rebuilt for Python 3.14.0rc2 bytecode From 20ab4251f2bba12e5d9fde03e48a0db1d0f3fa0c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 19:40:22 +0000 Subject: [PATCH 38/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index f25699f..130c158 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 19%{?dist} +Release: 20%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -104,6 +104,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 2021.03-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Sep 19 2025 Python Maint - 2021.03-19 - Rebuilt for Python 3.14.0rc3 bytecode From dd3279805ea17434dba4b74700ab804d4bd73784 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Thu, 4 Jun 2026 10:38:47 +0200 Subject: [PATCH 39/42] Rebuilt for Python 3.15 --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 130c158..910c949 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 20%{?dist} +Release: 21%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -104,6 +104,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Thu Jun 04 2026 Python Maint - 2021.03-21 +- Rebuilt for Python 3.15 + * Sat Jan 17 2026 Fedora Release Engineering - 2021.03-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild From 2aa866d8a6fb862fc513e81a91007011a486522d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 08:14:59 +0000 Subject: [PATCH 40/42] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 910c949..3c133dc 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 21%{?dist} +Release: 22%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -104,6 +104,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 2021.03-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Thu Jun 04 2026 Python Maint - 2021.03-21 - Rebuilt for Python 3.15 From e2d984b4b197284a92379c30f2b701bf6e95cd47 Mon Sep 17 00:00:00 2001 From: Filipe Rosset Date: Mon, 20 Jul 2026 17:54:02 -0300 Subject: [PATCH 41/42] remove unused patch Signed-off-by: Filipe Rosset --- urjtag-gcc10.patch | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 urjtag-gcc10.patch diff --git a/urjtag-gcc10.patch b/urjtag-gcc10.patch deleted file mode 100644 index c9046e6..0000000 --- a/urjtag-gcc10.patch +++ /dev/null @@ -1,25 +0,0 @@ -From c6a6b7730e61e00fbaa461e07cee456aff0a6d2b Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Dan=20Hor=C3=A1k?= -Date: Thu, 13 Feb 2020 16:36:44 +0100 -Subject: [PATCH] fix UrjtagError declaration - ---- - urjtag/bindings/python/py_urjtag.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/urjtag/bindings/python/py_urjtag.h b/urjtag/bindings/python/py_urjtag.h -index 38582ebb..16b120d8 100644 ---- a/urjtag/bindings/python/py_urjtag.h -+++ b/urjtag/bindings/python/py_urjtag.h -@@ -35,7 +35,7 @@ struct urj_pyregister - extern PyTypeObject urj_pyregister_Type; - - extern PyObject *urj_py_chkret (int rc); --PyObject *UrjtagError; -+extern PyObject *UrjtagError; - - extern int urj_pyc_precheck (urj_chain_t *urc, int checks_needed); - #define UPRC_CBL 1 --- -2.21.1 - From b308e1fdc78522da827a3d89991232096b5b801f Mon Sep 17 00:00:00 2001 From: Python Maint Date: Wed, 22 Jul 2026 10:20:13 +0200 Subject: [PATCH 42/42] Rebuilt for Python 3.15.0b4 ABI change --- urjtag.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urjtag.spec b/urjtag.spec index 3c133dc..c88c7ab 100644 --- a/urjtag.spec +++ b/urjtag.spec @@ -6,7 +6,7 @@ Name: urjtag Version: 2021.03 -Release: 22%{?dist} +Release: 23%{?dist} Summary: A tool for communicating over JTAG with flash chips and CPUs # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -104,6 +104,9 @@ pushd bindings/python/ %doc bindings/python/t_srst.py %changelog +* Wed Jul 22 2026 Python Maint - 2021.03-23 +- Rebuilt for Python 3.15.0b4 ABI change + * Fri Jul 17 2026 Fedora Release Engineering - 2021.03-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild