From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 11A4E1382C5 for ; Sat, 14 Apr 2018 18:47:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30739E085E; Sat, 14 Apr 2018 18:47:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E203AE0837 for ; Sat, 14 Apr 2018 18:47:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 874EB335C80 for ; Sat, 14 Apr 2018 18:47:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 55C4824E for ; Sat, 14 Apr 2018 18:47:28 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1523731629.ef227b56a0e6f8ca917628a5274114fb0d2c4709.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/selectwm/files/, x11-wm/selectwm/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/selectwm/files/selectwm-0.4.1-nostrip.patch x11-wm/selectwm/selectwm-0.4.1-r1.ebuild x11-wm/selectwm/selectwm-0.4.1.ebuild X-VCS-Directories: x11-wm/selectwm/files/ x11-wm/selectwm/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: ef227b56a0e6f8ca917628a5274114fb0d2c4709 X-VCS-Branch: master Date: Sat, 14 Apr 2018 18:47:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7c7cdd9e-e456-4030-975f-0cf5634a1f2b X-Archives-Hash: e0c49ae4769c46c0eae8e737815822cc commit: ef227b56a0e6f8ca917628a5274114fb0d2c4709 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sat Apr 14 15:09:53 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sat Apr 14 18:47:09 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef227b56 x11-wm/selectwm: EAPI6, use HTTPS, update patch, update LICENSE Closes: https://github.com/gentoo/gentoo/pull/7717 x11-wm/selectwm/files/selectwm-0.4.1-nostrip.patch | 4 +-- x11-wm/selectwm/selectwm-0.4.1-r1.ebuild | 38 ++++++++++++++++++++++ x11-wm/selectwm/selectwm-0.4.1.ebuild | 6 ++-- 3 files changed, 43 insertions(+), 5 deletions(-) diff --git a/x11-wm/selectwm/files/selectwm-0.4.1-nostrip.patch b/x11-wm/selectwm/files/selectwm-0.4.1-nostrip.patch index d5300c9f94a..4287ca2d2cb 100644 --- a/x11-wm/selectwm/files/selectwm-0.4.1-nostrip.patch +++ b/x11-wm/selectwm/files/selectwm-0.4.1-nostrip.patch @@ -2,8 +2,8 @@ Respect CFLAGS, don't strip binaries http://bugs.gentoo.org/show_bug.cgi?id=252124 ---- src/Makefile.am -+++ src/Makefile.am +--- a/src/Makefile.am ++++ b/src/Makefile.am @@ -10,5 +10,6 @@ modify.c modify.h \ misc.h define.h diff --git a/x11-wm/selectwm/selectwm-0.4.1-r1.ebuild b/x11-wm/selectwm/selectwm-0.4.1-r1.ebuild new file mode 100644 index 00000000000..c5ee2b776ca --- /dev/null +++ b/x11-wm/selectwm/selectwm-0.4.1-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools + +DESCRIPTION="window manager selector tool" +HOMEPAGE="https://ordiluc.net/selectwm" +SRC_URI="https://ordiluc.net/selectwm/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="2" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd" +IUSE="nls" + +DOCS=( AUTHORS README sample.xinitrc ) + +RDEPEND="x11-libs/gtk+:2 + dev-libs/glib:2" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}/${P}-enable-deprecated-gtk.patch" + "${FILESDIR}/${P}-glibc-2.10.patch" + "${FILESDIR}/${P}-nostrip.patch" +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + --program-suffix=2 \ + $(use_enable nls) +} diff --git a/x11-wm/selectwm/selectwm-0.4.1.ebuild b/x11-wm/selectwm/selectwm-0.4.1.ebuild index ac8889b0e7f..2d148c69907 100644 --- a/x11-wm/selectwm/selectwm-0.4.1.ebuild +++ b/x11-wm/selectwm/selectwm-0.4.1.ebuild @@ -1,12 +1,12 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 inherit autotools eutils DESCRIPTION="window manager selector tool" -HOMEPAGE="http://ordiluc.net/selectwm" -SRC_URI="http://ordiluc.net/selectwm/${P}.tar.bz2" +HOMEPAGE="https://ordiluc.net/selectwm" +SRC_URI="https://ordiluc.net/selectwm/${P}.tar.bz2" LICENSE="GPL-2" SLOT="2"