[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2024-02-09 Thread Kenton Groombridge
commit: cac47e2c7efc03943afb5711686aad6e7a147bb4
Author: Kenton Groombridge  gentoo  org>
AuthorDate: Fri Feb  9 14:39:11 2024 +
Commit: Kenton Groombridge  gentoo  org>
CommitDate: Fri Feb  9 14:41:08 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cac47e2c

sys-apps/restorecond: stabilize 3.6 for amd64, arm, arm64, x86

Signed-off-by: Kenton Groombridge  gentoo.org>

 sys-apps/restorecond/restorecond-3.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-3.6.ebuild 
b/sys-apps/restorecond/restorecond-3.6.ebuild
index 794b84bc99e8..0b80f0fc989c 100644
--- a/sys-apps/restorecond/restorecond-3.6.ebuild
+++ b/sys-apps/restorecond/restorecond-3.6.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 arm arm64 ~mips x86"
S="${WORKDIR}/${MY_P}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2024-01-16 Thread Kenton Groombridge
commit: c7b146ac346a4e3f09e471a439c1181204652021
Author: Kenton Groombridge  gentoo  org>
AuthorDate: Wed Jan 17 00:28:16 2024 +
Commit: Kenton Groombridge  gentoo  org>
CommitDate: Wed Jan 17 01:29:28 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7b146ac

sys-apps/restorecond: bump to 3.6

Signed-off-by: Kenton Groombridge  gentoo.org>

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-3.6.ebuild | 53 +
 2 files changed, 54 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 49a27c18e262..c48a0b0fc5a8 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1 +1,2 @@
 DIST restorecond-3.5.tar.gz 19070 BLAKE2B 
6db7d0fc9085a07669d346e025836a94acca610572e986e2c90974b0bd21b55e66b57a2dafd7d42011bed5f06363b654f5431ac43530fccf7b68d3edd9d63850
 SHA512 
80cb84e62c7072a12fe57ebaafc0bcb441c853862c67f9ea35b86faa2d8e49ea22a70b9e05a3ff24e8ce08ca2999604d7961efd534f89167cd6fcb05c852de40
+DIST restorecond-3.6.tar.gz 18020 BLAKE2B 
306b4a7c9990c0b2f229cc7963dbd0481df5f9fbecd709b37d254839177fc604f6f85ac19235209f4fbb12d9186f01dd71a11f98deca5d01bd70c415240ddf5a
 SHA512 
e21fa23bfea488f2bddd01b4bab353f22863e09247078e47db9852995d7a0153aee6483cbeaaaf033b482b60f80affad0b6a3e829f935c3901c034a7efb1ebef

diff --git a/sys-apps/restorecond/restorecond-3.6.ebuild 
b/sys-apps/restorecond/restorecond-3.6.ebuild
new file mode 100644
index ..794b84bc99e8
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-3.6.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit systemd toolchain-funcs
+
+MY_PV="${PV//_/-}"
+MY_P="${PN}-${MY_PV}"
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${P}/${PN}"
+else
+   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_PV}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND="dev-libs/glib:2
+   >=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:="
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+
+   sed -i 's/-Werror//g' "${S}"/Makefile || die "Failed to remove Werror"
+}
+
+src_compile() {
+   tc-export CC
+   default
+}
+
+src_install() {
+   emake DESTDIR="${D}" \
+   SYSTEMDSYSTEMUNITDIR="$(systemd_get_systemunitdir)" \
+   SYSTEMDUSERUNITDIR=$(systemd_get_userunitdir) \
+   install
+
+   rm -rf "${D}/etc/rc.d" || die
+
+   newinitd "${FILESDIR}/restorecond.init" restorecond
+}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2024-01-16 Thread Kenton Groombridge
commit: 9c1177cedb72bc536c8a0846326a983fc4b6611b
Author: Kenton Groombridge  gentoo  org>
AuthorDate: Wed Jan 17 00:26:47 2024 +
Commit: Kenton Groombridge  gentoo  org>
CommitDate: Wed Jan 17 01:29:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c1177ce

sys-apps/restorecond: update live ebuild

Signed-off-by: Kenton Groombridge  gentoo.org>

 sys-apps/restorecond/restorecond-.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index a55a218edd6c..794b84bc99e8 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -23,7 +23,6 @@ HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE=""
 
 DEPEND="dev-libs/glib:2
>=sys-libs/libsepol-${PV}:=



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2023-04-15 Thread Kenton Groombridge
commit: 2fb5cf3dc6930afadfba100814bc71988b6485d9
Author: Kenton Groombridge  gentoo  org>
AuthorDate: Sat Apr 15 15:06:13 2023 +
Commit: Kenton Groombridge  gentoo  org>
CommitDate: Sat Apr 15 15:06:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fb5cf3d

sys-apps/restorecond: drop 3.4

Signed-off-by: Kenton Groombridge  gentoo.org>

 sys-apps/restorecond/Manifest   |  1 -
 sys-apps/restorecond/restorecond-3.4.ebuild | 54 -
 2 files changed, 55 deletions(-)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index ebf77dcd81c9..49a27c18e262 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,2 +1 @@
-DIST restorecond-3.4.tar.gz 18965 BLAKE2B 
a77de19d9f00d6e8f384a7ac411257b059ba3ecfefba893eda0e56362eca705347af364d51037f8b3308bac1c5248bb9326c692175c6c1dc561b18c84bff
 SHA512 
9c680345af1592a74177ba2e7cefa1b0e8e3c73d34ef932948598adb38c648dcae8495c951b1badfc587b2d67843b83598c904d924db349b6118560f115c
 DIST restorecond-3.5.tar.gz 19070 BLAKE2B 
6db7d0fc9085a07669d346e025836a94acca610572e986e2c90974b0bd21b55e66b57a2dafd7d42011bed5f06363b654f5431ac43530fccf7b68d3edd9d63850
 SHA512 
80cb84e62c7072a12fe57ebaafc0bcb441c853862c67f9ea35b86faa2d8e49ea22a70b9e05a3ff24e8ce08ca2999604d7961efd534f89167cd6fcb05c852de40

diff --git a/sys-apps/restorecond/restorecond-3.4.ebuild 
b/sys-apps/restorecond/restorecond-3.4.ebuild
deleted file mode 100644
index 4512c4411d18..
--- a/sys-apps/restorecond/restorecond-3.4.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit systemd toolchain-funcs
-
-MY_PV="${PV//_/-}"
-MY_P="${PN}-${MY_PV}"
-
-if [[ ${PV} == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${P}/${PN}"
-else
-   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="amd64 arm arm64 ~mips x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-DEPEND="dev-libs/glib:2
-   >=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:="
-
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-
-   sed -i 's/-Werror//g' "${S}"/Makefile || die "Failed to remove Werror"
-}
-
-src_compile() {
-   tc-export CC
-   default
-}
-
-src_install() {
-   emake DESTDIR="${D}" \
-   SYSTEMDSYSTEMUNITDIR="$(systemd_get_systemunitdir)" \
-   SYSTEMDUSERUNITDIR=$(systemd_get_userunitdir) \
-   install
-
-   rm -rf "${D}/etc/rc.d" || die
-
-   newinitd "${FILESDIR}/restorecond.init" restorecond
-}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2023-04-09 Thread Kenton Groombridge
commit: 9ef9a4f2606cee3c423b11a2d987b9f5337be202
Author: Kenton Groombridge  gentoo  org>
AuthorDate: Sun Apr  9 15:03:47 2023 +
Commit: Kenton Groombridge  gentoo  org>
CommitDate: Sun Apr  9 15:03:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ef9a4f2

sys-apps/restorecond: Stabilize SELinux userspace 3.5

Signed-off-by: Kenton Groombridge  gentoo.org>

 sys-apps/restorecond/restorecond-3.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-3.5.ebuild 
b/sys-apps/restorecond/restorecond-3.5.ebuild
index a55a218edd6c..010553a8791d 100644
--- a/sys-apps/restorecond/restorecond-3.5.ebuild
+++ b/sys-apps/restorecond/restorecond-3.5.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 arm arm64 ~mips x86"
S="${WORKDIR}/${MY_P}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2023-03-29 Thread Kenton Groombridge
commit: c246e1da8c4f91e35aa469623faf9a7e6ec9b2f7
Author: Kenton Groombridge  gentoo  org>
AuthorDate: Wed Mar 29 22:33:16 2023 +
Commit: Kenton Groombridge  gentoo  org>
CommitDate: Thu Mar 30 00:08:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c246e1da

sys-apps/restorecond: drop 3.3

Signed-off-by: Kenton Groombridge  gentoo.org>

 sys-apps/restorecond/Manifest   |  1 -
 sys-apps/restorecond/restorecond-3.3.ebuild | 50 -
 2 files changed, 51 deletions(-)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 543e07914ba3..ebf77dcd81c9 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,3 +1,2 @@
-DIST restorecond-3.3.tar.gz 18970 BLAKE2B 
41c0eed734ab1e89cdfd40fdb0ceff47e1c4bb66354ff78d548a9747c661fbf7ed4b6b3daa1e39325de2a2ca087aca803f073f942f3ac89b71d873e27a1d6712
 SHA512 
ea2b97d22c1d68aa4ea31d8850f8c9632c0db0d4d666e323c648da896554c6a6fdf6dfa3c105a1df3f1ede9da8cce5ba4c1533b05520846fcb2d584935e5d7cb
 DIST restorecond-3.4.tar.gz 18965 BLAKE2B 
a77de19d9f00d6e8f384a7ac411257b059ba3ecfefba893eda0e56362eca705347af364d51037f8b3308bac1c5248bb9326c692175c6c1dc561b18c84bff
 SHA512 
9c680345af1592a74177ba2e7cefa1b0e8e3c73d34ef932948598adb38c648dcae8495c951b1badfc587b2d67843b83598c904d924db349b6118560f115c
 DIST restorecond-3.5.tar.gz 19070 BLAKE2B 
6db7d0fc9085a07669d346e025836a94acca610572e986e2c90974b0bd21b55e66b57a2dafd7d42011bed5f06363b654f5431ac43530fccf7b68d3edd9d63850
 SHA512 
80cb84e62c7072a12fe57ebaafc0bcb441c853862c67f9ea35b86faa2d8e49ea22a70b9e05a3ff24e8ce08ca2999604d7961efd534f89167cd6fcb05c852de40

diff --git a/sys-apps/restorecond/restorecond-3.3.ebuild 
b/sys-apps/restorecond/restorecond-3.3.ebuild
deleted file mode 100644
index ccceea1c063d..
--- a/sys-apps/restorecond/restorecond-3.3.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit systemd toolchain-funcs
-
-IUSE=""
-
-if [[ ${PV} == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${P}/${PN}"
-else
-   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz;
-   KEYWORDS="amd64 arm arm64 ~mips x86"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND="dev-libs/glib:2
-   >=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:="
-
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-
-   sed -i 's/-Werror//g' "${S}"/Makefile || die "Failed to remove Werror"
-}
-
-src_compile() {
-   tc-export CC
-   default
-}
-
-src_install() {
-   SYSTEMDSYSTEMUNITDIR="$(systemd_get_systemunitdir)" \
-   SYSTEMDUSERUNITDIR=$(systemd_get_userunitdir) \
-   emake DESTDIR="${D}" install
-
-   rm -rf "${D}/etc/rc.d" || die
-
-   newinitd "${FILESDIR}/restorecond.init" restorecond
-}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2023-03-29 Thread Kenton Groombridge
commit: 195209ce2e75d18a145f5d7765c145a2a2eb4a2a
Author: Kenton Groombridge  gentoo  org>
AuthorDate: Wed Mar 29 22:20:59 2023 +
Commit: Kenton Groombridge  gentoo  org>
CommitDate: Thu Mar 30 00:08:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=195209ce

sys-apps/restorecond: bump to 3.5

Signed-off-by: Kenton Groombridge  gentoo.org>

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-3.5.ebuild | 54 +
 2 files changed, 55 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 6f6e742351d6..543e07914ba3 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,2 +1,3 @@
 DIST restorecond-3.3.tar.gz 18970 BLAKE2B 
41c0eed734ab1e89cdfd40fdb0ceff47e1c4bb66354ff78d548a9747c661fbf7ed4b6b3daa1e39325de2a2ca087aca803f073f942f3ac89b71d873e27a1d6712
 SHA512 
ea2b97d22c1d68aa4ea31d8850f8c9632c0db0d4d666e323c648da896554c6a6fdf6dfa3c105a1df3f1ede9da8cce5ba4c1533b05520846fcb2d584935e5d7cb
 DIST restorecond-3.4.tar.gz 18965 BLAKE2B 
a77de19d9f00d6e8f384a7ac411257b059ba3ecfefba893eda0e56362eca705347af364d51037f8b3308bac1c5248bb9326c692175c6c1dc561b18c84bff
 SHA512 
9c680345af1592a74177ba2e7cefa1b0e8e3c73d34ef932948598adb38c648dcae8495c951b1badfc587b2d67843b83598c904d924db349b6118560f115c
+DIST restorecond-3.5.tar.gz 19070 BLAKE2B 
6db7d0fc9085a07669d346e025836a94acca610572e986e2c90974b0bd21b55e66b57a2dafd7d42011bed5f06363b654f5431ac43530fccf7b68d3edd9d63850
 SHA512 
80cb84e62c7072a12fe57ebaafc0bcb441c853862c67f9ea35b86faa2d8e49ea22a70b9e05a3ff24e8ce08ca2999604d7961efd534f89167cd6fcb05c852de40

diff --git a/sys-apps/restorecond/restorecond-3.5.ebuild 
b/sys-apps/restorecond/restorecond-3.5.ebuild
new file mode 100644
index ..a55a218edd6c
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-3.5.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit systemd toolchain-funcs
+
+MY_PV="${PV//_/-}"
+MY_P="${PN}-${MY_PV}"
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${P}/${PN}"
+else
+   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_PV}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-libs/glib:2
+   >=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:="
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+
+   sed -i 's/-Werror//g' "${S}"/Makefile || die "Failed to remove Werror"
+}
+
+src_compile() {
+   tc-export CC
+   default
+}
+
+src_install() {
+   emake DESTDIR="${D}" \
+   SYSTEMDSYSTEMUNITDIR="$(systemd_get_systemunitdir)" \
+   SYSTEMDUSERUNITDIR=$(systemd_get_userunitdir) \
+   install
+
+   rm -rf "${D}/etc/rc.d" || die
+
+   newinitd "${FILESDIR}/restorecond.init" restorecond
+}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2023-03-29 Thread Kenton Groombridge
commit: 8158af38405ba625ffc19c07f4b6d215aacf5d56
Author: Kenton Groombridge  gentoo  org>
AuthorDate: Wed Mar 29 22:19:36 2023 +
Commit: Kenton Groombridge  gentoo  org>
CommitDate: Thu Mar 30 00:07:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8158af38

