From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 01/32] make.sh: name all perl packages to start with perl
Date: Sun, 06 Feb 2022 22:46:08 +0100 [thread overview]
Message-ID: <20220206214639.2711567-1-adolf.belka@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 2922 bytes --]
- Currently some perl packages start with perl, others don't have perl in the name
at all and one has perl at the end of the IPFire name.
- This patch series places perl at the start of all lfs and rootfile files for perl
packages in a similar way as is done for python3.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
make.sh | 62 ++++++++++++++++++++++++++++-----------------------------
1 file changed, 31 insertions(+), 31 deletions(-)
diff --git a/make.sh b/make.sh
index 79798834a..15b502f3e 100755
--- a/make.sh
+++ b/make.sh
@@ -1332,7 +1332,7 @@ buildipfire() {
lfsmake2 usbutils
lfsmake2 libxml2
lfsmake2 libxslt
- lfsmake2 BerkeleyDB
+ lfsmake2 perl-BerkeleyDB
lfsmake2 cyrus-sasl
lfsmake2 openldap
lfsmake2 apache2
@@ -1355,10 +1355,10 @@ buildipfire() {
lfsmake2 ntfs-3g
lfsmake2 ethtool
lfsmake2 fcron
- lfsmake2 ExtUtils-PkgConfig
+ lfsmake2 perl-ExtUtils-PkgConfig
lfsmake2 perl-GD
- lfsmake2 GD-Graph
- lfsmake2 GD-TextUtil
+ lfsmake2 perl-GD-Graph
+ lfsmake2 perl-GD-TextUtil
lfsmake2 perl-Device-SerialPort
lfsmake2 perl-Device-Modem
lfsmake2 perl-Apache-Htpasswd
@@ -1377,35 +1377,35 @@ buildipfire() {
lfsmake2 logwatch
lfsmake2 misc-progs
lfsmake2 nano
- lfsmake2 URI
+ lfsmake2 perl-URI
lfsmake2 perl-CGI
lfsmake2 perl-Switch
- lfsmake2 HTML-Tagset
- lfsmake2 HTML-Parser
- lfsmake2 HTML-Template
- lfsmake2 Compress-Zlib
- lfsmake2 Digest
- lfsmake2 Digest-SHA1
- lfsmake2 Digest-HMAC
- lfsmake2 libwww-perl
- lfsmake2 Net-DNS
- lfsmake2 Net-IPv4Addr
- lfsmake2 Net_SSLeay
- lfsmake2 IO-Stringy
- lfsmake2 IO-Socket-SSL
- lfsmake2 Unix-Syslog
- lfsmake2 Mail-Tools
- lfsmake2 MIME-Tools
- lfsmake2 Net-Server
- lfsmake2 Canary-Stability
- lfsmake2 Convert-TNEF
- lfsmake2 Convert-UUlib
- lfsmake2 Archive-Tar
- lfsmake2 Archive-Zip
- lfsmake2 Text-Tabs+Wrap
- lfsmake2 XML-Parser
- lfsmake2 Crypt-PasswdMD5
- lfsmake2 Net-Telnet
+ lfsmake2 perl-HTML-Tagset
+ lfsmake2 perl-HTML-Parser
+ lfsmake2 perl-HTML-Template
+ lfsmake2 perl-Compress-Zlib
+ lfsmake2 perl-Digest
+ lfsmake2 perl-Digest-SHA1
+ lfsmake2 perl-Digest-HMAC
+ lfsmake2 perl-libwww
+ lfsmake2 perl-Net-DNS
+ lfsmake2 perl-Net-IPv4Addr
+ lfsmake2 perl-Net_SSLeay
+ lfsmake2 perl-IO-Stringy
+ lfsmake2 perl-IO-Socket-SSL
+ lfsmake2 perl-Unix-Syslog
+ lfsmake2 perl-Mail-Tools
+ lfsmake2 perl-MIME-Tools
+ lfsmake2 perl-Net-Server
+ lfsmake2 perl-Canary-Stability
+ lfsmake2 perl-Convert-TNEF
+ lfsmake2 perl-Convert-UUlib
+ lfsmake2 perl-Archive-Tar
+ lfsmake2 perl-Archive-Zip
+ lfsmake2 perl-Text-Tabs+Wrap
+ lfsmake2 perl-XML-Parser
+ lfsmake2 perl-Crypt-PasswdMD5
+ lfsmake2 perl-Net-Telnet
lfsmake2 python3-setuptools
lfsmake2 python3-inotify
lfsmake2 python3-docutils
--
2.35.1
next reply other threads:[~2022-02-06 21:46 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-06 21:46 Adolf Belka [this message]
2022-02-06 21:46 ` [PATCH 02/32] perl-Archive-Tar: Renamed from Archive-Tar Adolf Belka
2022-02-06 21:46 ` [PATCH 03/32] perl-Archive-Zip: Renamed from Archive-Zip Adolf Belka
2022-02-06 21:46 ` [PATCH 04/32] perl-BerkeleyDB: Renamed from BerkeleyDB Adolf Belka
2022-02-06 21:46 ` [PATCH 05/32] perl-Canary-Stability: Renamed from Canary-Stability Adolf Belka
2022-02-06 21:46 ` [PATCH 06/32] perl-Compress-Zlib: Renamed from Compress-Zlib Adolf Belka
2022-02-06 21:46 ` [PATCH 07/32] perl-Convert-TNEF: Renamed from Convert-TNEF Adolf Belka
2022-02-06 21:46 ` [PATCH 08/32] perl-Convert-UUlib: Renamed from Convert-UUlib Adolf Belka
2022-02-06 21:46 ` [PATCH 09/32] " Adolf Belka
2022-02-06 21:46 ` [PATCH 10/32] perl-Digest-HMAC: Renamed from Digest-HMAC Adolf Belka
2022-02-06 21:46 ` [PATCH 11/32] perl-Digest: Renamed from Digest Adolf Belka
2022-02-06 21:46 ` [PATCH 12/32] perl-Digest-SHA1: Renamed from Digest-SHA1 Adolf Belka
2022-02-06 21:46 ` [PATCH 13/32] perl-ExtUtils-PkgConfig: Renamed from ExtUtils-PkgConfig Adolf Belka
2022-02-06 21:46 ` [PATCH 14/32] perl-GD-Graph: Renamed from GD-Graph Adolf Belka
2022-02-06 21:46 ` [PATCH 15/32] perl-GD-TextUtil: Renamed from GD-TextUtil Adolf Belka
2022-02-06 21:46 ` [PATCH 16/32] perl-HTML-Parser: Renamed from HTML-Parser Adolf Belka
2022-02-06 21:46 ` [PATCH 17/32] perl-HTML-Tagset: Renamed from HTML-Tagset Adolf Belka
2022-02-06 21:46 ` [PATCH 18/32] perl-HTML-Template: Renamed from HTML-Template Adolf Belka
2022-02-06 21:46 ` [PATCH 19/32] perl-IO-Socket-SSL: Renamed from IO-Socket-SSL Adolf Belka
2022-02-06 21:46 ` [PATCH 20/32] perl-IO-Stringy: Renamed from IO-Stringy Adolf Belka
2022-02-06 21:46 ` [PATCH 21/32] perl-libwww: Renamed from libwww-perl Adolf Belka
2022-02-06 21:46 ` [PATCH 22/32] perl-Mail-Tools: Renamed from Mail-Tools Adolf Belka
2022-02-06 21:46 ` [PATCH 23/32] perl-MIME-Tools: Renamed from MIME-Tools Adolf Belka
2022-02-06 21:46 ` [PATCH 24/32] perl-Net-DNS: Renamed from Net-DNS Adolf Belka
2022-02-06 21:46 ` [PATCH 25/32] perl-Net-IPv4Addr: Renamed from Net-IPv4Addr Adolf Belka
2022-02-06 21:46 ` [PATCH 26/32] perl-Net-Server: Renamed from Net-Server Adolf Belka
2022-02-06 21:46 ` [PATCH 27/32] perl-Net_SSLeay: Renamed from Net_SSLeay Adolf Belka
2022-02-06 21:46 ` [PATCH 28/32] perl-Net-Telnet: Renamed from Net-Telnet Adolf Belka
2022-02-06 21:46 ` [PATCH 29/32] perl-Text-Tabs+Wrap: Renamed from Text-Tabs+Wrap Adolf Belka
2022-02-06 21:46 ` [PATCH 30/32] perl-Unix-Syslog: Renamed from Unix-Syslog Adolf Belka
2022-02-06 21:46 ` [PATCH 31/32] perl-URI: Renamed from URI Adolf Belka
2022-02-06 21:46 ` [PATCH 32/32] perl-XML-Parser: Renamed from XML-Parser Adolf Belka
2022-02-07 10:27 ` [PATCH 01/32] make.sh: name all perl packages to start with perl Michael Tremer
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=20220206214639.2711567-1-adolf.belka@ipfire.org \
--to=adolf.belka@ipfire.org \
--cc=development@lists.ipfire.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