From owner-svn-soc-all@FreeBSD.ORG Wed Jun 6 13:28:44 2012 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id 786E2106564A for ; Wed, 6 Jun 2012 13:28:42 +0000 (UTC) (envelope-from scher@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Wed, 06 Jun 2012 13:28:42 +0000 Date: Wed, 06 Jun 2012 13:28:42 +0000 From: scher@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20120606132842.786E2106564A@hub.freebsd.org> Cc: Subject: socsvn commit: r237212 - in soc2012/scher/par_ports/head/fake_ports/with_deps: fake1 fake1a fake2 X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jun 2012 13:28:44 -0000 Author: scher Date: Wed Jun 6 13:28:41 2012 New Revision: 237212 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=237212 Log: [fixed] fake1 fake2 ports' behaviour changed for parallel deps build testing. fake2 has new port fake1a as a dependency port [new_feature] new fake port fake1a Added: soc2012/scher/par_ports/head/fake_ports/with_deps/fake1a/ soc2012/scher/par_ports/head/fake_ports/with_deps/fake1a/Makefile (contents, props changed) soc2012/scher/par_ports/head/fake_ports/with_deps/fake1a/pkg-descr Modified: soc2012/scher/par_ports/head/fake_ports/with_deps/fake1/Makefile soc2012/scher/par_ports/head/fake_ports/with_deps/fake2/Makefile Modified: soc2012/scher/par_ports/head/fake_ports/with_deps/fake1/Makefile ============================================================================== --- soc2012/scher/par_ports/head/fake_ports/with_deps/fake1/Makefile Wed Jun 6 13:17:53 2012 (r237211) +++ soc2012/scher/par_ports/head/fake_ports/with_deps/fake1/Makefile Wed Jun 6 13:28:41 2012 (r237212) @@ -8,8 +8,7 @@ do-install: @echo "Port: "fake1" is installing now" - @echo "Press any key to continue:" - @read i + sleep 6; touch ${PORTSDIR}/tmp/fake1; pre-clean: Added: soc2012/scher/par_ports/head/fake_ports/with_deps/fake1a/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2012/scher/par_ports/head/fake_ports/with_deps/fake1a/Makefile Wed Jun 6 13:28:41 2012 (r237212) @@ -0,0 +1,17 @@ +PORTNAME=fake1a +PORTVERSION=1.0 +DISTFILES=fake-1.0.tar.gz +CATEGORIES=fake_ports + + +WRKSRC= ${WRKDIR}/fake-1.0 + +do-install: + @echo "Port: "fake1a" is installing now" + sleep 6; \ + touch ${PORTSDIR}/tmp/fake1a; + +pre-clean: + rm -rf ${PORTSDIR}/tmp/fake1a; + +.include Added: soc2012/scher/par_ports/head/fake_ports/with_deps/fake1a/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2012/scher/par_ports/head/fake_ports/with_deps/fake1a/pkg-descr Wed Jun 6 13:28:41 2012 (r237212) @@ -0,0 +1,2 @@ +This is a description for fake port +That is all so far \ No newline at end of file Modified: soc2012/scher/par_ports/head/fake_ports/with_deps/fake2/Makefile ============================================================================== --- soc2012/scher/par_ports/head/fake_ports/with_deps/fake2/Makefile Wed Jun 6 13:17:53 2012 (r237211) +++ soc2012/scher/par_ports/head/fake_ports/with_deps/fake2/Makefile Wed Jun 6 13:28:41 2012 (r237212) @@ -5,11 +5,15 @@ WRKSRC= ${WRKDIR}/fake-1.0 -FETCH_DEPENDS= ${PORTSDIR}/tmp/fake1:/usr/home/scher/project/fake_ports/with_deps/fake1 +FETCH_DEPENDS= ${PORTSDIR}/tmp/fake1:${PORTSDIR}/fake_ports/with_deps/fake1 \ + ${PORTSDIR}/tmp/fake1a:${PORTSDIR}/fake_ports/with_deps/fake1a NOCLEANDEPENDS= do-install: - @echo "Port: "fake2" is installing now" + @echo "Port: "fake2" is installing now"; \ + echo "Press any key to continue"; \ + read i + .include