sys-apps/restorecond: update live ebuild

Signed-off-by: Kenton Groombridge  gentoo.org>

 sys-apps/restorecond/restorecond-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index 92cd1c69200e..a55a218edd6c 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2022-07-18 Thread Sam James
commit: 357df30a09084b5259bcd269c074c4a05e6d5001
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul 18 12:48:54 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul 18 12:48:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=357df30a

sys-apps/restorecond: Stabilize 3.4 arm64, #855968

Signed-off-by: Sam James  gentoo.org>

 sys-apps/restorecond/restorecond-3.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-3.4.ebuild 
b/sys-apps/restorecond/restorecond-3.4.ebuild
index a36c14acbaae..4512c4411d18 100644
--- a/sys-apps/restorecond/restorecond-3.4.ebuild
+++ b/sys-apps/restorecond/restorecond-3.4.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="amd64 arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 arm arm64 ~mips x86"
S="${WORKDIR}/${MY_P}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2022-07-18 Thread Sam James
commit: d4a082a9c2fb2cdc32cb84e8a7ee9318a3ac7b16
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul 18 12:48:43 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul 18 12:48:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4a082a9

sys-apps/restorecond: Stabilize 3.4 arm, #855968

Signed-off-by: Sam James  gentoo.org>

 sys-apps/restorecond/restorecond-3.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-3.4.ebuild 
b/sys-apps/restorecond/restorecond-3.4.ebuild
index 92d10b5de119..a36c14acbaae 100644
--- a/sys-apps/restorecond/restorecond-3.4.ebuild
+++ b/sys-apps/restorecond/restorecond-3.4.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 arm ~arm64 ~mips x86"
S="${WORKDIR}/${MY_P}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2022-07-02 Thread Kenton Groombridge
commit: 6a2c1181236b319404ed4437f0a8c244d562b48b
Author: Kenton Groombridge  gentoo  org>
AuthorDate: Sat Jul  2 17:02:18 2022 +
Commit: Kenton Groombridge  gentoo  org>
CommitDate: Sat Jul  2 17:02:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a2c1181

sys-apps/restorecond: stabilize 3.4 for amd64, x86

Signed-off-by: Kenton Groombridge  gentoo.org>

 sys-apps/restorecond/restorecond-3.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-3.4.ebuild 
b/sys-apps/restorecond/restorecond-3.4.ebuild
index 92cd1c69200e..92d10b5de119 100644
--- a/sys-apps/restorecond/restorecond-3.4.ebuild
+++ b/sys-apps/restorecond/restorecond-3.4.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
S="${WORKDIR}/${MY_P}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2022-06-03 Thread Kenton Groombridge
commit: f94f4fd836fa60c34f4db10382f962a7c4006575
Author: Kenton Groombridge  gentoo  org>
AuthorDate: Fri Jun  3 13:46:37 2022 +
Commit: Kenton Groombridge  gentoo  org>
CommitDate: Sat Jun  4 01:03:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f94f4fd8

sys-apps/restorecond: drop 3.4_rc1

Signed-off-by: Kenton Groombridge  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/25729
Signed-off-by: Kenton Groombridge  gentoo.org>

 sys-apps/restorecond/Manifest   |  1 -
 sys-apps/restorecond/restorecond-3.4_rc1.ebuild | 54 -
 2 files changed, 55 deletions(-)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 3f1999095d14..6f6e742351d6 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,3 +1,2 @@
 DIST restorecond-3.3.tar.gz 18970 BLAKE2B 
41c0eed734ab1e89cdfd40fdb0ceff47e1c4bb66354ff78d548a9747c661fbf7ed4b6b3daa1e39325de2a2ca087aca803f073f942f3ac89b71d873e27a1d6712
 SHA512 
ea2b97d22c1d68aa4ea31d8850f8c9632c0db0d4d666e323c648da896554c6a6fdf6dfa3c105a1df3f1ede9da8cce5ba4c1533b05520846fcb2d584935e5d7cb
-DIST restorecond-3.4-rc1.tar.gz 18961 BLAKE2B 
7f5f41f9dd7e776c266818221706f5cfff2fbb3ce99550e4c679a52e1c7694ddf06a8cd686ed80787e2acbf4060bb6cb4c4c15b85eb3ee58355b560f3751e910
 SHA512 
5d526ceb314719400cfeecb3d28369f62ca8f29223c6eabe847f3565c27b6a7f74ef6f489750b80809df6b3227324c978e4aceca1cb2f4f6a28bcaa03f1f9db9
 DIST restorecond-3.4.tar.gz 18965 BLAKE2B 
a77de19d9f00d6e8f384a7ac411257b059ba3ecfefba893eda0e56362eca705347af364d51037f8b3308bac1c5248bb9326c692175c6c1dc561b18c84bff
 SHA512 
9c680345af1592a74177ba2e7cefa1b0e8e3c73d34ef932948598adb38c648dcae8495c951b1badfc587b2d67843b83598c904d924db349b6118560f115c

diff --git a/sys-apps/restorecond/restorecond-3.4_rc1.ebuild 
b/sys-apps/restorecond/restorecond-3.4_rc1.ebuild
deleted file mode 100644
index 92cd1c69200e..
--- a/sys-apps/restorecond/restorecond-3.4_rc1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit systemd toolchain-funcs
-
-MY_PV="${PV//_/-}"
-MY_P="${PN}-${MY_PV}"
-
-if [[ ${PV} == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${P}/${PN}"
-else
-   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-DEPEND="dev-libs/glib:2
-   >=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:="
-
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-
-   sed -i 's/-Werror//g' "${S}"/Makefile || die "Failed to remove Werror"
-}
-
-src_compile() {
-   tc-export CC
-   default
-}
-
-src_install() {
-   emake DESTDIR="${D}" \
-   SYSTEMDSYSTEMUNITDIR="$(systemd_get_systemunitdir)" \
-   SYSTEMDUSERUNITDIR=$(systemd_get_userunitdir) \
-   install
-
-   rm -rf "${D}/etc/rc.d" || die
-
-   newinitd "${FILESDIR}/restorecond.init" restorecond
-}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2022-06-03 Thread Kenton Groombridge
commit: 3b5bd65c7564355c1614a30c3d0e123aa96b40e9
Author: Kenton Groombridge  gentoo  org>
AuthorDate: Fri Jun  3 13:31:16 2022 +
Commit: Kenton Groombridge  gentoo  org>
CommitDate: Sat Jun  4 01:03:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b5bd65c

sys-apps/restorecond: bump to 3.4

Signed-off-by: Kenton Groombridge  gentoo.org>

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-3.4.ebuild | 54 +
 2 files changed, 55 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index b14d5edab7e4..3f1999095d14 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,2 +1,3 @@
 DIST restorecond-3.3.tar.gz 18970 BLAKE2B 
41c0eed734ab1e89cdfd40fdb0ceff47e1c4bb66354ff78d548a9747c661fbf7ed4b6b3daa1e39325de2a2ca087aca803f073f942f3ac89b71d873e27a1d6712
 SHA512 
ea2b97d22c1d68aa4ea31d8850f8c9632c0db0d4d666e323c648da896554c6a6fdf6dfa3c105a1df3f1ede9da8cce5ba4c1533b05520846fcb2d584935e5d7cb
 DIST restorecond-3.4-rc1.tar.gz 18961 BLAKE2B 
7f5f41f9dd7e776c266818221706f5cfff2fbb3ce99550e4c679a52e1c7694ddf06a8cd686ed80787e2acbf4060bb6cb4c4c15b85eb3ee58355b560f3751e910
 SHA512 
5d526ceb314719400cfeecb3d28369f62ca8f29223c6eabe847f3565c27b6a7f74ef6f489750b80809df6b3227324c978e4aceca1cb2f4f6a28bcaa03f1f9db9
+DIST restorecond-3.4.tar.gz 18965 BLAKE2B 
a77de19d9f00d6e8f384a7ac411257b059ba3ecfefba893eda0e56362eca705347af364d51037f8b3308bac1c5248bb9326c692175c6c1dc561b18c84bff
 SHA512 
9c680345af1592a74177ba2e7cefa1b0e8e3c73d34ef932948598adb38c648dcae8495c951b1badfc587b2d67843b83598c904d924db349b6118560f115c

diff --git a/sys-apps/restorecond/restorecond-3.4.ebuild 
b/sys-apps/restorecond/restorecond-3.4.ebuild
new file mode 100644
index ..92cd1c69200e
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-3.4.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit systemd toolchain-funcs
+
+MY_PV="${PV//_/-}"
+MY_P="${PN}-${MY_PV}"
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${P}/${PN}"
+else
+   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_PV}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-libs/glib:2
+   >=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:="
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+
+   sed -i 's/-Werror//g' "${S}"/Makefile || die "Failed to remove Werror"
+}
+
+src_compile() {
+   tc-export CC
+   default
+}
+
+src_install() {
+   emake DESTDIR="${D}" \
+   SYSTEMDSYSTEMUNITDIR="$(systemd_get_systemunitdir)" \
+   SYSTEMDUSERUNITDIR=$(systemd_get_userunitdir) \
+   install
+
+   rm -rf "${D}/etc/rc.d" || die
+
+   newinitd "${FILESDIR}/restorecond.init" restorecond
+}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2022-04-10 Thread Jason Zaman
commit: 7cf5c8c87ff5291e7e101953ee35dcfbe4a3b99f
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Apr 11 04:27:22 2022 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Apr 11 04:57:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cf5c8c8

sys-apps/restorecond: bump to 3.4_rc1

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-3.4_rc1.ebuild | 54 +
 2 files changed, 55 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 5823e3897be5..b14d5edab7e4 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1 +1,2 @@
 DIST restorecond-3.3.tar.gz 18970 BLAKE2B 
41c0eed734ab1e89cdfd40fdb0ceff47e1c4bb66354ff78d548a9747c661fbf7ed4b6b3daa1e39325de2a2ca087aca803f073f942f3ac89b71d873e27a1d6712
 SHA512 
ea2b97d22c1d68aa4ea31d8850f8c9632c0db0d4d666e323c648da896554c6a6fdf6dfa3c105a1df3f1ede9da8cce5ba4c1533b05520846fcb2d584935e5d7cb
+DIST restorecond-3.4-rc1.tar.gz 18961 BLAKE2B 
7f5f41f9dd7e776c266818221706f5cfff2fbb3ce99550e4c679a52e1c7694ddf06a8cd686ed80787e2acbf4060bb6cb4c4c15b85eb3ee58355b560f3751e910
 SHA512 
5d526ceb314719400cfeecb3d28369f62ca8f29223c6eabe847f3565c27b6a7f74ef6f489750b80809df6b3227324c978e4aceca1cb2f4f6a28bcaa03f1f9db9

diff --git a/sys-apps/restorecond/restorecond-3.4_rc1.ebuild 
b/sys-apps/restorecond/restorecond-3.4_rc1.ebuild
new file mode 100644
index ..92cd1c69200e
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-3.4_rc1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit systemd toolchain-funcs
+
+MY_PV="${PV//_/-}"
+MY_P="${PN}-${MY_PV}"
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${P}/${PN}"
+else
+   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_PV}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-libs/glib:2
+   >=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:="
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+
+   sed -i 's/-Werror//g' "${S}"/Makefile || die "Failed to remove Werror"
+}
+
+src_compile() {
+   tc-export CC
+   default
+}
+
+src_install() {
+   emake DESTDIR="${D}" \
+   SYSTEMDSYSTEMUNITDIR="$(systemd_get_systemunitdir)" \
+   SYSTEMDUSERUNITDIR=$(systemd_get_userunitdir) \
+   install
+
+   rm -rf "${D}/etc/rc.d" || die
+
+   newinitd "${FILESDIR}/restorecond.init" restorecond
+}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2022-04-10 Thread Jason Zaman
commit: 26cc733271f74892bd6dc93de32df3ee23440fb0
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Apr 11 00:53:04 2022 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Apr 11 03:43:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26cc7332

sys-apps/restorecond: update live ebuild

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/restorecond-.ebuild | 14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index f3e66897e8c1..92cd1c69200e 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -1,19 +1,21 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
 
 inherit systemd toolchain-funcs
 
