[shutdown - Shutdown, reboot, hibernate or suspend the machine] branch master, updated. v2.0.0-2
ffes@sourceware.org
ffes@sourceware.org
Tue Jan 24 21:36:00 GMT 2017
https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/shutdown.git;h=90cde7ea4d73ff656868853fced58f0ef44ac182
commit 90cde7ea4d73ff656868853fced58f0ef44ac182
Author: Frank Fesevur <ffes@users.sourceforge.net>
Date: Tue Jan 24 22:34:04 2017 +0100
Release of v2.0-2
Fixes x64 packaging as mentioned in
https://cygwin.com/ml/cygwin/2017-01/msg00194.html
https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/shutdown.git;h=c1e24a51626291727dcfc6e6d20422a54b4cb2f7
commit c1e24a51626291727dcfc6e6d20422a54b4cb2f7
Author: Frank Fesevur <ffes@users.sourceforge.net>
Date: Tue Jan 24 21:48:20 2017 +0100
Fix cross platform compilation
Because gcc was always used cygport didn't
use the right compiler when building the
packages for the other precessor type.
https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/shutdown.git;h=a230e64c0a58d6894f58185f143628f8c07a9814
commit a230e64c0a58d6894f58185f143628f8c07a9814
Author: Frank Fesevur <ffes@users.sourceforge.net>
Date: Tue Jan 24 21:47:49 2017 +0100
Add Makefile for easier packaging
Diff:
---
Makefile | 1 -
extras/Makefile | 24 ++++++++++++++++++++++++
extras/shutdown.cygport | 4 ++--
3 files changed, 26 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
index 21681a1..fff05c3 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,6 @@
SRCDIR ?= .
VPATH = $(SRCDIR)
-CC = gcc
BINDIR=/usr/bin
MANDIR=/usr/share/man/man8
DESTDIR=
diff --git a/extras/Makefile b/extras/Makefile
new file mode 100644
index 0000000..e8da880
--- /dev/null
+++ b/extras/Makefile
@@ -0,0 +1,24 @@
+#
+# Makefile for releasing shutdown
+#
+# Copyright (C) 2016, Frank Fesevur
+#
+# This file is part of shutdown for Cygwin.
+#
+
+all: x32 x64
+
+x32:
+ cygport --32 shutdown.cygport download prep compile install package
+
+x64:
+ cygport --64 shutdown.cygport download prep compile install package
+
+upload:
+ cygport --32 shutdown.cygport upload
+ cygport --64 shutdown.cygport upload
+
+clean:
+ cygport --32 shutdown.cygport clean
+ cygport --64 shutdown.cygport clean
+ rm shutdown-*.tar.bz2
diff --git a/extras/shutdown.cygport b/extras/shutdown.cygport
index a4c8ea0..091f3e8 100644
--- a/extras/shutdown.cygport
+++ b/extras/shutdown.cygport
@@ -1,13 +1,13 @@
NAME="shutdown"
VERSION="2.0"
-RELEASE=1
+RELEASE=2
CATEGORY="Admin"
SUMMARY="Shutdown, reboot, hibernate or suspend the machine"
DESCRIPTION="Shutdown, reboot, hibernate or suspend the machine"
HOMEPAGE="http://cygwin.com/"
GIT_URI="https://github.com/cygwin/shutdown"
-GIT_TAG="v2.0.0"
+GIT_TAG="v2.0.0-2"
inherit git
src_compile() {
More information about the Cygwin-apps-cvs
mailing list