Upgrade to 1.0.8
This commit is contained in:
parent
091de6a7b3
commit
cd1245a5d2
Binary file not shown.
BIN
imake-1.0.8.tar.bz2
Normal file
BIN
imake-1.0.8.tar.bz2
Normal file
Binary file not shown.
24
imake.spec
24
imake.spec
@ -1,17 +1,19 @@
|
|||||||
Summary: imake source code configuration and build system
|
Summary: imake source code configuration and build system
|
||||||
Name: imake
|
Name: imake
|
||||||
Version: 1.0.7
|
Version: 1.0.8
|
||||||
Release: 17
|
Release: 1
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://www.x.org
|
URL: http://www.x.org
|
||||||
|
|
||||||
Source0: https://www.x.org/pub/individual/util/imake-1.0.7.tar.bz2
|
Source0: https://www.x.org/pub/individual/util/imake-1.0.8.tar.bz2
|
||||||
Source1: https://www.x.org/pub/individual/util/makedepend-1.0.4.tar.bz2
|
Source1: https://www.x.org/pub/individual/util/makedepend-1.0.6.tar.bz2
|
||||||
Source2: https://www.x.org/pub/individual/util/gccmakedep-1.0.3.tar.bz2
|
Source2: https://www.x.org/pub/individual/util/gccmakedep-1.0.3.tar.bz2
|
||||||
Source3: https://www.x.org/pub/individual/util/xorg-cf-files-1.0.6.tar.bz2
|
Source3: https://www.x.org/pub/individual/util/xorg-cf-files-1.0.6.tar.bz2
|
||||||
Source4: https://www.x.org/pub/individual/util/lndir-1.0.3.tar.bz2
|
Source4: https://www.x.org/pub/individual/util/lndir-1.0.3.tar.bz2
|
||||||
|
# Adapt ar invocation to binutils 2.36, bug #1943274, in upstream after 1.0.6,
|
||||||
Patch11: imake-1.0.2-abort.patch
|
# <https://gitlab.freedesktop.org/xorg/util/cf/-/merge_requests/2>
|
||||||
|
Patch1: xorg-cf-files-1.0.6-Imake.tmpl-Invoke-ar-cq-with-binutils.patch
|
||||||
|
Patch2: imake-1.0.2-abort.patch
|
||||||
|
|
||||||
BuildRequires: pkgconfig gcc gcc-c++ xorg-x11-util-macros xorg-x11-proto-devel
|
BuildRequires: pkgconfig gcc gcc-c++ xorg-x11-util-macros xorg-x11-proto-devel
|
||||||
|
|
||||||
@ -31,8 +33,13 @@ Brunhoff at Tektronix.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -c %{name}-%{version} -a1 -a2 -a3 -a4
|
%setup -q -c %{name}-%{version} -a1 -a2 -a3 -a4
|
||||||
|
|
||||||
|
pushd xorg-cf-files-1.0.6
|
||||||
|
%patch1 -p1 -b .ar
|
||||||
|
popd
|
||||||
|
|
||||||
pushd %{name}-%{version}
|
pushd %{name}-%{version}
|
||||||
%patch11 -p1 -b .abort
|
%patch2 -p1 -b .abort
|
||||||
popd
|
popd
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -70,6 +77,9 @@ popd
|
|||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 18 2022 yaoxin <yaoxin30@h-partners.com> - 1.0.8-1
|
||||||
|
- Upgrade to version 1.0.8
|
||||||
|
|
||||||
* Thu Apr 3 2020 huanghaitao<huanghaitao8@huawei.com> - 1.0.7-17
|
* Thu Apr 3 2020 huanghaitao<huanghaitao8@huawei.com> - 1.0.7-17
|
||||||
- Delete patch
|
- Delete patch
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
BIN
makedepend-1.0.6.tar.bz2
Normal file
BIN
makedepend-1.0.6.tar.bz2
Normal file
Binary file not shown.
@ -0,0 +1,43 @@
|
|||||||
|
From a6d4d6223ef75119d5373fa4cc04161bcdb4e769 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
||||||
|
Date: Mon, 29 Mar 2021 10:45:10 +0200
|
||||||
|
Subject: [PATCH] Imake.tmpl: Invoke "ar cq" with binutils
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
GNU binutils 2.36 repurposed "l" modifier. It used to be ignored, now
|
||||||
|
it specifies the dependencies of a static library to be recorded in an
|
||||||
|
archive.
|
||||||
|
|
||||||
|
That broke nas which uses imake as a build configiration tool:
|
||||||
|
|
||||||
|
$ ar clq libdia.a dispatch.o dixutils.o events.o globals.o main.o resource.o swapreq.o tables.o swaprep.o audispatch.o auswap.o autables.o auevents.o auutil.o auconfig.o auprocess.o nasconf.o lex.o gram.o
|
||||||
|
ar: libdeps specified more than once
|
||||||
|
|
||||||
|
This patch changes AR command from "ar clq" to "ar cq" if binutils are
|
||||||
|
used.
|
||||||
|
|
||||||
|
<https://bugzilla.redhat.com/show_bug.cgi?id=1943274>
|
||||||
|
|
||||||
|
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
||||||
|
---
|
||||||
|
Imake.tmpl | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/Imake.tmpl b/Imake.tmpl
|
||||||
|
index 9d02cb6..3f89ebf 100644
|
||||||
|
--- a/Imake.tmpl
|
||||||
|
+++ b/Imake.tmpl
|
||||||
|
@@ -1078,7 +1078,7 @@ TCLIBDIR = TclLibDir
|
||||||
|
#define ArCmdBase ar
|
||||||
|
#endif
|
||||||
|
#ifndef ArCmd
|
||||||
|
-#if HasLargeTmp || SystemV4
|
||||||
|
+#if HasLargeTmp || SystemV4 || LinuxBinUtilsMajorVersion
|
||||||
|
#define ArCmd ArCmdBase cq
|
||||||
|
#else
|
||||||
|
#define ArCmd ArCmdBase clq
|
||||||
|
--
|
||||||
|
2.26.3
|
||||||
|
|
||||||
Loading…
x
Reference in New Issue
Block a user