pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
gdb-netbsd: Drop local patches that are not applicable in pkgsrc
Module Name: pkgsrc-wip
Committed By: Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By: kamil
Date: Fri Mar 13 14:52:46 2020 +0100
Changeset: ccb5efeb064a30b6b36b636f56c2962419e5476b
Modified Files:
gdb-netbsd/distinfo
Removed Files:
gdb-netbsd/patches/patch-sim_common_cgen.sh
gdb-netbsd/patches/patch-sim_mips_Makefile.in
Log Message:
gdb-netbsd: Drop local patches that are not applicable in pkgsrc
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=ccb5efeb064a30b6b36b636f56c2962419e5476b
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
gdb-netbsd/distinfo | 2 -
gdb-netbsd/patches/patch-sim_common_cgen.sh | 110 --------------------------
gdb-netbsd/patches/patch-sim_mips_Makefile.in | 13 ---
3 files changed, 125 deletions(-)
diffs:
diff --git a/gdb-netbsd/distinfo b/gdb-netbsd/distinfo
index be5fc24daa..aa25c97483 100644
--- a/gdb-netbsd/distinfo
+++ b/gdb-netbsd/distinfo
@@ -102,7 +102,6 @@ SHA1 (patch-readline_examples_rlfe_extern.h) = 69f34cc628efe30542248e7ac7458be59
SHA1 (patch-readline_examples_rlfe_os.h) = 69f34cc628efe30542248e7ac7458be59d5fab94
SHA1 (patch-readline_util.c) = 2012356216efe9416dc2fbc02d33c927640f2df4
SHA1 (patch-sim_common_callback.c) = ac55e639ed6ba51c5daef5fffccc3413abeb1df2
-SHA1 (patch-sim_common_cgen.sh) = 2d3dba22472ae9b7b3fcf1462ce2f7870a837cff
SHA1 (patch-sim_common_genmloop.sh) = da39a3ee5e6b4b0d3255bfef95601890afd80709
SHA1 (patch-sim_common_gennltvals.sh) = da39a3ee5e6b4b0d3255bfef95601890afd80709
SHA1 (patch-sim_common_gentvals.sh) = da39a3ee5e6b4b0d3255bfef95601890afd80709
@@ -111,7 +110,6 @@ SHA1 (patch-sim_cr16_configure) = da39a3ee5e6b4b0d3255bfef95601890afd80709
SHA1 (patch-sim_ft32_configure) = da39a3ee5e6b4b0d3255bfef95601890afd80709
SHA1 (patch-sim_lm32_ChangeLog) = da39a3ee5e6b4b0d3255bfef95601890afd80709
SHA1 (patch-sim_microblaze_configure) = da39a3ee5e6b4b0d3255bfef95601890afd80709
-SHA1 (patch-sim_mips_Makefile.in) = 21db438aba5935cccc744b0f9d65992f32a9aa69
SHA1 (patch-sim_moxie_configure) = da39a3ee5e6b4b0d3255bfef95601890afd80709
SHA1 (patch-sim_ppc_emul__netbsd.c) = beeeeaab89a06301c9626824851c6bc43594058c
SHA1 (patch-sim_testsuite_sim_bfin_run-tests.sh) = da39a3ee5e6b4b0d3255bfef95601890afd80709
diff --git a/gdb-netbsd/patches/patch-sim_common_cgen.sh b/gdb-netbsd/patches/patch-sim_common_cgen.sh
deleted file mode 100644
index f81cd3ed16..0000000000
--- a/gdb-netbsd/patches/patch-sim_common_cgen.sh
+++ /dev/null
@@ -1,110 +0,0 @@
-$NetBSD$
-
---- sim/common/cgen.sh.orig 2019-07-16 00:00:27.000000000 +0000
-+++ sim/common/cgen.sh
-@@ -29,6 +29,7 @@ shift ; extrafiles=$9
- shift ; opcfile=$9
-
- rootdir=${srcdir}/../..
-+move_if_change="${CONFIG_SHELL:-/bin/sh} ${rootdir}/move-if-change"
-
- test -z "${opcfile}" && opcfile=/dev/null
-
-@@ -70,11 +71,11 @@ arch)
- -B ${tmp}-arch.c1 \
- -N ${tmp}-all.h1
- sed $sedscript < ${tmp}-arch.h1 > ${tmp}-arch.h
-- ${rootdir}/move-if-change ${tmp}-arch.h ${srcdir}/arch.h
-+ ${move_if_change} ${tmp}-arch.h ${srcdir}/arch.h
- sed $sedscript < ${tmp}-arch.c1 > ${tmp}-arch.c
-- ${rootdir}/move-if-change ${tmp}-arch.c ${srcdir}/arch.c
-+ ${move_if_change} ${tmp}-arch.c ${srcdir}/arch.c
- sed $sedscript < ${tmp}-all.h1 > ${tmp}-all.h
-- ${rootdir}/move-if-change ${tmp}-all.h ${srcdir}/cpuall.h
-+ ${move_if_change} ${tmp}-all.h ${srcdir}/cpuall.h
-
- rm -f ${tmp}-arch.h1 ${tmp}-arch.c1 ${tmp}-all.h1
- ;;
-@@ -136,11 +137,11 @@ cpu | decode | cpu-decode)
- case $action in
- *cpu*)
- sed $sedscript < ${tmp}-cpu.h1 > ${tmp}-cpu.h
-- ${rootdir}/move-if-change ${tmp}-cpu.h ${srcdir}/cpu${suffix}.h
-+ ${move_if_change} ${tmp}-cpu.h ${srcdir}/cpu${suffix}.h
- sed $sedscript < ${tmp}-cpu.c1 > ${tmp}-cpu.c
-- ${rootdir}/move-if-change ${tmp}-cpu.c ${srcdir}/cpu${suffix}.c
-+ ${move_if_change} ${tmp}-cpu.c ${srcdir}/cpu${suffix}.c
- sed $sedscript < ${tmp}-mod.c1 > ${tmp}-mod.c
-- ${rootdir}/move-if-change ${tmp}-mod.c ${srcdir}/model${suffix}.c
-+ ${move_if_change} ${tmp}-mod.c ${srcdir}/model${suffix}.c
- rm -f ${tmp}-cpu.h1 ${tmp}-cpu.c1 ${tmp}-mod.c1
- ;;
- esac
-@@ -148,36 +149,36 @@ cpu | decode | cpu-decode)
- case $action in
- *decode*)
- sed $sedscript < ${tmp}-dec.h1 > ${tmp}-dec.h
-- ${rootdir}/move-if-change ${tmp}-dec.h ${srcdir}/decode${suffix}.h
-+ ${move_if_change} ${tmp}-dec.h ${srcdir}/decode${suffix}.h
- sed $sedscript < ${tmp}-dec.c1 > ${tmp}-dec.c
-- ${rootdir}/move-if-change ${tmp}-dec.c ${srcdir}/decode${suffix}.c
-+ ${move_if_change} ${tmp}-dec.c ${srcdir}/decode${suffix}.c
- rm -f ${tmp}-dec.h1 ${tmp}-dec.c1
- ;;
- esac
-
- if test -f ${tmp}-ext.c1 ; then \
- sed $sedscript < ${tmp}-ext.c1 > ${tmp}-ext.c ; \
-- ${rootdir}/move-if-change ${tmp}-ext.c ${srcdir}/extract${suffix}.c ; \
-+ ${move_if_change} ${tmp}-ext.c ${srcdir}/extract${suffix}.c ; \
- rm -f ${tmp}-ext.c1
- fi
- if test -f ${tmp}-read.c1 ; then \
- sed $sedscript < ${tmp}-read.c1 > ${tmp}-read.c ; \
-- ${rootdir}/move-if-change ${tmp}-read.c ${srcdir}/read${suffix}.c ; \
-+ ${move_if_change} ${tmp}-read.c ${srcdir}/read${suffix}.c ; \
- rm -f ${tmp}-read.c1
- fi
- if test -f ${tmp}-write.c1 ; then \
- sed $sedscript < ${tmp}-write.c1 > ${tmp}-write.c ; \
-- ${rootdir}/move-if-change ${tmp}-write.c ${srcdir}/write${suffix}.c ; \
-+ ${move_if_change} ${tmp}-write.c ${srcdir}/write${suffix}.c ; \
- rm -f ${tmp}-write.c1
- fi
- if test -f ${tmp}-sem.c1 ; then \
- sed $sedscript < ${tmp}-sem.c1 > ${tmp}-sem.c ; \
-- ${rootdir}/move-if-change ${tmp}-sem.c ${srcdir}/sem${suffix}.c ; \
-+ ${move_if_change} ${tmp}-sem.c ${srcdir}/sem${suffix}.c ; \
- rm -f ${tmp}-sem.c1
- fi
- if test -f ${tmp}-semsw.c1 ; then \
- sed $sedscript < ${tmp}-semsw.c1 > ${tmp}-semsw.c ; \
-- ${rootdir}/move-if-change ${tmp}-semsw.c ${srcdir}/sem${suffix}-switch.c ; \
-+ ${move_if_change} ${tmp}-semsw.c ${srcdir}/sem${suffix}-switch.c ; \
- rm -f ${tmp}-semsw.c1
- fi
-
-@@ -195,7 +196,7 @@ defs)
- -i ${isa} \
- -G ${tmp}-defs.h1
- sed $sedscript < ${tmp}-defs.h1 > ${tmp}-defs.h
-- ${rootdir}/move-if-change ${tmp}-defs.h ${srcdir}/defs${suffix}.h
-+ ${move_if_change} ${tmp}-defs.h ${srcdir}/defs${suffix}.h
- rm -f ${tmp}-defs.h1
- ;;
-
-@@ -216,11 +217,11 @@ desc)
- -C ${tmp}-desc.c1 \
- -O ${tmp}-opc.h1
- sed $sedscript < ${tmp}-desc.h1 > ${tmp}-desc.h
-- ${rootdir}/move-if-change ${tmp}-desc.h ${srcdir}/${arch}-desc.h
-+ ${move_if_change} ${tmp}-desc.h ${srcdir}/${arch}-desc.h
- sed $sedscript < ${tmp}-desc.c1 > ${tmp}-desc.c
-- ${rootdir}/move-if-change ${tmp}-desc.c ${srcdir}/${arch}-desc.c
-+ ${move_if_change} ${tmp}-desc.c ${srcdir}/${arch}-desc.c
- sed $sedscript < ${tmp}-opc.h1 > ${tmp}-opc.h
-- ${rootdir}/move-if-change ${tmp}-opc.h ${srcdir}/${arch}-opc.h
-+ ${move_if_change} ${tmp}-opc.h ${srcdir}/${arch}-opc.h
-
- rm -f ${tmp}-desc.h1 ${tmp}-desc.c1 ${tmp}-opc.h1
- ;;
diff --git a/gdb-netbsd/patches/patch-sim_mips_Makefile.in b/gdb-netbsd/patches/patch-sim_mips_Makefile.in
deleted file mode 100644
index d02d43bb9f..0000000000
--- a/gdb-netbsd/patches/patch-sim_mips_Makefile.in
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD$
-
---- sim/mips/Makefile.in.orig 2019-07-16 00:00:27.000000000 +0000
-+++ sim/mips/Makefile.in
-@@ -152,7 +152,7 @@ BUILT_SRC_FROM_IGEN = \
- $(BUILT_SRC_FROM_IGEN): tmp-igen
-
- tmp-igen: $(IGEN_INSN) $(IGEN_DC) ../igen/igen $(IGEN_INCLUDE)
-- cd ../igen && $(MAKE)
-+# cd ../igen && $(MAKE)
- ../igen/igen \
- $(IGEN_TRACE) \
- -I $(srcdir) \
Home |
Main Index |
Thread Index |
Old Index