commit slib for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package slib for openSUSE:Factory checked in 
at 2017-07-17 09:10:32

Comparing /work/SRC/openSUSE:Factory/slib (Old)
 and  /work/SRC/openSUSE:Factory/.slib.new (New)


Package is "slib"

Mon Jul 17 09:10:32 2017 rev:29 rq:510095 version:3b5

Changes:

--- /work/SRC/openSUSE:Factory/slib/slib.changes2015-03-27 
09:40:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.slib.new/slib.changes   2017-07-17 
09:10:45.527312743 +0200
@@ -1,0 +2,6 @@
+Thu Jul 13 11:46:15 UTC 2017 - tchva...@suse.com
+
+- Reduce bit a guile code for older distros, we have 1.8.5 on
+  sle11
+
+---



Other differences:
--
++ slib.spec ++
--- /var/tmp/diff_new_pack.Ig1M1m/_old  2017-07-17 09:10:46.059237822 +0200
+++ /var/tmp/diff_new_pack.Ig1M1m/_new  2017-07-17 09:10:46.063237259 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package slib
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,9 +17,6 @@
 
 
 Name:   slib
-Provides:   scheme:/usr/lib/scheme/slib/umbscheme.init
-PreReq: %install_info_prereq
-PreReq: guile1 coreutils
 Version:3b5
 Release:0
 Summary:Portable Scheme Library
@@ -29,7 +26,9 @@
 Source: 
http://groups.csail.mit.edu/mac/ftpdir/scm/slib-%{version}.tar.gz
 # this is not upstreamable (bnc#754532):
 Patch0: remove-resene-colors.diff
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Requires(post): %{install_info_prereq}
+Requires(post): coreutils
+Requires(post): guile1
 BuildArch:  noarch
 
 %description
@@ -43,74 +42,64 @@
 %build
 
 %install
-install -m 755 -d $RPM_BUILD_ROOT/usr/share/slib/
-install -m 755 -d $RPM_BUILD_ROOT/%{_infodir}/
-install -m 644 *.scm *.init $RPM_BUILD_ROOT/usr/share/slib/
-install -m 644 slib.info* $RPM_BUILD_ROOT%{_infodir}/
+install -m 755 -d %{buildroot}%{_datadir}/slib/
+install -m 755 -d %{buildroot}/%{_infodir}/
+install -m 644 *.scm *.init %{buildroot}%{_datadir}/slib/
+install -m 644 slib.info* %{buildroot}%{_infodir}/
 
 %triggerin -- guile1
 # install guile library
 # We need new guile for registration, see "Incompatible change in guile 1.8.2".
 # During update must be slib-3a5 installed first (See Conflits: slib < 3a5 in 
guile.spec)
 # because of %triggerin in slib, 3a1 for example, though.
-if [ -d usr/share/guile/site ] ; then
-  GUILE_VERSION=`guile1 -c "(display (version))" | sed "s:\.::g"`
-  # guile is instaled
-  if [ $GUILE_VERSION -ge 182 ]; then
+if [ -d %{_datadir}/guile/site ] ; then
 # we have guile >= 1.8.2
-if [ ! -e usr/share/guile/site/slib ] ; then
+  if [ ! -e %{_datadir}/guile/site/slib ] ; then
   # link slib library into guile
-  ln -sf ../../slib usr/share/guile/site/slib
-fi
-usr/bin/guile1 -c "(use-modules (ice-9 slib)) (require 'new-catalog)"
+ln -sf ../../slib %{_datadir}/guile/site/slib
   fi
+  %{_bindir}/guile1 -c "(use-modules (ice-9 slib)) (require 'new-catalog)"
 fi
 exit 0
 
 %triggerpostun -- guile1
 # Delete slib library files, only if guile1 was uninstalled.
-if ! test -e usr/bin/guile1 ; then
-rm -f usr/share/guile/site/slib
-rm -f usr/share/guile/site/slibcat
-rmdir --ignore-fail-on-non-empty usr/share/guile/site
-rmdir --ignore-fail-on-non-empty usr/share/guile
+if ! test -e %{_bindir}/guile1 ; then
+rm -f %{_datadir}/guile/site/slib
+rm -f %{_datadir}/guile/site/slibcat
+rmdir --ignore-fail-on-non-empty %{_datadir}/guile/site
+rmdir --ignore-fail-on-non-empty %{_datadir}/guile
 fi
 exit 0
 
 %post
