Compare commits
50 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4a46327729 | ||
|
|
055aa3131e | ||
|
|
30fe44d19a | ||
|
|
45fa461012 | ||
|
|
e42e9214fc | ||
|
|
03cd8b35e2 | ||
|
|
9b66454fa7 | ||
|
|
99ce699da0 | ||
|
|
f555b2598c | ||
|
|
61710458fb | ||
|
|
2695114d00 | ||
|
|
30481eb56e | ||
|
|
6691d80572 | ||
|
|
72b7f70c7e | ||
|
|
ca338faecb | ||
|
|
1c117ee93f | ||
|
|
c792ec5be7 | ||
|
|
f174d2cfa2 | ||
|
|
decc9397d6 | ||
|
|
ac6d82cc76 | ||
|
|
08fd5c5534 | ||
|
|
2ed21777b0 | ||
|
|
da9bc3870a | ||
|
|
179b8d0f3d | ||
|
|
6fdd98a7b1 | ||
|
|
a44b452c05 | ||
|
|
939e9797b7 | ||
|
|
eb83da1b30 | ||
|
|
8a96766166 | ||
|
|
644048e1aa | ||
|
|
fe6421ac44 | ||
|
|
c44e00f7a0 | ||
|
|
436dd49506 | ||
|
|
9e1f4e74fb | ||
|
|
262f316ecb | ||
|
|
8ba19c0d7b | ||
|
|
7e7ef9c47e | ||
|
|
f52d158709 | ||
|
|
c62dbdeceb | ||
|
|
48fa188c9e | ||
|
|
ede81d4d53 |
||
|
|
06fb49fe65 | ||
|
|
9dbdf2dad1 | ||
|
|
ed28cf6b78 | ||
|
|
ca9eb5ee58 | ||
|
|
cd52ad1d92 | ||
|
|
a244e179ce | ||
|
|
c1f5b4a674 | ||
|
|
3c072cf0d7 | ||
|
|
0e361eac94 |
14 changed files with 536 additions and 666 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -1,4 +1,3 @@
|
|||
/sbcl-1.2.?-*-linux-binary.tar.bz2
|
||||
/sbcl-1.3.?-*-linux-binary.tar.bz2
|
||||
/sbcl-1.4.0-documentation-html.tar.bz2
|
||||
/sbcl-1.4.0-source.tar.bz2
|
||||
/sbcl-*-linux-binary.tar.bz2
|
||||
/sbcl-*-documentation-html.tar.bz2
|
||||
/sbcl-*-source.tar.bz2
|
||||
|
|
|
|||
|
|
@ -1,110 +0,0 @@
|
|||
From 5137da6e743906b5c0250e01418cc84c09048f5e Mon Sep 17 00:00:00 2001
|
||||
From: Stas Boukarev <stassats@gmail.com>
|
||||
Date: Sat, 16 Sep 2017 22:27:40 +0300
|
||||
Subject: [PATCH 171/203] Use ucontext_t instead of struct ucontext on linux.
|
||||
|
||||
Fixes lp#1714549.
|
||||
---
|
||||
src/runtime/alpha-linux-os.h | 2 +-
|
||||
src/runtime/arm-linux-os.h | 2 +-
|
||||
src/runtime/arm64-linux-os.h | 2 +-
|
||||
src/runtime/mips-linux-os.h | 2 +-
|
||||
src/runtime/ppc-linux-os.h | 2 +-
|
||||
src/runtime/x86-64-linux-os.h | 2 +-
|
||||
src/runtime/x86-linux-os.h | 2 +-
|
||||
7 files changed, 7 insertions(+), 7 deletions(-)
|
||||
|
||||
diff --git a/src/runtime/alpha-linux-os.h b/src/runtime/alpha-linux-os.h
|
||||
index 40a25eab4..9a7977e7a 100644
|
||||
--- a/src/runtime/alpha-linux-os.h
|
||||
+++ b/src/runtime/alpha-linux-os.h
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef _ALPHA_LINUX_OS_H
|
||||
#define _ALPHA_LINUX_OS_H
|
||||
|
||||
-typedef struct ucontext os_context_t;
|
||||
+typedef ucontext_t os_context_t;
|
||||
typedef long os_context_register_t;
|
||||
|
||||
static inline os_context_t *arch_os_get_context(void **void_context)
|
||||
diff --git a/src/runtime/arm-linux-os.h b/src/runtime/arm-linux-os.h
|
||||
index 0bd8f3cac..3899437f0 100644
|
||||
--- a/src/runtime/arm-linux-os.h
|
||||
+++ b/src/runtime/arm-linux-os.h
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef _ARM_LINUX_OS_H
|
||||
#define _ARM_LINUX_OS_H
|
||||
|
||||
-typedef struct ucontext os_context_t;
|
||||
+typedef ucontext_t os_context_t;
|
||||
typedef long os_context_register_t;
|
||||
|
||||
static inline os_context_t *arch_os_get_context(void **void_context)
|
||||
diff --git a/src/runtime/arm64-linux-os.h b/src/runtime/arm64-linux-os.h
|
||||
index 0bd8f3cac..3899437f0 100644
|
||||
--- a/src/runtime/arm64-linux-os.h
|
||||
+++ b/src/runtime/arm64-linux-os.h
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef _ARM_LINUX_OS_H
|
||||
#define _ARM_LINUX_OS_H
|
||||
|
||||
-typedef struct ucontext os_context_t;
|
||||
+typedef ucontext_t os_context_t;
|
||||
typedef long os_context_register_t;
|
||||
|
||||
static inline os_context_t *arch_os_get_context(void **void_context)
|
||||
diff --git a/src/runtime/mips-linux-os.h b/src/runtime/mips-linux-os.h
|
||||
index cc442b124..1e25189d7 100644
|
||||
--- a/src/runtime/mips-linux-os.h
|
||||
+++ b/src/runtime/mips-linux-os.h
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef _MIPS_LINUX_OS_H
|
||||
#define _MIPS_LINUX_OS_H
|
||||
|
||||
-typedef struct ucontext os_context_t;
|
||||
+typedef ucontext_t os_context_t;
|
||||
typedef unsigned long long os_context_register_t;
|
||||
|
||||
static inline os_context_t *arch_os_get_context(void **void_context)
|
||||
diff --git a/src/runtime/ppc-linux-os.h b/src/runtime/ppc-linux-os.h
|
||||
index cfdb60087..66aaac083 100644
|
||||
--- a/src/runtime/ppc-linux-os.h
|
||||
+++ b/src/runtime/ppc-linux-os.h
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef _PPC_LINUX_OS_H
|
||||
#define _PPC_LINUX_OS_H
|
||||
|
||||
-typedef struct ucontext os_context_t;
|
||||
+typedef ucontext_t os_context_t;
|
||||
typedef unsigned long os_context_register_t;
|
||||
|
||||
static inline os_context_t *arch_os_get_context(void **void_context)
|
||||
diff --git a/src/runtime/x86-64-linux-os.h b/src/runtime/x86-64-linux-os.h
|
||||
index 60c612294..8a831b5ba 100644
|
||||
--- a/src/runtime/x86-64-linux-os.h
|
||||
+++ b/src/runtime/x86-64-linux-os.h
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef _X86_64_LINUX_OS_H
|
||||
#define _X86_64_LINUX_OS_H
|
||||
|
||||
-typedef struct ucontext os_context_t;
|
||||
+typedef ucontext_t os_context_t;
|
||||
typedef long os_context_register_t;
|
||||
|
||||
static inline os_context_t *arch_os_get_context(void **void_context)
|
||||
diff --git a/src/runtime/x86-linux-os.h b/src/runtime/x86-linux-os.h
|
||||
index f2a39f9c1..a4a1a3162 100644
|
||||
--- a/src/runtime/x86-linux-os.h
|
||||
+++ b/src/runtime/x86-linux-os.h
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef _X86_LINUX_OS_H
|
||||
#define _X86_LINUX_OS_H
|
||||
|
||||
-typedef struct ucontext os_context_t;
|
||||
+typedef ucontext_t os_context_t;
|
||||
typedef greg_t os_context_register_t;
|
||||
|
||||
static inline os_context_t *arch_os_get_context(void **void_context)
|
||||
--
|
||||
2.13.5
|
||||
|
||||
|
|
@ -1 +0,0 @@
|
|||
SHA512 (sbcl-1.3.16-arm64-linux-binary.tar.bz2) = 919835547d7613f64a2470157401e83c14584049602f21566a324af9fcbdfa838f5f2a7c5c6e28f3c3b5ccdec640024ce9c12b607a25741ad4c4d6e9813af3b8
|
||||
393
changelog
Normal file
393
changelog
Normal file
|
|
@ -0,0 +1,393 @@
|
|||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.11-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.11-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.11-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Thu Jan 04 2024 Anthony Green <green@redhat.com> - 2.3.11-1
|
||||
- Update to 2.3.11
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Tue Jul 11 2023 Jerry James <loganjerry@gmail.com> - 2.3.6-1
|
||||
- Version 2.3.6
|
||||
- Convert License tag to SPDX
|
||||
- Drop upstreamed gcc10 patch
|
||||
- Build for ppc64le
|
||||
- Compress cores with zstd instead of zlib
|
||||
- Various minor spec file cleanups
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.1-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.1-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.1-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Thu Sep 16 2021 Than Ngo <than@redhat.com> - 2.0.1-7
|
||||
- Fixed FTBFS
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.1-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Mon Aug 10 2020 Jeff Law <law@redhat.com> - 2.0.1-4
|
||||
- Disable LTO for now
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.1-3
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Feb 24 2020 Than Ngo <than@redhat.com> - 2.0.1-1
|
||||
- update to 2.0.1
|
||||
|
||||
* Mon Feb 17 2020 Than Ngo <than@redhat.com> - 1.4.14-5
|
||||
- Fixed FTBFS
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.14-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.14-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.14-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Wed Jan 02 2019 Rex Dieter <rdieter@fedoraproject.org> - 1.4.14-1
|
||||
- 1.4.14
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Mon Apr 09 2018 Rex Dieter <rdieter@fedoraproject.org> - 1.4.6-1
|
||||
- 1.4.6
|
||||
|
||||
* Wed Mar 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 1.4.2-3
|
||||
- BR: gcc
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Fri Dec 01 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.4.2-1
|
||||
- 1.4.2
|
||||
|
||||
* Wed Oct 18 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.4.0-1
|
||||
- 1.4.0
|
||||
|
||||
* Fri Sep 22 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.3.21-1
|
||||
- 1.3.21
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.19-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.19-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Thu Jun 29 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.3.19-1
|
||||
- 1.3.19
|
||||
|
||||
* Sun Jun 11 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.3.18-1
|
||||
- 1.3.18
|
||||
|
||||
* Fri Jun 02 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.3.17-1
|
||||
- 1.3.17, de-bootstrap aarch64
|
||||
|
||||
* Wed Mar 29 2017 Than Ngo <than@redhat.com> - 1.3.16-2
|
||||
- add support for aarch64
|
||||
|
||||
* Mon Mar 27 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.3.16-1
|
||||
- 1.3.16
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.12-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Sun Dec 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.12-1
|
||||
- 1.3.12
|
||||
|
||||
* Sat Dec 17 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.11-2
|
||||
- %%build: --with-sb-core-compression
|
||||
|
||||
* Mon Nov 21 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.11-1
|
||||
- 1.3.11
|
||||
|
||||
* Tue Aug 30 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.9-1
|
||||
- 1.3.9
|
||||
|
||||
* Fri Apr 29 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.5-1
|
||||
- 1.3.5
|
||||
|
||||
* Mon Apr 04 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.4-1
|
||||
- 1.3.4
|
||||
|
||||
* Sat Mar 05 2016 Rex Dieter <rdieter@fedoraproject.org> 1.3.3-1
|
||||
- 1.3.3
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Mon Feb 01 2016 Rex Dieter <rdieter@fedoraproject.org> 1.3.2-1
|
||||
- 1.3.2
|
||||
|
||||
* Wed Nov 11 2015 Rex Dieter <rdieter@fedoraproject.org> - 1.3.0-1
|
||||
- 1.3.0
|
||||
- initial aarch64 support (work in progress)
|
||||
|
||||
* Thu Oct 01 2015 Rex Dieter <rdieter@fedoraproject.org> 1.2.16-1
|
||||
- 1.2.16
|
||||
|
||||
* Mon Sep 14 2015 Rex Dieter <rdieter@fedoraproject.org> 1.2.15-1
|
||||
- 1.2.15
|
||||
|
||||
* Mon Jun 22 2015 Rex Dieter <rdieter@fedoraproject.org> 1.2.12-1
|
||||
- 1.2.12
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.11-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Thu Apr 30 2015 Rex Dieter <rdieter@fedoraproject.org> 1.2.11-1
|
||||
- 1.2.11
|
||||
|
||||
* Fri Feb 13 2015 Rex Dieter <rdieter@fedoraproject.org> 1.2.8-1
|
||||
- 1.2.8
|
||||
|
||||
* Sat Jan 03 2015 Rex Dieter <rdieter@fedoraproject.org> 1.2.7-1
|
||||
- 1.2.7
|
||||
|
||||
* Tue Dec 16 2014 Rex Dieter <rdieter@fedoraproject.org> 1.2.6-1
|
||||
- 1.2.6
|
||||
|
||||
* Thu Oct 09 2014 Rex Dieter <rdieter@fedoraproject.org> 1.2.4-1
|
||||
- 1.2.4
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sat Jun 28 2014 Rex Dieter <rdieter@fedoraproject.org> 1.2.1-1
|
||||
- 1.2.1
|
||||
|
||||
* Thu Jun 12 2014 Rex Dieter <rdieter@fedoraproject.org> 1.2.0-2
|
||||
- rebuild using native sbcl
|
||||
|
||||
* Tue Jun 10 2014 Rex Dieter <rdieter@fedoraproject.org> 1.2.0-0.1.arm_bootstrap
|
||||
- 1.2.0 (#1104857), arm(bootstrap)
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.18-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Wed May 14 2014 Rex Dieter <rdieter@fedoraproject.org> 1.1.18-1
|
||||
- 1.1.18
|
||||
|
||||
* Fri Mar 07 2014 Rex Dieter <rdieter@fedoraproject.org> 1.1.16-1
|
||||
- 1.1.16
|
||||
|
||||
* Wed Jan 29 2014 Rex Dieter <rdieter@fedoraproject.org> 1.1.15-1
|
||||
- 1.1.15
|
||||
|
||||
* Tue Dec 03 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.14-1
|
||||
- 1.1.14
|
||||
|
||||
* Fri Nov 01 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.13-1
|
||||
- 1.1.13
|
||||
|
||||
* Mon Sep 30 2013 Rex Dieter <rdieter@fedoraproject.org> - 1.1.12-1
|
||||
- 1.1.12
|
||||
- (re)enable makeinfo docs on f19+
|
||||
- .spec cleanup
|
||||
|
||||
* Sat Sep 07 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.11-1
|
||||
- 1.1.11
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.8-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Tue Jun 04 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.8-2
|
||||
- sbcl-1.1.8-nconc.patch (courtesy of jjames)
|
||||
|
||||
* Sun Jun 02 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.8-1
|
||||
- 1.1.8
|
||||
|
||||
* Mon Apr 29 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.7-1
|
||||
- 1.1.7
|
||||
|
||||
* Tue Feb 26 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.5-1
|
||||
- 1.1.5
|
||||
|
||||
* Wed Feb 20 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.4-1
|
||||
- 1.1.4
|
||||
- omit texinfo generation on f19, texinfo-5.0 is borked (#913274)
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Tue Jan 08 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.3-1
|
||||
- 1.1.3
|
||||
- fix build against glibc-2.17 (launchpad#1095036)
|
||||
|
||||
* Sat Dec 08 2012 Rex Dieter <rdieter@fedoraproject.org> 1.1.2-1
|
||||
- 1.1.2
|
||||
|
||||
* Fri Nov 02 2012 Rex Dieter <rdieter@fedoraproject.org> 1.1.1-1
|
||||
- 1.1.1
|
||||
|
||||
* Sat Oct 27 2012 Rex Dieter <rdieter@fedoraproject.org> 1.1.0-1
|
||||
- 1.1.0
|
||||
|
||||
* Tue Aug 07 2012 Rex Dieter <rdieter@fedoraproject.org> 1.0.58-1
|
||||
- 1.0.58
|
||||
|
||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.57-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Fri May 25 2012 Rex Dieter <rdieter@fedoraproject.org> - 1.0.57-1
|
||||
- sbcl-1.0.57
|
||||
- fix/renable common-lisp support (accidentally disabled since 1.0.54-1)
|
||||
|
||||
* Thu Apr 12 2012 Rex Dieter <rdieter@fedoraproject.org> 1.0.56-1
|
||||
- 1.0.56
|
||||
|
||||
* Thu Apr 05 2012 Rex Dieter <rdieter@fedoraproject.org> 1.0.55-1
|
||||
- 1.0.55
|
||||
|
||||
* Mon Dec 05 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.54-1
|
||||
- 1.0.54
|
||||
|
||||
* Mon Nov 07 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.53-1
|
||||
- 1.0.53
|
||||
|
||||
* Fri Oct 14 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.52-1
|
||||
- 1.0.52
|
||||
|
||||
* Mon Aug 22 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.51-2
|
||||
- drop unused-for-a-long-time my_setarch.c
|
||||
- fix sbcl --version output if built within git checkout
|
||||
|
||||
* Sun Aug 21 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.51-1
|
||||
- 1.0.51
|
||||
|
||||
* Tue Jul 12 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.50-1
|
||||
- 1.0.50
|
||||
|
||||
* Fri Mar 04 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.46-1
|
||||
- 1.0.46
|
||||
|
||||
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.44-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Mon Nov 29 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.44-1
|
||||
- sbcl-1.0.44
|
||||
- BR: ed (for %%check , tests)
|
||||
|
||||
* Thu Sep 30 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.43-1
|
||||
- sbcl-1.0.43
|
||||
- remove explict threading options, already enabled by default where
|
||||
it makes sense
|
||||
|
||||
* Wed Sep 29 2010 jkeating - 1.0.42-2
|
||||
- Rebuilt for gcc bug 634757
|
||||
|
||||
* Sat Sep 18 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.42-1
|
||||
- sbcl-1.0.42
|
||||
|
||||
* Mon Aug 16 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.41-1
|
||||
- sbcl-1.0.41
|
||||
|
||||
* Sat Jul 17 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.40-1
|
||||
- sbcl-1.0.40
|
||||
|
||||
* Sat May 08 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.38-2
|
||||
- shorten docs dangerously close to maxpathlen
|
||||
|
||||
* Fri Apr 30 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.38-1
|
||||
- sbcl-1.0.38
|
||||
|
||||
* Wed Apr 07 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.37-1
|
||||
- sbcl-1.0.37
|
||||
|
||||
* Mon Feb 01 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.35-1
|
||||
- sbcl-1.0.35
|
||||
|
||||
* Tue Dec 22 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.33-1
|
||||
- sbcl-1.0.33
|
||||
|
||||
* Mon Dec 21 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.32-2
|
||||
- %%check: (re)enable run-tests.sh
|
||||
|
||||
* Mon Oct 26 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.32-1
|
||||
- sbcl-1.0.32
|
||||
|
||||
* Tue Aug 18 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.30-2
|
||||
- customize version.lisp-expr for rpm %%release
|
||||
- s|%%_libdir|%%_prefix/lib|, so common-lisp-controller has at least
|
||||
a chance to work
|
||||
|
||||
* Tue Jul 28 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.30-1
|
||||
- sbcl-1.0.30
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.29-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Sun Jun 28 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.29-1
|
||||
- sbcl-1.0.29
|
||||
|
||||
* Thu Apr 30 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.28-1
|
||||
- sbcl-1.0.28
|
||||
|
||||
* Wed Mar 04 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.26-1
|
||||
- sbcl-1.0.26
|
||||
|
||||
* Fri Feb 27 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.25-3
|
||||
- ExclusiveArch: s/i386/%%ix86/
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.25-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Tue Feb 03 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.25-1
|
||||
- sbcl-1.0.25
|
||||
|
||||
* Wed Dec 31 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.24-1
|
||||
- sbcl-1.0.24
|
||||
|
||||
* Mon Dec 01 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.23-1
|
||||
- sbcl-1.0.23
|
||||
|
||||
* Thu Oct 30 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.22-1
|
||||
- sbcl-1.0.22
|
||||
|
||||
* Thu Oct 02 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.21-1
|
||||
- sbcl-1.0.21
|
||||
- common-lisp-controller bits f10+ only (for now)
|
||||
- drop never-used min_bootstrap crud
|
||||
|
||||
* Mon Sep 22 2008 Anthony Green <green@redhat.com> - 1.0.20-3
|
||||
- Create missing directories.
|
||||
|
||||
* Sun Sep 21 2008 Anthony Green <green@redhat.com> - 1.0.20-2
|
||||
- Add common-lisp-controller bits.
|
||||
|
||||
* Tue Sep 02 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.20-1
|
||||
- sbcl-1.0.20
|
||||
|
||||
* Wed Jul 30 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.19-1
|
||||
- sbcl-1.0.19
|
||||
|
||||
* Thu May 29 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.17-3
|
||||
- info removal should be done in %%preun (#448933)
|
||||
- omit ppc only on f9+ (#448734)
|
||||
|
||||
* Wed May 28 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.17-2
|
||||
- omit ppc build (#448734)
|
||||
- skip tests, known to (sometimes) hang
|
||||
|
||||
* Wed May 28 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.17-1
|
||||
- sbcl-1.0.17
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
--- sbcl-0.9.5/make.sh.verbose-build 2005-09-21 10:00:33.000000000 -0500
|
||||
+++ sbcl-0.9.5/make.sh 2005-09-28 11:42:06.353251776 -0500
|
||||
@@ -70,7 +70,7 @@
|
||||
# If you're cross-compiling, you should probably just walk through the
|
||||
# make-config.sh script by hand doing the right thing on both the host
|
||||
# and target machines.
|
||||
-sh make-config.sh
|
||||
+sh -x make-config.sh
|
||||
|
||||
# Enforce the source policy for no bogus whitespace
|
||||
tools-for-build/canonicalize-whitespace
|
||||
@@ -102,11 +102,11 @@
|
||||
# Or, if you can set up the files somewhere shared (with NFS, AFS, or
|
||||
# whatever) between the host machine and the target machine, the basic
|
||||
# procedure above should still work, but you can skip the "copy" steps.
|
||||
-time sh make-host-1.sh
|
||||
-time sh make-target-1.sh
|
||||
-time sh make-host-2.sh
|
||||
-time sh make-target-2.sh
|
||||
-time sh make-target-contrib.sh
|
||||
+time sh -x make-host-1.sh
|
||||
+time sh -x make-target-1.sh
|
||||
+time sh -x make-host-2.sh
|
||||
+time sh -x make-target-2.sh
|
||||
+time sh -x make-target-contrib.sh
|
||||
|
||||
NCONTRIBS=`find contrib -name Makefile -print | wc -l`
|
||||
NPASSED=`find contrib -name test-passed -print | wc -l`
|
||||
17
sbcl-0001-Do-not-modify-CFLAGS.patch
Normal file
17
sbcl-0001-Do-not-modify-CFLAGS.patch
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
From: Rex Dieter <rdieter@gmail.com>
|
||||
Date: Fri, 1 Dec 2017 13:11:56 -0600
|
||||
Subject: [PATCH] Do not modify CFLAGS
|
||||
|
||||
|
||||
diff --git a/src/runtime/GNUmakefile b/src/runtime/GNUmakefile
|
||||
index ad682adbf..58f4b1cd7 100644
|
||||
--- a/src/runtime/GNUmakefile
|
||||
+++ b/src/runtime/GNUmakefile
|
||||
@@ -33,7 +33,6 @@ __LDFLAGS__ =
|
||||
|
||||
include ../../output/prefix.def
|
||||
|
||||
-CFLAGS += -g -Wall -Wundef -Wsign-compare -Wpointer-arith -O3
|
||||
ASFLAGS += $(CFLAGS)
|
||||
CPPFLAGS += -I.
|
||||
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
From: Rex Dieter <rdieter@gmail.com>
|
||||
Date: Wed, 2 Jan 2019 10:20:53 +0100
|
||||
Subject: [PATCH] Fix for mock builds when /proc isn't available
|
||||
|
||||
|
||||
diff --git a/src/runtime/linux-os.c b/src/runtime/linux-os.c
|
||||
index 26555c5ff..53d1b7abb 100644
|
||||
--- a/src/runtime/linux-os.c
|
||||
+++ b/src/runtime/linux-os.c
|
||||
@@ -255,6 +255,12 @@ int os_preinit(char *argv[], char *envp[])
|
||||
setenv("SBCL_IS_RESTARTING", "T", 1);
|
||||
runtime[i] = '\0';
|
||||
execv(runtime, argv);
|
||||
+ } else {
|
||||
+ /* if /proc isn't available (like in chroot builds, like mock),
|
||||
+ * try using execvp with argv[0] instead */
|
||||
+ environ = envp;
|
||||
+ setenv("SBCL_IS_RESTARTING", "T", 1);
|
||||
+ execvp(argv[0], argv);
|
||||
}
|
||||
}
|
||||
/* Either changing the personality or execve() failed.
|
||||
35
sbcl-0003-Verbose-build.patch
Normal file
35
sbcl-0003-Verbose-build.patch
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
From: Than Ngo <than@redhat.com>
|
||||
Date: Mon, 24 Feb 2020 11:17:04 +0100
|
||||
Subject: [PATCH] Verbose build
|
||||
|
||||
|
||||
diff --git a/make.sh b/make.sh
|
||||
index 217967d59..4978d1cde 100755
|
||||
--- a/make.sh
|
||||
+++ b/make.sh
|
||||
@@ -24,7 +24,7 @@ export LANG LC_ALL
|
||||
# thing" when run on the target machine, with the minor caveat that
|
||||
# any --xc-host parameter should be suitable for the host machine
|
||||
# instead of the target.
|
||||
-sh make-config.sh "$@" --check-host-lisp || exit $?
|
||||
+sh -x make-config.sh "$@" --check-host-lisp || exit $?
|
||||
|
||||
. output/prefix.def
|
||||
. output/build-config
|
||||
@@ -81,11 +81,11 @@ maybetime() {
|
||||
$@
|
||||
fi
|
||||
}
|
||||
-maybetime sh make-host-1.sh
|
||||
-maybetime sh make-target-1.sh
|
||||
-maybetime sh make-host-2.sh
|
||||
-maybetime sh make-target-2.sh
|
||||
-maybetime sh make-target-contrib.sh
|
||||
+maybetime sh -x make-host-1.sh
|
||||
+maybetime sh -x make-target-1.sh
|
||||
+maybetime sh -x make-host-2.sh
|
||||
+maybetime sh -x make-target-2.sh
|
||||
+maybetime sh -x make-target-contrib.sh
|
||||
|
||||
# Confirm that default evaluation strategy is :INTERPRET if sb-fasteval was built
|
||||
src/runtime/sbcl --core output/sbcl.core --lose-on-corruption --noinform \
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
diff -up sbcl-1.1.13/src/runtime/linux-os.c.personality sbcl-1.1.13/src/runtime/linux-os.c
|
||||
--- sbcl-1.1.13/src/runtime/linux-os.c.personality 2013-11-01 12:51:32.229193619 -0500
|
||||
+++ sbcl-1.1.13/src/runtime/linux-os.c 2013-11-01 12:53:57.262562418 -0500
|
||||
@@ -288,6 +288,10 @@ os_init(char *argv[], char *envp[])
|
||||
setenv("SBCL_IS_RESTARTING", "T", 1);
|
||||
runtime[i] = '\0';
|
||||
execv(runtime, argv);
|
||||
+ } else {
|
||||
+ /* if /proc isn't available (like in chroot builds, like mock),
|
||||
+ * try using execvp with argv[0] instead */
|
||||
+ execvp(argv[0], argv);
|
||||
}
|
||||
}
|
||||
/* Either changing the personality or execve() failed. Either
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
diff -up sbcl-1.3.0/generate-version.sh.generate_version sbcl-1.3.0/generate-version.sh
|
||||
--- sbcl-1.3.0/generate-version.sh.generate_version 2015-10-31 09:50:48.000000000 -0500
|
||||
+++ sbcl-1.3.0/generate-version.sh 2015-11-11 11:35:55.154498800 -0600
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
git_available_p() {
|
||||
# Check that (1) we have git (2) this is a git tree.
|
||||
- if ( command -v git >/dev/null && git describe >/dev/null 2>/dev/null )
|
||||
+ if ( test -d .git && command -v git >/dev/null && git describe >/dev/null 2>/dev/null )
|
||||
then
|
||||
echo "ok"
|
||||
else
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
diff -up sbcl-1.3.16/tools-for-build/Makefile.format_security sbcl-1.3.16/tools-for-build/Makefile
|
||||
--- sbcl-1.3.16/tools-for-build/Makefile.format_security 2017-03-27 04:57:35.000000000 -0500
|
||||
+++ sbcl-1.3.16/tools-for-build/Makefile 2017-03-27 10:40:19.925856854 -0500
|
||||
@@ -17,7 +17,7 @@ LDLIBS:=$(OS_LIBS)
|
||||
all: grovel-headers determine-endianness where-is-mcontext \
|
||||
modify-ldt-struct-name sigaction-sa-nodefer-works-test
|
||||
|
||||
-grovel-headers: CPPFLAGS+=-Wno-format
|
||||
+grovel-headers: CPPFLAGS+=-Wno-format -Wno-format-security
|
||||
|
||||
clean:
|
||||
rm -f *.o grovel-headers determine-endianness where-is-mcontext \
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
diff -up sbcl-1.3.18/contrib/asdf-module.mk.optflags sbcl-1.3.18/contrib/asdf-module.mk
|
||||
--- sbcl-1.3.18/contrib/asdf-module.mk.optflags 2017-05-30 05:00:55.000000000 -0500
|
||||
+++ sbcl-1.3.18/contrib/asdf-module.mk 2017-06-01 08:51:13.034713987 -0500
|
||||
@@ -24,6 +24,8 @@ ifeq (Linux,$(UNAME))
|
||||
EXTRA_CFLAGS+=-D_GNU_SOURCE
|
||||
endif
|
||||
|
||||
+#EXTRA_CFLAGS += $(RPM_OPT_FLAGS)
|
||||
+
|
||||
export CC SBCL EXTRA_CFLAGS
|
||||
|
||||
all: $(FASL) $(ASD)
|
||||
diff -up sbcl-1.3.18/src/runtime/Config.arm-linux.optflags sbcl-1.3.18/src/runtime/Config.arm-linux
|
||||
--- sbcl-1.3.18/src/runtime/Config.arm-linux.optflags 2017-05-30 05:00:56.000000000 -0500
|
||||
+++ sbcl-1.3.18/src/runtime/Config.arm-linux 2017-06-01 08:51:13.034713987 -0500
|
||||
@@ -9,7 +9,7 @@
|
||||
# provided with absolutely no warranty. See the COPYING and CREDITS
|
||||
# files for more information.
|
||||
|
||||
-CFLAGS += -marm -march=armv5
|
||||
+#CFLAGS += -marm -march=armv5
|
||||
NM = ./linux-nm
|
||||
|
||||
ASSEM_SRC = arm-assem.S ldso-stubs.S
|
||||
diff -up sbcl-1.3.18/src/runtime/GNUmakefile.optflags sbcl-1.3.18/src/runtime/GNUmakefile
|
||||
--- sbcl-1.3.18/src/runtime/GNUmakefile.optflags 2017-05-30 05:00:56.000000000 -0500
|
||||
+++ sbcl-1.3.18/src/runtime/GNUmakefile 2017-06-01 12:11:20.443922739 -0500
|
||||
@@ -30,7 +30,7 @@ __LDFLAGS__ =
|
||||
|
||||
include ../../output/prefix.def
|
||||
|
||||
-CFLAGS += -g -Wall -Wsign-compare -Wpointer-arith -O3
|
||||
+#CFLAGS += -g -Wall -Wsign-compare -Wpointer-arith -O3
|
||||
ASFLAGS += $(CFLAGS)
|
||||
CPPFLAGS += -I. -DSBCL_PREFIX=\"$(SBCL_PREFIX)\"
|
||||
|
||||
511
sbcl.spec
511
sbcl.spec
|
|
@ -1,95 +1,59 @@
|
|||
# build with a bootstrap Common Lisp binary
|
||||
%bcond_with bootstrap
|
||||
|
||||
%define common_lisp_controller 1
|
||||
%global common_lisp_controller 1
|
||||
|
||||
# generate/package docs
|
||||
%define docs 1
|
||||
%global docs 1
|
||||
|
||||
# define to enable verbose build for debugging
|
||||
#define sbcl_verbose 1
|
||||
%define sbcl_shell /bin/bash
|
||||
%global sbcl_verbose 0
|
||||
%global sbcl_shell /bin/bash
|
||||
|
||||
Name: sbcl
|
||||
# SBCL name for the architecture
|
||||
%ifarch %{ix86}
|
||||
%global sbcl_arch x86
|
||||
%endif
|
||||
%ifarch x86_64
|
||||
%global sbcl_arch x86-64
|
||||
%endif
|
||||
%ifarch aarch64
|
||||
%global sbcl_arch arm64
|
||||
%endif
|
||||
%ifarch %{power64}
|
||||
%global sbcl_arch ppc64
|
||||
%endif
|
||||
|
||||
Name: sbcl
|
||||
Summary: Steel Bank Common Lisp
|
||||
Version: 1.4.0
|
||||
Release: 1%{?dist}
|
||||
Version: 2.6.0
|
||||
Release: %autorelease
|
||||
|
||||
License: BSD
|
||||
URL: http://sbcl.sourceforge.net/
|
||||
Source0: http://downloads.sourceforge.net/sourceforge/sbcl/sbcl-%{version}-source.tar.bz2
|
||||
# See COPYING for a license breakdown
|
||||
# FIXME: The files in src/pcl have a license similar, but not identical, to the
|
||||
# Xerox license
|
||||
License: LicenseRef-Fedora-Public-Domain AND LOOP AND BSD-3-Clause
|
||||
URL: https://sbcl.sourceforge.io/
|
||||
Source0: https://downloads.sourceforge.net/sourceforge/%{name}/%{name}-%{version}-source.tar.bz2
|
||||
|
||||
ExclusiveArch: %{arm} %{ix86} x86_64 ppc sparcv9 aarch64
|
||||
# Upstream has riscv32 and riscv64 support, but you need a Common Lisp binary
|
||||
# to bootstrap with, and none seem to be available for RISC-V. It might be
|
||||
# possible to cross-compile the bootstrap SBCL from another architecture.
|
||||
#
|
||||
# Architectures supported by upstream that are no longer built by Fedora:
|
||||
# - 32-bit ARM
|
||||
# - 32-bit PowerPC
|
||||
# - MIPS
|
||||
# - Sparc
|
||||
ExclusiveArch: %{ix86} x86_64 aarch64 %{power64} riscv64
|
||||
|
||||
# Pre-generated html docs
|
||||
Source1: http://downloads.sourceforge.net/sourceforge/sbcl/sbcl-%{version}-documentation-html.tar.bz2
|
||||
Source1: https://downloads.sourceforge.net/sourceforge/%{name}/%{name}-%{version}-documentation-html.tar.bz2
|
||||
|
||||
## x86 section
|
||||
#Source10: http://downloads.sourceforge.net/sourceforge/sbcl/sbcl-1.0.15-x86-linux-binary.tar.bz2
|
||||
%ifarch %{ix86}
|
||||
%define sbcl_arch x86
|
||||
%if %{with bootstrap}
|
||||
BuildRequires: clisp
|
||||
%else
|
||||
BuildRequires: sbcl
|
||||
# or
|
||||
#define sbcl_bootstrap_src -b 10
|
||||
%endif
|
||||
|
||||
## x86_64 section
|
||||
#Source20: http://downloads.sourceforge.net/sourceforge/sbcl/sbcl-1.2.0-x86-64-linux-binary.tar.bz2
|
||||
%ifarch x86_64
|
||||
%define sbcl_arch x86-64
|
||||
BuildRequires: sbcl
|
||||
# or
|
||||
#define sbcl_bootstrap_src -b 20
|
||||
#define sbcl_bootstrap_dir sbcl-1.2.0-x86-64-linux
|
||||
%endif
|
||||
|
||||
## ppc section
|
||||
# Thanks David!
|
||||
#Source30: sbcl-1.0.1-patched_el4-powerpc-linux.tar.bz2
|
||||
#Source30: sbcl-1.0.1-patched-powerpc-linux.tar.bz2
|
||||
%ifarch ppc
|
||||
%define sbcl_arch ppc
|
||||
BuildRequires: sbcl
|
||||
# or
|
||||
#define sbcl_bootstrap_src -b 30
|
||||
%endif
|
||||
|
||||
## sparc section
|
||||
#Source40: http://downloads.sourceforge.net/sourceforge/sbcl/sbcl-0.9.17-sparc-linux-binary.tar.bz2
|
||||
%ifarch sparcv9
|
||||
%define sbcl_arch sparc
|
||||
BuildRequires: sbcl
|
||||
# or
|
||||
#define sbcl_bootstrap_src -b 40
|
||||
%endif
|
||||
|
||||
## arm section
|
||||
#Source50: http://downloads.sourceforge.net/sourceforge/sbcl/sbcl-1.2.0-armel-linux-binary.tar.bz2
|
||||
%ifarch armv5tel
|
||||
%define sbcl_arch arm
|
||||
BuildRequires: sbcl
|
||||
# or
|
||||
#define sbcl_bootstrap_src -b 50
|
||||
#define sbcl_bootstrap_dir sbcl-1.2.0-armel-linux
|
||||
%endif
|
||||
|
||||
#Source60: http://downloads.sourceforge.net/sourceforge/sbcl/sbcl-1.2.0-armhf-linux-binary.tar.bz2
|
||||
# generated on a fedora20 arm box, sf bootstrap missing sb-gmp
|
||||
#Source60: sbcl-1.2.0-armhf-linux-binary-2.tar.bz2
|
||||
%ifarch armv6hl armv7hl
|
||||
%define sbcl_arch arm
|
||||
BuildRequires: sbcl
|
||||
# or
|
||||
#define sbcl_bootstrap_src -b 60
|
||||
#define sbcl_bootstrap_dir sbcl-1.2.0-armhf-vfp
|
||||
%endif
|
||||
|
||||
## aarch64 section
|
||||
#Source70: http://downloads.sourceforge.net/sourceforge/sbcl/sbcl-1.3.16-arm64-linux-binary.tar.bz2
|
||||
%ifarch aarch64
|
||||
%define sbcl_arch arm64
|
||||
BuildRequires: sbcl
|
||||
# or
|
||||
#define sbcl_bootstrap_src -b 70
|
||||
#define sbcl_bootstrap_dir sbcl-1.3.16-arm64-linux
|
||||
%endif
|
||||
|
||||
%if 0%{?common_lisp_controller}
|
||||
|
|
@ -102,23 +66,23 @@ Source201: sbcl.rc
|
|||
Source202: sbcl-install-clc.lisp
|
||||
%endif
|
||||
|
||||
Patch2: sbcl-1.1.13-personality.patch
|
||||
Patch3: sbcl-1.3.18-optflags.patch
|
||||
Patch6: sbcl-0.9.5-verbose-build.patch
|
||||
Patch: sbcl-0001-Do-not-modify-CFLAGS.patch
|
||||
Patch: sbcl-0002-Fix-for-mock-builds-when-proc-isn-t-available.patch
|
||||
Patch: sbcl-0003-Verbose-build.patch
|
||||
|
||||
## upstreamable patches
|
||||
Patch50: sbcl-1.3.0-generate_version.patch
|
||||
Patch51: sbcl-1.3.16-no_format_security.patch
|
||||
|
||||
## upstream patches
|
||||
|
||||
BuildRequires: zlib-devel
|
||||
BuildRequires: make
|
||||
BuildRequires: emacs-common
|
||||
BuildRequires: gcc
|
||||
BuildRequires: libzstd-devel
|
||||
# %%check/tests
|
||||
BuildRequires: ed
|
||||
BuildRequires: hostname
|
||||
BuildRequires: strace
|
||||
%if 0%{?docs}
|
||||
Requires(post): /sbin/install-info
|
||||
Requires(preun): /sbin/install-info
|
||||
# doc generation
|
||||
BuildRequires: ghostscript
|
||||
BuildRequires: texinfo
|
||||
|
|
@ -132,41 +96,25 @@ interpreter, and debugger.
|
|||
|
||||
|
||||
%prep
|
||||
%setup -q -c -n sbcl-%{version} -a 1 %{?sbcl_bootstrap_src}
|
||||
|
||||
pushd sbcl-%{version}
|
||||
|
||||
%patch2 -p1 -b .personality
|
||||
%patch3 -p1 -b .optflags
|
||||
%{?sbcl_verbose:%patch6 -p1 -b .verbose-build}
|
||||
%patch50 -p1 -b .generate_version
|
||||
%patch51 -p1 -b .no_format_security
|
||||
|
||||
# fix permissions (some have eXecute bit set)
|
||||
find . -name '*.c' | xargs chmod 644
|
||||
%autosetup -p1
|
||||
|
||||
# set version.lisp-expr
|
||||
sed -i.rpmver -e "s|\"%{version}\"|\"%{version}-%{release}\"|" version.lisp-expr
|
||||
|
||||
# make %%doc items available in parent dir to make life easier
|
||||
cp -alf BUGS COPYING README CREDITS NEWS TLA TODO PRINCIPLES ..
|
||||
ln -s sbcl-%{version}/doc ../doc
|
||||
popd
|
||||
|
||||
|
||||
%build
|
||||
pushd sbcl-%{version}
|
||||
|
||||
export CFLAGS="%{?optflags}"
|
||||
export LDFLAGS="%{?__global_ldflags}"
|
||||
export CFLAGS='%{build_cflags}'
|
||||
export LDFLAGS='%{build_ldflags}'
|
||||
export CC=gcc
|
||||
|
||||
export SBCL_HOME=%{_prefix}/lib/sbcl
|
||||
%{?sbcl_arch:export SBCL_ARCH=%{sbcl_arch}}
|
||||
%{?sbcl_shell} \
|
||||
./make.sh \
|
||||
--fancy \
|
||||
--prefix=%{_prefix} \
|
||||
--with-sb-core-compression \
|
||||
%{?sbcl_bootstrap_dir:--xc-host="`pwd`/../%{sbcl_bootstrap_dir}/run-sbcl.sh"}
|
||||
%{?sbcl_bootstrap_dir:--xc-host='clisp -on-error exit'}
|
||||
|
||||
# docs
|
||||
%if 0%{?docs}
|
||||
|
|
@ -176,16 +124,14 @@ make -C doc/manual info
|
|||
tar xvjf %{SOURCE1}
|
||||
cp -av %{name}-%{version}/doc/manual/* doc/manual/
|
||||
%endif
|
||||
popd
|
||||
|
||||
|
||||
%install
|
||||
pushd sbcl-%{version}
|
||||
mkdir -p %{buildroot}{%{_bindir},%{_prefix}/lib,%{_mandir}}
|
||||
|
||||
unset SBCL_HOME
|
||||
export INSTALL_ROOT=%{buildroot}%{_prefix}
|
||||
%{?sbcl_shell} ./install.sh
|
||||
unset SBCL_HOME
|
||||
export INSTALL_ROOT=%{buildroot}%{_prefix}
|
||||
%{?sbcl_shell} ./install.sh
|
||||
|
||||
%if 0%{?common_lisp_controller}
|
||||
install -m744 -p -D %{SOURCE200} %{buildroot}%{_prefix}/lib/common-lisp/bin/sbcl.sh
|
||||
|
|
@ -194,20 +140,17 @@ install -m644 -p -D %{SOURCE202} %{buildroot}%{_prefix}/lib/sbcl/install-clc.lis
|
|||
# linking ok? -- Rex
|
||||
cp -p %{buildroot}%{_prefix}/lib/sbcl/sbcl.core %{buildroot}%{_prefix}/lib/sbcl/sbcl-dist.core
|
||||
%endif
|
||||
popd
|
||||
|
||||
## Unpackaged files
|
||||
rm -rfv %{buildroot}%{_docdir}/sbcl
|
||||
rm -fv %{buildroot}%{_infodir}/dir
|
||||
# CVS crud
|
||||
find %{buildroot} -name CVS -type d | xargs rm -rfv
|
||||
find %{buildroot} -name .cvsignore | xargs rm -fv
|
||||
# CVS crud
|
||||
find %{buildroot} -name .cvsignore -delete
|
||||
# 'test-passed' files from %%check
|
||||
find %{buildroot} -name 'test-passed' | xargs rm -vf
|
||||
find %{buildroot} -name 'test-passed' -delete
|
||||
|
||||
|
||||
%check
|
||||
pushd sbcl-%{version}
|
||||
ERROR=0
|
||||
# sanity check, essential contrib modules get built/included?
|
||||
CONTRIBS="sb-posix.fasl sb-bsd-sockets.fasl"
|
||||
|
|
@ -226,32 +169,14 @@ test "$(. ./subr.sh; "$SBCL_RUNTIME" --core "$SBCL_CORE" --version --version 2>/
|
|||
time %{?sbcl_shell} ./run-tests.sh ||:
|
||||
popd
|
||||
exit $ERROR
|
||||
popd
|
||||
|
||||
|
||||
%if ! 0%{?docs}
|
||||
%pre
|
||||
if [ $1 -gt 0 ]; then
|
||||
/sbin/install-info --delete %{_infodir}/sbcl.info %{_infodir}/dir > /dev/null 2>&1 ||:
|
||||
/sbin/install-info --delete %{_infodir}/asdf.info %{_infodir}/dir > /dev/null 2>&1 ||:
|
||||
fi
|
||||
%endif
|
||||
|
||||
%post
|
||||
%if 0%{?docs}
|
||||
/sbin/install-info %{_infodir}/sbcl.info %{_infodir}/dir ||:
|
||||
/sbin/install-info %{_infodir}/asdf.info %{_infodir}/dir ||:
|
||||
%endif
|
||||
%if 0%{?common_lisp_controller}
|
||||
/usr/sbin/register-common-lisp-implementation sbcl > /dev/null 2>&1 ||:
|
||||
%endif
|
||||
|
||||
%preun
|
||||
if [ $1 -eq 0 ]; then
|
||||
%if 0%{?docs}
|
||||
/sbin/install-info --delete %{_infodir}/sbcl.info %{_infodir}/dir ||:
|
||||
/sbin/install-info --delete %{_infodir}/asdf.info %{_infodir}/dir ||:
|
||||
%endif
|
||||
%if 0%{?common_lisp_controller}
|
||||
/usr/sbin/unregister-common-lisp-implementation sbcl > /dev/null 2>&1 ||:
|
||||
%endif
|
||||
|
|
@ -283,312 +208,4 @@ fi
|
|||
|
||||
|
||||
%changelog
|
||||
* Wed Oct 18 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.4.0-1
|
||||
- 1.4.0
|
||||
|
||||
* Fri Sep 22 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.3.21-1
|
||||
- 1.3.21
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.19-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.19-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Thu Jun 29 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.3.19-1
|
||||
- 1.3.19
|
||||
|
||||
* Sun Jun 11 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.3.18-1
|
||||
- 1.3.18
|
||||
|
||||
* Fri Jun 02 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.3.17-1
|
||||
- 1.3.17, de-bootstrap aarch64
|
||||
|
||||
* Wed Mar 29 2017 Than Ngo <than@redhat.com> - 1.3.16-2
|
||||
- add support for aarch64
|
||||
|
||||
* Mon Mar 27 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.3.16-1
|
||||
- 1.3.16
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.12-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Sun Dec 18 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.12-1
|
||||
- 1.3.12
|
||||
|
||||
* Sat Dec 17 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.11-2
|
||||
- %%build: --with-sb-core-compression
|
||||
|
||||
* Mon Nov 21 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.11-1
|
||||
- 1.3.11
|
||||
|
||||
* Tue Aug 30 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.9-1
|
||||
- 1.3.9
|
||||
|
||||
* Fri Apr 29 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.5-1
|
||||
- 1.3.5
|
||||
|
||||
* Mon Apr 04 2016 Rex Dieter <rdieter@fedoraproject.org> - 1.3.4-1
|
||||
- 1.3.4
|
||||
|
||||
* Sat Mar 05 2016 Rex Dieter <rdieter@fedoraproject.org> 1.3.3-1
|
||||
- 1.3.3
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Mon Feb 01 2016 Rex Dieter <rdieter@fedoraproject.org> 1.3.2-1
|
||||
- 1.3.2
|
||||
|
||||
* Wed Nov 11 2015 Rex Dieter <rdieter@fedoraproject.org> - 1.3.0-1
|
||||
- 1.3.0
|
||||
- initial aarch64 support (work in progress)
|
||||
|
||||
* Thu Oct 01 2015 Rex Dieter <rdieter@fedoraproject.org> 1.2.16-1
|
||||
- 1.2.16
|
||||
|
||||
* Mon Sep 14 2015 Rex Dieter <rdieter@fedoraproject.org> 1.2.15-1
|
||||
- 1.2.15
|
||||
|
||||
* Mon Jun 22 2015 Rex Dieter <rdieter@fedoraproject.org> 1.2.12-1
|
||||
- 1.2.12
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.11-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Thu Apr 30 2015 Rex Dieter <rdieter@fedoraproject.org> 1.2.11-1
|
||||
- 1.2.11
|
||||
|
||||
* Fri Feb 13 2015 Rex Dieter <rdieter@fedoraproject.org> 1.2.8-1
|
||||
- 1.2.8
|
||||
|
||||
* Sat Jan 03 2015 Rex Dieter <rdieter@fedoraproject.org> 1.2.7-1
|
||||
- 1.2.7
|
||||
|
||||
* Tue Dec 16 2014 Rex Dieter <rdieter@fedoraproject.org> 1.2.6-1
|
||||
- 1.2.6
|
||||
|
||||
* Thu Oct 09 2014 Rex Dieter <rdieter@fedoraproject.org> 1.2.4-1
|
||||
- 1.2.4
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sat Jun 28 2014 Rex Dieter <rdieter@fedoraproject.org> 1.2.1-1
|
||||
- 1.2.1
|
||||
|
||||
* Thu Jun 12 2014 Rex Dieter <rdieter@fedoraproject.org> 1.2.0-2
|
||||
- rebuild using native sbcl
|
||||
|
||||
* Tue Jun 10 2014 Rex Dieter <rdieter@fedoraproject.org> 1.2.0-0.1.arm_bootstrap
|
||||
- 1.2.0 (#1104857), arm(bootstrap)
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.18-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Wed May 14 2014 Rex Dieter <rdieter@fedoraproject.org> 1.1.18-1
|
||||
- 1.1.18
|
||||
|
||||
* Fri Mar 07 2014 Rex Dieter <rdieter@fedoraproject.org> 1.1.16-1
|
||||
- 1.1.16
|
||||
|
||||
* Wed Jan 29 2014 Rex Dieter <rdieter@fedoraproject.org> 1.1.15-1
|
||||
- 1.1.15
|
||||
|
||||
* Tue Dec 03 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.14-1
|
||||
- 1.1.14
|
||||
|
||||
* Fri Nov 01 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.13-1
|
||||
- 1.1.13
|
||||
|
||||
* Mon Sep 30 2013 Rex Dieter <rdieter@fedoraproject.org> - 1.1.12-1
|
||||
- 1.1.12
|
||||
- (re)enable makeinfo docs on f19+
|
||||
- .spec cleanup
|
||||
|
||||
* Sat Sep 07 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.11-1
|
||||
- 1.1.11
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.8-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Tue Jun 04 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.8-2
|
||||
- sbcl-1.1.8-nconc.patch (courtesy of jjames)
|
||||
|
||||
* Sun Jun 02 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.8-1
|
||||
- 1.1.8
|
||||
|
||||
* Mon Apr 29 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.7-1
|
||||
- 1.1.7
|
||||
|
||||
* Tue Feb 26 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.5-1
|
||||
- 1.1.5
|
||||
|
||||
* Wed Feb 20 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.4-1
|
||||
- 1.1.4
|
||||
- omit texinfo generation on f19, texinfo-5.0 is borked (#913274)
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Tue Jan 08 2013 Rex Dieter <rdieter@fedoraproject.org> 1.1.3-1
|
||||
- 1.1.3
|
||||
- fix build against glibc-2.17 (launchpad#1095036)
|
||||
|
||||
* Sat Dec 08 2012 Rex Dieter <rdieter@fedoraproject.org> 1.1.2-1
|
||||
- 1.1.2
|
||||
|
||||
* Fri Nov 02 2012 Rex Dieter <rdieter@fedoraproject.org> 1.1.1-1
|
||||
- 1.1.1
|
||||
|
||||
* Sat Oct 27 2012 Rex Dieter <rdieter@fedoraproject.org> 1.1.0-1
|
||||
- 1.1.0
|
||||
|
||||
* Tue Aug 07 2012 Rex Dieter <rdieter@fedoraproject.org> 1.0.58-1
|
||||
- 1.0.58
|
||||
|
||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.57-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Fri May 25 2012 Rex Dieter <rdieter@fedoraproject.org> - 1.0.57-1
|
||||
- sbcl-1.0.57
|
||||
- fix/renable common-lisp support (accidentally disabled since 1.0.54-1)
|
||||
|
||||
* Thu Apr 12 2012 Rex Dieter <rdieter@fedoraproject.org> 1.0.56-1
|
||||
- 1.0.56
|
||||
|
||||
* Thu Apr 05 2012 Rex Dieter <rdieter@fedoraproject.org> 1.0.55-1
|
||||
- 1.0.55
|
||||
|
||||
* Mon Dec 05 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.54-1
|
||||
- 1.0.54
|
||||
|
||||
* Mon Nov 07 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.53-1
|
||||
- 1.0.53
|
||||
|
||||
* Fri Oct 14 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.52-1
|
||||
- 1.0.52
|
||||
|
||||
* Mon Aug 22 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.51-2
|
||||
- drop unused-for-a-long-time my_setarch.c
|
||||
- fix sbcl --version output if built within git checkout
|
||||
|
||||
* Sun Aug 21 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.51-1
|
||||
- 1.0.51
|
||||
|
||||
* Tue Jul 12 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.50-1
|
||||
- 1.0.50
|
||||
|
||||
* Fri Mar 04 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.46-1
|
||||
- 1.0.46
|
||||
|
||||
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.44-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Mon Nov 29 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.44-1
|
||||
- sbcl-1.0.44
|
||||
- BR: ed (for %%check , tests)
|
||||
|
||||
* Thu Sep 30 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.43-1
|
||||
- sbcl-1.0.43
|
||||
- remove explict threading options, already enabled by default where
|
||||
it makes sense
|
||||
|
||||
* Wed Sep 29 2010 jkeating - 1.0.42-2
|
||||
- Rebuilt for gcc bug 634757
|
||||
|
||||
* Sat Sep 18 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.42-1
|
||||
- sbcl-1.0.42
|
||||
|
||||
* Mon Aug 16 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.41-1
|
||||
- sbcl-1.0.41
|
||||
|
||||
* Sat Jul 17 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.40-1
|
||||
- sbcl-1.0.40
|
||||
|
||||
* Sat May 08 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.38-2
|
||||
- shorten docs dangerously close to maxpathlen
|
||||
|
||||
* Fri Apr 30 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.38-1
|
||||
- sbcl-1.0.38
|
||||
|
||||
* Wed Apr 07 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.37-1
|
||||
- sbcl-1.0.37
|
||||
|
||||
* Mon Feb 01 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.35-1
|
||||
- sbcl-1.0.35
|
||||
|
||||
* Tue Dec 22 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.33-1
|
||||
- sbcl-1.0.33
|
||||
|
||||
* Mon Dec 21 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.32-2
|
||||
- %%check: (re)enable run-tests.sh
|
||||
|
||||
* Mon Oct 26 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.32-1
|
||||
- sbcl-1.0.32
|
||||
|
||||
* Tue Aug 18 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.30-2
|
||||
- customize version.lisp-expr for rpm %%release
|
||||
- s|%%_libdir|%%_prefix/lib|, so common-lisp-controller has at least
|
||||
a chance to work
|
||||
|
||||
* Tue Jul 28 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.30-1
|
||||
- sbcl-1.0.30
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.29-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Sun Jun 28 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.29-1
|
||||
- sbcl-1.0.29
|
||||
|
||||
* Thu Apr 30 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.28-1
|
||||
- sbcl-1.0.28
|
||||
|
||||
* Wed Mar 04 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.26-1
|
||||
- sbcl-1.0.26
|
||||
|
||||
* Fri Feb 27 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.25-3
|
||||
- ExclusiveArch: s/i386/%%ix86/
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.25-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Tue Feb 03 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.25-1
|
||||
- sbcl-1.0.25
|
||||
|
||||
* Wed Dec 31 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.24-1
|
||||
- sbcl-1.0.24
|
||||
|
||||
* Mon Dec 01 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.23-1
|
||||
- sbcl-1.0.23
|
||||
|
||||
* Thu Oct 30 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.22-1
|
||||
- sbcl-1.0.22
|
||||
|
||||
* Thu Oct 02 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.21-1
|
||||
- sbcl-1.0.21
|
||||
- common-lisp-controller bits f10+ only (for now)
|
||||
- drop never-used min_bootstrap crud
|
||||
|
||||
* Mon Sep 22 2008 Anthony Green <green@redhat.com> - 1.0.20-3
|
||||
- Create missing directories.
|
||||
|
||||
* Sun Sep 21 2008 Anthony Green <green@redhat.com> - 1.0.20-2
|
||||
- Add common-lisp-controller bits.
|
||||
|
||||
* Tue Sep 02 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.20-1
|
||||
- sbcl-1.0.20
|
||||
|
||||
* Wed Jul 30 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.19-1
|
||||
- sbcl-1.0.19
|
||||
|
||||
* Thu May 29 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.17-3
|
||||
- info removal should be done in %%preun (#448933)
|
||||
- omit ppc only on f9+ (#448734)
|
||||
|
||||
* Wed May 28 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.17-2
|
||||
- omit ppc build (#448734)
|
||||
- skip tests, known to (sometimes) hang
|
||||
|
||||
* Wed May 28 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.17-1
|
||||
- sbcl-1.0.17
|
||||
%autochangelog
|
||||
|
|
|
|||
4
sources
4
sources
|
|
@ -1,2 +1,2 @@
|
|||
SHA512 (sbcl-1.4.0-documentation-html.tar.bz2) = 951bdd15f7cd4a7d466d22469a43e55c1810082897af6458b87984e4e00ba2203c8406432b879b33d2220dd0fb1c07589e73f80ae8b6cd9e896905de2677f707
|
||||
SHA512 (sbcl-1.4.0-source.tar.bz2) = fe22f06cf645b20445e55700cbb3a54d27de58f3cffafb67b0970a0f6962e9914708d0718ffd3dda0a75dfdf8c9f6830dd995ccf7e9c2384ee043eeb27bb3d1b
|
||||
SHA512 (sbcl-2.6.0-source.tar.bz2) = 65cb2645a9f2a643775f3fa29a656bc5810a1f374aa6ef133d12626ee77ad3d5666ec63808be3cfb74a44b6b0d6276ce21ff26b98ae1a4106cfa966fedec30cc
|
||||
SHA512 (sbcl-2.6.0-documentation-html.tar.bz2) = 1971a093e2b65616669ccb0ee1254495cff0e9e066bdad17a86eb9048d255f438c583bf0bee41f25d3d75160029850d1c154354713dd312c1af50e4b6e10b996
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue