From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 100328 invoked by alias); 24 Jan 2017 21:36:20 -0000 Mailing-List: contact cygwin-apps-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: cygwin-apps-cvs-owner@sourceware.org Received: (qmail 99721 invoked by uid 9993); 24 Jan 2017 21:36:19 -0000 Date: Tue, 24 Jan 2017 21:36:00 -0000 Message-ID: <20170124213619.99556.qmail@sourceware.org> From: ffes@sourceware.org To: cygwin-apps-cvs@sourceware.org Subject: [shutdown - Shutdown, reboot, hibernate or suspend the machine] branch master, updated. v2.0.0-2 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 316a9db92eadfdb2b245053ce9a437b11dc527e7 X-Git-Newrev: 90cde7ea4d73ff656868853fced58f0ef44ac182 X-SW-Source: 2017-q1/txt/msg00008.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/shutdown.git;h=90cde7ea4d73ff656868853fced58f0ef44ac182 commit 90cde7ea4d73ff656868853fced58f0ef44ac182 Author: Frank Fesevur 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 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 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() {