Compare commits
10 Commits
72f64a0405
...
2fd891f778
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2fd891f778 | ||
|
|
04fba225fd | ||
|
|
9c7286657d | ||
|
|
528ca70fb3 | ||
|
|
e61285ba5e | ||
|
|
157736298a | ||
|
|
6bd50a0da8 | ||
|
|
5052c5265d | ||
|
|
3a0e4fda7b | ||
|
|
73c0fbfec4 |
@ -4,9 +4,9 @@
|
||||
|
||||
Name: automake
|
||||
Version: 1.16.5
|
||||
Release: 1
|
||||
Release: 9
|
||||
Summary: A tool for automatically generating Makefile.in files
|
||||
License: GPLv2+ and GFDL and Public Domain and MIT
|
||||
License: GPLv2+ and GFDL-1.3-only and Public Domain and MIT
|
||||
URL: http://www.gnu.org/software/automake/
|
||||
Source0: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz
|
||||
Source1: http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
|
||||
@ -14,8 +14,7 @@ Source2: http://git.savannah.gnu.org/cgit/config.git/plain/config.guess
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
#disable am-prog-cc-c-o ccnoco ccnoco-lib test
|
||||
#that success through rpmbuild but fail on obs
|
||||
Patch1: backport-tests-fix-py-compile-basedir.sh-missing-test.patch
|
||||
|
||||
BuildRequires: perl autoconf make help2man automake perl-generators texinfo
|
||||
#for tests
|
||||
@ -72,6 +71,24 @@ fi
|
||||
%{_mandir}/man1/*
|
||||
|
||||
%changelog
|
||||
* Thu Mar 13 2025 lvgenggeng <lvgenggeng@uniontech.com> - 1.16.5-9
|
||||
- add sw_64 support
|
||||
|
||||
* Tue Mar 26 2024 fuanan <fuanan3@h-partners.com> - 1.16.5-8
|
||||
- Bump release in order to upgrade from openEuler 22.03
|
||||
|
||||
* Wed Mar 6 2024 Wenlong Zhang <zhangwenlong@loongson.cn> - 1.16.5-5
|
||||
- update config.guess config.sub from upstream to support loongarch64
|
||||
|
||||
* Sat Oct 22 2022 yixiangzhike <yixiangzhike007@163.com> - 1.16.5-4
|
||||
- fix py-compile-basedir.sh missing test
|
||||
|
||||
* Thu Jul 28 2022 fuanan <fuanan3@h-partners.com> - 1.16.5-3
|
||||
- Type:bugfix
|
||||
- ID:NA
|
||||
- SUG:NA
|
||||
- DESC:Bump release and Cleanup useless comments and License compliance rectification
|
||||
|
||||
* Tue Feb 15 2022 zoulin <zoulin13@h-partners.com> - 1.16.5-1
|
||||
- update version to 1.16.5
|
||||
|
||||
|
||||
32
backport-tests-fix-py-compile-basedir.sh-missing-test.patch
Normal file
32
backport-tests-fix-py-compile-basedir.sh-missing-test.patch
Normal file
@ -0,0 +1,32 @@
|
||||
From ae8fb00111ba0c4922609cd9beb552fb41b66cc6 Mon Sep 17 00:00:00 2001
|
||||
From: Jim Meyering <meyering@fb.com>
|
||||
Date: Tue, 18 Jan 2022 02:00:22 -0800
|
||||
Subject: [PATCH] tests: fix py-compile-basedir.sh: missing "test"
|
||||
|
||||
Prompted by a patch from Thomas Deutschmann <whissi@gentoo.org>,
|
||||
via https://lists.gnu.org/r/automake-patches/2022-01/msg00001.html:
|
||||
commit v1.16.1-26-gb279a0d46 ("tests: in python tests, do not
|
||||
require .pyo files (for python3)") was missing a `test` call.
|
||||
Reported to Gentoo at https://bugs.gentoo.org/715040.
|
||||
* t/py-compile-basedir.sh: Rather than just adding the missing
|
||||
"test", rewrite using a case statement, to avoid some duplication.
|
||||
---
|
||||
t/py-compile-basedir.sh | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/t/py-compile-basedir.sh b/t/py-compile-basedir.sh
|
||||
index 44b6b07c1..22e605f9d 100644
|
||||
--- a/t/py-compile-basedir.sh
|
||||
+++ b/t/py-compile-basedir.sh
|
||||
@@ -43,7 +43,7 @@ for d in foo foo/bar "$(pwd)/foo" . .. ../foo ''; do
|
||||
py_installed "$d2/sub/$f.pyc"
|
||||
files=$(find "$d2" | grep '\.py[co]$')
|
||||
# with new-enough Python3, there are six files.
|
||||
- test $(echo "$files" | wc -l) -eq 4 || $(echo "$files" | wc -l) -eq 6
|
||||
+ case $(echo "$files" | wc -l) in 4|6) ;; *) false;; esac
|
||||
case $d2 in
|
||||
.|..) rm -f $files;;
|
||||
*) rm -rf "$d2";;
|
||||
--
|
||||
2.27.0
|
||||
|
||||
1578
config.guess
vendored
1578
config.guess
vendored
File diff suppressed because it is too large
Load Diff
2785
config.sub
vendored
2785
config.sub
vendored
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user