1
0

Accepting request 421080 from Application:ERP:Tryton:Factory

Part of GNU Health

OBS-URL: https://build.opensuse.org/request/show/421080
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/trytond_product?expand=0&rev=1
This commit is contained in:
Dominique Leuenberger 2016-09-23 09:29:49 +00:00 committed by Git OBS Bridge
commit c64a1b3a37
6 changed files with 112 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

4
_service Normal file
View File

@ -0,0 +1,4 @@
<services>
<service name="download_files" mode="localonly" />
</services>

View File

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

23
trytond_product.changes Normal file
View File

@ -0,0 +1,23 @@
-------------------------------------------------------------------
Sun Aug 21 12:31:41 UTC 2016 - jengelh@inai.de
- Update summary/description
-------------------------------------------------------------------
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
-------------------------------------------------------------------
Fri Oct 25 17:51:39 UTC 2013 - axel.braun@gmx.de
- new branch 3.0
* Thu May 02 2013 axel.braun@gmx.de
- initial build

58
trytond_product.spec Normal file
View File

@ -0,0 +1,58 @@
#
# spec file for package trytond_product
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2014-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
Name: trytond_product
Version: %{majorver}.0
Release: 0
Summary: The "product" module for the Tryton ERP system
License: GPL-3.0
Group: Productivity/Office/Management
Url: http://www.tryton.org/
Source: http://downloads.tryton.org/%{majorver}/%{name}-%{version}.tar.gz
BuildRequires: fdupes
# List of additional build dependencies
BuildRequires: python-devel
BuildRequires: python-setuptools
Requires: trytond
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%py_requires
%description
The Product module defines the following models in the Tryton
application platform: Category of Unit of Measure, Unit of Measure,
Product Template, Product and Product Category.
%prep
%setup -q
%build
python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%fdupes -s %{buildroot}
%files
%defattr(-,root,root)
%{python_sitelib}/*
%changelog