From 32ac2ae374e5152e8bade5ab8338a328c4fc02932d0bf7a66144ed7a491f68f0 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Fri, 23 Sep 2016 09:32:28 +0000 Subject: [PATCH] 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 --- .gitattributes | 23 ++++++++++++++++ .gitignore | 1 + _service | 3 +++ proteus-3.8.4.tar.gz | 3 +++ proteus.changes | 26 ++++++++++++++++++ proteus.spec | 64 ++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 120 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 _service create mode 100644 proteus-3.8.4.tar.gz create mode 100644 proteus.changes create mode 100644 proteus.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/_service b/_service new file mode 100644 index 0000000..4691052 --- /dev/null +++ b/_service @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/proteus-3.8.4.tar.gz b/proteus-3.8.4.tar.gz new file mode 100644 index 0000000..ac5e576 --- /dev/null +++ b/proteus-3.8.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51177ea4e3ff741600f1e410a8037196c5e011e2a856880fa060590db2622d39 +size 37229 diff --git a/proteus.changes b/proteus.changes new file mode 100644 index 0000000..493ea28 --- /dev/null +++ b/proteus.changes @@ -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 + diff --git a/proteus.spec b/proteus.spec new file mode 100644 index 0000000..9ea1c5e --- /dev/null +++ b/proteus.spec @@ -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