-%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
+%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info%{ext_info}
 # install guile library
 # We need new guile for registration, see "Incompatible change in guile 1.8.2".
 # During update must be slib-3a5 installed first (See Conflits: slib < 3a5 in 
guile.spec)
 # because of %triggerin in slib, 3a1 for example, though.
-if [ -d usr/share/guile/site -o -e usr/bin/guile1 ] ; then
-  GUILE_VERSION=`guile1 -c "(display (version))" | sed "s:\.::g"`
-  # guile is instaled
-  if [ $GUILE_VERSION -ge 182 ]; then
-  # we have guile >= 1.8.2
-if [ ! -d usr/share/guile/site ] ; then
+if [ -d %{_datadir}/guile/site -o -e %{_bindir}/guile1 ] ; then
+  if [ ! -d %{_datadir}/guile/site ] ; then
   # This is in orderd to fixup eventually removed guile/site folders
   # which could have happened due to bnc#780827.
-  mkdir 

commit slib for openSUSE:Factory

2015-03-27 Thread h_root
Hello community,

here is the log from the commit of package slib for openSUSE:Factory checked in 
at 2015-03-27 09:40:50

Comparing /work/SRC/openSUSE:Factory/slib (Old)
 and  /work/SRC/openSUSE:Factory/.slib.new (New)


Package is slib

Changes:

--- /work/SRC/openSUSE:Factory/slib/slib.changes2013-09-09 
19:51:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.slib.new/slib.changes   2015-03-27 
09:40:51.0 +0100
@@ -1,0 +2,14 @@
+Wed Mar 25 11:27:10 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 3b5
+  * rmdsff.scm (make-cell, integer-coordinates)
+(coordinates-integer): Don't depend on LETREC* behavior.
+  * Makefile, mklibcat.scm, rmdsff.scm, slib.texi (space-filling):
+Added rmdsff.scm and documentation.
+  * phil-spc.scm, schmooz.scm, slib.texi: Because TeXinfo-5 changed
+the rules, don't allow text between @defun and @defunx.
+  * usercat: Use local copy of schmooz.scm.
+- Remove unzip build require; now use a regular tar.gz tarball
+- Remove obsolete AUTHORS and %clean section
+  
+---

Old:

  slib-3b4.zip

New:

  slib-3b5.tar.gz



Other differences:
--
++ slib.spec ++
--- /var/tmp/diff_new_pack.ojdcCt/_old  2015-03-27 09:40:52.0 +0100
+++ /var/tmp/diff_new_pack.ojdcCt/_new  2015-03-27 09:40:52.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package slib
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,16 +20,15 @@
 Provides:   scheme:/usr/lib/scheme/slib/umbscheme.init
 PreReq: %install_info_prereq
 PreReq: guile1 coreutils
-Version:3b4
+Version:3b5
 Release:0
 Summary:Portable Scheme Library
 License:SUSE-SLIB
 Group:  Development/Languages/Scheme
 Url:http://swissnet.ai.mit.edu/~jaffer/SLIB.html
-Source: http://groups.csail.mit.edu/mac/ftpdir/scm/slib-%{version}.zip
+Source: 
http://groups.csail.mit.edu/mac/ftpdir/scm/slib-%{version}.tar.gz
 # this is not upstreamable (bnc#754532):
 Patch0: remove-resene-colors.diff
-BuildRequires:  unzip
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -37,14 +36,8 @@
 SLIB is a portable Scheme library providing compatibility and utility
 functions for all standard Scheme implementations.
 
-
-
-Authors:
-
-William R. Campbell b...@cs.umb.edu
-
 %prep
-%setup -q -n slib
+%setup -q
 %patch0 -p1
 
 %build
@@ -55,9 +48,6 @@
 install -m 644 *.scm *.init $RPM_BUILD_ROOT/usr/share/slib/
 install -m 644 slib.info* $RPM_BUILD_ROOT%{_infodir}/
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %triggerin -- guile1
 # install guile library
 # We need new guile for registration, see Incompatible change in guile 1.8.2.
