From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3EB8F1381F3 for ; Thu, 11 Jul 2013 17:11:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 45455E0ADB; Thu, 11 Jul 2013 17:11:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C0C48E0ADB for ; Thu, 11 Jul 2013 17:11:13 +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 C31F133E788 for ; Thu, 11 Jul 2013 17:11:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 62227E545D for ; Thu, 11 Jul 2013 17:11:11 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1373562548.4ac962ee2d1030896f42defdd84c42a408bc0e22.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: /, roverlay/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/__init__.py setup.py X-VCS-Directories: / roverlay/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 4ac962ee2d1030896f42defdd84c42a408bc0e22 X-VCS-Branch: master Date: Thu, 11 Jul 2013 17:11:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 889ca8ac-a78b-43fc-a1ba-ce7bfa96830b X-Archives-Hash: b1442c8f9cd18dbee87790eb6d98e393 commit: 4ac962ee2d1030896f42defdd84c42a408bc0e22 Author: André Erdmann mailerd de> AuthorDate: Thu Jul 11 17:09:08 2013 +0000 Commit: André Erdmann mailerd de> CommitDate: Thu Jul 11 17:09:08 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=4ac962ee R_Overlay 0.2.5 Notable changes since gsoc2013_start_coding: * packages rules: relocate packages (category, name, SRC_URI) * additions dir: patch ebuilds, import ebuilds * R_SUGGESTS USE_EXPAND variable * distmap: package file verification, revbump on checksum change * hooks: run shell scripts when certain events like "overlay created" occur -> create/maintain git history -> create metadata cache * test cases for dependency resolution * dependency resolution -> split dependency strings -> fuzzy SLOT rules -> selfdep validation * ebuild creation -> interruptible ebuild creation jobs which allows to implement breakpoints/multi-phase actions like selfdep validation -> add LICENSE variable to ebuilds ("license map") * fast Manifest file creation (newmanifest) * R-overlay.conf file generation (roverlay-mkconfig) * ebuild / setup.py up-to-date (setup.py uses setuptools now) * misc fixes doc/ reflects these changes only partially. --- roverlay/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/roverlay/__init__.py b/roverlay/__init__.py index 7930c4a..175f2d1 100644 --- a/roverlay/__init__.py +++ b/roverlay/__init__.py @@ -13,7 +13,7 @@ load_config_file) and some information vars (version, name, ...). __all__ = [ 'setup_initial_logger', 'load_config_file', ] name = "R_overlay" -version = "0.2.4" +version = "0.2.5" description_str = "R overlay creation (roverlay) " + version license_str=( diff --git a/setup.py b/setup.py index d42b159..d94e237 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup, find_packages setup ( name = 'R_Overlay', - version = '0.2.4', + version = '0.2.5', description = 'Automatically generated overlay of R packages (SoC2012)', author = 'André Erdmann', author_email = 'dywi@mailerd.de', From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 578A6138200 for ; Thu, 11 Jul 2013 17:11:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A619E07FB; Thu, 11 Jul 2013 17:11:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9E5DAE07FB for ; Thu, 11 Jul 2013 17:11:13 +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 8FE7433E3CC for ; Thu, 11 Jul 2013 17:11:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2BE03E468F for ; Thu, 11 Jul 2013 17:11:11 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1373562548.4ac962ee2d1030896f42defdd84c42a408bc0e22.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:gsoc13/next commit in: /, roverlay/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/__init__.py setup.py X-VCS-Directories: / roverlay/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 4ac962ee2d1030896f42defdd84c42a408bc0e22 X-VCS-Branch: gsoc13/next Date: Thu, 11 Jul 2013 17:11:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 76fbf178-8b69-4cd0-bc03-672e042fccf8 X-Archives-Hash: e22c165260254736f3b31ca811371796 Message-ID: <20130711171111.HxRZibbV5R1FMgT2J3sidiAkTGhNYLAXs_OTdVneOwE@z> commit: 4ac962ee2d1030896f42defdd84c42a408bc0e22 Author: André Erdmann mailerd de> AuthorDate: Thu Jul 11 17:09:08 2013 +0000 Commit: André Erdmann mailerd de> CommitDate: Thu Jul 11 17:09:08 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=4ac962ee R_Overlay 0.2.5 Notable changes since gsoc2013_start_coding: * packages rules: relocate packages (category, name, SRC_URI) * additions dir: patch ebuilds, import ebuilds * R_SUGGESTS USE_EXPAND variable * distmap: package file verification, revbump on checksum change * hooks: run shell scripts when certain events like "overlay created" occur -> create/maintain git history -> create metadata cache * test cases for dependency resolution * dependency resolution -> split dependency strings -> fuzzy SLOT rules -> selfdep validation * ebuild creation -> interruptible ebuild creation jobs which allows to implement breakpoints/multi-phase actions like selfdep validation -> add LICENSE variable to ebuilds ("license map") * fast Manifest file creation (newmanifest) * R-overlay.conf file generation (roverlay-mkconfig) * ebuild / setup.py up-to-date (setup.py uses setuptools now) * misc fixes doc/ reflects these changes only partially. --- roverlay/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/roverlay/__init__.py b/roverlay/__init__.py index 7930c4a..175f2d1 100644 --- a/roverlay/__init__.py +++ b/roverlay/__init__.py @@ -13,7 +13,7 @@ load_config_file) and some information vars (version, name, ...). __all__ = [ 'setup_initial_logger', 'load_config_file', ] name = "R_overlay" -version = "0.2.4" +version = "0.2.5" description_str = "R overlay creation (roverlay) " + version license_str=( diff --git a/setup.py b/setup.py index d42b159..d94e237 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup, find_packages setup ( name = 'R_Overlay', - version = '0.2.4', + version = '0.2.5', description = 'Automatically generated overlay of R packages (SoC2012)', author = 'André Erdmann', author_email = 'dywi@mailerd.de',