From owner-svn-soc-all@FreeBSD.ORG Wed May 30 21:43:10 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 E91A11065679 for ; Wed, 30 May 2012 21:43:07 +0000 (UTC) (envelope-from scher@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Wed, 30 May 2012 21:43:07 +0000 Date: Wed, 30 May 2012 21:43:07 +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: <20120530214307.E91A11065679@hub.freebsd.org> Cc: Subject: socsvn commit: r236766 - in soc2012/scher/par_ports/head/fake_ports: with_conflicts with_conflicts/fake3 with_conflicts/fake4 with_deps/fake1 with_deps/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, 30 May 2012 21:43:10 -0000 Author: scher Date: Wed May 30 21:43:07 2012 New Revision: 236766 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=236766 Log: [new_feature] New ports for testing conflicts checking [fixed] Some not meaningful changes for ports dependency testing Added: soc2012/scher/par_ports/head/fake_ports/with_conflicts/ soc2012/scher/par_ports/head/fake_ports/with_conflicts/fake3/ (props changed) soc2012/scher/par_ports/head/fake_ports/with_conflicts/fake3/Makefile (contents, props changed) soc2012/scher/par_ports/head/fake_ports/with_conflicts/fake3/pkg-descr soc2012/scher/par_ports/head/fake_ports/with_conflicts/fake4/ soc2012/scher/par_ports/head/fake_ports/with_conflicts/fake4/Makefile (contents, props changed) soc2012/scher/par_ports/head/fake_ports/with_conflicts/fake4/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 Added: soc2012/scher/par_ports/head/fake_ports/with_conflicts/fake3/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2012/scher/par_ports/head/fake_ports/with_conflicts/fake3/Makefile Wed May 30 21:43:07 2012 (r236766) @@ -0,0 +1,18 @@ +PORTNAME=fake3 +PORTVERSION=1.0 +DISTFILES=fake-1.0.tar.gz +CATEGORIES=fake_ports + + +WRKSRC= ${WRKDIR}/fake-1.0 + +do-install: + @echo "Port: "fake3" is installing now" + @echo "Press any key to continue:" + @read i + touch ${PORTSDIR}/tmp/fake3; + +pre-clean: + rm -rf ${PORTSDIR}/tmp/fake3; + +.include Added: soc2012/scher/par_ports/head/fake_ports/with_conflicts/fake3/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2012/scher/par_ports/head/fake_ports/with_conflicts/fake3/pkg-descr Wed May 30 21:43:07 2012 (r236766) @@ -0,0 +1,2 @@ +This is a description for fake port +That is all so far \ No newline at end of file Added: soc2012/scher/par_ports/head/fake_ports/with_conflicts/fake4/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2012/scher/par_ports/head/fake_ports/with_conflicts/fake4/Makefile Wed May 30 21:43:07 2012 (r236766) @@ -0,0 +1,18 @@ +PORTNAME=fake4 +PORTVERSION=1.0 +DISTFILES=fake-1.0.tar.gz +CATEGORIES=fake_ports + + +WRKSRC= ${WRKDIR}/fake-1.0 + +CONFLICTS= fake3-* fake-* + +NOCLEANDEPENDS= + +do-install: + @echo "Port: "fake4" is installing now" + @echo "Press any key to continue:" + @read i + +.include Added: soc2012/scher/par_ports/head/fake_ports/with_conflicts/fake4/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2012/scher/par_ports/head/fake_ports/with_conflicts/fake4/pkg-descr Wed May 30 21:43:07 2012 (r236766) @@ -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/fake1/Makefile ============================================================================== --- soc2012/scher/par_ports/head/fake_ports/with_deps/fake1/Makefile Wed May 30 20:56:07 2012 (r236765) +++ soc2012/scher/par_ports/head/fake_ports/with_deps/fake1/Makefile Wed May 30 21:43:07 2012 (r236766) @@ -10,5 +10,9 @@ @echo "Port: "fake1" is installing now" @echo "Press any key to continue:" @read i + touch ${PORTSDIR}/tmp/fake1; + +pre-clean: + rm -rf ${PORTSDIR}/tmp/fake1; .include Modified: soc2012/scher/par_ports/head/fake_ports/with_deps/fake2/Makefile ============================================================================== --- soc2012/scher/par_ports/head/fake_ports/with_deps/fake2/Makefile Wed May 30 20:56:07 2012 (r236765) +++ soc2012/scher/par_ports/head/fake_ports/with_deps/fake2/Makefile Wed May 30 21:43:07 2012 (r236766) @@ -5,11 +5,11 @@ WRKSRC= ${WRKDIR}/fake-1.0 -FETCH_DEPENDS= /un/existed/path:/usr/home/scher/project/fake_ports/with_deps/fake1 +FETCH_DEPENDS= ${PORTSDIR}/tmp/fake1:/usr/home/scher/project/fake_ports/with_deps/fake1 NOCLEANDEPENDS= do-install: - @echo "Port: "fake" is installing now" + @echo "Port: "fake2" is installing now" .include