--- /dev/null
+packages.spec
--- /dev/null
+Pro line one name
--- /dev/null
+Copyright (c) 2017 Peter Varkoly and Helmuth Varkoly Nürnberg. All rights reserverd.
\ No newline at end of file
--- /dev/null
+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
+ ../oss-pkg-tools/create_hash.sh $(PACKAGE)
+ 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"
+ createrepo $(REPO)
+ git push
+
+init:
+ test -d .git && rm -r .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"
--- /dev/null
+ \r
+/********************************************************************\r
+ \r
+ PSQLODBC.DLL - A library to talk to the PostgreSQL DBMS using ODBC.\r
+\r
+\r
+ Copyright (C) 1998 Insight Distribution Systems\r
+ Copyright (C) 1998 - 2018 The PostgreSQL Global Development Group\r
+\r
+ Multibyte support was added by Sankyo Unyu Service, (C) 2001.\r
+\r
+ The code contained in this library is based on code written by \r
+ Christian Czezatke and Dan McGuirk, (C) 1996.\r
+\r
+\r
+ This library is free software; you can redistribute it and/or modify\r
+ it under the terms of the GNU Library General Public License as \r
+ published by the Free Software Foundation; either version 2 of the \r
+ License, or (at your option) any later version.\r
+\r
+ This library is distributed in the hope that it will be useful, but\r
+ WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r
+ Library General Public License for more details.\r
+\r
+ You should have received a copy of the GNU Library General Public\r
+ License along with this library (see "license.txt"); if not, write to\r
+ the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA\r
+ 02139, USA.\r
+\r
+\r
+ How to contact the authors:\r
+\r
+ email: pgsql-odbc@postgresql.org\r
+ website: https://odbc.postgresql.org/\r
+\r
+***********************************************************************/\r
+\r
--- /dev/null
+ \r
+/********************************************************************\r
+ \r
+ PSQLODBC.DLL - A library to talk to the PostgreSQL DBMS using ODBC.\r
+\r
+\r
+ Copyright (C) 1998 Insight Distribution Systems\r
+ Copyright (C) 1998 - 2018 The PostgreSQL Global Development Group\r
+\r
+ Multibyte support was added by Sankyo Unyu Service, (C) 2001.\r
+\r
+ The code contained in this library is based on code written by \r
+ Christian Czezatke and Dan McGuirk, (C) 1996.\r
+\r
+\r
+ This library is free software; you can redistribute it and/or modify\r
+ it under the terms of the GNU Library General Public License as \r
+ published by the Free Software Foundation; either version 2 of the \r
+ License, or (at your option) any later version.\r
+\r
+ This library is distributed in the hope that it will be useful, but\r
+ WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r
+ Library General Public License for more details.\r
+\r
+ You should have received a copy of the GNU Library General Public\r
+ License along with this library (see "license.txt"); if not, write to\r
+ the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA\r
+ 02139, USA.\r
+\r
+\r
+ How to contact the authors:\r
+\r
+ email: pgsql-odbc@postgresql.org\r
+ website: https://odbc.postgresql.org/\r
+\r
+***********************************************************************/\r
+\r
--- /dev/null
+0
\ No newline at end of file
--- /dev/null
+VERSION THIS MUST BE ADAPTED
\ No newline at end of file
--- /dev/null
+###############################################################################
+# SLS: psqlodbc
+# 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' %}
+
+psqlodbc:
+ 'VERSION':
+ full_name: 'TOREPLACE'
+ installer: salt://win/repo-ng/psqlodbc/TOREPLACE.exe
+ {% if ARCH == 'x64' %}
+ uninstaller: '%PROGRAMFILES(x86)%\psqlodbc\unins000.exe'
+ {% else %}
+ uninstaller: '%PROGRAMFILES%\psqlodbc\unins000.exe'
+ {% endif %}
+ install_flags: '/verysilent /norestart /LOG="{{ LOG_PATH }}_inst.log"'
+ uninstall_flags: '/verysilent /SUPPRESSMSGBOXES /NORESTART /LOG="{{ LOG_PATH }}_uninst.log"'
+ locale: de_DE
+ msiexec: False
+ reboot: False
+ cache_dir: False
+
--- /dev/null
+#
+# Spec file for psqlodbc
+# Copyright (c) YEAR Helmuth Varkoly and Peter Varkoly Nuremberg, Germany. All rights reserved.
+#
+
+Name: oss-pkg-psqlodbc
+Summary: Package to install psqlodbc 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 psqlodbc on CRANIX-Clients
+
+Authors:
+--------
+ helmuth@varkoly.de
+ peter@varkoly.de
+
+
+%prep
+%setup -n %{name}
+
+%build
+
+%install
+
+mkdir -p %{buildroot}/srv/salt/win/repo-ng/psqlodbc
+mkdir -p %{buildroot}/srv/salt/packages/
+cp psqlodbc.sls %{buildroot}/srv/salt/packages/
+cp -a repo-ng/* %{buildroot}/srv/salt/win/repo-ng/psqlodbc
+
+%clean
+rm -rf %{buildroot}
+
+%pre
+
+%post
+
+/usr/sbin/crx_api_post_file.sh 'softwares/add' /srv/salt/win/repo-ng/psqlodbc/HASH.json
+
+%files
+%defattr(644,root,root)
+/srv/salt/win/repo-ng/psqlodbc
+/srv/salt/packages/psqlodbc.sls
+
+
--- /dev/null
+###############################################################################
+# SLS: psqlodbc
+# Copyright (c) 2017 Helmuth Varkoly, Nuermberg, Germany.
+# All rights reserved.
+#
+# Author: Helmuth Varkoly
+#
+# Description: SLS to use with OSS's softwaremanagement
+###############################################################################
+psqlodbc:
+ pkg:
+ - installed
+
+