public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/dtc/files/
@ 2020-05-24 14:37 Sergei Trofimovich
  0 siblings, 0 replies; only message in thread
From: Sergei Trofimovich @ 2020-05-24 14:37 UTC (permalink / raw
  To: gentoo-commits

commit:     c80ef390a412bee4dd3fca0c35566af740396d61
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sun May 24 13:14:29 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sun May 24 14:37:34 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c80ef390

sys-apps/dtc: remove unused patches

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/15951
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 sys-apps/dtc/files/dtc-1.4.1-echo-n.patch       | 95 -------------------------
 sys-apps/dtc/files/dtc-1.4.1-missing-syms.patch | 30 --------
 2 files changed, 125 deletions(-)

diff --git a/sys-apps/dtc/files/dtc-1.4.1-echo-n.patch b/sys-apps/dtc/files/dtc-1.4.1-echo-n.patch
deleted file mode 100644
index cd45b952a49..00000000000
--- a/sys-apps/dtc/files/dtc-1.4.1-echo-n.patch
+++ /dev/null
@@ -1,95 +0,0 @@
-From ed3d76cd1c8f91f5e86424e899448d6221b0f76c Mon Sep 17 00:00:00 2001
-From: Mike Frysinger <vapier@chromium.org>
-Date: Wed, 6 May 2015 01:53:39 -0400
-Subject: [PATCH] tests: convert `echo -n` to `printf`
-
-The -n option is not standard in POSIX, so convert to printf which should
-work the same in every shell.
-
-Signed-off-by: Mike Frysinger <vapier@chromium.org>
----
- tests/run_tests.sh | 20 ++++++++++----------
- 1 file changed, 10 insertions(+), 10 deletions(-)
-
-diff --git a/tests/run_tests.sh b/tests/run_tests.sh
-index c870432..0dda54a 100755
---- a/tests/run_tests.sh
-+++ b/tests/run_tests.sh
-@@ -42,20 +42,20 @@ base_run_test() {
- 
- shorten_echo () {
-     limit=32
--    echo -n "$1"
-+    printf "$1"
-     shift
-     for x; do
- 	if [ ${#x} -le $limit ]; then
--	    echo -n " $x"
-+	    printf " $x"
- 	else
- 	    short=$(echo "$x" | head -c$limit)
--	    echo -n " \"$short\"...<${#x} bytes>"
-+	    printf " \"$short\"...<${#x} bytes>"
- 	fi
-     done
- }
- 
- run_test () {
--    echo -n "$@:	"
-+    printf "$@:	"
-     if [ -n "$VALGRIND" -a -f $1.supp ]; then
- 	VGSUPP="--suppressions=$1.supp"
-     fi
-@@ -63,7 +63,7 @@ run_test () {
- }
- 
- run_sh_test () {
--    echo -n "$@:	"
-+    printf "$@:	"
-     base_run_test sh "$@"
- }
- 
-@@ -106,12 +106,12 @@ wrap_error () {
- 
- run_wrap_error_test () {
-     shorten_echo "$@"
--    echo -n " {!= 0}:	"
-+    printf " {!= 0}:	"
-     base_run_test wrap_error "$@"
- }
- 
- run_dtc_test () {
--    echo -n "dtc $@:	"
-+    printf "dtc $@:	"
-     base_run_test wrap_test $VALGRIND $DTC "$@"
- }
- 
-@@ -126,7 +126,7 @@ asm_to_so_test () {
- run_fdtget_test () {
-     expect="$1"
-     shift
--    echo -n "fdtget-runtest.sh "$expect" $@:	"
-+    printf "fdtget-runtest.sh "$expect" $@:	"
-     base_run_test sh fdtget-runtest.sh "$expect" "$@"
- }
- 
-@@ -134,14 +134,14 @@ run_fdtput_test () {
-     expect="$1"
-     shift
-     shorten_echo fdtput-runtest.sh "$expect" "$@"
--    echo -n ":	"
-+    printf ":	"
-     base_run_test sh fdtput-runtest.sh "$expect" "$@"
- }
- 
- run_fdtdump_test() {
-     file="$1"
-     shorten_echo fdtdump-runtest.sh "$file"
--    echo -n ":	"
-+    printf ":	"
-     base_run_test sh fdtdump-runtest.sh "$file"
- }
- 
--- 
-2.4.0
-

diff --git a/sys-apps/dtc/files/dtc-1.4.1-missing-syms.patch b/sys-apps/dtc/files/dtc-1.4.1-missing-syms.patch
deleted file mode 100644
index 7057be7bd8a..00000000000
--- a/sys-apps/dtc/files/dtc-1.4.1-missing-syms.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From a4b093f7366fdb429ca1781144d3985fa50d0fbb Mon Sep 17 00:00:00 2001
-From: Julien Grall <julien.grall@linaro.org>
-Date: Tue, 17 Mar 2015 16:00:34 +0000
-Subject: [PATCH] libfdt: Add missing functions to shared library
-
-The commit 4e76ec7 "libfdt: Add fdt_next_subnode() to permit easy
-subnode iteration" adds new functions (fdt_{first,next}_subnode) but
-forgot to mark them as 'global' in the shared library.
-
-Signed-off-by: Julien Grall <julien.grall@linaro.org>
----
- libfdt/version.lds | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/libfdt/version.lds b/libfdt/version.lds
-index 80b322b..941208e 100644
---- a/libfdt/version.lds
-+++ b/libfdt/version.lds
-@@ -54,6 +54,8 @@ LIBFDT_1.2 {
- 		fdt_get_property_by_offset;
- 		fdt_getprop_by_offset;
- 		fdt_next_property_offset;
-+		fdt_first_subnode;
-+		fdt_next_subnode;
- 
- 	local:
- 		*;
--- 
-2.4.0
-


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-05-24 14:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-24 14:37 [gentoo-commits] repo/gentoo:master commit in: sys-apps/dtc/files/ Sergei Trofimovich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox