From: Dongkyun Son Date: Sun, 28 Jul 2024 23:22:29 +0000 (+0900) Subject: packaging: embed gmp-6.2.1 and mpfr-4.2.0 X-Git-Tag: accepted/tizen/unified/x/20240731.013421~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=58a8cd92c2fd08826ae40677ae10d6fd1f4a3ac2;p=platform%2Fupstream%2Fgdb.git packaging: embed gmp-6.2.1 and mpfr-4.2.0 Change-Id: I9f5ed836a6cf4b4e876f3fdd8df9b23e801ade10 Signed-off-by: Dongkyun Son --- diff --git a/packaging/gdb.spec b/packaging/gdb.spec index bca708f9c..c1ccd685e 100644 --- a/packaging/gdb.spec +++ b/packaging/gdb.spec @@ -24,6 +24,8 @@ Summary: A GNU source-level debugger for C, C++, Java and other languages Url: http://gnu.org/software/gdb/ Group: Development/Toolchain Source: ftp://ftp.gnu.org/gnu/gdb/gdb-%{version}.tar.gz +Source10: gmp-6.2.1.tar.bz2 +Source11: mpfr-4.2.0.tar.bz2 Source1001: gdb.manifest %define gdb_src gdb-%{version} %define gdb_build build-%{_target_platform} @@ -79,6 +81,10 @@ Results from running the gdb tests. %prep %setup -q cp %{SOURCE1001} . +tar xf %{SOURCE10} +ln -sf gmp-6.2.1 gmp +tar xf %{SOURCE11} +ln -sf mpfr-4.2.0 mpfr # Remove the info and other generated files added by the FSF release # process. diff --git a/packaging/gmp-6.2.1.tar.bz2 b/packaging/gmp-6.2.1.tar.bz2 new file mode 100644 index 000000000..3056336d8 Binary files /dev/null and b/packaging/gmp-6.2.1.tar.bz2 differ diff --git a/packaging/mpfr-4.2.0.tar.bz2 b/packaging/mpfr-4.2.0.tar.bz2 new file mode 100644 index 000000000..580f6090c Binary files /dev/null and b/packaging/mpfr-4.2.0.tar.bz2 differ