From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Mar 16 23:00:45 2014 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7118D5B2; Sun, 16 Mar 2014 23:00:45 +0000 (UTC) Received: from mx1b.lautre.net (etna.lautre.net [80.67.160.72]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2B3ACE64; Sun, 16 Mar 2014 23:00:44 +0000 (UTC) Received: from graf.pompo.net (graf.pompo.net [78.225.128.39]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: thierry@pompo.net) by mx1b.lautre.net (Postfix) with ESMTPSA id 503E77E0DF; Mon, 17 Mar 2014 00:00:42 +0100 (CET) Received: by graf.pompo.net (Postfix, from userid 1001) id BBD3271E58E; Mon, 17 Mar 2014 00:00:41 +0100 (CET) Date: Mon, 17 Mar 2014 00:00:41 +0100 From: Thierry Thomas To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/186702: Mk/bsd.linux-rpm.mk does not allow grouping rules (:something) Message-ID: <20140316230041.GO15009@graf.pompo.net> Mail-Followup-To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org References: <20140212201524.8192371E4AF@graf.pompo.net> <201402122020.s1CKK1MV049065@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201402122020.s1CKK1MV049065@freefall.freebsd.org> X-Operating-System: FreeBSD 10.0-STABLE amd64 Organization: Kabbale Eros X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: X-PGP: 0xF1C516B3C8359753 User-Agent: Mutt/1.5.22 (2013-10-16) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Mar 2014 23:00:45 -0000 As suggested by netchild@, I tested the proposed patch with some important ports. For emulators/linux_base-f10, x11-toolkits/linux-f10-gtk2, x11-toolkits/linux-f10-tk85 and so on, it is non applicable, because they have only one set of MASTER_SITES - but it does not hurt. I retried the patch proposed for devel/linux-f10-devtools, and it still works. I also tried it on x11-toolkits/linux-f10-qt45, with the hereunder patch, and it's OK: --- linux-f10-qt45.diff begins here --- diff -urN x11-toolkits/linux-f10-qt45.orig/Makefile x11-toolkits/linux-f10-qt45/Makefile --- x11-toolkits/linux-f10-qt45.orig/Makefile 2013-10-07 15:36:45.000000000 +0200 +++ x11-toolkits/linux-f10-qt45/Makefile 2014-03-16 23:29:12.000000000 +0100 @@ -3,10 +3,10 @@ PORTNAME= ${LINUX_NAME}45 PORTVERSION= 4.5.3 CATEGORIES= x11-toolkits linux -MASTER_SITES= http://archives.fedoraproject.org/pub/archive/fedora/linux/updates/10/i386/ \ - http://archives.fedoraproject.org/pub/archive/fedora/linux/updates/10/SRPMS/ +MASTER_SITES= http://archives.fedoraproject.org/pub/archive/fedora/linux/updates/10/i386/:bin \ + http://archives.fedoraproject.org/pub/archive/fedora/linux/updates/10/SRPMS/:src PKGNAMEPREFIX= linux-f10- -DISTNAME= ${LINUX_NAME}-${PORTVERSION}-${RPMVERSION} +DISTFILES= ${LINUX_NAME}-${PORTVERSION}-${RPMVERSION}${EXTRACT_SUFX}:bin MAINTAINER= emulation@FreeBSD.org COMMENT= RPM of QT4 (Linux Fedora 10) @@ -16,6 +16,7 @@ LINUX_NAME= qt LINUX_DIST_VER= 10 RPMVERSION= 9.fc10 +SRC_DISTFILES= ${LINUX_NAME}-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}:src USE_LDCONFIG= yes PLIST= ${PKGDIR}/pkg-plist.${LINUX_RPM_ARCH} --- linux-f10-qt45.diff ends here --- If you think about other important ports with at least two sets of MASTER_SITES (not the critical ones), let me know, and I'll try them. Best regards, -- Th. Thomas.