From: "Anthony G. Basile" <blueness@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/grs/
Date: Sat, 22 Feb 2025 15:28:55 +0000 (UTC) [thread overview]
Message-ID: <1740238087.72fb4e4cb6f460855ad8b9c0601cc1766558fd97.blueness@gentoo> (raw)
commit: 72fb4e4cb6f460855ad8b9c0601cc1766558fd97
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 22 15:28:07 2025 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Feb 22 15:28:07 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72fb4e4c
app-portage/grs: treeclean
Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
app-portage/grs/Manifest | 3 --
app-portage/grs/grs-0.7.ebuild | 59 -------------------------------------
app-portage/grs/grs-0.8-r1.ebuild | 61 ---------------------------------------
app-portage/grs/grs-9999.ebuild | 61 ---------------------------------------
app-portage/grs/metadata.xml | 14 ---------
5 files changed, 198 deletions(-)
diff --git a/app-portage/grs/Manifest b/app-portage/grs/Manifest
deleted file mode 100644
index 59a144c1406a..000000000000
--- a/app-portage/grs/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST ISO-1.tar.gz 2887967 BLAKE2B 0ae9d9c4078974316d6865a8601705f7c69c8305d8401835bfa544d14a90b3688ea6b881a1c07bcb969fe2b15f210d05f114ebaf3af5ba6f1ae3705d395f1603 SHA512 50bd9bcaa3d1900763936beb4801fd9e5cb963e39d51c39c9cc9a8d160469db1b0c6fffae01bbb5d5d5c6d4e42d84a6c499c465bbdd964835c2d190785eed52d
-DIST grs-0.7.tar.gz 36330 BLAKE2B 9e835262656f8a51969810f92a1ae801bc058c4529c01fe1998227fa8b81939c1d7db9f335f5a18f18d9cbd53ec809d289efd80ba7543b3b61a8dee1296bd780 SHA512 b530d66e3402e34f1c4efdff0af0e1d0f0ccf311c440c8d5ee050f8a8ab178d663433f766d507c5b1280ef9056fd97d05915e65e07a1a59bb8a3c80fd4bab4c6
-DIST grs-0.8.tar.gz 36501 BLAKE2B 2ed3391d2b12f41d2e50b54518728c642ede0deecca71aa6c6977bc4b01d53cd0274623b09e5be898a00254148d1cdcb8751d3cac50cf08ab1358cd1b7ad7007 SHA512 ae17c0af785cd4a75cb94bebb9b61c69b8e0a772643fdc7d978dfba274419bec76f4c9bafa984a83d86b13eb919ded51ac06cc7965fea2f0aab71cbaebeb2a84
diff --git a/app-portage/grs/grs-0.7.ebuild b/app-portage/grs/grs-0.7.ebuild
deleted file mode 100644
index fa147f46b7b1..000000000000
--- a/app-portage/grs/grs-0.7.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-PYTHON_COMPAT=( python3_{10,11,12} )
-DISTUTILS_USE_SETUPTOOLS=no
-
-inherit distutils-r1 linux-info
-
-ISO="ISO-1.tar.gz"
-
-if [[ ${PV} == *9999 ]] ; then
- EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/grss.git"
- SRC_URI="https://dev.gentoo.org/~blueness/${PN}/${ISO}"
- inherit git-r3
-else
- SRC_URI="https://dev.gentoo.org/~blueness/${PN}/${P}.tar.gz
- https://dev.gentoo.org/~blueness/${PN}/${ISO}"
- KEYWORDS="amd64 arm arm64 x86"
-fi
-
-DESCRIPTION="Suite to build Gentoo Reference Systems"
-HOMEPAGE="https://dev.gentoo.org/~blueness/grs"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="server"
-
-DEPEND=""
-RDEPEND="
- sys-apps/portage[${PYTHON_USEDEP}]
- server? (
- app-arch/tar[xattr]
- app-cdr/cdrtools
- app-crypt/md5deep
- dev-libs/libcgroup
- dev-vcs/git
- net-misc/rsync
- sys-fs/squashfs-tools
- sys-kernel/genkernel
- )"
-
-pkg_setup() {
- if use server; then
- local CONFIG_CHECK="~CGROUPS"
- local ERROR_CGROUPS="WARNING: grsrun requires CONFIG_CGROUPS enabled in the kernel."
- linux-info_pkg_setup
- fi
-}
-
-src_install() {
- distutils-r1_src_install
- echo "CONFIG_PROTECT=\"/etc/grs/systems.conf\"" > "${T}"/20grs
- doenvd "${T}"/20grs
- if use server; then
- mkdir "${D}"/usr/share/${PN}
- cp "${DISTDIR}"/${ISO} "${D}"/usr/share/${PN}
- fi
-}
diff --git a/app-portage/grs/grs-0.8-r1.ebuild b/app-portage/grs/grs-0.8-r1.ebuild
deleted file mode 100644
index ef4a845d146a..000000000000
--- a/app-portage/grs/grs-0.8-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-PYTHON_COMPAT=( python3_{10,11,12} )
-DISTUTILS_USE_SETUPTOOLS=no
-
-inherit distutils-r1 linux-info
-
-ISO="ISO-1.tar.gz"
-
-if [[ ${PV} == *9999 ]] ; then
- EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/grss.git"
- SRC_URI="https://dev.gentoo.org/~blueness/${PN}/${ISO}"
- inherit git-r3
-else
- SRC_URI="https://dev.gentoo.org/~blueness/${PN}/${P}.tar.gz
- https://dev.gentoo.org/~blueness/${PN}/${ISO}"
- KEYWORDS="amd64 ~arm ~arm64 ~x86"
-fi
-
-DESCRIPTION="Suite to build Gentoo Reference Systems"
-HOMEPAGE="https://dev.gentoo.org/~blueness/grs"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="server"
-
-DEPEND=""
-RDEPEND="
- sys-apps/portage[${PYTHON_USEDEP}]
- server? (
- app-arch/tar[xattr]
- app-cdr/cdrtools
- app-crypt/md5deep
- dev-libs/libcgroup
- dev-vcs/git
- net-misc/rsync
- sys-fs/squashfs-tools
- sys-kernel/genkernel
- )"
-
-pkg_setup() {
- if use server; then
- local CONFIG_CHECK="~CGROUPS"
- local ERROR_CGROUPS="WARNING: grsrun requires CONFIG_CGROUPS enabled in the kernel."
- linux-info_pkg_setup
- fi
-}
-
-src_install() {
- distutils-r1_src_install
- echo "CONFIG_PROTECT=\"/etc/grs/systems.conf\"" > "${T}"/20grs
- doenvd "${T}"/20grs
- if use server; then
- mkdir "${D}"/usr/share/${PN}
- cp "${DISTDIR}"/${ISO} "${D}"/usr/share/${PN}
- else
- rm "${D}"/usr/bin/grsrun
- fi
-}
diff --git a/app-portage/grs/grs-9999.ebuild b/app-portage/grs/grs-9999.ebuild
deleted file mode 100644
index 6660fda0bc15..000000000000
--- a/app-portage/grs/grs-9999.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-PYTHON_COMPAT=( python3_{10,11,12} )
-DISTUTILS_USE_SETUPTOOLS=no
-
-inherit distutils-r1 linux-info
-
-ISO="ISO-1.tar.gz"
-
-if [[ ${PV} == *9999 ]] ; then
- EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/grss.git"
- SRC_URI="https://dev.gentoo.org/~blueness/${PN}/${ISO}"
- inherit git-r3
-else
- SRC_URI="https://dev.gentoo.org/~blueness/${PN}/${P}.tar.gz
- https://dev.gentoo.org/~blueness/${PN}/${ISO}"
- KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-fi
-
-DESCRIPTION="Suite to build Gentoo Reference Systems"
-HOMEPAGE="https://dev.gentoo.org/~blueness/grs"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="server"
-
-DEPEND=""
-RDEPEND="
- sys-apps/portage[${PYTHON_USEDEP}]
- server? (
- app-arch/tar[xattr]
- app-cdr/cdrtools
- app-crypt/md5deep
- dev-libs/libcgroup
- dev-vcs/git
- net-misc/rsync
- sys-fs/squashfs-tools
- sys-kernel/genkernel
- )"
-
-pkg_setup() {
- if use server; then
- local CONFIG_CHECK="~CGROUPS"
- local ERROR_CGROUPS="WARNING: grsrun requires CONFIG_CGROUPS enabled in the kernel."
- linux-info_pkg_setup
- fi
-}
-
-src_install() {
- distutils-r1_src_install
- echo "CONFIG_PROTECT=\"/etc/grs/systems.conf\"" > "${T}"/20grs
- doenvd "${T}"/20grs
- if use server; then
- mkdir "${D}"/usr/share/${PN}
- cp "${DISTDIR}"/${ISO} "${D}"/usr/share/${PN}
- else
- rm "${D}"/usr/bin/grsrun
- fi
-}
diff --git a/app-portage/grs/metadata.xml b/app-portage/grs/metadata.xml
deleted file mode 100644
index 9a913c870972..000000000000
--- a/app-portage/grs/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>blueness@gentoo.org</email>
- <name>Anthony G. Basile</name>
- </maintainer>
- <use>
- <flag name="server">Install all the tools building systems</flag>
- </use>
- <upstream>
- <remote-id type="gentoo">proj/grs</remote-id>
- </upstream>
-</pkgmetadata>
next reply other threads:[~2025-02-22 15:28 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-22 15:28 Anthony G. Basile [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-06-10 18:16 [gentoo-commits] repo/gentoo:master commit in: app-portage/grs/ Anthony G. Basile
2023-03-06 18:07 Anthony G. Basile
2023-01-11 8:07 Sam James
2022-08-01 17:05 Anthony G. Basile
2022-07-25 13:38 Anthony G. Basile
2022-07-21 16:21 Anthony G. Basile
2022-07-18 20:02 Anthony G. Basile
2021-09-24 11:10 Anthony G. Basile
2021-08-05 6:39 Anthony G. Basile
2020-12-18 9:00 Michał Górny
2020-06-05 15:46 Anthony G. Basile
2020-06-05 15:46 Anthony G. Basile
2019-12-26 17:02 Anthony G. Basile
2019-05-18 10:02 Michał Górny
2019-04-20 18:13 Anthony G. Basile
2019-04-16 12:53 Anthony G. Basile
2018-12-06 11:16 Anthony G. Basile
2018-11-14 23:00 Anthony G. Basile
2018-11-14 22:22 Anthony G. Basile
2018-11-07 6:23 Anthony G. Basile
2018-11-07 6:23 Anthony G. Basile
2018-03-21 18:12 Michał Górny
2018-01-20 13:54 Anthony G. Basile
2018-01-15 19:14 Anthony G. Basile
2018-01-15 12:27 Anthony G. Basile
2018-01-15 1:30 Anthony G. Basile
2018-01-14 17:37 Anthony G. Basile
2018-01-14 11:43 Anthony G. Basile
2018-01-14 9:49 Anthony G. Basile
2017-12-27 17:23 Anthony G. Basile
2017-12-27 17:21 Anthony G. Basile
2017-12-27 17:18 Anthony G. Basile
2017-12-27 8:03 Anthony G. Basile
2017-12-25 14:43 David Seifert
2017-04-22 9:56 Pacho Ramos
2016-03-07 0:11 Anthony G. Basile
2016-03-07 0:11 Anthony G. Basile
2016-02-23 1:50 Anthony G. Basile
2016-02-23 1:30 Anthony G. Basile
2016-02-23 0:46 Anthony G. Basile
2016-01-09 21:22 Anthony G. Basile
2016-01-09 21:22 Anthony G. Basile
2015-12-09 17:02 Anthony G. Basile
2015-12-09 17:02 Anthony G. Basile
2015-10-13 21:57 Anthony G. Basile
2015-09-25 1:03 Anthony G. Basile
2015-09-22 19:34 Anthony G. Basile
2015-09-22 19:34 Anthony G. Basile
2015-08-13 13:44 Anthony G. Basile
2015-08-12 0:06 Anthony G. Basile
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1740238087.72fb4e4cb6f460855ad8b9c0601cc1766558fd97.blueness@gentoo \
--to=blueness@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox