From: buildmaster Date: Tue, 28 Feb 2023 08:59:58 +0000 (+0100) Subject: Initial Version X-Git-Url: https://repo.cephalix.eu/gitweb/?a=commitdiff_plain;h=6fc9f300b9ff683c875f5068100a19eedb12c5fa;p=EasyInteractiveTools.git Initial Version --- 6fc9f300b9ff683c875f5068100a19eedb12c5fa diff --git a/EasyInteractiveTools.sls b/EasyInteractiveTools.sls new file mode 100644 index 0000000..fc1f5b0 --- /dev/null +++ b/EasyInteractiveTools.sls @@ -0,0 +1,14 @@ +############################################################################### +# SLS: PACKAGE +# Copyright (c) YEAR Helmuth Varkoly, Nuermberg, Germany. +# All rights reserved. +# +# Author: Helmuth Varkoly +# +# Description: SLS to use with OSS's softwaremanagement +############################################################################### +PACKAGE: + pkg: + - installed + + diff --git a/FULLNAMES b/FULLNAMES new file mode 100644 index 0000000..29f0900 --- /dev/null +++ b/FULLNAMES @@ -0,0 +1 @@ +Easy Interactive Tools Ver.5.10 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..f30c3b1 --- /dev/null +++ b/Makefile @@ -0,0 +1,44 @@ +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 + sed s/VERSION/$(VERSION)/g init.sls.in > repo-ng/init.sls + sed -i s/YEAR/$(YEAR)/g repo-ng/init.sls + ../oss-pkg-tools/create_hash.sh $(PACKAGE) + rm -rf oss-pkg-$(PACKAGE) + mkdir -p oss-pkg-$(PACKAGE) + sed s/PACKAGE/$(PACKAGE)/g $(PACKAGE).sls > oss-pkg-$(PACKAGE)/$(PACKAGE).sls + sed -i s/YEAR/$(YEAR)/g oss-pkg-$(PACKAGE)/$(PACKAGE).sls + if [ -d repo-ng ]; then cd oss-pkg-$(PACKAGE); ln -s ../repo-ng; cd ..; 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" + createrepo $(REPO) + #git push + +init: + rm -fr .git + mv oss-pkg-packages.spec.in oss-pkg-$(PACKAGE).spec.in + sed -i 's/PACKAGE/$(PACKAGE)/g' oss-pkg-$(PACKAGE).spec.in + mkdir repo-ng + sed -i 's/PACKAGE/$(PACKAGE)/g' init.sls.in + mv temlate.sls $(PACKAGE).sls + sed -i 's/PACKAGE/$(PACKAGE)/g' $(PACKAGE).sls + git init + git add . + git commit -am "Initial version of $(PACKAGE)" + echo "Do not forget to adapt VERSION and the FULLNAMES file" 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..ce64f41 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +5.1.0.0 diff --git a/init.sls.in b/init.sls.in new file mode 100644 index 0000000..516c29e --- /dev/null +++ b/init.sls.in @@ -0,0 +1,29 @@ +############################################################################### +# SLS: PACKAGE +# Copyright (c) YEAR 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' %} + +PACKAGE: + 'VERSION': + full_name: 'Easy Interactive Tools Ver.5.10' + installer: salt://win/repo-ng/PACKAGE/InstDataX64/EasyInteractiveToolsVer.5.10.msi + uninstaller: salt://win/repo-ng/PACKAGE/InstDataX64/EasyInteractiveToolsVer.5.10.msi + install_flags: '/qn /l* "{{ LOG_PATH }}\Easy_inst.log"' + uninstall_flags: '/qn /l* "{{ LOG_PATH }}\Easy_uninst.log"' + locale: de_DE + msiexec: True + reboot: False + cache_dir: True + diff --git a/oss-pkg-EasyInteractiveTools.spec.in b/oss-pkg-EasyInteractiveTools.spec.in new file mode 100644 index 0000000..69941a3 --- /dev/null +++ b/oss-pkg-EasyInteractiveTools.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: packager@cephalix.eu +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 CRANIX-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/crx_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/InstDataX64/1026.mst b/repo-ng/InstDataX64/1026.mst new file mode 100644 index 0000000..53c7a93 Binary files /dev/null and b/repo-ng/InstDataX64/1026.mst differ diff --git a/repo-ng/InstDataX64/1027.mst b/repo-ng/InstDataX64/1027.mst new file mode 100644 index 0000000..900d9dd Binary files /dev/null and b/repo-ng/InstDataX64/1027.mst differ diff --git a/repo-ng/InstDataX64/1028.mst b/repo-ng/InstDataX64/1028.mst new file mode 100644 index 0000000..74c2f5b Binary files /dev/null and b/repo-ng/InstDataX64/1028.mst differ diff --git a/repo-ng/InstDataX64/1029.mst b/repo-ng/InstDataX64/1029.mst new file mode 100644 index 0000000..d2ea1ab Binary files /dev/null and b/repo-ng/InstDataX64/1029.mst differ diff --git a/repo-ng/InstDataX64/1030.mst b/repo-ng/InstDataX64/1030.mst new file mode 100644 index 0000000..6b32482 Binary files /dev/null and b/repo-ng/InstDataX64/1030.mst differ diff --git a/repo-ng/InstDataX64/1031.mst b/repo-ng/InstDataX64/1031.mst new file mode 100644 index 0000000..57a4ddc Binary files /dev/null and b/repo-ng/InstDataX64/1031.mst differ diff --git a/repo-ng/InstDataX64/1032.mst b/repo-ng/InstDataX64/1032.mst new file mode 100644 index 0000000..3801e34 Binary files /dev/null and b/repo-ng/InstDataX64/1032.mst differ diff --git a/repo-ng/InstDataX64/1033.mst b/repo-ng/InstDataX64/1033.mst new file mode 100644 index 0000000..2dfd44c Binary files /dev/null and b/repo-ng/InstDataX64/1033.mst differ diff --git a/repo-ng/InstDataX64/1034.mst b/repo-ng/InstDataX64/1034.mst new file mode 100644 index 0000000..7deb9d5 Binary files /dev/null and b/repo-ng/InstDataX64/1034.mst differ diff --git a/repo-ng/InstDataX64/1035.mst b/repo-ng/InstDataX64/1035.mst new file mode 100644 index 0000000..fb0708a Binary files /dev/null and b/repo-ng/InstDataX64/1035.mst differ diff --git a/repo-ng/InstDataX64/1036.mst b/repo-ng/InstDataX64/1036.mst new file mode 100644 index 0000000..3e5cbf4 Binary files /dev/null and b/repo-ng/InstDataX64/1036.mst differ diff --git a/repo-ng/InstDataX64/1038.mst b/repo-ng/InstDataX64/1038.mst new file mode 100644 index 0000000..2062a5b Binary files /dev/null and b/repo-ng/InstDataX64/1038.mst differ diff --git a/repo-ng/InstDataX64/1040.mst b/repo-ng/InstDataX64/1040.mst new file mode 100644 index 0000000..e42fae9 Binary files /dev/null and b/repo-ng/InstDataX64/1040.mst differ diff --git a/repo-ng/InstDataX64/1041.mst b/repo-ng/InstDataX64/1041.mst new file mode 100644 index 0000000..5912ff3 Binary files /dev/null and b/repo-ng/InstDataX64/1041.mst differ diff --git a/repo-ng/InstDataX64/1042.mst b/repo-ng/InstDataX64/1042.mst new file mode 100644 index 0000000..1e6aa31 Binary files /dev/null and b/repo-ng/InstDataX64/1042.mst differ diff --git a/repo-ng/InstDataX64/1043.mst b/repo-ng/InstDataX64/1043.mst new file mode 100644 index 0000000..7935614 Binary files /dev/null and b/repo-ng/InstDataX64/1043.mst differ diff --git a/repo-ng/InstDataX64/1044.mst b/repo-ng/InstDataX64/1044.mst new file mode 100644 index 0000000..0b5b333 Binary files /dev/null and b/repo-ng/InstDataX64/1044.mst differ diff --git a/repo-ng/InstDataX64/1045.mst b/repo-ng/InstDataX64/1045.mst new file mode 100644 index 0000000..bd752ac Binary files /dev/null and b/repo-ng/InstDataX64/1045.mst differ diff --git a/repo-ng/InstDataX64/1046.mst b/repo-ng/InstDataX64/1046.mst new file mode 100644 index 0000000..0eeb268 Binary files /dev/null and b/repo-ng/InstDataX64/1046.mst differ diff --git a/repo-ng/InstDataX64/1048.mst b/repo-ng/InstDataX64/1048.mst new file mode 100644 index 0000000..0a1c6f0 Binary files /dev/null and b/repo-ng/InstDataX64/1048.mst differ diff --git a/repo-ng/InstDataX64/1049.mst b/repo-ng/InstDataX64/1049.mst new file mode 100644 index 0000000..84e9b00 Binary files /dev/null and b/repo-ng/InstDataX64/1049.mst differ diff --git a/repo-ng/InstDataX64/1050.mst b/repo-ng/InstDataX64/1050.mst new file mode 100644 index 0000000..7baebc1 Binary files /dev/null and b/repo-ng/InstDataX64/1050.mst differ diff --git a/repo-ng/InstDataX64/1051.mst b/repo-ng/InstDataX64/1051.mst new file mode 100644 index 0000000..e775c5a Binary files /dev/null and b/repo-ng/InstDataX64/1051.mst differ diff --git a/repo-ng/InstDataX64/1053.mst b/repo-ng/InstDataX64/1053.mst new file mode 100644 index 0000000..9f4adca Binary files /dev/null and b/repo-ng/InstDataX64/1053.mst differ diff --git a/repo-ng/InstDataX64/1054.mst b/repo-ng/InstDataX64/1054.mst new file mode 100644 index 0000000..4aedd1c Binary files /dev/null and b/repo-ng/InstDataX64/1054.mst differ diff --git a/repo-ng/InstDataX64/1055.mst b/repo-ng/InstDataX64/1055.mst new file mode 100644 index 0000000..7e5c8c0 Binary files /dev/null and b/repo-ng/InstDataX64/1055.mst differ diff --git a/repo-ng/InstDataX64/1057.mst b/repo-ng/InstDataX64/1057.mst new file mode 100644 index 0000000..28070f8 Binary files /dev/null and b/repo-ng/InstDataX64/1057.mst differ diff --git a/repo-ng/InstDataX64/1060.mst b/repo-ng/InstDataX64/1060.mst new file mode 100644 index 0000000..7adb3bb Binary files /dev/null and b/repo-ng/InstDataX64/1060.mst differ diff --git a/repo-ng/InstDataX64/2052.mst b/repo-ng/InstDataX64/2052.mst new file mode 100644 index 0000000..e0c0b64 Binary files /dev/null and b/repo-ng/InstDataX64/2052.mst differ diff --git a/repo-ng/InstDataX64/EasyInteractiveToolsVer.5.10.msi b/repo-ng/InstDataX64/EasyInteractiveToolsVer.5.10.msi new file mode 100644 index 0000000..7796e10 Binary files /dev/null and b/repo-ng/InstDataX64/EasyInteractiveToolsVer.5.10.msi differ