X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id CC3E9DC74B7 for ; Fri, 6 Nov 2015 16:46:18 +0000 (UTC) Received: from mail-wm0-f44.google.com (mail-wm0-f44.google.com [74.125.82.44]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 6734EDC4085 for ; Fri, 6 Nov 2015 16:46:17 +0000 (UTC) Received: by wmec201 with SMTP id c201so22547825wme.1 for ; Fri, 06 Nov 2015 08:46:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kampka_net.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id; bh=lWHOk6lze2yz36HNs9y8/mJQm/XyawOqATe979khAx4=; b=qh85arg8QCLdNz6ONCBg4mCcq1c28ovb4uUKzll7YSgSBYvsLyPCVcbTDL6c0Gpuv2 DJF5KbC/3YdaEsMhQHHxkNZOAJOvr4ab/hG+8m1aqUdKIQOStWPJYGbArchCWLBfud7S FGP6cIDCIMvGyVEMibRFkV//elHc0ujQDAC2swtary0ic0U7J4aQgu6YVmzUc2jchMU5 gaVtAR0alF5C+qYeJxUeDlchUIw7AFvyOs8SL40lsvCcqZwR5alqQ4+H4mZvGNi+aCIS Z7aeqFK3FpItEQgV/XH3vzIpbHfuTozqGnete/YP66+Zr7VnZJ8ORFCvvid4VyRcgcY6 qF6Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=lWHOk6lze2yz36HNs9y8/mJQm/XyawOqATe979khAx4=; b=JHSm4QFchHXqntXuoMVgVd0FT0kjTuAyT9z4GZ64REuzfKYuJQ8E3+JfElz57WhQhw csexyp+3GDgUkpSQUFFdwyZ1aBMYJK+Mq3F1JrtVkZEB1XXhda204ywkIyC3vaRwZg23 3D/N0YGir+MCWKR6SHzzwAyNal5pTSNxvYcI0+glDRbv9gHaTZ3iCwwivXhXUwn5m9L6 yRRGXBZ9uT0nEZ26qVTKr/c03XmUtMaDihYK6qQVWPYswYJwY5nTWRGCT+dzgNojeAlN L6dkLnl0IfY6nf4Xs6mRcST8EwwEYeTCAHaEQBSKM6Xt1tUK05N0Wy7WzvEaiRPmkGCQ 6Dow== X-Gm-Message-State: ALoCoQneHPPxAUG/znGEPf0VTyRDscB2+fBR7lfcDMoW07M3ByPEz+P5tWGI+v3mUZYhtbiVNjp7 X-Received: by 10.28.19.78 with SMTP id 75mr12078002wmt.101.1446828376837; Fri, 06 Nov 2015 08:46:16 -0800 (PST) Received: from localhost (pD9578985.dip0.t-ipconnect.de. [217.87.137.133]) by smtp.gmail.com with ESMTPSA id y77sm3839130wme.15.2015.11.06.08.46.15 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 06 Nov 2015 08:46:15 -0800 (PST) From: Christian Kampka To: alpine-aports@lists.alpinelinux.org Cc: Christian Kampka Subject: [alpine-aports] [PATCH] main/sessreq: new upstream version 1.1.0 Date: Fri, 6 Nov 2015 17:46:13 +0100 Message-Id: <1446828373-15694-1-git-send-email-christian@kampka.net> X-Mailer: git-send-email 2.6.2 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/sessreg/APKBUILD | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/main/sessreg/APKBUILD b/main/sessreg/APKBUILD index 29453b0..7fb1153 100644 --- a/main/sessreg/APKBUILD +++ b/main/sessreg/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa pkgname=sessreg -pkgver=1.0.5 -pkgrel=2 +pkgver=1.1.0 +pkgrel=0 pkgdesc="manage utmp/wtmp entries for non-init clients" url="http://xorg.freedesktop.org/" arch="all" @@ -9,13 +9,21 @@ license="custom" subpackages="$pkgname-doc" depends= makedepends="xproto" -source="http://xorg.freedesktop.org/releases/individual/app/$pkgname-$pkgver.tar.bz2" +source="http://xorg.freedesktop.org/releases/individual/app/$pkgname-$pkgver.tar.bz2 +missing_path_wtmpx.patch +" _builddir="$srcdir/$pkgname-$pkgver" - prepare() { cd "$_builddir" - update_config_sub || return 1 + for i in $source; do + case $i in + patch*|*.patch) + msg "Applying $i" + patch -p1 -i "$srcdir"/$i || return 1 + ;; + esac + done } build () { @@ -33,4 +41,9 @@ package() { cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 } -md5sums="00e834c3cbfd990e9d7d5ddc834242df sessreg-1.0.5.tar.bz2" +md5sums="e238c89dabc566e1835e1ecb61b605b9 sessreg-1.1.0.tar.bz2 +d07d76587afb64739c876529c4f582cd missing_path_wtmpx.patch" +sha256sums="551177657835e0902b5eee7b19713035beaa1581bbd3c6506baa553e751e017c sessreg-1.1.0.tar.bz2 +8d13a6ae41492cdc4afd38691f45792e8000b129f34e94cf83a30435c4686b29 missing_path_wtmpx.patch" +sha512sums="5d9010874696bbc53a6271f30c089690cb341ede992f6be0914474a03ff4468e01e6a4ce7e6a437b96751fdf0ccced52b374126e5caeac6747edecd049841116 sessreg-1.1.0.tar.bz2 +ab562bba2463d8f7ede6ed90fafdd685a33596ef47f118eefa2312f38e34d1ba18bd0c383dfe778327b126e0c80dc12045cb27d49eab09162ebacea6ab98b522 missing_path_wtmpx.patch" -- 2.6.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---