SHA256
1
0
forked from pool/coxeter

Accepting request 836078 from home:jengelh:branches:science

OBS-URL: https://build.opensuse.org/request/show/836078
OBS-URL: https://build.opensuse.org/package/show/science/coxeter?expand=0&rev=1
This commit is contained in:
Atri Bhattacharya 2020-09-22 19:41:09 +00:00 committed by Git OBS Bridge
commit bc4a01a72f
6 changed files with 100 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

14
_service Normal file
View File

@ -0,0 +1,14 @@
<services>
<service name="tar_scm" mode="disabled">
<param name="scm">git</param>
<param name="url">https://github.com/tscrim/coxeter</param>
<param name="revision">7b5a1f0039511326aeb616afb132a5065886b9d8</param>
<param name="parent-tag">857c9ba89a698251837ece851a547ded7a31c5d3</param>
<param name="versionformat">3.1+git@TAG_OFFSET@</param>
</service>
<service name="recompress" mode="disabled">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
<service name="set_version" mode="disabled"/>
</services>

3
coxeter-3.1+git7.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a831331a6dbca9936586a07061978de85508cecafae72762aa1da8f36ea0cdbe
size 202232

4
coxeter.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Sun Sep 20 22:00:29 UTC 2020 - Jan Engelhardt <jengelh@inai.de>
- Initial package (version 3.1+git7) for build.opensuse.org

55
coxeter.spec Normal file
View File

@ -0,0 +1,55 @@
#
# spec file for package coxeter
#
# Copyright (c) 2020 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
Name: coxeter
Version: 3.1+git7
Release: 0
Summary: Computation on Coxeter groups
License: GPL-2.0-or-later
Group: Productivity/Scientific/Math
URL: http://math.univ-lyon1.fr/~ducloux/coxeter/coxeter3/english/coxeter3_e.html
Source: %name-%version.tar.xz
BuildRequires: gcc-c++
BuildRequires: xz
%description
The Coxeter 3 C++ library can be used to do computation on and with
* General Coxeter groups, implemented through the combinatorics of
reduced words;
* Reduced expression and normal form computations;
* Bruhat ordering;
* Ordinary Kazhdan-Lusztig polynomials;
* Kazhdan-Lusztig polynomials with unequal parameters;
* Inverse Kazhdan-Lusztig polynomials;
* Cells and W-graphs;
%prep
%autosetup -p1
%build
%make_build cflags="-c %optflags"
%install
mkdir -p "%buildroot/%_bindir"
cp -a coxeter "%buildroot/%_bindir/"
%files
%_bindir/coxeter
%changelog