@@ -122,7 +112,7 @@
 %files
 %defattr(-,root,root)
 %doc ANNOUNCE COPYING ChangeLog FAQ README
-%doc %{_infodir}/*
+%{_infodir}/*
 %{_datadir}/slib
 
 %changelog

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit slib for openSUSE:Factory

2013-09-09 Thread h_root
Hello community,

here is the log from the commit of package slib for openSUSE:Factory checked in 
at 2013-09-09 19:51:30

Comparing /work/SRC/openSUSE:Factory/slib (Old)
 and  /work/SRC/openSUSE:Factory/.slib.new (New)


Package is slib

Changes:

--- /work/SRC/openSUSE:Factory/slib/slib.changes2012-10-03 
10:10:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.slib.new/slib.changes   2013-09-09 
19:51:31.0 +0200
@@ -1,0 +2,13 @@
+Mon Sep  9 11:44:18 UTC 2013 - pgaj...@suse.com
+
+- updated to 3b4:
+  * wttree.scm: Fixed bug where tree balance was lost by deletions 
+http://hagi.is.s.u-tokyo.ac.jp/~yh/bst.pdf
+  * slib.sh, gosh.init: Added support for (gosh) Gauche-0.9.
+  * mitscheme.init: Removed support for defmacro when 
+(mit-scheme-release = 9 0).
+  * trsrch.scm (substring?, substring-ci?): Replaced the skip-vector 
+with an alist (to work with wide characters).
+  * etc. see http://people.csail.mit.edu/jaffer/SLIB.html
+
+---

Old:

  slib-3b3.tar.bz2

New:

  slib-3b4.zip



Other differences:
--
++ slib.spec ++
--- /var/tmp/diff_new_pack.mqh7dm/_old  2013-09-09 19:51:32.0 +0200
+++ /var/tmp/diff_new_pack.mqh7dm/_new  2013-09-09 19:51:32.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package slib
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,15 +20,16 @@
 Provides:   scheme:/usr/lib/scheme/slib/umbscheme.init
 PreReq: %install_info_prereq
 PreReq: guile1 coreutils
-Version:3b3
+Version:3b4
 Release:0
 Summary:Portable Scheme Library
 License:SUSE-SLIB
 Group:  Development/Languages/Scheme
 Url:http://swissnet.ai.mit.edu/~jaffer/SLIB.html
-Source: %{name}-%{version}.tar.bz2
+Source: http://groups.csail.mit.edu/mac/ftpdir/scm/slib-%{version}.zip
 # this is not upstreamable (bnc#754532):
 Patch0: remove-resene-colors.diff
+BuildRequires:  unzip
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit slib for openSUSE:Factory

2012-10-03 Thread h_root
Hello community,

here is the log from the commit of package slib for openSUSE:Factory checked in 
at 2012-10-03 10:10:10

Comparing /work/SRC/openSUSE:Factory/slib (Old)
 and  /work/SRC/openSUSE:Factory/.slib.new (New)


Package is slib, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/slib/slib.changes2012-09-14 
12:38:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.slib.new/slib.changes   2012-10-03 
10:10:13.0 +0200
@@ -1,0 +2,12 @@
+Wed Sep 26 21:03:01 UTC 2012 - dims...@opensuse.org
+
+- Fix %triggerpostun -- guile1 - scriptlet: the binary to check
+  for is called guile1, and not anymore guile (due to parallel
+  installation needs of guile1 and guile2) Fixes bnc#780827.
+- Extend post-install script to always trigger when guile is
+  already installed. This special casing with too old guile1
+  should never affect us anymore. Only minimal changes to the
+  scripts done, in order to have small change for a maintenance
+  update.
+
+---



Other differences:
--
++ slib.spec ++
--- /var/tmp/diff_new_pack.EiRWqz/_old  2012-10-03 10:10:14.0 +0200
+++ /var/tmp/diff_new_pack.EiRWqz/_new  2012-10-03 10:10:14.0 +0200
@@ -15,19 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   slib
-License:SUSE-SLIB
-Group:  Development/Languages/Scheme
 Provides:   scheme:/usr/lib/scheme/slib/umbscheme.init
 PreReq: %install_info_prereq
 PreReq: guile1 coreutils
-AutoReqProv:on
 Version:3b3
-Release:1
+Release:0
 Summary:Portable Scheme Library
+License:SUSE-SLIB
+Group:  Development/Languages/Scheme
 Url:http://swissnet.ai.mit.edu/~jaffer/SLIB.html
 Source: %{name}-%{version}.tar.bz2
 # this is not upstreamable (bnc#754532):
@@ -80,8 +77,8 @@
 exit 0
 
 %triggerpostun -- guile1
-# Delete slib library files, only if guile was uninstalled.
-if ! test -e usr/bin/guile ; then
+# Delete slib library files, only if guile1 was uninstalled.
+if ! test -e usr/bin/guile1 ; then
 rm -f usr/share/guile/site/slib
 rm -f usr/share/guile/site/slibcat
 rmdir --ignore-fail-on-non-empty usr/share/guile/site
@@ -95,11 +92,16 @@
 # We need new guile for registration, see Incompatible change in guile 1.8.2.
 # During update must be slib-3a5 installed first (See Conflits: slib  3a5 in 
guile.spec)
 # because of %triggerin in slib, 3a1 for example, though.
-if [ -d usr/share/guile/site ] ; then
+if [ -d usr/share/guile/site -o -e usr/bin/guile1 ] ; then
   GUILE_VERSION=`guile1 -c (display (version)) | sed s:\.::g`
   # guile is instaled
   if [ $GUILE_VERSION -ge 182 ]; then
   # we have guile = 1.8.2
+if [ ! -d usr/share/guile/site ] ; then
+  # This is in orderd to fixup eventually removed guile/site folders
+  # which could have happened due to bnc#780827.
+  mkdir usr/share/guile/site
+fi
 if [ ! -e usr/share/guile/site/slib ] ; then
   # link slib library into guile
   ln -sf ../../slib usr/share/guile/site/slib

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit slib for openSUSE:Factory

2012-09-14 Thread h_root
Hello community,

here is the log from the commit of package slib for openSUSE:Factory checked in 
at 2012-09-14 12:38:35

Comparing /work/SRC/openSUSE:Factory/slib (Old)
 and  /work/SRC/openSUSE:Factory/.slib.new (New)


Package is slib, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/slib/slib.changes2012-05-25 
16:19:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.slib.new/slib.changes   2012-09-14 
12:38:37.0 +0200
@@ -1,0 +2,6 @@
+Wed May 30 12:35:08 UTC 2012 - pgaj...@suse.com
+
+- remove Resene color names due license doubt [bnc#754532]
+  * remove-resene-colors.diff
+
+---
@@ -6 +12 @@
-  license.opensuse.org specificaÃlly to handle the non standard SLIB
+  license.opensuse.org specifically to handle the non standard SLIB

New:

  remove-resene-colors.diff



Other differences:
--
++ slib.spec ++
--- /var/tmp/diff_new_pack.UV566K/_old  2012-09-14 12:38:38.0 +0200
+++ /var/tmp/diff_new_pack.UV566K/_new  2012-09-14 12:38:38.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package slib (Version 3b3)
+# spec file for package slib
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -30,6 +30,8 @@
 Summary:Portable Scheme Library
 Url:http://swissnet.ai.mit.edu/~jaffer/SLIB.html
 Source: %{name}-%{version}.tar.bz2
+# this is not upstreamable (bnc#754532):
+Patch0: remove-resene-colors.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -45,6 +47,7 @@
 
 %prep
 %setup -q -n slib
+%patch0 -p1
 
 %build
 

++ remove-resene-colors.diff ++
 1391 lines (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit slib for openSUSE:Factory

2012-05-25 Thread h_root
Hello community,

here is the log from the commit of package slib for openSUSE:Factory checked in 
at 2012-05-25 16:18:51

Comparing /work/SRC/openSUSE:Factory/slib (Old)
 and  /work/SRC/openSUSE:Factory/.slib.new (New)


Package is slib, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/slib/slib.changes2012-01-24 
12:22:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.slib.new/slib.changes   2012-05-25 
16:19:46.0 +0200
@@ -1,0 +2,8 @@
+Wed May 16 07:18:39 UTC 2012 - cfarr...@suse.com
+
+- license update: SUSE-SLIB
+  This license was added to the spreadsheet linked from
+  license.opensuse.org specificaÃlly to handle the non standard SLIB
+  license
+
+---



Other differences:
--
++ slib.spec ++
--- /var/tmp/diff_new_pack.Rt8yEm/_old  2012-05-25 16:19:49.0 +0200
+++ /var/tmp/diff_new_pack.Rt8yEm/_new  2012-05-25 16:19:49.0 +0200
@@ -19,7 +19,7 @@
 
 
 Name:   slib
-License:PERMISSIVE-OSI-COMPLIANT
+License:SUSE-SLIB
 Group:  Development/Languages/Scheme
 Provides:   scheme:/usr/lib/scheme/slib/umbscheme.init
 PreReq: %install_info_prereq

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit slib for openSUSE:Factory

2012-01-24 Thread h_root
Hello community,

here is the log from the commit of package slib for openSUSE:Factory checked in 
at 2012-01-24 12:22:27

Comparing /work/SRC/openSUSE:Factory/slib (Old)
 and  /work/SRC/openSUSE:Factory/.slib.new (New)


Package is slib, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/slib/slib.changes2011-09-23 
12:46:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.slib.new/slib.changes   2012-01-24 
12:22:29.0 +0100
@@ -1,0 +2,5 @@
+Tue Jan 10 14:21:45 UTC 2012 - pgaj...@suse.com
+
+- using guile1 [bnc#724917]
+
+---



Other differences:
--
++ slib.spec ++
--- /var/tmp/diff_new_pack.37X9Y1/_old  2012-01-24 12:22:32.0 +0100
+++ /var/tmp/diff_new_pack.37X9Y1/_new  2012-01-24 12:22:32.0 +0100
@@ -23,7 +23,7 @@
 Group:  Development/Languages/Scheme
 Provides:   scheme:/usr/lib/scheme/slib/umbscheme.init
 PreReq: %install_info_prereq
-PreReq: guile coreutils
+PreReq: guile1 coreutils
 AutoReqProv:on
 Version:3b3
 Release:1
@@ -57,13 +57,13 @@
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-%triggerin -- guile
+%triggerin -- guile1
 # install guile library
 # We need new guile for registration, see Incompatible change in guile 1.8.2.
 # During update must be slib-3a5 installed first (See Conflits: slib  3a5 in 
guile.spec)
 # because of %triggerin in slib, 3a1 for example, though.
 if [ -d usr/share/guile/site ] ; then
-  GUILE_VERSION=`guile -c (display (version)) | sed s:\.::g`
+  GUILE_VERSION=`guile1 -c (display (version)) | sed s:\.::g`
   # guile is instaled
   if [ $GUILE_VERSION -ge 182 ]; then
 # we have guile = 1.8.2
@@ -71,12 +71,12 @@
   # link slib library into guile
   ln -sf ../../slib usr/share/guile/site/slib
 fi
-usr/bin/guile -c (use-modules (ice-9 slib)) (require 'new-catalog)
+usr/bin/guile1 -c (use-modules (ice-9 slib)) (require 'new-catalog)
   fi
 fi
 exit 0
 
-%triggerpostun -- guile
+%triggerpostun -- guile1
 # Delete slib library files, only if guile was uninstalled.
 if ! test -e usr/bin/guile ; then
 rm -f usr/share/guile/site/slib
@@ -93,7 +93,7 @@
 # During update must be slib-3a5 installed first (See Conflits: slib  3a5 in 
guile.spec)
 # because of %triggerin in slib, 3a1 for example, though.
 if [ -d usr/share/guile/site ] ; then
-  GUILE_VERSION=`guile -c (display (version)) | sed s:\.::g`
+  GUILE_VERSION=`guile1 -c (display (version)) | sed s:\.::g`
   # guile is instaled
   if [ $GUILE_VERSION -ge 182 ]; then
   # we have guile = 1.8.2
@@ -101,7 +101,7 @@
   # link slib library into guile
   ln -sf ../../slib usr/share/guile/site/slib
 fi
-usr/bin/guile -c (use-modules (ice-9 slib)) (require 'new-catalog)
+usr/bin/guile1 -c (use-modules (ice-9 slib)) (require 'new-catalog)
   fi
 fi
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org