1
0
forked from pool/gap-browse

Accepting request 220869 from home:jengelh:branches:science

OBS-URL: https://build.opensuse.org/request/show/220869
OBS-URL: https://build.opensuse.org/package/show/science/gap-browse?expand=0&rev=1
This commit is contained in:
Matthias Mailänder
2014-02-05 10:23:17 +00:00
committed by Git OBS Bridge
commit df86441392
5 changed files with 125 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

BIN
Browse-1.8.3.tar.bz2 (Stored with Git LFS) Normal file

Binary file not shown.

28
gap-browse.changes Normal file
View File

@@ -0,0 +1,28 @@
-------------------------------------------------------------------
Tue Feb 4 17:35:54 UTC 2014 - jengelh@inai.de
- Update to new upstream release 1.8.3
* The new user preference 'EnableMouseEvents' sets the default
behavior for the GAP session. Enabling/disabling mouse events is
now regarded as one global status in the current GAP session, and
browse applications should not set this status when they are
entered.
* Fixed 'BrowseGapMethods', 'BrowsePackageVariables', and
'BrowseProfile': Up to now, the attempt to show the code of a
function in a pager ran into an error if the file in question
is not available
* Case of unset TERM env variable is now handled
* Extended 'NCurses.Select', as follows:
- support mouse events (and to enable/disable mouse events)
- admit "fit" as the value of the 'size' component,
meaning the smallest possible window size
- admit an optional 'align' component,
meaning the alignment of the window in the terminal
- admit an attribute number instead of 'true'
for the optional 'border' component
-------------------------------------------------------------------
Fri May 10 13:47:02 UTC 2013 - jengelh@inai.de
- Split browse (version 1.8.2) off the gap RPM package
- Add browse-make.diff to correct include paths for build

70
gap-browse.spec Normal file
View File

@@ -0,0 +1,70 @@
#
# spec file for package gap-browse
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: gap-browse
Summary: GAP: ncurses interface and browsing applications
Version: 1.8.3
Release: 0
License: GPL-3.0+
Group: Productivity/Scientific/Math
Url: http://www.math.rwth-aachen.de/~Browse/
Source: ftp://ftp.gap-system.org/pub/gap/gap4/tar.bz2/packages/Browse-%version.tar.bz2
BuildRequires: gap-devel >= 4.5
BuildRequires: gap-rpm-devel >= 4.5
BuildRequires: gmp-devel
BuildRequires: ncurses-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: gap-core >= 4.5
Requires: gap-gapdoc >= 1.4
Suggests: gap-atlasrep >= 1.5
Suggests: gap-io >= 2.2
%description
NOTE: This package has autoload activated; it has been observed
to crash GAP in the past, too.
The Browse package provides three levels of functionality
- A GAP interface to the ncurses library.
- A generic function for interactive browsing through two-dimensional
arrays of data.
- Several applications of the first two, e.g., a method for browsing
character tables, browsing through the content of some data
collections, or some games.
%prep
%setup -qn Browse
%build
./configure "%gapdir"
# Browse must be compiled with ncurses-5 or -w5. Crashes with ncurses-6.
make %{?_smp_mflags} \
CFLAGS="%optflags -DWIDECHARS $(ncursesw5-config --cflags)" \
LOPTS="$(ncursesw5-config --libs) -lpanelw"
%install
%gappkg_simple_install
rm -Rf "%buildroot/$moddir/src"
%files -f %name.files
%defattr(-,root,root)
%changelog