From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B305E1395E3 for ; Thu, 17 Nov 2016 18:19:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 362DDE0B77; Thu, 17 Nov 2016 18:19:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9AB25E0B77 for ; Thu, 17 Nov 2016 18:19:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AD1DB3412F9 for ; Thu, 17 Nov 2016 18:19:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5DE62499 for ; Thu, 17 Nov 2016 18:18:59 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1479406247.de05267bdcbf5b399d1a16a5cb67b885531baddf.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:0.22.x commit in: / X-VCS-Repository: proj/openrc X-VCS-Files: ChangeLog X-VCS-Directories: / X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: de05267bdcbf5b399d1a16a5cb67b885531baddf X-VCS-Branch: 0.22.x Date: Thu, 17 Nov 2016 18:18:59 +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: cd62fafc-db22-4c13-9888-e3247020e415 X-Archives-Hash: 840d00731f5e27025c823eeebc8bf6fa commit: de05267bdcbf5b399d1a16a5cb67b885531baddf Author: William Hubbs gmail com> AuthorDate: Thu Nov 17 18:10:47 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Nov 17 18:10:47 2016 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=de05267b update ChangeLog ChangeLog | 81 ++++++++++++++++----------------------------------------------- 1 file changed, 20 insertions(+), 61 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9efb1ce..c00e997 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,23 @@ +commit a8b79601c86232fe942c7a5aa6725799ba25aed2 +Author: Jason Zaman +Commit: William Hubbs + + selinux: fix SIGSEGV with invalid contexts + + Fixes: https://github.com/openrc/openrc/issues/104 + +commit 09a62f2c260dccf835d29f31da7c9c0709cebff7 +Author: William Hubbs +Commit: William Hubbs + + version 0.22.4 + +commit ea047033c40d7e014317b149566014d56e5e42bb +Author: William Hubbs +Commit: William Hubbs + + update ChangeLog + commit 2bad4da89119c0385f9c92baef148590fb576c88 Author: William Hubbs Commit: William Hubbs @@ -1420,64 +1440,3 @@ Author: William Hubbs Commit: William Hubbs rc-functions.sh: add support for user-defined want dependencies - -commit 33d3f33b3ca7dd2ce616b8182d588d0743c2f124 -Author: Ian Stakenvicius -Commit: William Hubbs - - Implement "want" dependency - - The want dependency is similar to the use dependency. If a service - script, for example called service1, adds "want service2" to its depend - function, OpenRC will attempt to start service2, if it exists on the - system, when service1 is started. - - However, service1 will start regardless of the status of - service2. - - X-Gentoo-Bug: 406021 - X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=406021 - -commit ddb895b355e02c9c07b00bfaf00d1bf8a7abbc03 -Author: William Hubbs -Commit: William Hubbs - - conf.d/netmount: typo fix - - X-Gentoo-Bug: 564846 - X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=564846 - -commit 085d77f17e3bedd23ffa96fe7e4eb8515ae8bfc6 -Author: Benda Xu -Commit: William Hubbs - - Standardize macro tests for gnu hurd - - This also fixes breakage of GNU/hurd builds introduced by commit 3f82edbeb92. - -commit c831f1f994e187afd8edfff15e4063b99440bbcb -Author: William Hubbs -Commit: William Hubbs - - librc: rework overriding rc.conf options from the kcl - - Rename the rc_conf_override function to describe its purpose better, - drop one conditional compile by making it available everywhere, and move - the call to it after the optional rc.conf.d directory is processed. - -commit 591aea28215a8b5ad8660184dc6f6f15ff0c18b4 -Author: William Hubbs -Commit: William Hubbs - - librc: Remove redundant code from rc_config_load - -commit c09eeca49145b034df6527c500099ba22f28e824 -Author: William Hubbs -Commit: William Hubbs - - Add rc.conf.d support - - This makes it possible to override settings in rc.conf by adding a - directory @SYSCONFDIR@/rc.conf.d and putting files in this directory. - The files will be processed in lexical order, and the last setting in - these files will be used.