forked from pool/proteus
Accepting request 425119 from Application:ERP:Tryton:Factory
part of GNU Health OBS-URL: https://build.opensuse.org/request/show/425119 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/proteus?expand=0&rev=1
This commit is contained in:
commit
32ac2ae374
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal 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
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
_service
Normal file
3
_service
Normal file
@ -0,0 +1,3 @@
|
||||
<services>
|
||||
|
||||
<service name="download_files" mode="localonly"/></services>
|
3
proteus-3.8.4.tar.gz
Normal file
3
proteus-3.8.4.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:51177ea4e3ff741600f1e410a8037196c5e011e2a856880fa060590db2622d39
|
||||
size 37229
|
26
proteus.changes
Normal file
26
proteus.changes
Normal file
@ -0,0 +1,26 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 6 15:27:24 UTC 2016 - axel.braun@gmx.de
|
||||
|
||||
- version 3.8.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 26 11:21:06 UTC 2016 - axel.braun@gmx.de
|
||||
|
||||
- Clean up of spec file, fdupes added
|
||||
service file set to localonly
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 19 20:14:38 UTC 2015 - axel.braun@gmx.de
|
||||
|
||||
- Tryton Release 3.8
|
||||
|
||||
---------------------------------------------------------------------
|
||||
Wed Apr 15 07:24:15 UTC 2015 - axel.braun@gmx.de
|
||||
|
||||
- Tryton Release 3.6
|
||||
|
||||
-----------------------------------------------------------------
|
||||
Sat Oct 26 11:26:40 UTC 2013 - axel.braun@gmx.de
|
||||
|
||||
- initial build on OBS
|
||||
|
64
proteus.spec
Normal file
64
proteus.spec
Normal file
@ -0,0 +1,64 @@
|
||||
#
|
||||
# spec file for package proteus
|
||||
#
|
||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2016 Dr. Axel Braun
|
||||
#
|
||||
# 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/
|
||||
|
||||
%define majorver 3.8
|
||||
Version: %{majorver}.4
|
||||
|
||||
Name: proteus
|
||||
# List of additional build dependencies
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-devel
|
||||
BuildRequires: python-psycopg2
|
||||
BuildRequires: python-lxml
|
||||
BuildRequires: python-pydot
|
||||
BuildRequires: python-setuptools
|
||||
|
||||
Release: 0
|
||||
License: GPL-3.0+
|
||||
Url: http://www.tryton.org/
|
||||
Source0: http://downloads.tryton.org/%{majorver}/%{name}-%{version}.tar.gz
|
||||
Group: Productivity/Office/Management
|
||||
Summary: A library to access Tryton's modules like a client
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Requires: trytond
|
||||
Requires: python-dateutil
|
||||
Requires: python-cdecimal
|
||||
Requires: python-simplejson
|
||||
|
||||
|
||||
%description
|
||||
Proteus allows you to access Tryton's modules like a client. Useful for automation, data load etc.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
python setup.py build
|
||||
|
||||
%install
|
||||
python setup.py install --prefix=%_prefix --root=%buildroot
|
||||
%fdupes -s %{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc README LICENSE
|
||||
%{python_sitelib}/*
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user