From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1ScMIA-00013j-UR for garchives@archives.gentoo.org; Wed, 06 Jun 2012 19:53:19 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8A06E08EB; Wed, 6 Jun 2012 19:52:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id A06CFE08EB for ; Wed, 6 Jun 2012 19:52:36 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CA4B21B403A for ; Wed, 6 Jun 2012 19:52:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 826C8E5404 for ; Wed, 6 Jun 2012 19:52:34 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1339011595.8e2ad5acb4424806ced61689df2ba4d78a93af6a.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: /, roverlay/depres/ X-VCS-Repository: proj/R_overlay X-VCS-Files: Makefile roverlay/depres/Makefile run_config.py X-VCS-Directories: / roverlay/depres/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 8e2ad5acb4424806ced61689df2ba4d78a93af6a X-VCS-Branch: master Date: Wed, 6 Jun 2012 19:52:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: e8bafa6d-b0d5-4837-8dca-9080445bc732 X-Archives-Hash: 1031ecfa00d9659041308528e8ffe96f commit: 8e2ad5acb4424806ced61689df2ba4d78a93af6a Author: Andr=C3=A9 Erdmann mailerd de> AuthorDate: Wed Jun 6 19:39:55 2012 +0000 Commit: Andr=C3=A9 Erdmann mailerd de> CommitDate: Wed Jun 6 19:39:55 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/R_overlay.git= ;a=3Dcommit;h=3D8e2ad5ac temporary files for testing etc. * added test-seewave/seewave targets to the Makefile * run_config.py tries to read config files * roverlay/depres/Makefile executes 'cd .. && make' modified: Makefile new file: roverlay/depres/Makefile new file: run_config.py --- Makefile | 9 +++++++-- roverlay/depres/Makefile | 1 + run_config.py | 12 ++++++++++++ 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index abc4fe8..16f43e4 100644 --- a/Makefile +++ b/Makefile @@ -9,13 +9,18 @@ PY_NOP =3D ./nop.py PY_EBU =3D ./run_ebuildcreation.py PY_EBU2 =3D ./test_ebuildcreation.sh =20 -.PHONY: default dummy test test-nop test-ebuild_creation test-ebuild_cre= ation2 +.PHONY: default dummy test test-nop test-ebuild_creation test-ebuild_cre= ation2 test-seewave seewave =20 default: dummy test =20 dummy: $(PY) --version =20 +seewave: test-seewave + +test-seewave: test-nop $(PY_EBU) $(EXAMPLES)/packages + $(PY) $(PY_EBU) $(EXAMPLES)/packages/seewave_*.tar.gz + test-nop: $(PY_NOP) @$(PY) $(PY_NOP) =20 @@ -27,4 +32,4 @@ test-ebuild_creation: test-nop $(PY_EBU) $(EXAMPLES)/pa= ckages test-ebuild_creation2: test-nop $(PY_EBU) $(PY_EBU2) $(EXAMPLES)/package= s /bin/bash PYTHON=3D$(PY) /bin/bash $(PY_EBU2) -q 1000 =20 -test: test-nop test-ebuild_creation test-ebuild_creation2 +test: test-nop test-ebuild_creation test-ebuild_creation2 test-seewave diff --git a/roverlay/depres/Makefile b/roverlay/depres/Makefile new file mode 120000 index 0000000..d0b0e8e --- /dev/null +++ b/roverlay/depres/Makefile @@ -0,0 +1 @@ +../Makefile \ No newline at end of file diff --git a/run_config.py b/run_config.py new file mode 100755 index 0000000..98510a2 --- /dev/null +++ b/run_config.py @@ -0,0 +1,12 @@ +#!/usr/bin/env python3 + +import sys + +ARGV =3D sys.argv[1:] + +from roverlay import config + +for c in ARGV: + print ( "<=3D=3D=3D " + c + " =3D=3D=3D>" ) + config.access().load_config ( c ) + print ( ">=3D=3D=3D " + c + " =3D=3D=3D<" )