summaryrefslogtreecommitdiff
path: root/packages/newlib-linaro
diff options
context:
space:
mode:
authorChris Packham <judge.packham@gmail.com>2021-09-21 07:56:07 (GMT)
committerChris Packham <judge.packham@gmail.com>2021-09-21 09:24:31 (GMT)
commitbb4d2a458cccee9664062190df492b23fb3cd8d2 (patch)
treeb11a4d970e684f5103da1d003be14a056dce8ec3 /packages/newlib-linaro
parentc22bce37e912cbe17df59f861b5f45e6f9ac4f82 (diff)
newlib: Remove obsolete versions
The following versions were marked obsolete in crosstool-ng-1.24.0, remove them. - newlib-linaro-/2.1.0-2014.09 - newlib-linaro-2.2.0-2015.01 - newlib-1.17.0 - newlib-1.18.0 - newlib-1.19.0 - newlib-1.20.0 - newlib-2.0.0 - newlib-2.1.0 - newlib-2.2.0.20151023 - newlib-2.3.0.20160226 - newlib-2.4.0.20161025 Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'packages/newlib-linaro')
-rw-r--r--packages/newlib-linaro/2.1.0-2014.09/0000-fix-unaligned-access-memcpy-m68k.patch25
-rw-r--r--packages/newlib-linaro/2.1.0-2014.09/0001-fix-eabihf.patch27
-rw-r--r--packages/newlib-linaro/2.1.0-2014.09/0002-fix-mt-cflags.patch28
-rw-r--r--packages/newlib-linaro/2.1.0-2014.09/chksum4
-rw-r--r--packages/newlib-linaro/2.1.0-2014.09/version.desc2
-rw-r--r--packages/newlib-linaro/2.2.0-2015.01/0000-fix-unaligned-access-memcpy-m68k.patch25
-rw-r--r--packages/newlib-linaro/2.2.0-2015.01/0001-fix-eabihf.patch27
-rw-r--r--packages/newlib-linaro/2.2.0-2015.01/0002-fix-mt-cflags.patch28
-rw-r--r--packages/newlib-linaro/2.2.0-2015.01/chksum4
-rw-r--r--packages/newlib-linaro/2.2.0-2015.01/version.desc1
-rw-r--r--packages/newlib-linaro/package.desc7
11 files changed, 0 insertions, 178 deletions
diff --git a/packages/newlib-linaro/2.1.0-2014.09/0000-fix-unaligned-access-memcpy-m68k.patch b/packages/newlib-linaro/2.1.0-2014.09/0000-fix-unaligned-access-memcpy-m68k.patch
deleted file mode 100644
index b6709d5..0000000
--- a/packages/newlib-linaro/2.1.0-2014.09/0000-fix-unaligned-access-memcpy-m68k.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-The m68k mcpu processor does not like unaligned access
-
-Disable at least mcpu32, m68010 and m68020. These processors certainly
-do not like unaligned accesses.
-
-Signed-off-by: Remy Bohmer <linux@bohmer.net>
-[yann.morin.1998@anciens.enib.fr: update for 1.19.0 from 1.18.0]
-Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
-[austinpmorton@gmail.com: update for 1.20.0 from 1.19.0]
-Signed-off-by: Austin Morton <austinpmorton@gmail.com>
----
- newlib/libc/machine/m68k/memcpy.S | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/newlib/libc/machine/m68k/memcpy.S
-+++ b/newlib/libc/machine/m68k/memcpy.S
-@@ -15,7 +15,7 @@
-
- #include "m68kasm.h"
-
--#if defined (__mcoldfire__) || defined (__mc68010__) || defined (__mc68020__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__)
-+#if defined (__mcoldfire__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__)
- # define MISALIGNED_OK 1
- #else
- # define MISALIGNED_OK 0
diff --git a/packages/newlib-linaro/2.1.0-2014.09/0001-fix-eabihf.patch b/packages/newlib-linaro/2.1.0-2014.09/0001-fix-eabihf.patch
deleted file mode 100644
index f295593..0000000
--- a/packages/newlib-linaro/2.1.0-2014.09/0001-fix-eabihf.patch
+++ /dev/null
@@ -1,27 +0,0 @@
----
- libgloss/arm/configure | 2 +-
- libgloss/arm/configure.in | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
---- a/libgloss/arm/configure
-+++ b/libgloss/arm/configure
-@@ -2531,7 +2531,7 @@
-
-
- case "${target}" in
-- *-*-elf | *-*-eabi | *-*-tirtos*)
-+ *-*-elf | *-*-eabi* | *-*-tirtos*)
- objtype=elf-
- ;;
- *-*-coff)
---- a/libgloss/arm/configure.in
-+++ b/libgloss/arm/configure.in
-@@ -49,7 +49,7 @@
- LIB_AM_PROG_AS
-
- case "${target}" in
-- *-*-elf | *-*-eabi | *-*-tirtos*)
-+ *-*-elf | *-*-eabi* | *-*-tirtos*)
- objtype=elf-
- ;;
- *-*-coff)
diff --git a/packages/newlib-linaro/2.1.0-2014.09/0002-fix-mt-cflags.patch b/packages/newlib-linaro/2.1.0-2014.09/0002-fix-mt-cflags.patch
deleted file mode 100644
index 22c4642..0000000
--- a/packages/newlib-linaro/2.1.0-2014.09/0002-fix-mt-cflags.patch
+++ /dev/null
@@ -1,28 +0,0 @@
----
- config/mt-d30v | 4 ++--
- config/mt-gnu | 2 +-
- config/mt-ospace | 4 ++--
- 3 files changed, 5 insertions(+), 5 deletions(-)
-
---- a/config/mt-d30v
-+++ b/config/mt-d30v
-@@ -1,4 +1,4 @@
- # Build libraries optimizing for space, not speed.
- # Turn off warnings about symbols named the same as registers
-- CFLAGS_FOR_TARGET = -g -Os -Wa,-C
-- CXXFLAGS_FOR_TARGET = -g -Os -Wa,-C
-+ CFLAGS_FOR_TARGET += -g -Os -Wa,-C
-+ CXXFLAGS_FOR_TARGET += -g -Os -Wa,-C
---- a/config/mt-gnu
-+++ b/config/mt-gnu
-@@ -1 +1 @@
--CXXFLAGS_FOR_TARGET = $(CXXFLAGS) -D_GNU_SOURCE
-+CXXFLAGS_FOR_TARGET += $(CXXFLAGS) -D_GNU_SOURCE
---- a/config/mt-ospace
-+++ b/config/mt-ospace
-@@ -1,3 +1,3 @@
- # Build libraries optimizing for space, not speed.
-- CFLAGS_FOR_TARGET = -g -Os
-- CXXFLAGS_FOR_TARGET = -g -Os
-+ CFLAGS_FOR_TARGET += -g -Os
-+ CXXFLAGS_FOR_TARGET += -g -Os
diff --git a/packages/newlib-linaro/2.1.0-2014.09/chksum b/packages/newlib-linaro/2.1.0-2014.09/chksum
deleted file mode 100644
index d124fd0..0000000
--- a/packages/newlib-linaro/2.1.0-2014.09/chksum
+++ /dev/null
@@ -1,4 +0,0 @@
-md5 newlib-linaro-2.1.0-2014.09.tar.bz2 657b0e183e24866a37d3f9e710aac529
-sha1 newlib-linaro-2.1.0-2014.09.tar.bz2 4aa995911c6c03f258e8146d63b0b46775886a4e
-sha256 newlib-linaro-2.1.0-2014.09.tar.bz2 ed92e8547246834725a3c5743fa41d3f573e3e5d2e5066d433ac3c29e6676fc8
-sha512 newlib-linaro-2.1.0-2014.09.tar.bz2 214c03557f3fbea4af0e189c531f6653e8c0ed051003ca106feb3309973cb492e6b8e54dae85177259bde84c16bf75f76c429d1ad9237fc4354d683e5f9ba223
diff --git a/packages/newlib-linaro/2.1.0-2014.09/version.desc b/packages/newlib-linaro/2.1.0-2014.09/version.desc
deleted file mode 100644
index a114052..0000000
--- a/packages/newlib-linaro/2.1.0-2014.09/version.desc
+++ /dev/null
@@ -1,2 +0,0 @@
-obsolete='yes'
-archive_formats='.tar.bz2'
diff --git a/packages/newlib-linaro/2.2.0-2015.01/0000-fix-unaligned-access-memcpy-m68k.patch b/packages/newlib-linaro/2.2.0-2015.01/0000-fix-unaligned-access-memcpy-m68k.patch
deleted file mode 100644
index b6709d5..0000000
--- a/packages/newlib-linaro/2.2.0-2015.01/0000-fix-unaligned-access-memcpy-m68k.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-The m68k mcpu processor does not like unaligned access
-
-Disable at least mcpu32, m68010 and m68020. These processors certainly
-do not like unaligned accesses.
-
-Signed-off-by: Remy Bohmer <linux@bohmer.net>
-[yann.morin.1998@anciens.enib.fr: update for 1.19.0 from 1.18.0]
-Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
-[austinpmorton@gmail.com: update for 1.20.0 from 1.19.0]
-Signed-off-by: Austin Morton <austinpmorton@gmail.com>
----
- newlib/libc/machine/m68k/memcpy.S | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/newlib/libc/machine/m68k/memcpy.S
-+++ b/newlib/libc/machine/m68k/memcpy.S
-@@ -15,7 +15,7 @@
-
- #include "m68kasm.h"
-
--#if defined (__mcoldfire__) || defined (__mc68010__) || defined (__mc68020__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__)
-+#if defined (__mcoldfire__) || defined (__mc68030__) || defined (__mc68040__) || defined (__mc68060__)
- # define MISALIGNED_OK 1
- #else
- # define MISALIGNED_OK 0
diff --git a/packages/newlib-linaro/2.2.0-2015.01/0001-fix-eabihf.patch b/packages/newlib-linaro/2.2.0-2015.01/0001-fix-eabihf.patch
deleted file mode 100644
index f295593..0000000
--- a/packages/newlib-linaro/2.2.0-2015.01/0001-fix-eabihf.patch
+++ /dev/null
@@ -1,27 +0,0 @@
----
- libgloss/arm/configure | 2 +-
- libgloss/arm/configure.in | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
---- a/libgloss/arm/configure
-+++ b/libgloss/arm/configure
-@@ -2531,7 +2531,7 @@
-
-
- case "${target}" in
-- *-*-elf | *-*-eabi | *-*-tirtos*)
-+ *-*-elf | *-*-eabi* | *-*-tirtos*)
- objtype=elf-
- ;;
- *-*-coff)
---- a/libgloss/arm/configure.in
-+++ b/libgloss/arm/configure.in
-@@ -49,7 +49,7 @@
- LIB_AM_PROG_AS
-
- case "${target}" in
-- *-*-elf | *-*-eabi | *-*-tirtos*)
-+ *-*-elf | *-*-eabi* | *-*-tirtos*)
- objtype=elf-
- ;;
- *-*-coff)
diff --git a/packages/newlib-linaro/2.2.0-2015.01/0002-fix-mt-cflags.patch b/packages/newlib-linaro/2.2.0-2015.01/0002-fix-mt-cflags.patch
deleted file mode 100644
index 22c4642..0000000
--- a/packages/newlib-linaro/2.2.0-2015.01/0002-fix-mt-cflags.patch
+++ /dev/null
@@ -1,28 +0,0 @@
----
- config/mt-d30v | 4 ++--
- config/mt-gnu | 2 +-
- config/mt-ospace | 4 ++--
- 3 files changed, 5 insertions(+), 5 deletions(-)
-
---- a/config/mt-d30v
-+++ b/config/mt-d30v
-@@ -1,4 +1,4 @@
- # Build libraries optimizing for space, not speed.
- # Turn off warnings about symbols named the same as registers
-- CFLAGS_FOR_TARGET = -g -Os -Wa,-C
-- CXXFLAGS_FOR_TARGET = -g -Os -Wa,-C
-+ CFLAGS_FOR_TARGET += -g -Os -Wa,-C
-+ CXXFLAGS_FOR_TARGET += -g -Os -Wa,-C
---- a/config/mt-gnu
-+++ b/config/mt-gnu
-@@ -1 +1 @@
--CXXFLAGS_FOR_TARGET = $(CXXFLAGS) -D_GNU_SOURCE
-+CXXFLAGS_FOR_TARGET += $(CXXFLAGS) -D_GNU_SOURCE
---- a/config/mt-ospace
-+++ b/config/mt-ospace
-@@ -1,3 +1,3 @@
- # Build libraries optimizing for space, not speed.
-- CFLAGS_FOR_TARGET = -g -Os
-- CXXFLAGS_FOR_TARGET = -g -Os
-+ CFLAGS_FOR_TARGET += -g -Os
-+ CXXFLAGS_FOR_TARGET += -g -Os
diff --git a/packages/newlib-linaro/2.2.0-2015.01/chksum b/packages/newlib-linaro/2.2.0-2015.01/chksum
deleted file mode 100644
index aa52a46..0000000
--- a/packages/newlib-linaro/2.2.0-2015.01/chksum
+++ /dev/null
@@ -1,4 +0,0 @@
-md5 newlib-linaro-2.2.0-2015.01.tar.xz 03164a4ce9c0e4bca03eba1a1da40193
-sha1 newlib-linaro-2.2.0-2015.01.tar.xz 0e3f3a3849d06f7773f7deee4c2a858ba46e539f
-sha256 newlib-linaro-2.2.0-2015.01.tar.xz d29fe53d70f545c2fb080b9686e05d0f8af5088fec9b7dc78bc788a98765ef99
-sha512 newlib-linaro-2.2.0-2015.01.tar.xz ec1a136da2acba5e1409e5860e11cf88b826d6b52636f0f7df5dd484c4cd6c0d8e2a16fdcdfe635cc5a1bf1015d5b2e1dd2ed12f6929713f0b658504a8b1aa8c
diff --git a/packages/newlib-linaro/2.2.0-2015.01/version.desc b/packages/newlib-linaro/2.2.0-2015.01/version.desc
deleted file mode 100644
index fcfe389..0000000
--- a/packages/newlib-linaro/2.2.0-2015.01/version.desc
+++ /dev/null
@@ -1 +0,0 @@
-obsolete='yes'
diff --git a/packages/newlib-linaro/package.desc b/packages/newlib-linaro/package.desc
deleted file mode 100644
index 74d8f17..0000000
--- a/packages/newlib-linaro/package.desc
+++ /dev/null
@@ -1,7 +0,0 @@
-origin='Linaro'
-master='newlib'
-repository='git https://git.linaro.org/toolchain/newlib.git'
-mirrors='$(CT_Mirrors Linaro newlib ${CT_NEWLIB_LINARO_VERSION})'
-relevantpattern='*.*|.*-'
-experimental='yes'
-archive_formats='.tar.xz'