File tree Expand file tree Collapse file tree 6 files changed +115
-56
lines changed
sdk_container/src/third_party/portage-stable/app-admin/perl-cleaner Expand file tree Collapse file tree 6 files changed +115
-56
lines changed Original file line number Diff line number Diff line change 1
1
DIST perl-cleaner-2.30.tar.bz2 6963 BLAKE2B 8983060c7a904266ac82a67eba7b5d2184803b59c077f947a35d07e9af3046953705d31840b9508116578b8f3e8a8b97d77cf21eeac3b70f1c3fb5c1d71ae64e SHA512 436d26727bbb598bcd3c4f31e6b81e415a797cdba82dccfd55e54ee179bd2d6c1dc443e865f6f0a05b59f47ffd231dd10e55d5ea97a9a6875235ea1b49b68898
2
+ DIST perl-cleaner-2.31.tar.bz2 6914 BLAKE2B 4b13ae42ab06ad75b6dbcb1306f3f4f476315db4504d0ffbc4c56d4d66a2da3a751d3682305daca6bcbae1861d182f16296c92f9a8d25687e35ab03a6f8734e3 SHA512 c4df0437604d41dbfdce0b72d72f975d464cf0c44f417c708917f01829e498ef8d6b47a78cee517836cac9344791ad49db98f29da5f78599e80b000e41b8127e
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
3
3
<pkgmetadata >
4
- <maintainer type =" project" >
5
- <email >perl@gentoo.org</email >
6
- <name >Gentoo Perl Project</name >
7
- </maintainer >
4
+ <maintainer type =" project" >
5
+ <email >perl@gentoo.org</email >
6
+ <name >Gentoo Perl Project</name >
7
+ </maintainer >
8
+ <use >
9
+ <flag name =" pkgcore" >
10
+ Use <pkg >sys-apps/pkgcore</pkg > instead of <pkg >sys-apps/portage</pkg >
11
+ and <pkg >app-portage/portage-utils</pkg >.
12
+ </flag >
13
+ </use >
14
+ <upstream >
15
+ <remote-id type =" github" >gentoo-perl/perl-cleaner</remote-id >
16
+ </upstream >
8
17
</pkgmetadata >
Original file line number Diff line number Diff line change
1
+ # Copyright 1999-2023 Gentoo Authors
2
+ # Distributed under the terms of the GNU General Public License v2
3
+
4
+ EAPI=8
5
+
6
+ inherit prefix
7
+
8
+ DESCRIPTION=" User land tool for cleaning up old perl installs"
9
+ HOMEPAGE=" https://wiki.gentoo.org/wiki/Project:Perl"
10
+
11
+ if [[ " ${PV} " == " 9999" ]] ; then
12
+ inherit git-r3
13
+ EGIT_REPO_URI=" https://github.com/gentoo-perl/perl-cleaner.git"
14
+ else
15
+ SRC_URI=" mirror://gentoo/${P} .tar.bz2 https://dev.gentoo.org/~dilfridge/distfiles/${P} .tar.bz2"
16
+ KEYWORDS=" ~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
17
+ fi
18
+
19
+ LICENSE=" GPL-2"
20
+ SLOT=" 0"
21
+ # TODO: Detect at runtime what's available and fallback if needed, possibly
22
+ # integrate with eselect-package-manager, bug #779007.
23
+ IUSE=" pkgcore"
24
+
25
+ [[ " ${PV} " == " 9999" ]] && BDEPEND=" sys-apps/help2man"
26
+
27
+ RDEPEND="
28
+ app-shells/bash
29
+ dev-lang/perl
30
+ pkgcore? ( sys-apps/pkgcore )
31
+ !pkgcore? (
32
+ app-portage/portage-utils
33
+ sys-apps/portage
34
+ )
35
+ "
36
+
37
+ src_prepare () {
38
+ default
39
+ eprefixify ${PN}
40
+ }
41
+
42
+ src_install () {
43
+ dosbin perl-cleaner
44
+ doman perl-cleaner.1
45
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # Copyright 1999-2023 Gentoo Authors
2
+ # Distributed under the terms of the GNU General Public License v2
3
+
4
+ EAPI=8
5
+
6
+ inherit prefix
7
+
8
+ DESCRIPTION=" User land tool for cleaning up old perl installs"
9
+ HOMEPAGE=" https://wiki.gentoo.org/wiki/Project:Perl"
10
+
11
+ if [[ " ${PV} " == " 9999" ]] ; then
12
+ inherit git-r3
13
+ EGIT_REPO_URI=" https://github.com/gentoo-perl/perl-cleaner.git"
14
+ else
15
+ SRC_URI=" https://dev.gentoo.org/~dilfridge/distfiles/${P} .tar.bz2"
16
+ KEYWORDS=" ~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
17
+ fi
18
+
19
+ LICENSE=" GPL-2"
20
+ SLOT=" 0"
21
+ IUSE=" pkgcore"
22
+
23
+ [[ " ${PV} " == " 9999" ]] && BDEPEND=" sys-apps/help2man"
24
+
25
+ RDEPEND="
26
+ app-shells/bash
27
+ dev-lang/perl
28
+ pkgcore? ( sys-apps/pkgcore )
29
+ !pkgcore? (
30
+ app-portage/portage-utils
31
+ sys-apps/portage
32
+ )
33
+ "
34
+
35
+ src_prepare () {
36
+ default
37
+ eprefixify ${PN}
38
+ }
39
+
40
+ src_install () {
41
+ dosbin perl-cleaner
42
+ doman perl-cleaner.1
43
+ }
Original file line number Diff line number Diff line change 1
- # Copyright 1999-2021 Gentoo Authors
1
+ # Copyright 1999-2023 Gentoo Authors
2
2
# Distributed under the terms of the GNU General Public License v2
3
3
4
- EAPI=7
4
+ EAPI=8
5
5
6
6
inherit prefix
7
7
8
8
DESCRIPTION=" User land tool for cleaning up old perl installs"
9
- HOMEPAGE=" https://www .gentoo.org/proj/en/perl/ "
9
+ HOMEPAGE=" https://wiki .gentoo.org/wiki/Project:Perl "
10
10
11
11
if [[ " ${PV} " == " 9999" ]] ; then
12
12
inherit git-r3
13
13
EGIT_REPO_URI=" https://github.com/gentoo-perl/perl-cleaner.git"
14
14
else
15
- SRC_URI=" mirror://gentoo/ ${P} .tar.bz2 https://dev.gentoo.org/~dilfridge/distfiles/${P} .tar.bz2"
16
- KEYWORDS=" ~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~ amd64-linux ~x86-linux ~ppc -macos ~x64 -macos ~sparc-solaris ~sparc64-solaris ~ x64-solaris ~x86 -solaris"
15
+ SRC_URI=" https://dev.gentoo.org/~dilfridge/distfiles/${P} .tar.bz2"
16
+ KEYWORDS=" ~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64 -macos ~ppc -macos ~x64-macos ~x64 -solaris"
17
17
fi
18
18
19
19
LICENSE=" GPL-2"
20
20
SLOT=" 0"
21
- IUSE=" "
21
+ IUSE=" pkgcore "
22
22
23
- [[ " ${PV} " == " 9999" ]] && DEPEND =" sys-apps/help2man"
23
+ [[ " ${PV} " == " 9999" ]] && BDEPEND =" sys-apps/help2man"
24
24
25
- RDEPEND=" app-shells/bash
25
+ RDEPEND="
26
+ app-shells/bash
26
27
dev-lang/perl
27
- || (
28
- ( sys-apps/portage app-portage/portage-utils )
29
- sys-apps/pkgcore
28
+ pkgcore? ( sys-apps/pkgcore )
29
+ !pkgcore? (
30
+ app-portage/portage-utils
31
+ sys-apps/portage
30
32
)
31
33
"
32
34
You can’t perform that action at this time.
0 commit comments