From: CEPHALIX GIT ADMIN Date: Sun, 25 Oct 2020 11:12:37 +0000 (+0100) Subject: Initial Version X-Git-Url: https://repo.cephalix.eu/gitweb/?a=commitdiff_plain;h=3753e45175723d9f262a30eac8884e3425ad4370;p=CrocodilePhysics.git Initial Version --- 3753e45175723d9f262a30eac8884e3425ad4370 diff --git a/CrocodilePhysics.sls b/CrocodilePhysics.sls new file mode 100644 index 0000000..6f5e849 --- /dev/null +++ b/CrocodilePhysics.sls @@ -0,0 +1,21 @@ +############################################################################### +# SLS: PACKAGE +# Copyright (c) 2017 Helmuth Varkoly, Nuermberg, Germany. +# All rights reserved. +# +# Author: Helmuth Varkoly +# +# Description: SLS to use with OSS's softwaremanagement +############################################################################### +{% set LIC = salt['grains.get']('LIC_CrocodilePhysics') %} + +PACKAGE: + pkg: + - installed + +copy_install: + file.managed: + - source: "salt://packages/CrocodilePhysics/{{ LIC }}" + - name : 'C:\\Program Files (x86)\\Crocodile Clips\\Crocodile Physics 604\\{{ LIC }}' + + diff --git a/FULLNAMES b/FULLNAMES new file mode 100644 index 0000000..9e30257 --- /dev/null +++ b/FULLNAMES @@ -0,0 +1 @@ +Crocodile Physics 604 DE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c70fc0d --- /dev/null +++ b/LICENSE @@ -0,0 +1 @@ +Copyright (c) 2017 Peter Varkoly and Helmuth Varkoly Nürnberg. All rights reserverd. \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6035812 --- /dev/null +++ b/Makefile @@ -0,0 +1,31 @@ +PACKAGE = $(shell basename `pwd` ) +DESTDIR = / +REPO = /srv/www/repo/salt-packages/ +VERSION = $(shell cat VERSION ) +RELEASE = $(shell cat RELEASE ) +NRELEASE = $(shell echo $(RELEASE) + 1 | bc ) +YEAR = $(shell date +%Y ) + +package: + sed s/VERSION/$(VERSION)/g oss-pkg-$(PACKAGE).spec.in > oss-pkg-$(PACKAGE).spec + sed -i s/RELEASE/$(NRELEASE)/g oss-pkg-$(PACKAGE).spec + sed -i s/PACKAGE/$(PACKAGE)/g oss-pkg-$(PACKAGE).spec + sed -i s/YEAR/$(YEAR)/g oss-pkg-$(PACKAGE).spec + ../oss-pkg-tools/create_hash.sh $(PACKAGE) + rm -rf oss-pkg-$(PACKAGE) + rm -rf repo-ng/repo-ng + mkdir -p oss-pkg-$(PACKAGE) + sed s/PACKAGE/$(PACKAGE)/g $(PACKAGE).sls > oss-pkg-$(PACKAGE)/$(PACKAGE).sls + if [ -d repo-ng ]; then ln -s ../repo-ng/ oss-pkg-$(PACKAGE)/repo-ng; fi + tar hjcvpf oss-pkg-$(PACKAGE).tar.bz2 oss-pkg-$(PACKAGE) + rm -rf oss-pkg-$(PACKAGE) + mv oss-pkg-$(PACKAGE).tar.bz2 /usr/src/packages/SOURCES/ + rpmbuild -bb oss-pkg-$(PACKAGE).spec + find $(REPO)/noarch -name oss-pkg-$(PACKAGE)-$(VERSION)-*.rpm* -exec rm {} \; + mv /usr/src/packages/RPMS/noarch/oss-pkg-$(PACKAGE)-$(VERSION)-$(NRELEASE).noarch.rpm $(REPO)/noarch + echo $(NRELEASE) > RELEASE + git commit -a -m "New release" + git push + createrepo $(REPO) + + diff --git a/RELEASE b/RELEASE new file mode 100644 index 0000000..c227083 --- /dev/null +++ b/RELEASE @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..b4a63d2 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +1.00.0604 diff --git a/oss-pkg-CrocodilePhysics.spec.in b/oss-pkg-CrocodilePhysics.spec.in new file mode 100644 index 0000000..cd3e3f7 --- /dev/null +++ b/oss-pkg-CrocodilePhysics.spec.in @@ -0,0 +1,58 @@ +# +# Spec file for PACKAGE +# Copyright (c) YEAR Helmuth Varkoly and Peter Varkoly Nuremberg, Germany. All rights reserved. +# + +Name: oss-pkg-PACKAGE +Summary: Package to install PACKAGE on OSS-Clients +Version: VERSION +Release: RELEASE +License: GPL-2.0 +Vendor: Peter Varkoly and Helmuth Varkoly +Packager: peter@varkoly.de +Group: Productivity/ +Source: %{name}.tar.bz2 +BuildArch: noarch +BuildRequires:unzip +#Requires: +Requires: filesystem +PreReq: salt-master +PreReq: %fillup_prereq +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +Package to install PACKAGE on OSS-Clients + +Authors: +-------- + helmuth@varkoly.de + peter@varkoly.de + + +%prep +%setup -n %{name} + +%build + +%install + +mkdir -p %{buildroot}/srv/salt/win/repo-ng/PACKAGE +mkdir -p %{buildroot}/srv/salt/packages/ +cp PACKAGE.sls %{buildroot}/srv/salt/packages/ +cp -a repo-ng/* %{buildroot}/srv/salt/win/repo-ng/PACKAGE + +%clean +rm -rf %{buildroot} + +%pre + +%post + +/usr/sbin/oss_api_post_file.sh 'softwares/add' /srv/salt/win/repo-ng/PACKAGE/HASH.json + +%files +%defattr(644,root,root) +/srv/salt/win/repo-ng/PACKAGE +/srv/salt/packages/PACKAGE.sls + + diff --git a/repo-ng/CP_604.exe b/repo-ng/CP_604.exe new file mode 100644 index 0000000..a4879c5 Binary files /dev/null and b/repo-ng/CP_604.exe differ diff --git a/repo-ng/init.sls b/repo-ng/init.sls new file mode 100644 index 0000000..10b6d1f --- /dev/null +++ b/repo-ng/init.sls @@ -0,0 +1,29 @@ +############################################################################### +# SLS: CrocodilePhysics +# Copyright (c) 2017 Helmuth Varkoly, Nuermberg, Germany. +# All rights reserved. +# +# Authors: Helmuth Varkoly +# +# Description: Package SLS +############################################################################### + +{% if grains['cpuarch'] == 'AMD64' %} +{% set ARCH = "x64" %} +{% else %} +{% set ARCH = "x86" %} +{% endif %} + +{% set LOG_PATH = 'C:\\salt\\var\\log' %} + +CrocodilePhysics: + '1.00.0604': + installer: salt://win/repo-ng/CrocodilePhysics/CP_604.exe + uninstaller: 'msiexec.exe' + install_flags: '/S /v/qn' + uninstall_flags: '/x {EE448EE9-3A6A-4BA3-B0EB-04D767570298} /qn /l* {{ LOG_PATH }}\\Coroc_uninst.log' + full_name: 'Crocodile Physics 604 DE' + msiexec: False + locale: de_DE + reboot: False + cache_dir: True