From owner-freebsd-emulation@FreeBSD.ORG Sun Mar 16 23:10:01 2014 Return-Path: Delivered-To: freebsd-emulation@smarthost.ysv.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 C3C996D0 for ; Sun, 16 Mar 2014 23:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 94F62EBB for ; Sun, 16 Mar 2014 23:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2GNA1Zq022381 for ; Sun, 16 Mar 2014 23:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2GNA1rM022380; Sun, 16 Mar 2014 23:10:01 GMT (envelope-from gnats) Date: Sun, 16 Mar 2014 23:10:01 GMT Message-Id: <201403162310.s2GNA1rM022380@freefall.freebsd.org> To: freebsd-emulation@FreeBSD.org Cc: From: Thierry Thomas Subject: Re: ports/186702: Mk/bsd.linux-rpm.mk does not allow grouping rules (:something) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Thierry Thomas List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Mar 2014 23:10:01 -0000 The following reply was made to PR ports/186702; it has been noted by GNATS. From: Thierry Thomas To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/186702: Mk/bsd.linux-rpm.mk does not allow grouping rules (:something) Date: Mon, 17 Mar 2014 00:00:41 +0100 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.