osc copypac from project:home:adrianSuSE:NewProduct package:product-builder revision:2

OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/product-builder?expand=0&rev=1
This commit is contained in:
Adrian Schröter 2017-03-15 13:08:05 +00:00 committed by Git OBS Bridge
commit 91cf74dacd
7 changed files with 130 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

13
_service Normal file
View File

@ -0,0 +1,13 @@
<services>
<service name="obs_scm">
<param name="url">https://github.com/openSUSE/product-builder.git</param>
<param name="versionprefix">1.0~pre</param>
<param name="scm">git</param>
</service>
<service mode="buildtime" name="tar" />
<service mode="buildtime" name="recompress">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
<service mode="buildtime" name="set_version"/>
</services>

View File

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

View File

@ -0,0 +1,5 @@
name: product-builder
version: 1.0~pre.1486721158.396a5e6
mtime: 1486721158
commit: 396a5e6fb46777dd5dda8fa7838f82fcb08d6268

4
product-builder.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Wed Feb 8 15:03:23 UTC 2017 - adrian@suse.de
- initial package

81
product-builder.spec Normal file
View File

@ -0,0 +1,81 @@
#
# spec file for package product-builder
#
# Copyright (c) 2017 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:
#
# https://github.com/openSUSE/product-builder/issues
#
#
Summary: SUSE Product Builder
Url: http://github.com/openSUSE/product-builder
Name: product-builder
License: GPL-2.0
Group: System/Management
Version: 1.01.01
Provides: kiwi-schema = 6.2
Release: 0
Source: product-builder-%version.tar.xz
Requires: perl >= %{perl_version}
Requires: libxslt
Requires: perl-Class-Singleton
Requires: perl-Config-IniFiles >= 2.49
Requires: perl-File-Slurp
Requires: perl-JSON
Requires: perl-Readonly
Requires: perl-XML-LibXML
Requires: perl-XML-LibXML-Common
Requires: perl-XML-SAX
Requires: perl-libwww-perl
Provides: kiwi-packagemanager:instsource
Requires: build
Requires: inst-source-utils
Requires: product-builder-plugin
Requires: genisoimage
Requires: checkmedia
%ifarch %ix86 x86_64
Requires: syslinux
%endif
%description
The SUSE product builder, builds product media (CD/DVD) for
the SUSE product portfolio. Based on kiwi perl implementation.
To be used only for product medias after openSUSE 13.2, Leap 42
and SLE 12.
%prep
%setup -q
%build
test -e /.buildenv && . /.buildenv
make buildroot=$RPM_BUILD_ROOT CFLAGS="$RPM_OPT_FLAGS"
%install
make buildroot=$RPM_BUILD_ROOT \
doc_prefix=$RPM_BUILD_ROOT/%{_defaultdocdir} \
man_prefix=$RPM_BUILD_ROOT/%{_mandir} \
install
./.version > $RPM_BUILD_ROOT%{_datadir}/kiwi/.revision
%files
%defattr(-, root, root)
%dir %{_datadir}/kiwi
%{_datadir}/kiwi/.revision
%{_datadir}/kiwi/modules
%{_datadir}/kiwi/xsl
%{_sbindir}/kiwi
%changelog