-IUSE=""
+MY_PV="${PV//_/-}"
+MY_P="${PN}-${MY_PV}"
 
 if [[ ${PV} == * ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
S="${WORKDIR}/${P}/${PN}"
 else
-   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz;
+   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_PV}/${MY_P}.tar.gz;
KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
 fi
 
 DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
@@ -21,6 +23,7 @@ HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
 
 LICENSE="GPL-2"
 SLOT="0"
+IUSE=""
 
 DEPEND="dev-libs/glib:2
>=sys-libs/libsepol-${PV}:=
@@ -40,9 +43,10 @@ src_compile() {
 }
 
 src_install() {
-   SYSTEMDSYSTEMUNITDIR="$(systemd_get_systemunitdir)" \
+   emake DESTDIR="${D}" \
+   SYSTEMDSYSTEMUNITDIR="$(systemd_get_systemunitdir)" \
SYSTEMDUSERUNITDIR=$(systemd_get_userunitdir) \
-   emake DESTDIR="${D}" install
+   install
 
rm -rf "${D}/etc/rc.d" || die
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2022-04-08 Thread Jason Zaman
commit: 363ef1e03ce5d472b20ea18fb7f247d4c9d7b68c
Author: Jason Zaman  gentoo  org>
AuthorDate: Sat Apr  9 01:46:10 2022 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sat Apr  9 02:54:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=363ef1e0

sys-apps/restorecond: Drop old

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/Manifest   |  2 --
 sys-apps/restorecond/restorecond-3.1.ebuild | 54 -
 sys-apps/restorecond/restorecond-3.2.ebuild | 50 --
 3 files changed, 106 deletions(-)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 72a26729f3bb..5823e3897be5 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,3 +1 @@
-DIST restorecond-3.1.tar.gz 18939 BLAKE2B 
3a3fcde057dad3ed05692d679ba27e0b24f191d92ed5114fa38cb5f846c4cc00d85bb09b5d4e560ed2b91e0c2d1c407f6c03900610624d5626d05f2991bc
 SHA512 
cdcf299f48b89a7c641ded9507b9b966bf648497394f8e988a9cb1ceb3224c86369706027f3416a4f9750836f7a8f4580a4b3df76673e03f897b383d7ed0e2c8
-DIST restorecond-3.2.tar.gz 18965 BLAKE2B 
6cbd32c7c33fcc9f3fff78cc1faaa354c7ee918bfde8e12dfa73ce99632a8bc1e00d2f3b7cdd9c72179dbb51af1847e8dadd41cdc3ca20e9fb45e61871325029
 SHA512 
b1437a5d4dffef3463a0f2994f07c98585e9cfbc354db2dc07483fd9b964b079090697a277d2f4fd6bcd8df62f7505962fdca22d700721f6ba71490ace0167a9
 DIST restorecond-3.3.tar.gz 18970 BLAKE2B 
41c0eed734ab1e89cdfd40fdb0ceff47e1c4bb66354ff78d548a9747c661fbf7ed4b6b3daa1e39325de2a2ca087aca803f073f942f3ac89b71d873e27a1d6712
 SHA512 
ea2b97d22c1d68aa4ea31d8850f8c9632c0db0d4d666e323c648da896554c6a6fdf6dfa3c105a1df3f1ede9da8cce5ba4c1533b05520846fcb2d584935e5d7cb

diff --git a/sys-apps/restorecond/restorecond-3.1.ebuild 
b/sys-apps/restorecond/restorecond-3.1.ebuild
deleted file mode 100644
index 7184259428fe..
--- a/sys-apps/restorecond/restorecond-3.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit systemd toolchain-funcs
-
-MY_RELEASEDATE="20200710"
-
-MY_P="${P//_/-}"
-IUSE=""
-
-if [[ ${PV} == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${MY_P}/${PN}"
-else
-   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND="dev-libs/glib:2
-   >=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:="
-
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-
-   sed -i 's/-Werror//g' "${S}"/Makefile || die "Failed to remove Werror"
-}
-
-src_compile() {
-   tc-export CC
-   default
-}
-
-src_install() {
-   SYSTEMDSYSTEMUNITDIR="$(systemd_get_systemunitdir)" \
-   SYSTEMDUSERUNITDIR=$(systemd_get_userunitdir) \
-   emake DESTDIR="${D}" install
-
-   rm -rf "${D}/etc/rc.d" || die
-
-   newinitd "${FILESDIR}/restorecond.init" restorecond
-}

diff --git a/sys-apps/restorecond/restorecond-3.2.ebuild 
b/sys-apps/restorecond/restorecond-3.2.ebuild
deleted file mode 100644
index 600b91f0ad82..
--- a/sys-apps/restorecond/restorecond-3.2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit systemd toolchain-funcs
-
-IUSE=""
-
-if [[ ${PV} == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${P}/${PN}"
-else
-   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz;
-   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND="dev-libs/glib:2
-   >=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:="
-
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-
-   sed -i 's/-Werror//g' "${S}"/Makefile || die "Failed to remove Werror"
-}
-
-src_compile() {
-   tc-export CC
-   default
-}
-
-src_install() {
-   SYSTEMDSYSTEMUNITDIR="$(systemd_get_systemunitdir)" \
-   SYSTEMDUSERUNITDIR=$(systemd_get_userunitdir) \
-   emake DESTDIR="${D}" install
-
-   rm -rf "${D}/etc/rc.d" || die
-
-   newinitd "${FILESDIR}/restorecond.init" restorecond
-}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2021-12-27 Thread Jason Zaman
commit: 7f26233fcfe2b3f65e3c0a14e8b99c2f5fc5e900
Author: Jason Zaman  gentoo  org>
AuthorDate: Tue Dec 28 01:11:47 2021 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Tue Dec 28 01:11:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f26233f

sys-apps/restorecond: stabilize SELinux userspace 3.3

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/restorecond-3.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-3.3.ebuild 
b/sys-apps/restorecond/restorecond-3.3.ebuild
index f3e66897e8c1..ccceea1c063d 100644
--- a/sys-apps/restorecond/restorecond-3.3.ebuild
+++ b/sys-apps/restorecond/restorecond-3.3.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 arm arm64 ~mips x86"
 fi
 
 DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2021-10-30 Thread Sam James
commit: 3cdef6b4b412bbe52869d67e732456f6661241f9
Author: Jonathan Davies  protonmail  com>
AuthorDate: Sun Oct 24 11:52:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 31 02:50:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cdef6b4

sys-apps/restorecond: Version updated to 3.3.

Signed-off-by: Jonathan Davies  protonmail.com>
Signed-off-by: Sam James  gentoo.org>

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-3.3.ebuild | 50 +
 2 files changed, 51 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 163a8d8856f..72a26729f3b 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,2 +1,3 @@
 DIST restorecond-3.1.tar.gz 18939 BLAKE2B 
3a3fcde057dad3ed05692d679ba27e0b24f191d92ed5114fa38cb5f846c4cc00d85bb09b5d4e560ed2b91e0c2d1c407f6c03900610624d5626d05f2991bc
 SHA512 
cdcf299f48b89a7c641ded9507b9b966bf648497394f8e988a9cb1ceb3224c86369706027f3416a4f9750836f7a8f4580a4b3df76673e03f897b383d7ed0e2c8
 DIST restorecond-3.2.tar.gz 18965 BLAKE2B 
6cbd32c7c33fcc9f3fff78cc1faaa354c7ee918bfde8e12dfa73ce99632a8bc1e00d2f3b7cdd9c72179dbb51af1847e8dadd41cdc3ca20e9fb45e61871325029
 SHA512 
b1437a5d4dffef3463a0f2994f07c98585e9cfbc354db2dc07483fd9b964b079090697a277d2f4fd6bcd8df62f7505962fdca22d700721f6ba71490ace0167a9
+DIST restorecond-3.3.tar.gz 18970 BLAKE2B 
41c0eed734ab1e89cdfd40fdb0ceff47e1c4bb66354ff78d548a9747c661fbf7ed4b6b3daa1e39325de2a2ca087aca803f073f942f3ac89b71d873e27a1d6712
 SHA512 
ea2b97d22c1d68aa4ea31d8850f8c9632c0db0d4d666e323c648da896554c6a6fdf6dfa3c105a1df3f1ede9da8cce5ba4c1533b05520846fcb2d584935e5d7cb

diff --git a/sys-apps/restorecond/restorecond-3.3.ebuild 
b/sys-apps/restorecond/restorecond-3.3.ebuild
new file mode 100644
index 000..f3e66897e8c
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-3.3.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit systemd toolchain-funcs
+
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${P}/${PN}"
+else
+   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND="dev-libs/glib:2
+   >=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:="
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+
+   sed -i 's/-Werror//g' "${S}"/Makefile || die "Failed to remove Werror"
+}
+
+src_compile() {
+   tc-export CC
+   default
+}
+
+src_install() {
+   SYSTEMDSYSTEMUNITDIR="$(systemd_get_systemunitdir)" \
+   SYSTEMDUSERUNITDIR=$(systemd_get_userunitdir) \
+   emake DESTDIR="${D}" install
+
+   rm -rf "${D}/etc/rc.d" || die
+
+   newinitd "${FILESDIR}/restorecond.init" restorecond
+}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2021-07-28 Thread Sam James
commit: 42401bc60cc916efbebbd82841cee90f1ac70a6c
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 28 20:04:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 28 20:07:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42401bc6

sys-apps/restorecond: Stabilize 3.2 x86, #797616

Signed-off-by: Sam James  gentoo.org>

 sys-apps/restorecond/restorecond-3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-3.2.ebuild 
b/sys-apps/restorecond/restorecond-3.2.ebuild
index fe9b6bec869..600b91f0ad8 100644
--- a/sys-apps/restorecond/restorecond-3.2.ebuild
+++ b/sys-apps/restorecond/restorecond-3.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz;
-   KEYWORDS="amd64 ~arm ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi
 
 DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2021-07-04 Thread Sam James
commit: 7c8b46999df097a437288eecb1cce347d20b842c
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c8b4699

sys-apps/restorecond: Stabilize 3.2 amd64, #797616

Signed-off-by: Sam James  gentoo.org>

 sys-apps/restorecond/restorecond-3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-3.2.ebuild 
b/sys-apps/restorecond/restorecond-3.2.ebuild
index f3e66897e8c..fe9b6bec869 100644
--- a/sys-apps/restorecond/restorecond-3.2.ebuild
+++ b/sys-apps/restorecond/restorecond-3.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips ~x86"
 fi
 
 DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2021-04-02 Thread Jason Zaman
commit: 6a7295a0558213aa8c69d9924de3461439747b74
Author: Jonathan Davies  protonmail  com>
AuthorDate: Thu Mar 18 01:00:11 2021 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sat Apr  3 04:15:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a7295a0

sys-apps/restorecond: Sync live ebuild.

Signed-off-by: Jonathan Davies  protonmail.com>
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/restorecond-.ebuild | 8 ++--
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index 9d1e9b1ad76..f3e66897e8c 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -5,19 +5,15 @@ EAPI="7"
 
 inherit systemd toolchain-funcs
 
-MY_RELEASEDATE="20200710"
-
-MY_P="${P//_/-}"
 IUSE=""
 
 if [[ ${PV} == * ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${MY_P}/${PN}"
+   S="${WORKDIR}/${P}/${PN}"
 else
-   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz;
KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
-   S="${WORKDIR}/${MY_P}"
 fi
 
 DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2021-04-02 Thread Jason Zaman
commit: b8dfa34696c352eb12868d4eb21a1de716f08c05
Author: Jonathan Davies  protonmail  com>
AuthorDate: Thu Mar 18 00:18:04 2021 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sat Apr  3 04:15:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8dfa346

sys-apps/restorecond: Version updated to 3.2.

Signed-off-by: Jonathan Davies  protonmail.com>
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-3.2.ebuild | 50 +
 2 files changed, 51 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 55b635ab646..163a8d8856f 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1 +1,2 @@
 DIST restorecond-3.1.tar.gz 18939 BLAKE2B 
3a3fcde057dad3ed05692d679ba27e0b24f191d92ed5114fa38cb5f846c4cc00d85bb09b5d4e560ed2b91e0c2d1c407f6c03900610624d5626d05f2991bc
 SHA512 
cdcf299f48b89a7c641ded9507b9b966bf648497394f8e988a9cb1ceb3224c86369706027f3416a4f9750836f7a8f4580a4b3df76673e03f897b383d7ed0e2c8
+DIST restorecond-3.2.tar.gz 18965 BLAKE2B 
6cbd32c7c33fcc9f3fff78cc1faaa354c7ee918bfde8e12dfa73ce99632a8bc1e00d2f3b7cdd9c72179dbb51af1847e8dadd41cdc3ca20e9fb45e61871325029
 SHA512 
b1437a5d4dffef3463a0f2994f07c98585e9cfbc354db2dc07483fd9b964b079090697a277d2f4fd6bcd8df62f7505962fdca22d700721f6ba71490ace0167a9

diff --git a/sys-apps/restorecond/restorecond-3.2.ebuild 
b/sys-apps/restorecond/restorecond-3.2.ebuild
new file mode 100644
index 000..f3e66897e8c
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-3.2.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit systemd toolchain-funcs
+
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${P}/${PN}"
+else
+   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND="dev-libs/glib:2
+   >=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:="
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+
+   sed -i 's/-Werror//g' "${S}"/Makefile || die "Failed to remove Werror"
+}
+
+src_compile() {
+   tc-export CC
+   default
+}
+
+src_install() {
+   SYSTEMDSYSTEMUNITDIR="$(systemd_get_systemunitdir)" \
+   SYSTEMDUSERUNITDIR=$(systemd_get_userunitdir) \
+   emake DESTDIR="${D}" install
+
+   rm -rf "${D}/etc/rc.d" || die
+
+   newinitd "${FILESDIR}/restorecond.init" restorecond
+}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2021-01-03 Thread Jason Zaman
commit: 6f32970cf94fc660442696435afc4a8e7f312b76
Author: David Michael  gmail  com>
AuthorDate: Mon Dec 21 23:56:54 2020 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun Jan  3 08:19:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f32970c

sys-apps/restorecond: update dependencies

https://github.com/SELinuxProject/selinux/commit/42f73af5076411de3c6a5b2bed21a4fd6ae44acd
https://github.com/SELinuxProject/selinux/commit/252925ccdffc26b89ff701ae1ae92853b338b1ff

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: David Michael  gmail.com>
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/restorecond-3.1.ebuild  | 10 --
 sys-apps/restorecond/restorecond-.ebuild | 10 --
 2 files changed, 8 insertions(+), 12 deletions(-)

diff --git a/sys-apps/restorecond/restorecond-3.1.ebuild 
b/sys-apps/restorecond/restorecond-3.1.ebuild
index 90da950241d..7184259428f 100644
--- a/sys-apps/restorecond/restorecond-3.1.ebuild
+++ b/sys-apps/restorecond/restorecond-3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -26,11 +26,9 @@ HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
 LICENSE="GPL-2"
 SLOT="0"
 
-DEPEND=">=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:=
-   dev-libs/dbus-glib
-   dev-libs/libpcre:=
-   >=sys-libs/libcap-1.10-r10:="
+DEPEND="dev-libs/glib:2
+   >=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:="
 
 RDEPEND="${DEPEND}"
 

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index 001d8cd6d3f..9d1e9b1ad76 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -26,11 +26,9 @@ HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
 LICENSE="GPL-2"
 SLOT="0"
 
-DEPEND=">=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:=
-   dev-libs/dbus-glib
-   dev-libs/libpcre:=
-   >=sys-libs/libcap-1.10-r10:="
+DEPEND="dev-libs/glib:2
+   >=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:="
 
 RDEPEND="${DEPEND}"
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2020-12-17 Thread Jason Zaman
commit: 38870f4fc4b1aa42eccf82f0d22c5be371509afe
Author: Jason Zaman  gentoo  org>
AuthorDate: Fri Dec 18 02:49:46 2020 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Fri Dec 18 02:49:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38870f4f

sys-apps/restorecond: Drop old

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/Manifest   |  2 --
 sys-apps/restorecond/restorecond-2.9.ebuild | 55 -
 sys-apps/restorecond/restorecond-3.0.ebuild | 55 -
 3 files changed, 112 deletions(-)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 84f10cfb46b..55b635ab646 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,3 +1 @@
-DIST restorecond-2.9.tar.gz 18893 BLAKE2B 
fcdae1a4ec489f3f581212cdd3c13c5561feac3ee758f354dca75c97938c62b9ed04aedbd4b3b5cde09a5887247389262718145620d0b9749e364d1614f57241
 SHA512 
6de9dd4c6b8e5d8275221aba5df27437998f635cfe83a5da75de479e260ceea884a36253eb873a8d71e1a77ed67544d8657fb75fe409af1f630052ce73ec5d8a
-DIST restorecond-3.0.tar.gz 18797 BLAKE2B 
354477ea9f57cc27c14a2648b99b32c45ac6d4e32caeb0fb108ed8f40a2e2e04101e2658d0107a1f2741717c242ad80b2e14db03488ab62b88eeb8b1a9ac0dd4
 SHA512 
f75088f72a17f1f7550ef67052202cea1fd9cf1bb1eec0355f4a0641ba25097b289f629df328ee79aec00f8361cbc6df10efc4a5af2f0b67f9922ceaf92aa956
 DIST restorecond-3.1.tar.gz 18939 BLAKE2B 
3a3fcde057dad3ed05692d679ba27e0b24f191d92ed5114fa38cb5f846c4cc00d85bb09b5d4e560ed2b91e0c2d1c407f6c03900610624d5626d05f2991bc
 SHA512 
cdcf299f48b89a7c641ded9507b9b966bf648497394f8e988a9cb1ceb3224c86369706027f3416a4f9750836f7a8f4580a4b3df76673e03f897b383d7ed0e2c8

diff --git a/sys-apps/restorecond/restorecond-2.9.ebuild 
b/sys-apps/restorecond/restorecond-2.9.ebuild
deleted file mode 100644
index 5e25b5962ea..000
--- a/sys-apps/restorecond/restorecond-2.9.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit toolchain-funcs
-
-MY_RELEASEDATE="20190315"
-
-MY_P="${P//_/-}"
-IUSE=""
-
-if [[ ${PV} == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${MY_P}/${PN}"
-else
-   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND=">=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:=
-   dev-libs/dbus-glib
-   dev-libs/libpcre:=
-   >=sys-libs/libcap-1.10-r10:="
-
-RDEPEND="${DEPEND}
-   !https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${MY_P}/${PN}"
-else
-   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND=">=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:=
-   dev-libs/dbus-glib
-   dev-libs/libpcre:=
-   >=sys-libs/libcap-1.10-r10:="
-
-RDEPEND="${DEPEND}
-   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2020-12-02 Thread Jason Zaman
commit: 33af485d05c713b308819a2876be1ea0440ccbc5
Author: Jason Zaman  gentoo  org>
AuthorDate: Thu Dec  3 03:00:39 2020 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Thu Dec  3 03:08:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33af485d

sys-apps/restorecond: stabilize SELinux userspace 3.1

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/restorecond-3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-3.1.ebuild 
b/sys-apps/restorecond/restorecond-3.1.ebuild
index 001d8cd6d3f..90da950241d 100644
--- a/sys-apps/restorecond/restorecond-3.1.ebuild
+++ b/sys-apps/restorecond/restorecond-3.1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${MY_P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
S="${WORKDIR}/${MY_P}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/, sys-apps/restorecond/files/

2020-09-14 Thread Jason Zaman
commit: 3d0d4e7d6834fbb5a7e5a5a0ab819df74c5c61fd
Author: Jonathan Davies  protonmail  com>
AuthorDate: Tue Sep  1 20:28:38 2020 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Tue Sep 15 03:40:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d0d4e7d

sys-apps/restorecond: Version bump to 3.1.

Signed-off-by: Jonathan Davies  protonmail.com>
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/Manifest |  1 +
 sys-apps/restorecond/files/restorecond.init   |  0
 .../{restorecond-.ebuild => restorecond-3.1.ebuild}   | 15 ---
 sys-apps/restorecond/restorecond-.ebuild  | 15 ---
 4 files changed, 17 insertions(+), 14 deletions(-)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 887422d4fd5..84f10cfb46b 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,2 +1,3 @@
 DIST restorecond-2.9.tar.gz 18893 BLAKE2B 
fcdae1a4ec489f3f581212cdd3c13c5561feac3ee758f354dca75c97938c62b9ed04aedbd4b3b5cde09a5887247389262718145620d0b9749e364d1614f57241
 SHA512 
6de9dd4c6b8e5d8275221aba5df27437998f635cfe83a5da75de479e260ceea884a36253eb873a8d71e1a77ed67544d8657fb75fe409af1f630052ce73ec5d8a
 DIST restorecond-3.0.tar.gz 18797 BLAKE2B 
354477ea9f57cc27c14a2648b99b32c45ac6d4e32caeb0fb108ed8f40a2e2e04101e2658d0107a1f2741717c242ad80b2e14db03488ab62b88eeb8b1a9ac0dd4
 SHA512 
f75088f72a17f1f7550ef67052202cea1fd9cf1bb1eec0355f4a0641ba25097b289f629df328ee79aec00f8361cbc6df10efc4a5af2f0b67f9922ceaf92aa956
+DIST restorecond-3.1.tar.gz 18939 BLAKE2B 
3a3fcde057dad3ed05692d679ba27e0b24f191d92ed5114fa38cb5f846c4cc00d85bb09b5d4e560ed2b91e0c2d1c407f6c03900610624d5626d05f2991bc
 SHA512 
cdcf299f48b89a7c641ded9507b9b966bf648497394f8e988a9cb1ceb3224c86369706027f3416a4f9750836f7a8f4580a4b3df76673e03f897b383d7ed0e2c8

diff --git a/sys-apps/restorecond/files/restorecond.init 
b/sys-apps/restorecond/files/restorecond.init
old mode 100755
new mode 100644

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-3.1.ebuild
similarity index 78%
copy from sys-apps/restorecond/restorecond-.ebuild
copy to sys-apps/restorecond/restorecond-3.1.ebuild
index efe40fb0d73..001d8cd6d3f 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-3.1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI="7"
 
-inherit toolchain-funcs
+inherit systemd toolchain-funcs
 
-MY_RELEASEDATE="20191204"
+MY_RELEASEDATE="20200710"
 
 MY_P="${P//_/-}"
 IUSE=""
@@ -32,8 +32,7 @@ DEPEND=">=sys-libs/libsepol-${PV}:=
dev-libs/libpcre:=
>=sys-libs/libcap-1.10-r10:="
 
-RDEPEND="${DEPEND}
-   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2020-02-15 Thread Jason Zaman
commit: cc3c63af4472d07c17fc34856791626d0b3c1b13
Author: Jason Zaman  gentoo  org>
AuthorDate: Sat Feb 15 11:33:10 2020 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sat Feb 15 13:20:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc3c63af

sys-apps/restorecond: stable 3.0

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/restorecond-3.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/restorecond/restorecond-3.0.ebuild 
b/sys-apps/restorecond/restorecond-3.0.ebuild
index efe40fb0d73..a23fc95a9c0 100644
--- a/sys-apps/restorecond/restorecond-3.0.ebuild
+++ b/sys-apps/restorecond/restorecond-3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${MY_P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
S="${WORKDIR}/${MY_P}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2019-12-08 Thread Jason Zaman
commit: bb8470a320ac63284ee1d59a6a604643459da773
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Dec  8 17:53:30 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun Dec  8 18:38:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb8470a3

sys-apps/restorecond: drop old

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/Manifest   |  2 -
 sys-apps/restorecond/restorecond-2.8.ebuild | 55 -
 sys-apps/restorecond/restorecond-3.0_rc2.ebuild | 55 -
 3 files changed, 112 deletions(-)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index eb5ea909803..887422d4fd5 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,4 +1,2 @@
-DIST restorecond-2.8.tar.gz 17740 BLAKE2B 
ad873acbbb7c56c29a8523a42dc053ea79036a15bed71b47a690d01d4012394b5ecf74ae75b27affb4007d754935ec90246f22ef3e0b9611556ec7baf59670db
 SHA512 
5d72336782c3ad095746f8e6fa67e36448e5e76ca29586d8fe4962c64e505fa95c1458e8fc8f7d5bd589fff71b4be3758fb0cee3dacd2ccd0bc8476423e2540e
 DIST restorecond-2.9.tar.gz 18893 BLAKE2B 
fcdae1a4ec489f3f581212cdd3c13c5561feac3ee758f354dca75c97938c62b9ed04aedbd4b3b5cde09a5887247389262718145620d0b9749e364d1614f57241
 SHA512 
6de9dd4c6b8e5d8275221aba5df27437998f635cfe83a5da75de479e260ceea884a36253eb873a8d71e1a77ed67544d8657fb75fe409af1f630052ce73ec5d8a
-DIST restorecond-3.0-rc2.tar.gz 18794 BLAKE2B 
d95770e846a1541d601a20c7f27cb8464781942beeab2b700ae10aa88003d4b36bb20ac5d5a005dd8cd0e247cdcb84ab1c77e9e2f0e0d4389202640745b660e0
 SHA512 
b27483f286cbb9b1ac14e867f37afe555dd50c3f69559013f806113ecea7d4771db4c5585caaae68b6b489d0c794ad7c2f0ba3d94ed7d9cc8c13eadc7802fb45
 DIST restorecond-3.0.tar.gz 18797 BLAKE2B 
354477ea9f57cc27c14a2648b99b32c45ac6d4e32caeb0fb108ed8f40a2e2e04101e2658d0107a1f2741717c242ad80b2e14db03488ab62b88eeb8b1a9ac0dd4
 SHA512 
f75088f72a17f1f7550ef67052202cea1fd9cf1bb1eec0355f4a0641ba25097b289f629df328ee79aec00f8361cbc6df10efc4a5af2f0b67f9922ceaf92aa956

diff --git a/sys-apps/restorecond/restorecond-2.8.ebuild 
b/sys-apps/restorecond/restorecond-2.8.ebuild
deleted file mode 100644
index 81f376e3f14..000
--- a/sys-apps/restorecond/restorecond-2.8.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit toolchain-funcs
-
-MY_RELEASEDATE="20180524"
-
-MY_P="${P//_/-}"
-IUSE=""
-
-if [[ ${PV} == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${MY_P}/${PN}"
-else
-   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND=">=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:=
-   dev-libs/dbus-glib
-   dev-libs/libpcre:=
-   >=sys-libs/libcap-1.10-r10:="
-
-RDEPEND="${DEPEND}
-   !https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${MY_P}/${PN}"
-else
-   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND=">=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:=
-   dev-libs/dbus-glib
-   dev-libs/libpcre:=
-   >=sys-libs/libcap-1.10-r10:="
-
-RDEPEND="${DEPEND}
-   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2019-12-08 Thread Jason Zaman
commit: 60db6fd138675efb7dfb2f543b42674b9d37614d
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Dec  8 14:21:06 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun Dec  8 17:26:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60db6fd1

sys-apps/restorecond: bump to 3.0

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-3.0.ebuild | 55 +
 2 files changed, 56 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index a37d673ad85..eb5ea909803 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,3 +1,4 @@
 DIST restorecond-2.8.tar.gz 17740 BLAKE2B 
ad873acbbb7c56c29a8523a42dc053ea79036a15bed71b47a690d01d4012394b5ecf74ae75b27affb4007d754935ec90246f22ef3e0b9611556ec7baf59670db
 SHA512 
5d72336782c3ad095746f8e6fa67e36448e5e76ca29586d8fe4962c64e505fa95c1458e8fc8f7d5bd589fff71b4be3758fb0cee3dacd2ccd0bc8476423e2540e
 DIST restorecond-2.9.tar.gz 18893 BLAKE2B 
fcdae1a4ec489f3f581212cdd3c13c5561feac3ee758f354dca75c97938c62b9ed04aedbd4b3b5cde09a5887247389262718145620d0b9749e364d1614f57241
 SHA512 
6de9dd4c6b8e5d8275221aba5df27437998f635cfe83a5da75de479e260ceea884a36253eb873a8d71e1a77ed67544d8657fb75fe409af1f630052ce73ec5d8a
 DIST restorecond-3.0-rc2.tar.gz 18794 BLAKE2B 
d95770e846a1541d601a20c7f27cb8464781942beeab2b700ae10aa88003d4b36bb20ac5d5a005dd8cd0e247cdcb84ab1c77e9e2f0e0d4389202640745b660e0
 SHA512 
b27483f286cbb9b1ac14e867f37afe555dd50c3f69559013f806113ecea7d4771db4c5585caaae68b6b489d0c794ad7c2f0ba3d94ed7d9cc8c13eadc7802fb45
+DIST restorecond-3.0.tar.gz 18797 BLAKE2B 
354477ea9f57cc27c14a2648b99b32c45ac6d4e32caeb0fb108ed8f40a2e2e04101e2658d0107a1f2741717c242ad80b2e14db03488ab62b88eeb8b1a9ac0dd4
 SHA512 
f75088f72a17f1f7550ef67052202cea1fd9cf1bb1eec0355f4a0641ba25097b289f629df328ee79aec00f8361cbc6df10efc4a5af2f0b67f9922ceaf92aa956

diff --git a/sys-apps/restorecond/restorecond-3.0.ebuild 
b/sys-apps/restorecond/restorecond-3.0.ebuild
new file mode 100644
index 000..efe40fb0d73
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-3.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20191204"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:=
+   dev-libs/dbus-glib
+   dev-libs/libpcre:=
+   >=sys-libs/libcap-1.10-r10:="
+
+RDEPEND="${DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2019-12-08 Thread Jason Zaman
commit: 10e9e6f2632116b3013f9a75d83dc12d495d4933
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Dec  8 14:16:11 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun Dec  8 17:26:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10e9e6f2

sys-apps/restorecond: update live ebuild

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/restorecond-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index a8c24e312bc..efe40fb0d73 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
 
 inherit toolchain-funcs
 
-MY_RELEASEDATE="20191122"
+MY_RELEASEDATE="20191204"
 
 MY_P="${P//_/-}"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2019-12-02 Thread Jason Zaman
commit: 1aec927f6501e628b82ba33e5a92ac7f819b1919
Author: Jason Zaman  gentoo  org>
AuthorDate: Fri Nov 29 10:15:40 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Dec  2 14:48:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aec927f

sys-apps/restorecond: update live ebuild

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/restorecond-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index b63423494d5..a8c24e312bc 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
 
 inherit toolchain-funcs
 
-MY_RELEASEDATE="20190315"
+MY_RELEASEDATE="20191122"
 
 MY_P="${P//_/-}"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2019-12-02 Thread Jason Zaman
commit: cab5bd5cf7fad8f95a3decc64b2e975d274daa4e
Author: Jason Zaman  gentoo  org>
AuthorDate: Fri Nov 29 10:33:21 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Dec  2 14:49:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cab5bd5c

sys-apps/restorecond: bump to 3.0_rc2

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-3.0_rc2.ebuild | 55 +
 2 files changed, 56 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index dfcb61eceaf..a37d673ad85 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,2 +1,3 @@
 DIST restorecond-2.8.tar.gz 17740 BLAKE2B 
ad873acbbb7c56c29a8523a42dc053ea79036a15bed71b47a690d01d4012394b5ecf74ae75b27affb4007d754935ec90246f22ef3e0b9611556ec7baf59670db
 SHA512 
5d72336782c3ad095746f8e6fa67e36448e5e76ca29586d8fe4962c64e505fa95c1458e8fc8f7d5bd589fff71b4be3758fb0cee3dacd2ccd0bc8476423e2540e
 DIST restorecond-2.9.tar.gz 18893 BLAKE2B 
fcdae1a4ec489f3f581212cdd3c13c5561feac3ee758f354dca75c97938c62b9ed04aedbd4b3b5cde09a5887247389262718145620d0b9749e364d1614f57241
 SHA512 
6de9dd4c6b8e5d8275221aba5df27437998f635cfe83a5da75de479e260ceea884a36253eb873a8d71e1a77ed67544d8657fb75fe409af1f630052ce73ec5d8a
+DIST restorecond-3.0-rc2.tar.gz 18794 BLAKE2B 
d95770e846a1541d601a20c7f27cb8464781942beeab2b700ae10aa88003d4b36bb20ac5d5a005dd8cd0e247cdcb84ab1c77e9e2f0e0d4389202640745b660e0
 SHA512 
b27483f286cbb9b1ac14e867f37afe555dd50c3f69559013f806113ecea7d4771db4c5585caaae68b6b489d0c794ad7c2f0ba3d94ed7d9cc8c13eadc7802fb45

diff --git a/sys-apps/restorecond/restorecond-3.0_rc2.ebuild 
b/sys-apps/restorecond/restorecond-3.0_rc2.ebuild
new file mode 100644
index 000..a8c24e312bc
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-3.0_rc2.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20191122"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:=
+   dev-libs/dbus-glib
+   dev-libs/libpcre:=
+   >=sys-libs/libcap-1.10-r10:="
+
+RDEPEND="${DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2019-08-17 Thread Jason Zaman
commit: e265de529714138f7c5bdac8bac26152113d79b1
Author: Jason Zaman  gentoo  org>
AuthorDate: Sat Aug 17 09:43:53 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sat Aug 17 09:43:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e265de52

sys-apps/restorecond: drop old

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/Manifest   |  2 -
 sys-apps/restorecond/restorecond-2.7.ebuild | 58 -
 sys-apps/restorecond/restorecond-2.9_rc1.ebuild | 55 ---
 3 files changed, 115 deletions(-)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 7cb0575c428..dfcb61eceaf 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,4 +1,2 @@
-DIST restorecond-2.7.tar.gz 17753 BLAKE2B 
793a41dbfd0a33d79e15c62e79f4fbbacc4208a8f2057813d7c3e2d16a3435c12e0c29ca60a3b45cef33ec13b5aacd28c8ad95ddcbf47a812654d3a59fcb6c89
 SHA512 
c81950e4f748a729c8951b13a4075ab1003530f8ada7a9d3fbe6428f76070df4819a37daaab557b63fc234aa8c8320ec41757fbdb24b76fa2c11747bde0038ad
 DIST restorecond-2.8.tar.gz 17740 BLAKE2B 
ad873acbbb7c56c29a8523a42dc053ea79036a15bed71b47a690d01d4012394b5ecf74ae75b27affb4007d754935ec90246f22ef3e0b9611556ec7baf59670db
 SHA512 
5d72336782c3ad095746f8e6fa67e36448e5e76ca29586d8fe4962c64e505fa95c1458e8fc8f7d5bd589fff71b4be3758fb0cee3dacd2ccd0bc8476423e2540e
-DIST restorecond-2.9-rc1.tar.gz 17747 BLAKE2B 
0bcccb45b77bd97830f1e17e48c529f08d2e7eb1467f817ecc3520543e89d0f287c755baee53c27d0820d81a18cef34573b5f5e943b5c2d1e827886ce137f906
 SHA512 
6d0b0e3e36dfe567cf5349801078bc6ff9c6a7e7f2afc13f7ae775c9ae1d74fddfce14f3c83933f386e110ae5b4836c633d8307c9c4bce2000a3230bfcdb64eb
 DIST restorecond-2.9.tar.gz 18893 BLAKE2B 
fcdae1a4ec489f3f581212cdd3c13c5561feac3ee758f354dca75c97938c62b9ed04aedbd4b3b5cde09a5887247389262718145620d0b9749e364d1614f57241
 SHA512 
6de9dd4c6b8e5d8275221aba5df27437998f635cfe83a5da75de479e260ceea884a36253eb873a8d71e1a77ed67544d8657fb75fe409af1f630052ce73ec5d8a

diff --git a/sys-apps/restorecond/restorecond-2.7.ebuild 
b/sys-apps/restorecond/restorecond-2.7.ebuild
deleted file mode 100644
index d55b72f66e5..000
--- a/sys-apps/restorecond/restorecond-2.7.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit toolchain-funcs
-
-MY_RELEASEDATE="20170804"
-
-MY_P="${P//_/-}"
-IUSE=""
-
-if [[ ${PV} == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${MY_P}/${PN}"
-else
-   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND=">=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:=
-   dev-libs/dbus-glib
-   dev-libs/libpcre:=
-   >=sys-libs/libcap-1.10-r10:="
-
-RDEPEND="${DEPEND}
-   !https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${MY_P}/${PN}"
-else
-   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND=">=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:=
-   dev-libs/dbus-glib
-   dev-libs/libpcre:=
-   >=sys-libs/libcap-1.10-r10:="
-
-RDEPEND="${DEPEND}
-   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2019-08-17 Thread Jason Zaman
commit: ec2da3bf00c2ecab5721526d24b481f1404e38e5
Author: Jason Zaman  gentoo  org>
AuthorDate: Sat Aug 17 09:43:02 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sat Aug 17 09:43:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec2da3bf

sys-apps/restorecond: stable

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Jason Zaman  gentoo.org>

 sys-apps/restorecond/restorecond-2.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-2.9.ebuild 
b/sys-apps/restorecond/restorecond-2.9.ebuild
index b63423494d5..5e25b5962ea 100644
--- a/sys-apps/restorecond/restorecond-2.9.ebuild
+++ b/sys-apps/restorecond/restorecond-2.9.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${MY_P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
S="${WORKDIR}/${MY_P}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2019-03-31 Thread Jason Zaman
commit: 99530b1aa0f28ab2a4e2e85c905177d524e62682
Author: Jason Zaman  gentoo  org>
AuthorDate: Sat Mar 30 17:07:30 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun Mar 31 13:45:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99530b1a

sys-apps/restorecond: bump to 2.9

Signed-off-by: Jason Zaman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-2.9.ebuild | 55 +
 2 files changed, 56 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 00d78c90f27..7cb0575c428 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,3 +1,4 @@
 DIST restorecond-2.7.tar.gz 17753 BLAKE2B 
793a41dbfd0a33d79e15c62e79f4fbbacc4208a8f2057813d7c3e2d16a3435c12e0c29ca60a3b45cef33ec13b5aacd28c8ad95ddcbf47a812654d3a59fcb6c89
 SHA512 
c81950e4f748a729c8951b13a4075ab1003530f8ada7a9d3fbe6428f76070df4819a37daaab557b63fc234aa8c8320ec41757fbdb24b76fa2c11747bde0038ad
 DIST restorecond-2.8.tar.gz 17740 BLAKE2B 
ad873acbbb7c56c29a8523a42dc053ea79036a15bed71b47a690d01d4012394b5ecf74ae75b27affb4007d754935ec90246f22ef3e0b9611556ec7baf59670db
 SHA512 
5d72336782c3ad095746f8e6fa67e36448e5e76ca29586d8fe4962c64e505fa95c1458e8fc8f7d5bd589fff71b4be3758fb0cee3dacd2ccd0bc8476423e2540e
 DIST restorecond-2.9-rc1.tar.gz 17747 BLAKE2B 
0bcccb45b77bd97830f1e17e48c529f08d2e7eb1467f817ecc3520543e89d0f287c755baee53c27d0820d81a18cef34573b5f5e943b5c2d1e827886ce137f906
 SHA512 
6d0b0e3e36dfe567cf5349801078bc6ff9c6a7e7f2afc13f7ae775c9ae1d74fddfce14f3c83933f386e110ae5b4836c633d8307c9c4bce2000a3230bfcdb64eb
+DIST restorecond-2.9.tar.gz 18893 BLAKE2B 
fcdae1a4ec489f3f581212cdd3c13c5561feac3ee758f354dca75c97938c62b9ed04aedbd4b3b5cde09a5887247389262718145620d0b9749e364d1614f57241
 SHA512 
6de9dd4c6b8e5d8275221aba5df27437998f635cfe83a5da75de479e260ceea884a36253eb873a8d71e1a77ed67544d8657fb75fe409af1f630052ce73ec5d8a

diff --git a/sys-apps/restorecond/restorecond-2.9.ebuild 
b/sys-apps/restorecond/restorecond-2.9.ebuild
new file mode 100644
index 000..b63423494d5
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-2.9.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20190315"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:=
+   dev-libs/dbus-glib
+   dev-libs/libpcre:=
+   >=sys-libs/libcap-1.10-r10:="
+
+RDEPEND="${DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2019-03-31 Thread Jason Zaman
commit: 5a917377a4a620c5d24eabc4b02b70e77aa6f904
Author: Jason Zaman  gentoo  org>
AuthorDate: Sat Mar 30 17:04:30 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun Mar 31 13:45:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a917377

sys-apps/restorecond: update live ebuild

Signed-off-by: Jason Zaman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 sys-apps/restorecond/restorecond-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index 7e54ae96b8d..b63423494d5 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
 
 inherit toolchain-funcs
 
-MY_RELEASEDATE="20190125"
+MY_RELEASEDATE="20190315"
 
 MY_P="${P//_/-}"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2019-02-09 Thread Jason Zaman
commit: e43398f59c7a1d7d373dd7d29604005bbef1e5f5
Author: Jason Zaman  gentoo  org>
AuthorDate: Sat Feb  9 11:32:56 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sat Feb  9 11:48:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e43398f5

sys-apps/restorecond: bump to 2.9_rc1

Signed-off-by: Jason Zaman  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-2.9_rc1.ebuild | 55 +
 2 files changed, 56 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index fcb2807a82e..00d78c90f27 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,2 +1,3 @@
 DIST restorecond-2.7.tar.gz 17753 BLAKE2B 
793a41dbfd0a33d79e15c62e79f4fbbacc4208a8f2057813d7c3e2d16a3435c12e0c29ca60a3b45cef33ec13b5aacd28c8ad95ddcbf47a812654d3a59fcb6c89
 SHA512 
c81950e4f748a729c8951b13a4075ab1003530f8ada7a9d3fbe6428f76070df4819a37daaab557b63fc234aa8c8320ec41757fbdb24b76fa2c11747bde0038ad
 DIST restorecond-2.8.tar.gz 17740 BLAKE2B 
ad873acbbb7c56c29a8523a42dc053ea79036a15bed71b47a690d01d4012394b5ecf74ae75b27affb4007d754935ec90246f22ef3e0b9611556ec7baf59670db
 SHA512 
5d72336782c3ad095746f8e6fa67e36448e5e76ca29586d8fe4962c64e505fa95c1458e8fc8f7d5bd589fff71b4be3758fb0cee3dacd2ccd0bc8476423e2540e
+DIST restorecond-2.9-rc1.tar.gz 17747 BLAKE2B 
0bcccb45b77bd97830f1e17e48c529f08d2e7eb1467f817ecc3520543e89d0f287c755baee53c27d0820d81a18cef34573b5f5e943b5c2d1e827886ce137f906
 SHA512 
6d0b0e3e36dfe567cf5349801078bc6ff9c6a7e7f2afc13f7ae775c9ae1d74fddfce14f3c83933f386e110ae5b4836c633d8307c9c4bce2000a3230bfcdb64eb

diff --git a/sys-apps/restorecond/restorecond-2.9_rc1.ebuild 
b/sys-apps/restorecond/restorecond-2.9_rc1.ebuild
new file mode 100644
index 000..7e54ae96b8d
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-2.9_rc1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20190125"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:=
+   dev-libs/dbus-glib
+   dev-libs/libpcre:=
+   >=sys-libs/libcap-1.10-r10:="
+
+RDEPEND="${DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2019-02-09 Thread Jason Zaman
commit: e3a0f3e84dace10c6d6e4689bc62a5152f0315e6
Author: Jason Zaman  gentoo  org>
AuthorDate: Sat Feb  9 11:29:52 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sat Feb  9 11:48:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3a0f3e8

sys-apps/restorecond: update live ebuild

Signed-off-by: Jason Zaman  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 sys-apps/restorecond/restorecond-.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index fe377bb27bd..7e54ae96b8d 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
 
 inherit toolchain-funcs
 
-MY_RELEASEDATE="20180524"
+MY_RELEASEDATE="20190125"
 
 MY_P="${P//_/-}"
 IUSE=""
@@ -15,7 +15,7 @@ if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
S="${WORKDIR}/${MY_P}/${PN}"
 else
-   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   
SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_RELEASEDATE}/${MY_P}.tar.gz;
KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
S="${WORKDIR}/${MY_P}"
 fi



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2018-06-25 Thread Jason Zaman
commit: c862291aa80c714b2c7887f78a23077d41700a20
Author: Jason Zaman  gentoo  org>
AuthorDate: Tue Jun 26 02:05:57 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Tue Jun 26 02:07:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c862291a

sys-apps/restorecond: stable 2.8

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-apps/restorecond/restorecond-2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-2.8.ebuild 
b/sys-apps/restorecond/restorecond-2.8.ebuild
index fe377bb27bd..81f376e3f14 100644
--- a/sys-apps/restorecond/restorecond-2.8.ebuild
+++ b/sys-apps/restorecond/restorecond-2.8.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${MY_P}/${PN}"
 else

SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
S="${WORKDIR}/${MY_P}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2018-05-25 Thread Jason Zaman
commit: 94fc818e4a6b5f9bc2b224e5c34d75c536663526
Author: Jason Zaman  gentoo  org>
AuthorDate: Fri May 25 04:34:54 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Fri May 25 07:27:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94fc818e

sys-apps/restorecond: bump to 2.8

Package-Manager: Portage-2.3.39, Repoman-2.3.9

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-2.8.ebuild | 55 +
 2 files changed, 56 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 25c32e661e0..1da04ef002e 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -2,3 +2,4 @@ DIST restorecond-2.7.tar.gz 17753 BLAKE2B 
793a41dbfd0a33d79e15c62e79f4fbbacc4208
 DIST restorecond-2.8-rc1.tar.gz 17778 BLAKE2B 
7f0c3da54555f1bd015e191ab762d5564e8e40d1aceafa94fc774c0864f9ff720c468679a60869dc94280e89a160369afcdf2172a6aaee1b0ce555dc204cd957
 SHA512 
9b90485998bbabeb26d1ca197b78dadc2ad4aa15fc3eb30f16809e631009ce07f2a624d8e0c139cb6ea831ff46068de2744168c6ee0414693716b4963c8e3be9
 DIST restorecond-2.8-rc2.tar.gz 17778 BLAKE2B 
47bf2f3481dd94b1b63a8d5994f94cbecb99d84835e4c61d133f89e5be42650f69794dae9c80115a73614ec0548e2773c7a03bac33e666ac989badb20d0438cd
 SHA512 
5d35576264b59face6130e97223d815df0f114b3e51d9e5008dddbb31a802763b346bf2f69a8ae8271c5dcacf04235e2ed3de305b036b8108b76f4951ff2d126
 DIST restorecond-2.8-rc3.tar.gz 17773 BLAKE2B 
23492c3f2a8aa8b85236e4c4ac4e8f1dad090d7b1585e5ffe26face4f3b689a6a083944f107ca1fc2241a35f5373699ae216828ec8e44f37bd7dd28ad60546a5
 SHA512 
1e52a2767e497d43125202ba66799c556b6a2d521ec6d747f96208e3b1d2c4bc8f7f28b3ca86fe47c0e0a2daac1de811a0630f02196a4c9502868a8c5e571dfc
+DIST restorecond-2.8.tar.gz 17740 BLAKE2B 
ad873acbbb7c56c29a8523a42dc053ea79036a15bed71b47a690d01d4012394b5ecf74ae75b27affb4007d754935ec90246f22ef3e0b9611556ec7baf59670db
 SHA512 
5d72336782c3ad095746f8e6fa67e36448e5e76ca29586d8fe4962c64e505fa95c1458e8fc8f7d5bd589fff71b4be3758fb0cee3dacd2ccd0bc8476423e2540e

diff --git a/sys-apps/restorecond/restorecond-2.8.ebuild 
b/sys-apps/restorecond/restorecond-2.8.ebuild
new file mode 100644
index 000..fe377bb27bd
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-2.8.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20180524"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:=
+   dev-libs/dbus-glib
+   dev-libs/libpcre:=
+   >=sys-libs/libcap-1.10-r10:="
+
+RDEPEND="${DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2018-05-25 Thread Jason Zaman
commit: 5a46da97883e9f385c8e90e68c8ea1dd4fd58461
Author: Jason Zaman  gentoo  org>
AuthorDate: Fri May 25 04:31:04 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Fri May 25 07:27:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a46da97

sys-apps/restorecond: update live ebuild

Package-Manager: Portage-2.3.39, Repoman-2.3.9

 sys-apps/restorecond/restorecond-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index 968d6b3de58..fe377bb27bd 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
 
 inherit toolchain-funcs
 
-MY_RELEASEDATE="20180510"
+MY_RELEASEDATE="20180524"
 
 MY_P="${P//_/-}"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2018-05-25 Thread Jason Zaman
commit: fab464be64ff0b17aa07305efe09c4a0610c9645
Author: Jason Zaman  gentoo  org>
AuthorDate: Fri May 25 06:48:45 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Fri May 25 07:27:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fab464be

sys-apps/restorecond: drop old

Package-Manager: Portage-2.3.39, Repoman-2.3.9

 sys-apps/restorecond/Manifest   |  3 --
 sys-apps/restorecond/restorecond-2.8_rc1.ebuild | 55 -
 sys-apps/restorecond/restorecond-2.8_rc2.ebuild | 55 -
 sys-apps/restorecond/restorecond-2.8_rc3.ebuild | 55 -
 4 files changed, 168 deletions(-)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 1da04ef002e..fcb2807a82e 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,5 +1,2 @@
 DIST restorecond-2.7.tar.gz 17753 BLAKE2B 
793a41dbfd0a33d79e15c62e79f4fbbacc4208a8f2057813d7c3e2d16a3435c12e0c29ca60a3b45cef33ec13b5aacd28c8ad95ddcbf47a812654d3a59fcb6c89
 SHA512 
c81950e4f748a729c8951b13a4075ab1003530f8ada7a9d3fbe6428f76070df4819a37daaab557b63fc234aa8c8320ec41757fbdb24b76fa2c11747bde0038ad
-DIST restorecond-2.8-rc1.tar.gz 17778 BLAKE2B 
7f0c3da54555f1bd015e191ab762d5564e8e40d1aceafa94fc774c0864f9ff720c468679a60869dc94280e89a160369afcdf2172a6aaee1b0ce555dc204cd957
 SHA512 
9b90485998bbabeb26d1ca197b78dadc2ad4aa15fc3eb30f16809e631009ce07f2a624d8e0c139cb6ea831ff46068de2744168c6ee0414693716b4963c8e3be9
-DIST restorecond-2.8-rc2.tar.gz 17778 BLAKE2B 
47bf2f3481dd94b1b63a8d5994f94cbecb99d84835e4c61d133f89e5be42650f69794dae9c80115a73614ec0548e2773c7a03bac33e666ac989badb20d0438cd
 SHA512 
5d35576264b59face6130e97223d815df0f114b3e51d9e5008dddbb31a802763b346bf2f69a8ae8271c5dcacf04235e2ed3de305b036b8108b76f4951ff2d126
-DIST restorecond-2.8-rc3.tar.gz 17773 BLAKE2B 
23492c3f2a8aa8b85236e4c4ac4e8f1dad090d7b1585e5ffe26face4f3b689a6a083944f107ca1fc2241a35f5373699ae216828ec8e44f37bd7dd28ad60546a5
 SHA512 
1e52a2767e497d43125202ba66799c556b6a2d521ec6d747f96208e3b1d2c4bc8f7f28b3ca86fe47c0e0a2daac1de811a0630f02196a4c9502868a8c5e571dfc
 DIST restorecond-2.8.tar.gz 17740 BLAKE2B 
ad873acbbb7c56c29a8523a42dc053ea79036a15bed71b47a690d01d4012394b5ecf74ae75b27affb4007d754935ec90246f22ef3e0b9611556ec7baf59670db
 SHA512 
5d72336782c3ad095746f8e6fa67e36448e5e76ca29586d8fe4962c64e505fa95c1458e8fc8f7d5bd589fff71b4be3758fb0cee3dacd2ccd0bc8476423e2540e

diff --git a/sys-apps/restorecond/restorecond-2.8_rc1.ebuild 
b/sys-apps/restorecond/restorecond-2.8_rc1.ebuild
deleted file mode 100644
index 78002784e9c..000
--- a/sys-apps/restorecond/restorecond-2.8_rc1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit toolchain-funcs
-
-MY_RELEASEDATE="20180419"
-
-MY_P="${P//_/-}"
-IUSE=""
-
-if [[ ${PV} == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${MY_P}/${PN}"
-else
-   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND=">=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:=
-   dev-libs/dbus-glib
-   dev-libs/libpcre:=
-   >=sys-libs/libcap-1.10-r10:="
-
-RDEPEND="${DEPEND}
-   !https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${MY_P}/${PN}"
-else
-   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND=">=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:=
-   dev-libs/dbus-glib
-   dev-libs/libpcre:=
-   >=sys-libs/libcap-1.10-r10:="
-
-RDEPEND="${DEPEND}
-   !https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${MY_P}/${PN}"
-else
-   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND=">=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:=
-   dev-libs/dbus-glib
-   dev-libs/libpcre:=
-   >=sys-libs/libcap-1.10-r10:="
-

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2018-05-13 Thread Jason Zaman
commit: b6ac32d902aa6ffeee46d4340386a7ee74285232
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun May 13 16:51:34 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun May 13 17:28:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6ac32d9

sys-apps/restorecond: bump to 2.8_rc3

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-2.8_rc3.ebuild | 55 +
 2 files changed, 56 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 45d4670e1c2..25c32e661e0 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,3 +1,4 @@
 DIST restorecond-2.7.tar.gz 17753 BLAKE2B 
793a41dbfd0a33d79e15c62e79f4fbbacc4208a8f2057813d7c3e2d16a3435c12e0c29ca60a3b45cef33ec13b5aacd28c8ad95ddcbf47a812654d3a59fcb6c89
 SHA512 
c81950e4f748a729c8951b13a4075ab1003530f8ada7a9d3fbe6428f76070df4819a37daaab557b63fc234aa8c8320ec41757fbdb24b76fa2c11747bde0038ad
 DIST restorecond-2.8-rc1.tar.gz 17778 BLAKE2B 
7f0c3da54555f1bd015e191ab762d5564e8e40d1aceafa94fc774c0864f9ff720c468679a60869dc94280e89a160369afcdf2172a6aaee1b0ce555dc204cd957
 SHA512 
9b90485998bbabeb26d1ca197b78dadc2ad4aa15fc3eb30f16809e631009ce07f2a624d8e0c139cb6ea831ff46068de2744168c6ee0414693716b4963c8e3be9
 DIST restorecond-2.8-rc2.tar.gz 17778 BLAKE2B 
47bf2f3481dd94b1b63a8d5994f94cbecb99d84835e4c61d133f89e5be42650f69794dae9c80115a73614ec0548e2773c7a03bac33e666ac989badb20d0438cd
 SHA512 
5d35576264b59face6130e97223d815df0f114b3e51d9e5008dddbb31a802763b346bf2f69a8ae8271c5dcacf04235e2ed3de305b036b8108b76f4951ff2d126
+DIST restorecond-2.8-rc3.tar.gz 17773 BLAKE2B 
23492c3f2a8aa8b85236e4c4ac4e8f1dad090d7b1585e5ffe26face4f3b689a6a083944f107ca1fc2241a35f5373699ae216828ec8e44f37bd7dd28ad60546a5
 SHA512 
1e52a2767e497d43125202ba66799c556b6a2d521ec6d747f96208e3b1d2c4bc8f7f28b3ca86fe47c0e0a2daac1de811a0630f02196a4c9502868a8c5e571dfc

diff --git a/sys-apps/restorecond/restorecond-2.8_rc3.ebuild 
b/sys-apps/restorecond/restorecond-2.8_rc3.ebuild
new file mode 100644
index 000..968d6b3de58
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-2.8_rc3.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20180510"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:=
+   dev-libs/dbus-glib
+   dev-libs/libpcre:=
+   >=sys-libs/libcap-1.10-r10:="
+
+RDEPEND="${DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2018-05-13 Thread Jason Zaman
commit: 7f82547ff55805268b7f2658142c3418006e1936
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun May 13 16:42:02 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun May 13 17:28:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f82547f

sys-apps/restorecond: update live ebuild

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-apps/restorecond/restorecond-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index 1f417fd9bef..968d6b3de58 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
 
 inherit toolchain-funcs
 
-MY_RELEASEDATE="20180426"
+MY_RELEASEDATE="20180510"
 
 MY_P="${P//_/-}"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2018-04-26 Thread Jason Zaman
commit: 388f7702cadff25f13229ba8faa0fc737e032607
Author: Jason Zaman  gentoo  org>
AuthorDate: Fri Apr 27 03:55:29 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Fri Apr 27 04:44:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=388f7702

sys-apps/restorecond: bump to 2.8_rc2

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-2.8_rc2.ebuild | 55 +
 2 files changed, 56 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index bd23c8ee4aa..45d4670e1c2 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,2 +1,3 @@
 DIST restorecond-2.7.tar.gz 17753 BLAKE2B 
793a41dbfd0a33d79e15c62e79f4fbbacc4208a8f2057813d7c3e2d16a3435c12e0c29ca60a3b45cef33ec13b5aacd28c8ad95ddcbf47a812654d3a59fcb6c89
 SHA512 
c81950e4f748a729c8951b13a4075ab1003530f8ada7a9d3fbe6428f76070df4819a37daaab557b63fc234aa8c8320ec41757fbdb24b76fa2c11747bde0038ad
 DIST restorecond-2.8-rc1.tar.gz 17778 BLAKE2B 
7f0c3da54555f1bd015e191ab762d5564e8e40d1aceafa94fc774c0864f9ff720c468679a60869dc94280e89a160369afcdf2172a6aaee1b0ce555dc204cd957
 SHA512 
9b90485998bbabeb26d1ca197b78dadc2ad4aa15fc3eb30f16809e631009ce07f2a624d8e0c139cb6ea831ff46068de2744168c6ee0414693716b4963c8e3be9
+DIST restorecond-2.8-rc2.tar.gz 17778 BLAKE2B 
47bf2f3481dd94b1b63a8d5994f94cbecb99d84835e4c61d133f89e5be42650f69794dae9c80115a73614ec0548e2773c7a03bac33e666ac989badb20d0438cd
 SHA512 
5d35576264b59face6130e97223d815df0f114b3e51d9e5008dddbb31a802763b346bf2f69a8ae8271c5dcacf04235e2ed3de305b036b8108b76f4951ff2d126

diff --git a/sys-apps/restorecond/restorecond-2.8_rc2.ebuild 
b/sys-apps/restorecond/restorecond-2.8_rc2.ebuild
new file mode 100644
index 000..1f417fd9bef
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-2.8_rc2.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20180426"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:=
+   dev-libs/dbus-glib
+   dev-libs/libpcre:=
+   >=sys-libs/libcap-1.10-r10:="
+
+RDEPEND="${DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2018-04-26 Thread Jason Zaman
commit: e94a4153b1be47b666367eb42c7ab92fcd4a613b
Author: Jason Zaman  gentoo  org>
AuthorDate: Fri Apr 27 03:52:13 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Fri Apr 27 04:44:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e94a4153

sys-apps/restorecond: update live ebuild

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-apps/restorecond/restorecond-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index 78002784e9c..1f417fd9bef 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
 
 inherit toolchain-funcs
 
-MY_RELEASEDATE="20180419"
+MY_RELEASEDATE="20180426"
 
 MY_P="${P//_/-}"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2018-04-26 Thread Jason Zaman
commit: 55487cee59bc643e08d16cfc3f1284bc0f88fad1
Author: Jason Zaman  gentoo  org>
AuthorDate: Thu Apr 26 10:51:32 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Thu Apr 26 11:22:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55487cee

sys-apps/restorecond: bump to 2.8_rc1

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-2.8_rc1.ebuild | 55 +
 2 files changed, 56 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index 52ee8ec1d46..bd23c8ee4aa 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1 +1,2 @@
 DIST restorecond-2.7.tar.gz 17753 BLAKE2B 
793a41dbfd0a33d79e15c62e79f4fbbacc4208a8f2057813d7c3e2d16a3435c12e0c29ca60a3b45cef33ec13b5aacd28c8ad95ddcbf47a812654d3a59fcb6c89
 SHA512 
c81950e4f748a729c8951b13a4075ab1003530f8ada7a9d3fbe6428f76070df4819a37daaab557b63fc234aa8c8320ec41757fbdb24b76fa2c11747bde0038ad
+DIST restorecond-2.8-rc1.tar.gz 17778 BLAKE2B 
7f0c3da54555f1bd015e191ab762d5564e8e40d1aceafa94fc774c0864f9ff720c468679a60869dc94280e89a160369afcdf2172a6aaee1b0ce555dc204cd957
 SHA512 
9b90485998bbabeb26d1ca197b78dadc2ad4aa15fc3eb30f16809e631009ce07f2a624d8e0c139cb6ea831ff46068de2744168c6ee0414693716b4963c8e3be9

diff --git a/sys-apps/restorecond/restorecond-2.8_rc1.ebuild 
b/sys-apps/restorecond/restorecond-2.8_rc1.ebuild
new file mode 100644
index 000..78002784e9c
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-2.8_rc1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20180419"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:=
+   dev-libs/dbus-glib
+   dev-libs/libpcre:=
+   >=sys-libs/libcap-1.10-r10:="
+
+RDEPEND="${DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2018-04-26 Thread Jason Zaman
commit: 7ad5d5fa6a719798ab58a0a390e372ebc769c752
Author: Jason Zaman  gentoo  org>
AuthorDate: Wed Apr 25 12:21:07 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Thu Apr 26 11:22:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ad5d5fa

sys-apps/restorecond: update live ebuild

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-apps/restorecond/restorecond-.ebuild | 11 ---
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index f638bbc5aee..78002784e9c 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
 
 inherit toolchain-funcs
 
-MY_RELEASEDATE="20170804"
+MY_RELEASEDATE="20180419"
 
 MY_P="${P//_/-}"
 IUSE=""
@@ -42,15 +42,12 @@ src_prepare() {
 }
 
 src_compile() {
-   emake \
-   CC="$(tc-getCC)" \
-   LIBDIR="\$(PREFIX)/$(get_libdir)"
+   tc-export CC
+   default
 }
 
 src_install() {
-   emake DESTDIR="${D}" \
-   LIBDIR="\$(PREFIX)/$(get_libdir)" \
-   install
+   emake DESTDIR="${D}" install
 
rm -rf "${D}/etc/rc.d" || die
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2018-04-11 Thread Jason Zaman
commit: 445c8b3800adf2613d51f2bb595b8bab7ec7d966
Author: Jason Zaman  gentoo  org>
AuthorDate: Thu Apr 12 05:04:17 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Thu Apr 12 05:04:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=445c8b38

sys-apps/restorecond: add missing dbus-glib dep

Closes: https://bugs.gentoo.org/627344
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-apps/restorecond/restorecond-2.7.ebuild  | 3 ++-
 sys-apps/restorecond/restorecond-.ebuild | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/sys-apps/restorecond/restorecond-2.7.ebuild 
b/sys-apps/restorecond/restorecond-2.7.ebuild
index a63282f7029..d55b72f66e5 100644
--- a/sys-apps/restorecond/restorecond-2.7.ebuild
+++ b/sys-apps/restorecond/restorecond-2.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -28,6 +28,7 @@ SLOT="0"
 
 DEPEND=">=sys-libs/libsepol-${PV}:=
>=sys-libs/libselinux-${PV}:=
+   dev-libs/dbus-glib
dev-libs/libpcre:=
>=sys-libs/libcap-1.10-r10:="
 

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index 3d679bcf4c7..f638bbc5aee 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -28,6 +28,7 @@ SLOT="0"
 
 DEPEND=">=sys-libs/libsepol-${PV}:=
>=sys-libs/libselinux-${PV}:=
+   dev-libs/dbus-glib
dev-libs/libpcre:=
>=sys-libs/libcap-1.10-r10:="
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2017-09-22 Thread Jason Zaman
commit: 7a903b0f09ca6aab2d28f9c68117054aded222e4
Author: Jason Zaman  gentoo  org>
AuthorDate: Fri Sep 22 16:24:56 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sat Sep 23 02:13:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a903b0f

sys-apps/restorecond: drop old

Package-Manager: Portage-2.3.8, Repoman-2.3.1

 sys-apps/restorecond/Manifest   |  3 --
 sys-apps/restorecond/restorecond-2.7_rc1.ebuild | 57 -
 sys-apps/restorecond/restorecond-2.7_rc4.ebuild | 57 -
 sys-apps/restorecond/restorecond-2.7_rc5.ebuild | 57 -
 4 files changed, 174 deletions(-)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index a607e123ca0..6f3c7ceee45 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,4 +1 @@
-DIST restorecond-2.7-rc1.tar.gz 17752 SHA256 
af97d65094dd0b064325647e63130737b6fb077de1753e0b6d2d4c8060b938d5 SHA512 
386d62a42237288fbe013bcc05ce9d6b46007ca3c9c0671fd53e60203fb0a92e7911d80a27591f068c8038f390af7bd39b6b75244f944684186e7766a19e2fbd
 WHIRLPOOL 
06e6ad4afe94e49b6d3040235da052a4e0641c8054e6b80236cc84c04ed477eb71e1a276c03e1ef9c7025b670ac55014ba4b64df336fd9681d68bb96c0ead2b2
-DIST restorecond-2.7-rc4.tar.gz 17761 SHA256 
b8ebd7ba6d988442f6c24f43867d0ed4e9573975540ef4726adccf897db4a5c4 SHA512 
907931a73ea2c1c2899d8f6792c7d808676f667dd443ad5abbe77c9cb143ac03f86eee9496e354655e21721882a2c17446fd886d89c8feacde0b477d1ce2c3f1
 WHIRLPOOL 
559364b67c0f9966090b00abd997810582cb123cc08b71eea802652b4994a70d9e068a2ec1a49d2d90317540eb15d1edbd597331039dfbe8c8b44453375d90dc
-DIST restorecond-2.7-rc5.tar.gz 17756 SHA256 
659fa414a56f001eee449ae876e4903a1e9bd139cbacaad2fa786adc3185c62b SHA512 
afda79cf98ca7cf2bd2fc1ff93255ba96b28f4b61fc20ed90c64842efe3158ba5760a584f93a777ff8c6c631fd4bf15c2c0763c18751d0e63edd6043db950711
 WHIRLPOOL 
dbd1f4321f9e0aaa97982216ff438a48b1a7fd854116dd2bf752fe9c1e77ab4a0b5f64fc695af714a5fa51c5260942362bd50e62ebf67440a92683103bc46e35
 DIST restorecond-2.7.tar.gz 17753 SHA256 
cb8e0a8d706cb2c1f105125f3514defcbcfb49199183a7f91ab0bdf1f24d SHA512 
c81950e4f748a729c8951b13a4075ab1003530f8ada7a9d3fbe6428f76070df4819a37daaab557b63fc234aa8c8320ec41757fbdb24b76fa2c11747bde0038ad
 WHIRLPOOL 
54ab5aec56100d459aecf2018326942498ee63236ccf9edcce33c8dbfd100a54c278ef895421b098ef4e2106fb777f116e7eab023491b7d26f9263090af3b6db

diff --git a/sys-apps/restorecond/restorecond-2.7_rc1.ebuild 
b/sys-apps/restorecond/restorecond-2.7_rc1.ebuild
deleted file mode 100644
index 4af561e62e2..000
--- a/sys-apps/restorecond/restorecond-2.7_rc1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit toolchain-funcs
-
-MY_RELEASEDATE="20170609"
-
-MY_P="${P//_/-}"
-IUSE=""
-
-if [[ ${PV} == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${MY_P}/${PN}"
-else
-   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND=">=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:=
-   dev-libs/libpcre:=
-   >=sys-libs/libcap-1.10-r10:="
-
-RDEPEND="${DEPEND}
-   !https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${MY_P}/${PN}"
-else
-   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND=">=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:=
-   dev-libs/libpcre:=
-   >=sys-libs/libcap-1.10-r10:="
-
-RDEPEND="${DEPEND}
-   !https://github.com/SELinuxProject/selinux.git;
-   S="${WORKDIR}/${MY_P}/${PN}"
-else
-   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
-HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND=">=sys-libs/libsepol-${PV}:=
-   >=sys-libs/libselinux-${PV}:=
-   dev-libs/libpcre:=
-   >=sys-libs/libcap-1.10-r10:="
-
-RDEPEND="${DEPEND}
-   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2017-09-22 Thread Jason Zaman
commit: 3256b14eccf3ad9d6da6faa361d4926a806eabf4
Author: Jason Zaman  gentoo  org>
AuthorDate: Fri Sep 22 16:09:25 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sat Sep 23 02:13:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3256b14e

sys-apps/restorecond: stablize 2.7

Package-Manager: Portage-2.3.8, Repoman-2.3.1

 sys-apps/restorecond/restorecond-2.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-2.7.ebuild 
b/sys-apps/restorecond/restorecond-2.7.ebuild
index 3d679bcf4c7..a63282f7029 100644
--- a/sys-apps/restorecond/restorecond-2.7.ebuild
+++ b/sys-apps/restorecond/restorecond-2.7.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${MY_P}/${PN}"
 else

SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
S="${WORKDIR}/${MY_P}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2017-08-07 Thread Jason Zaman
commit: 5e59328d053b7610d3c975121800f78957b84760
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 14:12:51 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e59328d

sys-apps/restorecond: bump to 2.7

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-2.7.ebuild | 57 +
 2 files changed, 58 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index f4438e1137f..a607e123ca0 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,3 +1,4 @@
 DIST restorecond-2.7-rc1.tar.gz 17752 SHA256 
af97d65094dd0b064325647e63130737b6fb077de1753e0b6d2d4c8060b938d5 SHA512 
386d62a42237288fbe013bcc05ce9d6b46007ca3c9c0671fd53e60203fb0a92e7911d80a27591f068c8038f390af7bd39b6b75244f944684186e7766a19e2fbd
 WHIRLPOOL 
06e6ad4afe94e49b6d3040235da052a4e0641c8054e6b80236cc84c04ed477eb71e1a276c03e1ef9c7025b670ac55014ba4b64df336fd9681d68bb96c0ead2b2
 DIST restorecond-2.7-rc4.tar.gz 17761 SHA256 
b8ebd7ba6d988442f6c24f43867d0ed4e9573975540ef4726adccf897db4a5c4 SHA512 
907931a73ea2c1c2899d8f6792c7d808676f667dd443ad5abbe77c9cb143ac03f86eee9496e354655e21721882a2c17446fd886d89c8feacde0b477d1ce2c3f1
 WHIRLPOOL 
559364b67c0f9966090b00abd997810582cb123cc08b71eea802652b4994a70d9e068a2ec1a49d2d90317540eb15d1edbd597331039dfbe8c8b44453375d90dc
 DIST restorecond-2.7-rc5.tar.gz 17756 SHA256 
659fa414a56f001eee449ae876e4903a1e9bd139cbacaad2fa786adc3185c62b SHA512 
afda79cf98ca7cf2bd2fc1ff93255ba96b28f4b61fc20ed90c64842efe3158ba5760a584f93a777ff8c6c631fd4bf15c2c0763c18751d0e63edd6043db950711
 WHIRLPOOL 
dbd1f4321f9e0aaa97982216ff438a48b1a7fd854116dd2bf752fe9c1e77ab4a0b5f64fc695af714a5fa51c5260942362bd50e62ebf67440a92683103bc46e35
+DIST restorecond-2.7.tar.gz 17753 SHA256 
cb8e0a8d706cb2c1f105125f3514defcbcfb49199183a7f91ab0bdf1f24d SHA512 
c81950e4f748a729c8951b13a4075ab1003530f8ada7a9d3fbe6428f76070df4819a37daaab557b63fc234aa8c8320ec41757fbdb24b76fa2c11747bde0038ad
 WHIRLPOOL 
54ab5aec56100d459aecf2018326942498ee63236ccf9edcce33c8dbfd100a54c278ef895421b098ef4e2106fb777f116e7eab023491b7d26f9263090af3b6db

diff --git a/sys-apps/restorecond/restorecond-2.7.ebuild 
b/sys-apps/restorecond/restorecond-2.7.ebuild
new file mode 100644
index 000..3d679bcf4c7
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-2.7.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20170804"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:=
+   dev-libs/libpcre:=
+   >=sys-libs/libcap-1.10-r10:="
+
+RDEPEND="${DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2017-08-07 Thread Jason Zaman
commit: 9db6e94520f50f38ada64e485c44949395e52ada
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 14:10:30 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9db6e945

sys-apps/restorecond: update live ebuild

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-apps/restorecond/restorecond-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index b65c73ae71e..3d679bcf4c7 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
 
 inherit toolchain-funcs
 
-MY_RELEASEDATE="20170718"
+MY_RELEASEDATE="20170804"
 
 MY_P="${P//_/-}"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2017-07-22 Thread Jason Zaman
commit: 785d770a07f37d63c381268c6d2d2cdf1ef331cc
Author: Jason Zaman  gentoo  org>
AuthorDate: Sat Jul 22 10:18:14 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sat Jul 22 10:45:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=785d770a

sys-apps/restorecond: update live ebuild

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-apps/restorecond/restorecond-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index cc19df0f2c5..b65c73ae71e 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
 
 inherit toolchain-funcs
 
-MY_RELEASEDATE="20170630"
+MY_RELEASEDATE="20170718"
 
 MY_P="${P//_/-}"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2017-07-22 Thread Jason Zaman
commit: 42c439c8da6360da897e7aaa1c94f6f062471fae
Author: Jason Zaman  gentoo  org>
AuthorDate: Sat Jul 22 10:21:16 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sat Jul 22 10:46:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42c439c8

sys-apps/restorecond: bump to 2.7_rc5

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-2.7_rc5.ebuild | 57 +
 2 files changed, 58 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index d4a10e20bdf..f4438e1137f 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,2 +1,3 @@
 DIST restorecond-2.7-rc1.tar.gz 17752 SHA256 
af97d65094dd0b064325647e63130737b6fb077de1753e0b6d2d4c8060b938d5 SHA512 
386d62a42237288fbe013bcc05ce9d6b46007ca3c9c0671fd53e60203fb0a92e7911d80a27591f068c8038f390af7bd39b6b75244f944684186e7766a19e2fbd
 WHIRLPOOL 
06e6ad4afe94e49b6d3040235da052a4e0641c8054e6b80236cc84c04ed477eb71e1a276c03e1ef9c7025b670ac55014ba4b64df336fd9681d68bb96c0ead2b2
 DIST restorecond-2.7-rc4.tar.gz 17761 SHA256 
b8ebd7ba6d988442f6c24f43867d0ed4e9573975540ef4726adccf897db4a5c4 SHA512 
907931a73ea2c1c2899d8f6792c7d808676f667dd443ad5abbe77c9cb143ac03f86eee9496e354655e21721882a2c17446fd886d89c8feacde0b477d1ce2c3f1
 WHIRLPOOL 
559364b67c0f9966090b00abd997810582cb123cc08b71eea802652b4994a70d9e068a2ec1a49d2d90317540eb15d1edbd597331039dfbe8c8b44453375d90dc
+DIST restorecond-2.7-rc5.tar.gz 17756 SHA256 
659fa414a56f001eee449ae876e4903a1e9bd139cbacaad2fa786adc3185c62b SHA512 
afda79cf98ca7cf2bd2fc1ff93255ba96b28f4b61fc20ed90c64842efe3158ba5760a584f93a777ff8c6c631fd4bf15c2c0763c18751d0e63edd6043db950711
 WHIRLPOOL 
dbd1f4321f9e0aaa97982216ff438a48b1a7fd854116dd2bf752fe9c1e77ab4a0b5f64fc695af714a5fa51c5260942362bd50e62ebf67440a92683103bc46e35

diff --git a/sys-apps/restorecond/restorecond-2.7_rc5.ebuild 
b/sys-apps/restorecond/restorecond-2.7_rc5.ebuild
new file mode 100644
index 000..b65c73ae71e
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-2.7_rc5.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20170718"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:=
+   dev-libs/libpcre:=
+   >=sys-libs/libcap-1.10-r10:="
+
+RDEPEND="${DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2017-07-09 Thread Jason Zaman
commit: 0424a748aeda0cf3109ec7969159bc6471df0e54
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Jul  9 08:07:20 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun Jul  9 10:03:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0424a748

sys-apps/restorecond: bump to 2.7_rc4

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-2.7_rc4.ebuild | 57 +
 2 files changed, 58 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index c8a69164411..d4a10e20bdf 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1 +1,2 @@
 DIST restorecond-2.7-rc1.tar.gz 17752 SHA256 
af97d65094dd0b064325647e63130737b6fb077de1753e0b6d2d4c8060b938d5 SHA512 
386d62a42237288fbe013bcc05ce9d6b46007ca3c9c0671fd53e60203fb0a92e7911d80a27591f068c8038f390af7bd39b6b75244f944684186e7766a19e2fbd
 WHIRLPOOL 
06e6ad4afe94e49b6d3040235da052a4e0641c8054e6b80236cc84c04ed477eb71e1a276c03e1ef9c7025b670ac55014ba4b64df336fd9681d68bb96c0ead2b2
+DIST restorecond-2.7-rc4.tar.gz 17761 SHA256 
b8ebd7ba6d988442f6c24f43867d0ed4e9573975540ef4726adccf897db4a5c4 SHA512 
907931a73ea2c1c2899d8f6792c7d808676f667dd443ad5abbe77c9cb143ac03f86eee9496e354655e21721882a2c17446fd886d89c8feacde0b477d1ce2c3f1
 WHIRLPOOL 
559364b67c0f9966090b00abd997810582cb123cc08b71eea802652b4994a70d9e068a2ec1a49d2d90317540eb15d1edbd597331039dfbe8c8b44453375d90dc

diff --git a/sys-apps/restorecond/restorecond-2.7_rc4.ebuild 
b/sys-apps/restorecond/restorecond-2.7_rc4.ebuild
new file mode 100644
index 000..cc19df0f2c5
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-2.7_rc4.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20170630"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:=
+   dev-libs/libpcre:=
+   >=sys-libs/libcap-1.10-r10:="
+
+RDEPEND="${DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2017-07-09 Thread Jason Zaman
commit: 34b052bcc328cfc889723796147a5751bf1b1a2f
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Jul  9 07:29:56 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun Jul  9 10:02:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34b052bc

sys-apps/restorecond: update live ebuild

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-apps/restorecond/restorecond-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index 4af561e62e2..cc19df0f2c5 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
 
 inherit toolchain-funcs
 
-MY_RELEASEDATE="20170609"
+MY_RELEASEDATE="20170630"
 
 MY_P="${P//_/-}"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2017-06-13 Thread Jason Zaman
commit: 03d4507b3f2480669e28f54937dcdf397a2fff1f
Author: Jason Zaman  gentoo  org>
AuthorDate: Tue Jun 13 05:32:32 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Tue Jun 13 15:11:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03d4507b

sys-apps/restorecond: update live ebuild

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 sys-apps/restorecond/restorecond-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
index 9195189cedc..4af561e62e2 100644
--- a/sys-apps/restorecond/restorecond-.ebuild
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
 
 inherit toolchain-funcs
 
-MY_RELEASEDATE="20161014"
+MY_RELEASEDATE="20170609"
 
 MY_P="${P//_/-}"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/

2017-06-13 Thread Jason Zaman
commit: eac40ae72de93fdaf2659ef6be0e00479c7d7d12
Author: Jason Zaman  gentoo  org>
AuthorDate: Tue Jun 13 05:31:48 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Tue Jun 13 15:11:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eac40ae7

sys-apps/restorecond: bump to 2.7_rc1

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-2.7_rc1.ebuild | 57 +
 2 files changed, 58 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
new file mode 100644
index 000..c8a69164411
--- /dev/null
+++ b/sys-apps/restorecond/Manifest
@@ -0,0 +1 @@
+DIST restorecond-2.7-rc1.tar.gz 17752 SHA256 
af97d65094dd0b064325647e63130737b6fb077de1753e0b6d2d4c8060b938d5 SHA512 
386d62a42237288fbe013bcc05ce9d6b46007ca3c9c0671fd53e60203fb0a92e7911d80a27591f068c8038f390af7bd39b6b75244f944684186e7766a19e2fbd
 WHIRLPOOL 
06e6ad4afe94e49b6d3040235da052a4e0641c8054e6b80236cc84c04ed477eb71e1a276c03e1ef9c7025b670ac55014ba4b64df336fd9681d68bb96c0ead2b2

diff --git a/sys-apps/restorecond/restorecond-2.7_rc1.ebuild 
b/sys-apps/restorecond/restorecond-2.7_rc1.ebuild
new file mode 100644
index 000..4af561e62e2
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-2.7_rc1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20170609"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:=
+   dev-libs/libpcre:=
+   >=sys-libs/libcap-1.10-r10:="
+
+RDEPEND="${DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: sys-apps/restorecond/, sys-apps/restorecond/files/

2017-04-26 Thread Jason Zaman
commit: e23657020be7d689d84a7d1d1a7a82a7b0155773
Author: Jason Zaman  gentoo  org>
AuthorDate: Wed Apr 26 18:08:38 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Apr 26 18:14:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2365702

sys-apps/restorecond: New Package split from policycoreutils

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-apps/restorecond/files/restorecond.init  | 30 +++
 sys-apps/restorecond/metadata.xml| 14 +++
 sys-apps/restorecond/restorecond-.ebuild | 57 
 3 files changed, 101 insertions(+)

diff --git a/sys-apps/restorecond/files/restorecond.init 
b/sys-apps/restorecond/files/restorecond.init
new file mode 100755
index 000..709f1d1b9ec
--- /dev/null
+++ b/sys-apps/restorecond/files/restorecond.init
@@ -0,0 +1,30 @@
+#!/sbin/openrc-run
+# Copyright 2006-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+is_selinux_enabled() {
+   local SE_ENABL="/usr/sbin/selinuxenabled"
+
+   if [ -x "$SE_ENABL" ]; then
+   $SE_ENABL && return 0 || return 1
+   else
+   ewarn "Restorecond: Unable to determine SELinux status"
+   return 1
+   fi
+}
+
+start() {
+   if is_selinux_enabled; then
+   ebegin "Starting restorecond"
+   start-stop-daemon --start --quiet --exec /usr/sbin/restorecond
+   eend $?
+   fi
+}
+
+stop() {
+   if is_selinux_enabled; then
+   ebegin "Stopping restorecond"
+   start-stop-daemon --stop --quiet --pidfile 
/var/run/restorecond.pid
+   eend $?
+   fi
+}

diff --git a/sys-apps/restorecond/metadata.xml 
b/sys-apps/restorecond/metadata.xml
new file mode 100644
index 000..bad7d3fa425
--- /dev/null
+++ b/sys-apps/restorecond/metadata.xml
@@ -0,0 +1,14 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   seli...@gentoo.org
+   SELinux Team
+   
+   
+   daemon that watches for file creation and then sets the default 
SELinux file context
+   
+   
+   SELinuxProject/selinux
+   
+

diff --git a/sys-apps/restorecond/restorecond-.ebuild 
b/sys-apps/restorecond/restorecond-.ebuild
new file mode 100644
index 000..9195189cedc
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20161014"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:=
+   dev-libs/libpcre:=
+   >=sys-libs/libcap-1.10-r10:="
+
+RDEPEND="${DEPEND}
+   !