* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/paludis/
@ 2023-01-27 23:34 Tony Olagbaiye
0 siblings, 0 replies; 3+ messages in thread
From: Tony Olagbaiye @ 2023-01-27 23:34 UTC (permalink / raw
To: gentoo-commits
commit: 987bc497d8e68999f788ec907696f05ef714d0b8
Author: Tony Olagbaiye <bqv <AT> fron <DOT> io>
AuthorDate: Fri Jan 27 23:34:33 2023 +0000
Commit: Tony Olagbaiye <gentoo <AT> fron <DOT> io>
CommitDate: Fri Jan 27 23:34:42 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=987bc497
sys-apps/paludis: enable py3.10, py3.11
Signed-off-by: Tony Olagbaiye <bqv <AT> fron.io>
sys-apps/paludis/metadata.xml | 19 +++++++++++++
sys-apps/paludis/paludis-9999.ebuild | 53 ++++++++++--------------------------
2 files changed, 34 insertions(+), 38 deletions(-)
diff --git a/sys-apps/paludis/metadata.xml b/sys-apps/paludis/metadata.xml
new file mode 100644
index 000000000..7e76b8912
--- /dev/null
+++ b/sys-apps/paludis/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <upstream>
+ <bugs-to>https://github.com/MageSlayer/paludis-gentoo-patches/issues</bugs-to>
+ <changelog>https://github.com/MageSlayer/paludis-gentoo-patches/commits/master</changelog>
+ <remote-id type="github">MageSlayer/paludis-gentoo-patches</remote-id>
+ </upstream>
+ <use>
+ <flag name='pbins'>Experimental binary packages support</flag>
+ <flag name='pink'>Use a pink colour scheme</flag>
+ <flag name='python'>Enable the Python bindings</flag>
+ <flag name='ruby'>Enable the Ruby bindings</flag>
+ <flag name='search-index'>Enable `cave search --index`</flag>
+ <flag name='xml'>Enable parsing of xml files, for GLSA and metadata.xml support</flag>
+ <flag name='eapi7'>Enable experimental eapi7 support</flag>
+ <flag name='eapi8'>Enable extremely experimental eapi8 support</flag>
+ </use>
+</pkgmetadata>
diff --git a/sys-apps/paludis/paludis-9999.ebuild b/sys-apps/paludis/paludis-9999.ebuild
index 52f726870..b78802e0b 100644
--- a/sys-apps/paludis/paludis-9999.ebuild
+++ b/sys-apps/paludis/paludis-9999.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2023 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EGIT_REPO_URI="https://github.com/MageSlayer/paludis-gentoo-patches.git"
-PYTHON_COMPAT=( python3_{7,8,9} )
-RUBY_VER=2.4
+PYTHON_COMPAT=( python3_{8..11} )
+RUBY_VER=2.7
inherit bash-completion-r1 cmake git-r3 python-r1
@@ -13,7 +13,7 @@ DESCRIPTION="paludis, the other package mangler"
HOMEPAGE="http://paludis.exherbo.org/"
SRC_URI=""
-IUSE="doc pbins pink python ruby ruby_targets_ruby${RUBY_VER/./} search-index test +xml -eapi7"
+IUSE="doc pbins pink python ruby ruby_targets_ruby${RUBY_VER/./} search-index test +xml -eapi7 -eapi8"
LICENSE="GPL-2 vim"
SLOT="0"
KEYWORDS=""
@@ -53,35 +53,26 @@ RDEPEND="${COMMON_DEPEND}
PDEPEND="app-eselect/eselect-package-manager"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
- ruby? ( ruby_targets_ruby${RUBY_VER/./} )"
+ ruby? ( ruby_targets_ruby${RUBY_VER/./} )
+ ?? ( eapi7 eapi8 )"
RESTRICT="!test? ( test )"
-pkg_pretend() {
- if [[ ${MERGE_TYPE} != buildonly ]]; then
- if id paludisbuild >/dev/null 2>/dev/null ; then
- if ! groups paludisbuild | grep --quiet '\<tty\>' ; then
- eerror "The 'paludisbuild' user is now expected to be a member of the"
- eerror "'tty' group. You should add the user to this group before"
- eerror "upgrading Paludis."
- die "Please add paludisbuild to tty group"
- fi
- fi
- fi
-}
-
pkg_setup() {
use python && python_setup -3
}
-
src_unpack() {
- if use eapi7; then
+ if use eapi8; then
+ # want experimental² EAPI8 support?
+ EGIT_REPO_URI="https://github.com/Ionic/paludis-gentoo-patches.git"
+ EGIT_BRANCH="feature/eapi8"
+ elif use eapi7; then
# want experimental EAPI7 support?
EGIT_BRANCH="eapi7"
- else
+ else
EGIT_BRANCH="master"
- fi
- git-r3_fetch
- git-r3_checkout
+ fi
+ git-r3_fetch
+ git-r3_checkout
}
src_prepare() {
@@ -131,20 +122,6 @@ src_install() {
dobin portage2paludis
}
-src_test() {
- # Work around Portage bugs
- local -x PALUDIS_DO_NOTHING_SANDBOXY="portage sucks"
- local -x BASH_ENV=/dev/null
-
- if [[ ${EUID} == 0 ]] ; then
- # hate
- local -x PALUDIS_REDUCED_UID=0
- local -x PALUDIS_REDUCED_GID=0
- fi
-
- cmake_src_test
-}
-
pkg_postinst() {
local pm
if [[ -f ${ROOT}/etc/env.d/50package-manager ]] ; then
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/paludis/
@ 2023-01-29 10:03 Viorel Munteanu
0 siblings, 0 replies; 3+ messages in thread
From: Viorel Munteanu @ 2023-01-29 10:03 UTC (permalink / raw
To: gentoo-commits
commit: ffdb585a5317de684c164ac2e66cefe57c14cb4f
Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 29 10:02:34 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sun Jan 29 10:02:34 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ffdb585a
sys-apps/paludis: fix pkgcheck error
BadDefaultUseFlags: version 9999: bad default USE flags: '-eapi7', '-eapi8'
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
sys-apps/paludis/paludis-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/paludis/paludis-9999.ebuild b/sys-apps/paludis/paludis-9999.ebuild
index b78802e0b..dce33cfa5 100644
--- a/sys-apps/paludis/paludis-9999.ebuild
+++ b/sys-apps/paludis/paludis-9999.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="paludis, the other package mangler"
HOMEPAGE="http://paludis.exherbo.org/"
SRC_URI=""
-IUSE="doc pbins pink python ruby ruby_targets_ruby${RUBY_VER/./} search-index test +xml -eapi7 -eapi8"
+IUSE="doc pbins pink python ruby ruby_targets_ruby${RUBY_VER/./} search-index test +xml eapi7 eapi8"
LICENSE="GPL-2 vim"
SLOT="0"
KEYWORDS=""
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/paludis/
@ 2023-02-07 7:14 Joe Kappus
0 siblings, 0 replies; 3+ messages in thread
From: Joe Kappus @ 2023-02-07 7:14 UTC (permalink / raw
To: gentoo-commits
commit: fae4ebc8e63dc7965cf982aa690233b3fca034ad
Author: Joe Kappus <joe <AT> wt <DOT> gd>
AuthorDate: Tue Feb 7 07:13:48 2023 +0000
Commit: Joe Kappus <joe <AT> wt <DOT> gd>
CommitDate: Tue Feb 7 07:13:48 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fae4ebc8
sys-apps/paludis: update HOMEPAGE
Signed-off-by: Joe Kappus <joe <AT> wt.gd>
sys-apps/paludis/paludis-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-apps/paludis/paludis-9999.ebuild b/sys-apps/paludis/paludis-9999.ebuild
index dce33cfa5..0361bb73a 100644
--- a/sys-apps/paludis/paludis-9999.ebuild
+++ b/sys-apps/paludis/paludis-9999.ebuild
@@ -10,7 +10,7 @@ RUBY_VER=2.7
inherit bash-completion-r1 cmake git-r3 python-r1
DESCRIPTION="paludis, the other package mangler"
-HOMEPAGE="http://paludis.exherbo.org/"
+HOMEPAGE="https://paludis.exherbo.org/"
SRC_URI=""
IUSE="doc pbins pink python ruby ruby_targets_ruby${RUBY_VER/./} search-index test +xml eapi7 eapi8"
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-02-07 7:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-27 23:34 [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/paludis/ Tony Olagbaiye
-- strict thread matches above, loose matches on Subject: below --
2023-01-29 10:03 Viorel Munteanu
2023-02-07 7:14 Joe Kappus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox