Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: libguile-srfi-srfi-60-v-2-2 | Distribution: openSUSE Leap 16.0 |
Version: 1.8.8 | Vendor: openSUSE |
Release: lp160.1.1 | Build date: Tue Feb 27 12:09:26 2024 |
Group: Development/Languages/Scheme | Build host: reproducible |
Size: 14202 | Source RPM: guile1-1.8.8-lp160.1.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://www.gnu.org/software/guile/ | |
Summary: GNU's Ubiquitous Intelligent Language for Extension |
This is Guile, a portable, embeddable Scheme implementation written in C. Guile provides a machine independent execution platform that can be linked in as a library when building extensible programs. This package contains the shared libraries.
LGPL-2.1-or-later
* Tue Feb 27 2024 Dominique Leuenberger <[email protected]> - Use %patch -P N instead of deprecated %patchN. * Mon Jun 08 2020 Dave Plater <[email protected]> - Fix build with gcc10 by removing optimization from the build flags Thanks to the lilypond devs. * Sat Nov 23 2019 Dave Plater <[email protected]> - Fix build with new texinfo, which now assumes UTF8 in the texi files with guile1-fix-texinfo-default-utf8.patch. * Fri Sep 06 2019 Dave Plater <[email protected]> - Disable link time optimisation to fix build. * Mon Jan 16 2017 [email protected] - Add reproducible.patch to allow for reproducible builds * Mon Oct 17 2016 [email protected] - security update * CVE-2016-8605 [bsc#1004221] + guile1-CVE-2016-8605.patch * Sat Mar 14 2015 [email protected] - Add gpg signature - Use url for source - Cleanup spec file with spec-cleaner - Fix failures with texinfo 5.2 * guile-texinfo.patch * Sat Dec 14 2013 [email protected] - Make `socket.test' more robust * guile-socket-test.patch (from git branch_release-1-8) * Mon Jun 17 2013 [email protected] - do not run test simultaneously * Fri Apr 26 2013 [email protected] - Added makeinfo BuildRequire to fix build with new automake * Mon Mar 04 2013 [email protected] - build with new automake * automake-1.13.patch * Mon Sep 10 2012 [email protected] - Reauire the library packages from the main package: having the * .so symlinks in the main package forces us to install the libs as well, or we end up with dangling symlinks (thus, failing to actually dlopen the .so file, which was the main reason to move them to the main package. Fixes issues like bnc#779458). * Tue Jul 31 2012 [email protected] - move *.so files into main package [bnc#772490] * Tue Jan 31 2012 [email protected] - fix requires of devel package * Wed Jan 25 2012 [email protected] - package /usr/share/aclocal/guile1.m4 (gnucash uses autoreconf) (GUILE_* macros renamed to GUILE1_*) [bnc#724917] * Tue Jan 10 2012 [email protected] - added automake and libtool into buildrequires - make guile1 and guile1-devel instalable along with guile and guile-devel [bnc#724917]: * removed info pages * removed /usr/share/aclocal/guile.m4 * /usr/bin/guile* renamed to /usr/bin/guile1* * Wed Sep 28 2011 [email protected] - Changed name to guile1 to create new package for factory, based on the 11.4 guile-1.8.7, to enable lilypond to build. Split off libraries and updated to version 1.8.8. - Removed guile-testsuite-build.patch now incorporated in sources. Upstream changes : * Fix possible buffer overruns when parsing numbers * Fix random number generator on 64-bit platforms Previously the `scm_c_random' function would crash or return only 32-bit worth of randomness. In addition, the new `scm_c_random64' function explicitly returns 64 bits of randomness. * Add missing range checks in `vector-move-left!' and `vector-move-right!'Previously these procedures could write past the end of a vector. * Avoid clash with system setjmp/longjmp on IA64 * Don't dynamically link an extension that is already registered * Fix `wrong type arg' exceptions with IPv6 addresses * Fix typos in `(srfi srfi-19)' * Have `(srfi srfi-35)' provide named struct vtables * Fix C documentation extraction ("snarfing") with recent GCC versions * Fix some Interix build problems * Fix Tru64 build problems * Fix GC-related build issues on Solaris 10 x86 with Sun Studio 12. * Several small documentation fixes. * Mon Mar 22 2010 [email protected] - fixed build with new gcc * Tue Jan 26 2010 [email protected] - fixed build: "Earlier versions of ltdl would look for extensions under $PWD; this behavior changed in 2.2.6b." * testsuite-build.patch taken from guile git (1.8 branch) * Mon Nov 30 2009 [email protected] - updated to 1.8.7 (see NEWS) - fixed testsuite with patch taken from Fedora * popen-test.patch * Tue Nov 03 2009 [email protected] - updated patches to apply with fuzz=0 * Tue Jun 16 2009 [email protected] - Updated to 1.8.6 (see NEWS) - removed ac.patch * Sat Feb 07 2009 [email protected] - Rebuild broken info files. - Fix %post scripts. * Fri Jan 16 2009 [email protected] - remove static libraries - run make check * Sun Sep 07 2008 [email protected] - Fix conflicting options. * Mon Jul 07 2008 [email protected] - updated to 1.8.5: * new modules `(srfi srfi-88)' * New `postfix' read option, for SRFI-88 keyword syntax * Some I/O primitives have been inlined, which improves I/O performance * New object-based traps infrastructure * New support for working on Guile code from within Emacs * bug fixes * Thu Mar 13 2008 [email protected] - Use autoreconf. * Thu Feb 28 2008 [email protected] - update to 1.8.4: * New modules (srfi srfi-69) * Bug fixes - fix code for recent gcc by checking for __GNUC_GNU_INLINE__ instead of __GNUC__ for inline specifics (thanks, richi) * Mon Feb 04 2008 [email protected] - guile conflicts with slib < 3a5 [#354936] * Wed Dec 12 2007 [email protected] - upgraded to 1.8.3: * New modules (srfi srfi-35), (srfi srfi-37) * Bug fixes * The reader is now faster, which reduces startup time * Procedures returned by `record-accessor' and `record-modifier' are faster * New procedures set-program-arguments, make-vtable * Incompatible change: ~~~~~~~~~~~~~~~~~~~~ The body of a top-level `define' no longer sees the binding being created. In a top-level `define', the binding being created is no longer visible from the `define' body. This breaks code like "(define foo (begin (set! foo 1) (+ foo 1)))", where `foo' is now unbound in the body. However, such code was not R5RS-compliant anyway, per Section 5.2.1. - removed getcontext.patch -- no longer needed because of code change * Mon Mar 05 2007 [email protected] - Slib guile library installation moved from guile to slib. * Thu Jan 11 2007 [email protected] - More spec file cleanups. * Fri Dec 08 2006 [email protected] - Clean up the spec, removing some hardcoded paths. * Tue Nov 28 2006 [email protected] - Build as user and do not alter root filesystem. * Mon Nov 27 2006 [email protected] - Created empty directory for site packages (#223837). * Thu Nov 23 2006 [email protected] - Fixed slib installation scriptlets (#214940). * Wed Nov 08 2006 [email protected] - moved .la files to the base package (#218032). * Wed Oct 25 2006 [email protected] - Moved .so files to the base package (#214940). * Mon Oct 16 2006 [email protected] - move /usr/share/guile from devel to main package (fixes ##212545) * Sun Oct 15 2006 [email protected] - Make sure config.rpath is present. * Fri Oct 13 2006 [email protected] - Add split provide. * Fri Oct 13 2006 [email protected] - Split up devel subpackage. * Tue Oct 10 2006 [email protected] - Updated to version 1.8.1: * LFS functions are now used to access 64-bit files on 32-bit systems. * New procedures and functions. * New modules and module merges. * API changes. * Bugs fixed. * Guile is now licensed with the GNU Lesser General Public License. * The manual is now licensed with the GNU Free Documentation License. * Guile now requires GNU MP. * Guile now has separate private and public configuration headers. * Thread implementation has changed. * Command line syntax changes. * Fri Oct 06 2006 [email protected] - update to 1.6.8 * gcc 4.0 fixes * Guile now allows multiple line comments to end without a trailing newline. * better support for new versions of SLIB * changes in C interface * Fri Sep 08 2006 [email protected] - rewrite SuSEconfig.guile to RPM triggers * Sun Jul 16 2006 [email protected] - Mark ia64_getcontext as returning twice. * Wed Jan 25 2006 [email protected] - converted neededforbuild to BuildRequires * Tue Jan 17 2006 [email protected] - add aclocal in libltdl * Wed May 18 2005 [email protected] - Disabled randomly failing make -j. * Tue Apr 05 2005 [email protected] - Fixed incomplete array element type. * Thu Mar 24 2005 [email protected] - fixed to build on ARM * Fri Jan 21 2005 [email protected] - Updated to version 1.6.7. * Fri Dec 10 2004 [email protected] - make -j , added make check. * Tue Mar 30 2004 [email protected] - Fixed tempfile creation in guile-snarf (#36367). - Build with -fno-strict-aliasing. * Thu Nov 06 2003 [email protected] - Fix syntax in configure script. * Tue Jul 08 2003 [email protected] - Updated to version 1.6.4. * Thu Apr 24 2003 [email protected] - fix install_info --delete call and move from preun to postun * Wed Mar 12 2003 [email protected] - Workaround guile-config info version bug (symlink, fixes bug 25190). * Tue Feb 11 2003 [email protected] - Fixed GUILEVERSION datadir path. * Mon Feb 10 2003 [email protected] - Updated to version 1.6.2. - Use %install_info (bug #23423). * Wed Dec 11 2002 [email protected] - Make slib integration work independent of guile version number. * Wed Dec 04 2002 [email protected] - Change error message for unknown platform to warning. It allows to compile guile on all platforms, but there is no guarantee to functionallity. (guile-platforms.diff) * Tue Dec 03 2002 [email protected] - Fixed typo, which breaks TeXmacs (guile-1.6.0-top_srcdir_absolute.diff). * Wed Oct 30 2002 [email protected] - Update to version 1.6.0. * Tue Aug 20 2002 [email protected] - Correct PreReq * Tue Jul 30 2002 [email protected] - fixed SuSEconfig.guile for new version * Wed Jul 17 2002 [email protected] - updated to version 1.4.1. * Tue Jun 11 2002 [email protected] - disabled qthreads for ppc64 * Mon Apr 29 2002 [email protected] - disabled qthreads for x86_64 * Thu Apr 04 2002 [email protected] - moved AC_LIBOBJ after AC_PROG_CC because AC_LIBOBJ uses $ac_objext * Wed Apr 03 2002 [email protected] - fixed to compile with autoconf-2.53 (AC_LIBOBJ vs. LIBOBJS) * Fri Feb 08 2002 [email protected] - used -a option with automake to fix for PLUS distribution - added back guile-doc-snarf: work around problem with cpp on ia64 bebause of 7.2-ia64+kde distribution * Wed Feb 06 2002 [email protected] - Don't add /usr/include and /usr/local/include to include search path. - Avoid trigraph. - Add support for ia64 register backing store (from cvs). - Don't build with -O0 on ia64. * Mon Dec 17 2001 [email protected] - added %{_libdir} to the specfile where appropriate to make it lib64 clean. * Fri Dec 07 2001 [email protected] - fixed for new position of slib library - SuSEconfig.guile uses check_md5_and_move now - removed unused package scheme from neededforbuild * Tue Nov 06 2001 [email protected] - fixed to compile with automake 1.5: * OMIT_DEPENDENCIES are not supported now * Sat Sep 15 2001 [email protected] - Fix libtool configuration. - Remove ia64 cpp workaround. - Fix hash functions for 64-bit architectures. * Fri Aug 31 2001 [email protected] - fixed creating of SLIB catalog (#8997): - moved from triggerin to SuSEconfig because there were problems with update when rpm was updated after guile * Mon Aug 27 2001 [email protected] - fixed to compile on axp: * fixed file numbering in qt/md/axp.s * fixed end of block qt_vstart in qt/md/axp.s * Fri Aug 10 2001 [email protected] - fixed to build with current autoconf and libtool * Thu Jun 14 2001 [email protected] - fixed to more correctly compile with new autoconf * Mon Jun 11 2001 [email protected] - fixed to compile with new autoconf * Sat May 12 2001 [email protected] - Fix readline interface. * Thu Feb 22 2001 [email protected] - added readline/readline-devel to neededforbuild (split from bash) * Wed Dec 06 2000 [email protected] - guile-doc-snarf: work around problem with cpp on ia64. - Build with -O0 on ia64. * Thu Nov 23 2000 [email protected] - fixed to compile on older distros * Sun Nov 12 2000 [email protected] - don't redeclare inet_aton * Wed Nov 08 2000 [email protected] - changed %post to %triggerin -- scheme * Tue Nov 07 2000 [email protected] - added postinstall and link to /usr/lib/scheme/slib * Fri Nov 03 2000 [email protected] - bzipped sources - clean up spec file * Mon Oct 23 2000 [email protected] - use macro for infodir * Wed Aug 02 2000 [email protected] - update to version 1.4 * Fri Apr 07 2000 [email protected] - And no QuickThreads yet on s390 too ;-) * Thu Apr 06 2000 [email protected] - No QuickThreads yet on ia64. * Mon Mar 06 2000 [email protected] - Update config.{guess,sub} from automake. * Sun Feb 06 2000 [email protected] - Add group tag. - /configure -> %build. - use /usr/share/info. * Sun Oct 03 1999 [email protected] - update: 1.3.4. * Mon Sep 13 1999 [email protected] - ran old prepare_spec on spec file to switch to new prepare_spec. * Tue Sep 07 1999 [email protected] - no QuickThreads on PPC, disabled them * Wed Aug 25 1999 [email protected] - fixed configuration for alpha-Quickthreads again * Wed Aug 25 1999 [email protected] - update: 1.3.2. * Wed Mar 17 1999 [email protected] - fixed patch-call * Wed Feb 10 1999 [email protected] - apply guile-slow-read-fix.patch (by Harvey J. Stein <[email protected]>). - fix lib perms. * Fri Feb 05 1999 [email protected] - changed config to detect alpha(ev56) as alpha * Wed Oct 21 1998 [email protected] - update: version 1.3. - build libqthreads. * Wed Sep 23 1998 [email protected] - update: snapshot 1998-09-23 (1.3a). * Sun Aug 23 1998 [email protected] - update: snapshot 1998-08-23 (1.3a). * Fri Nov 21 1997 [email protected] - don't call ldconfig in spec file * Tue Jul 15 1997 Karl Eichwalder <[email protected]> * initial package: version 1.2.
/usr/lib64/libguile-srfi-srfi-60-v-2.so.2 /usr/lib64/libguile-srfi-srfi-60-v-2.so.2.0.2
Generated by rpm2html 1.8.1
Fabrice Bellet, Fri Dec 20 23:45:39 2024