[Gpg4win-commits] [git] Gpg4win - branch, kleo-kf5, updated. gpg4win-2.3.0-63-g56dc2f3

by Andre Heinecke cvs at cvs.gnupg.org
Thu Feb 4 16:25:01 CET 2016


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GnuPG for Windows".

The branch, kleo-kf5 has been updated
       via  56dc2f30920982718d1deeff88b9587ad173f6f8 (commit)
      from  eddc63def14f3ae487b028031bb7d05a3744b377 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 56dc2f30920982718d1deeff88b9587ad173f6f8
Author: Andre Heinecke <aheinecke at intevation.de>
Date:   Thu Feb 4 16:23:13 2016 +0100

    Add missing nsi files for kguiaddons & kitemviews
    
    * src/inst-kguiaddons.nsi, src/inst-kitemviews.nsi
     src/uninst-kguiaddons.nsi, src/uninst-kitemviews.nsi: New.
    
    --
    Accidentally left out in the according commits.

diff --git a/src/inst-kguiaddons.nsi b/src/inst-kguiaddons.nsi
new file mode 100644
index 0000000..f4322f4
--- /dev/null
+++ b/src/inst-kguiaddons.nsi
@@ -0,0 +1,35 @@
+# Copyright (C) 2015 Intevation GmbH
+#
+# This file is part of GPG4Win.
+#
+# GPG4Win is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GPG4Win is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+!ifdef prefix
+!undef prefix
+!endif
+!define prefix ${ipdir}/kguiaddons-${gpg4win_pkg_kguiaddons_version}
+
+!ifdef DEBUG
+Section "kguiaddons" SEC_kguiaddons
+!else
+Section "-kguiaddons" SEC_kguiaddons
+!endif
+  SetOutPath "$INSTDIR"
+!ifdef SOURCES
+  File "${gpg4win_pkg_kguiaddons}"
+!else
+  SetOutPath "$INSTDIR\bin"
+  File ${prefix}/bin/libKF5GuiAddons.dll
+!endif
+SectionEnd
diff --git a/src/inst-kitemviews.nsi b/src/inst-kitemviews.nsi
new file mode 100644
index 0000000..77313c8
--- /dev/null
+++ b/src/inst-kitemviews.nsi
@@ -0,0 +1,35 @@
+# Copyright (C) 2015 Intevation GmbH
+#
+# This file is part of GPG4Win.
+#
+# GPG4Win is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GPG4Win is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+!ifdef prefix
+!undef prefix
+!endif
+!define prefix ${ipdir}/kitemviews-${gpg4win_pkg_kitemviews_version}
+
+!ifdef DEBUG
+Section "kitemviews" SEC_kitemviews
+!else
+Section "-kitemviews" SEC_kitemviews
+!endif
+  SetOutPath "$INSTDIR"
+!ifdef SOURCES
+  File "${gpg4win_pkg_kitemviews}"
+!else
+  SetOutPath "$INSTDIR\bin"
+  File ${prefix}/bin/libKF5ItemViews.dll
+!endif
+SectionEnd
diff --git a/src/uninst-kguiaddons.nsi b/src/uninst-kguiaddons.nsi
new file mode 100644
index 0000000..4a64d88
--- /dev/null
+++ b/src/uninst-kguiaddons.nsi
@@ -0,0 +1,33 @@
+# Copyright (C) 2015 Intevation GmbH
+#
+# This file is part of GPG4Win.
+#
+# GPG4Win is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GPG4Win is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+!ifdef prefix
+!undef prefix
+!endif
+!define prefix ${ipdir}/kguiaddons-${gpg4win_pkg_kguiaddons_version}
+
+; Uninstaller section.
+Section "-un.kguiaddons"
+!ifdef SOURCES
+  Push "${gpg4win_pkg_kguiaddons}"
+  Call un.SourceDelete
+!else
+  Delete "$INSTDIR\bin\libKF5GuiAddons.dll"
+  RmDir "$INSTDIR\bin"
+
+!endif
+SectionEnd
diff --git a/src/uninst-kitemviews.nsi b/src/uninst-kitemviews.nsi
new file mode 100644
index 0000000..c345223
--- /dev/null
+++ b/src/uninst-kitemviews.nsi
@@ -0,0 +1,33 @@
+# Copyright (C) 2015 Intevation GmbH
+#
+# This file is part of GPG4Win.
+#
+# GPG4Win is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GPG4Win is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+!ifdef prefix
+!undef prefix
+!endif
+!define prefix ${ipdir}/kitemviews-${gpg4win_pkg_kitemviews_version}
+
+; Uninstaller section.
+Section "-un.kitemviews"
+!ifdef SOURCES
+  Push "${gpg4win_pkg_kitemviews}"
+  Call un.SourceDelete
+!else
+  Delete "$INSTDIR\bin\libKF5ItemViews.dll"
+  RmDir "$INSTDIR\bin"
+
+!endif
+SectionEnd

-----------------------------------------------------------------------

Summary of changes:
 src/{inst-ki18n.nsi => inst-kguiaddons.nsi}     | 10 +++++-----
 src/{inst-ki18n.nsi => inst-kitemviews.nsi}     | 10 +++++-----
 src/{uninst-boost.nsi => uninst-kguiaddons.nsi} |  8 ++++----
 src/{uninst-boost.nsi => uninst-kitemviews.nsi} |  8 ++++----
 4 files changed, 18 insertions(+), 18 deletions(-)
 copy src/{inst-ki18n.nsi => inst-kguiaddons.nsi} (80%)
 copy src/{inst-ki18n.nsi => inst-kitemviews.nsi} (80%)
 copy src/{uninst-boost.nsi => uninst-kguiaddons.nsi} (83%)
 copy src/{uninst-boost.nsi => uninst-kitemviews.nsi} (83%)


hooks/post-receive
-- 
GnuPG for Windows
http://git.gnupg.org



More information about the Gpg4win-commits mailing list