* [PATCH 01/32] make.sh: name all perl packages to start with perl
@ 2022-02-06 21:46 Adolf Belka
2022-02-06 21:46 ` [PATCH 02/32] perl-Archive-Tar: Renamed from Archive-Tar Adolf Belka
` (31 more replies)
0 siblings, 32 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- 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
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 02/32] perl-Archive-Tar: Renamed from Archive-Tar
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 03/32] perl-Archive-Zip: Renamed from Archive-Zip Adolf Belka
` (30 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 738 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Archive-Tar => perl-Archive-Tar} | 0
lfs/{Archive-Tar => perl-Archive-Tar} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Archive-Tar => perl-Archive-Tar} (100%)
rename lfs/{Archive-Tar => perl-Archive-Tar} (100%)
diff --git a/config/rootfiles/common/Archive-Tar b/config/rootfiles/common/perl-Archive-Tar
similarity index 100%
rename from config/rootfiles/common/Archive-Tar
rename to config/rootfiles/common/perl-Archive-Tar
diff --git a/lfs/Archive-Tar b/lfs/perl-Archive-Tar
similarity index 100%
rename from lfs/Archive-Tar
rename to lfs/perl-Archive-Tar
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 03/32] perl-Archive-Zip: Renamed from Archive-Zip
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
2022-02-06 21:46 ` [PATCH 02/32] perl-Archive-Tar: Renamed from Archive-Tar Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 04/32] perl-BerkeleyDB: Renamed from BerkeleyDB Adolf Belka
` (29 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 738 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Archive-Zip => perl-Archive-Zip} | 0
lfs/{Archive-Zip => perl-Archive-Zip} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Archive-Zip => perl-Archive-Zip} (100%)
rename lfs/{Archive-Zip => perl-Archive-Zip} (100%)
diff --git a/config/rootfiles/common/Archive-Zip b/config/rootfiles/common/perl-Archive-Zip
similarity index 100%
rename from config/rootfiles/common/Archive-Zip
rename to config/rootfiles/common/perl-Archive-Zip
diff --git a/lfs/Archive-Zip b/lfs/perl-Archive-Zip
similarity index 100%
rename from lfs/Archive-Zip
rename to lfs/perl-Archive-Zip
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 04/32] perl-BerkeleyDB: Renamed from BerkeleyDB
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
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 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 05/32] perl-Canary-Stability: Renamed from Canary-Stability Adolf Belka
` (28 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 722 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{BerkeleyDB => perl-BerkeleyDB} | 0
lfs/{BerkeleyDB => perl-BerkeleyDB} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{BerkeleyDB => perl-BerkeleyDB} (100%)
rename lfs/{BerkeleyDB => perl-BerkeleyDB} (100%)
diff --git a/config/rootfiles/common/BerkeleyDB b/config/rootfiles/common/perl-BerkeleyDB
similarity index 100%
rename from config/rootfiles/common/BerkeleyDB
rename to config/rootfiles/common/perl-BerkeleyDB
diff --git a/lfs/BerkeleyDB b/lfs/perl-BerkeleyDB
similarity index 100%
rename from lfs/BerkeleyDB
rename to lfs/perl-BerkeleyDB
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 05/32] perl-Canary-Stability: Renamed from Canary-Stability
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (2 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 04/32] perl-BerkeleyDB: Renamed from BerkeleyDB Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 06/32] perl-Compress-Zlib: Renamed from Compress-Zlib Adolf Belka
` (27 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 814 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
.../rootfiles/common/{Canary-Stability => perl-Canary-Stability} | 0
lfs/{Canary-Stability => perl-Canary-Stability} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Canary-Stability => perl-Canary-Stability} (100%)
rename lfs/{Canary-Stability => perl-Canary-Stability} (100%)
diff --git a/config/rootfiles/common/Canary-Stability b/config/rootfiles/common/perl-Canary-Stability
similarity index 100%
rename from config/rootfiles/common/Canary-Stability
rename to config/rootfiles/common/perl-Canary-Stability
diff --git a/lfs/Canary-Stability b/lfs/perl-Canary-Stability
similarity index 100%
rename from lfs/Canary-Stability
rename to lfs/perl-Canary-Stability
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 06/32] perl-Compress-Zlib: Renamed from Compress-Zlib
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (3 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 05/32] perl-Canary-Stability: Renamed from Canary-Stability Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 07/32] perl-Convert-TNEF: Renamed from Convert-TNEF Adolf Belka
` (26 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 770 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Compress-Zlib => perl-Compress-Zlib} | 0
lfs/{Compress-Zlib => perl-Compress-Zlib} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Compress-Zlib => perl-Compress-Zlib} (100%)
rename lfs/{Compress-Zlib => perl-Compress-Zlib} (100%)
diff --git a/config/rootfiles/common/Compress-Zlib b/config/rootfiles/common/perl-Compress-Zlib
similarity index 100%
rename from config/rootfiles/common/Compress-Zlib
rename to config/rootfiles/common/perl-Compress-Zlib
diff --git a/lfs/Compress-Zlib b/lfs/perl-Compress-Zlib
similarity index 100%
rename from lfs/Compress-Zlib
rename to lfs/perl-Compress-Zlib
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 07/32] perl-Convert-TNEF: Renamed from Convert-TNEF
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (4 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 06/32] perl-Compress-Zlib: Renamed from Compress-Zlib Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 08/32] perl-Convert-UUlib: Renamed from Convert-UUlib Adolf Belka
` (25 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 754 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Convert-TNEF => perl-Convert-TNEF} | 0
lfs/{Convert-TNEF => perl-Convert-TNEF} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Convert-TNEF => perl-Convert-TNEF} (100%)
rename lfs/{Convert-TNEF => perl-Convert-TNEF} (100%)
diff --git a/config/rootfiles/common/Convert-TNEF b/config/rootfiles/common/perl-Convert-TNEF
similarity index 100%
rename from config/rootfiles/common/Convert-TNEF
rename to config/rootfiles/common/perl-Convert-TNEF
diff --git a/lfs/Convert-TNEF b/lfs/perl-Convert-TNEF
similarity index 100%
rename from lfs/Convert-TNEF
rename to lfs/perl-Convert-TNEF
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 08/32] perl-Convert-UUlib: Renamed from Convert-UUlib
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (5 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 07/32] perl-Convert-TNEF: Renamed from Convert-TNEF Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 09/32] " Adolf Belka
` (24 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 770 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Convert-UUlib => perl-Convert-UUlib} | 0
lfs/{Convert-UUlib => perl-Convert-UUlib} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Convert-UUlib => perl-Convert-UUlib} (100%)
rename lfs/{Convert-UUlib => perl-Convert-UUlib} (100%)
diff --git a/config/rootfiles/common/Convert-UUlib b/config/rootfiles/common/perl-Convert-UUlib
similarity index 100%
rename from config/rootfiles/common/Convert-UUlib
rename to config/rootfiles/common/perl-Convert-UUlib
diff --git a/lfs/Convert-UUlib b/lfs/perl-Convert-UUlib
similarity index 100%
rename from lfs/Convert-UUlib
rename to lfs/perl-Convert-UUlib
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 09/32] perl-Convert-UUlib: Renamed from Convert-UUlib
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (6 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 08/32] perl-Convert-UUlib: Renamed from Convert-UUlib Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 10/32] perl-Digest-HMAC: Renamed from Digest-HMAC Adolf Belka
` (23 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 802 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Crypt-PasswdMD5 => perl-Crypt-PasswdMD5} | 0
lfs/{Crypt-PasswdMD5 => perl-Crypt-PasswdMD5} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Crypt-PasswdMD5 => perl-Crypt-PasswdMD5} (100%)
rename lfs/{Crypt-PasswdMD5 => perl-Crypt-PasswdMD5} (100%)
diff --git a/config/rootfiles/common/Crypt-PasswdMD5 b/config/rootfiles/common/perl-Crypt-PasswdMD5
similarity index 100%
rename from config/rootfiles/common/Crypt-PasswdMD5
rename to config/rootfiles/common/perl-Crypt-PasswdMD5
diff --git a/lfs/Crypt-PasswdMD5 b/lfs/perl-Crypt-PasswdMD5
similarity index 100%
rename from lfs/Crypt-PasswdMD5
rename to lfs/perl-Crypt-PasswdMD5
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 10/32] perl-Digest-HMAC: Renamed from Digest-HMAC
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (7 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 09/32] " Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 11/32] perl-Digest: Renamed from Digest Adolf Belka
` (22 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 738 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Digest-HMAC => perl-Digest-HMAC} | 0
lfs/{Digest-HMAC => perl-Digest-HMAC} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Digest-HMAC => perl-Digest-HMAC} (100%)
rename lfs/{Digest-HMAC => perl-Digest-HMAC} (100%)
diff --git a/config/rootfiles/common/Digest-HMAC b/config/rootfiles/common/perl-Digest-HMAC
similarity index 100%
rename from config/rootfiles/common/Digest-HMAC
rename to config/rootfiles/common/perl-Digest-HMAC
diff --git a/lfs/Digest-HMAC b/lfs/perl-Digest-HMAC
similarity index 100%
rename from lfs/Digest-HMAC
rename to lfs/perl-Digest-HMAC
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 11/32] perl-Digest: Renamed from Digest
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (8 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 10/32] perl-Digest-HMAC: Renamed from Digest-HMAC Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 12/32] perl-Digest-SHA1: Renamed from Digest-SHA1 Adolf Belka
` (21 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 658 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Digest => perl-Digest} | 0
lfs/{Digest => perl-Digest} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Digest => perl-Digest} (100%)
rename lfs/{Digest => perl-Digest} (100%)
diff --git a/config/rootfiles/common/Digest b/config/rootfiles/common/perl-Digest
similarity index 100%
rename from config/rootfiles/common/Digest
rename to config/rootfiles/common/perl-Digest
diff --git a/lfs/Digest b/lfs/perl-Digest
similarity index 100%
rename from lfs/Digest
rename to lfs/perl-Digest
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 12/32] perl-Digest-SHA1: Renamed from Digest-SHA1
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (9 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 11/32] perl-Digest: Renamed from Digest Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 13/32] perl-ExtUtils-PkgConfig: Renamed from ExtUtils-PkgConfig Adolf Belka
` (20 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 738 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Digest-SHA1 => perl-Digest-SHA1} | 0
lfs/{Digest-SHA1 => perl-Digest-SHA1} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Digest-SHA1 => perl-Digest-SHA1} (100%)
rename lfs/{Digest-SHA1 => perl-Digest-SHA1} (100%)
diff --git a/config/rootfiles/common/Digest-SHA1 b/config/rootfiles/common/perl-Digest-SHA1
similarity index 100%
rename from config/rootfiles/common/Digest-SHA1
rename to config/rootfiles/common/perl-Digest-SHA1
diff --git a/lfs/Digest-SHA1 b/lfs/perl-Digest-SHA1
similarity index 100%
rename from lfs/Digest-SHA1
rename to lfs/perl-Digest-SHA1
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 13/32] perl-ExtUtils-PkgConfig: Renamed from ExtUtils-PkgConfig
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (10 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 12/32] perl-Digest-SHA1: Renamed from Digest-SHA1 Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 14/32] perl-GD-Graph: Renamed from GD-Graph Adolf Belka
` (19 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 838 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
.../common/{ExtUtils-PkgConfig => perl-ExtUtils-PkgConfig} | 0
lfs/{ExtUtils-PkgConfig => perl-ExtUtils-PkgConfig} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{ExtUtils-PkgConfig => perl-ExtUtils-PkgConfig} (100%)
rename lfs/{ExtUtils-PkgConfig => perl-ExtUtils-PkgConfig} (100%)
diff --git a/config/rootfiles/common/ExtUtils-PkgConfig b/config/rootfiles/common/perl-ExtUtils-PkgConfig
similarity index 100%
rename from config/rootfiles/common/ExtUtils-PkgConfig
rename to config/rootfiles/common/perl-ExtUtils-PkgConfig
diff --git a/lfs/ExtUtils-PkgConfig b/lfs/perl-ExtUtils-PkgConfig
similarity index 100%
rename from lfs/ExtUtils-PkgConfig
rename to lfs/perl-ExtUtils-PkgConfig
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 14/32] perl-GD-Graph: Renamed from GD-Graph
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (11 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 13/32] perl-ExtUtils-PkgConfig: Renamed from ExtUtils-PkgConfig Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 15/32] perl-GD-TextUtil: Renamed from GD-TextUtil Adolf Belka
` (18 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 690 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{GD-Graph => perl-GD-Graph} | 0
lfs/{GD-Graph => perl-GD-Graph} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{GD-Graph => perl-GD-Graph} (100%)
rename lfs/{GD-Graph => perl-GD-Graph} (100%)
diff --git a/config/rootfiles/common/GD-Graph b/config/rootfiles/common/perl-GD-Graph
similarity index 100%
rename from config/rootfiles/common/GD-Graph
rename to config/rootfiles/common/perl-GD-Graph
diff --git a/lfs/GD-Graph b/lfs/perl-GD-Graph
similarity index 100%
rename from lfs/GD-Graph
rename to lfs/perl-GD-Graph
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 15/32] perl-GD-TextUtil: Renamed from GD-TextUtil
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (12 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 14/32] perl-GD-Graph: Renamed from GD-Graph Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 16/32] perl-HTML-Parser: Renamed from HTML-Parser Adolf Belka
` (17 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 738 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{GD-TextUtil => perl-GD-TextUtil} | 0
lfs/{GD-TextUtil => perl-GD-TextUtil} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{GD-TextUtil => perl-GD-TextUtil} (100%)
rename lfs/{GD-TextUtil => perl-GD-TextUtil} (100%)
diff --git a/config/rootfiles/common/GD-TextUtil b/config/rootfiles/common/perl-GD-TextUtil
similarity index 100%
rename from config/rootfiles/common/GD-TextUtil
rename to config/rootfiles/common/perl-GD-TextUtil
diff --git a/lfs/GD-TextUtil b/lfs/perl-GD-TextUtil
similarity index 100%
rename from lfs/GD-TextUtil
rename to lfs/perl-GD-TextUtil
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 16/32] perl-HTML-Parser: Renamed from HTML-Parser
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (13 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 15/32] perl-GD-TextUtil: Renamed from GD-TextUtil Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 17/32] perl-HTML-Tagset: Renamed from HTML-Tagset Adolf Belka
` (16 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 738 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{HTML-Parser => perl-HTML-Parser} | 0
lfs/{HTML-Parser => perl-HTML-Parser} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{HTML-Parser => perl-HTML-Parser} (100%)
rename lfs/{HTML-Parser => perl-HTML-Parser} (100%)
diff --git a/config/rootfiles/common/HTML-Parser b/config/rootfiles/common/perl-HTML-Parser
similarity index 100%
rename from config/rootfiles/common/HTML-Parser
rename to config/rootfiles/common/perl-HTML-Parser
diff --git a/lfs/HTML-Parser b/lfs/perl-HTML-Parser
similarity index 100%
rename from lfs/HTML-Parser
rename to lfs/perl-HTML-Parser
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 17/32] perl-HTML-Tagset: Renamed from HTML-Tagset
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (14 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 16/32] perl-HTML-Parser: Renamed from HTML-Parser Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 18/32] perl-HTML-Template: Renamed from HTML-Template Adolf Belka
` (15 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 738 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{HTML-Tagset => perl-HTML-Tagset} | 0
lfs/{HTML-Tagset => perl-HTML-Tagset} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{HTML-Tagset => perl-HTML-Tagset} (100%)
rename lfs/{HTML-Tagset => perl-HTML-Tagset} (100%)
diff --git a/config/rootfiles/common/HTML-Tagset b/config/rootfiles/common/perl-HTML-Tagset
similarity index 100%
rename from config/rootfiles/common/HTML-Tagset
rename to config/rootfiles/common/perl-HTML-Tagset
diff --git a/lfs/HTML-Tagset b/lfs/perl-HTML-Tagset
similarity index 100%
rename from lfs/HTML-Tagset
rename to lfs/perl-HTML-Tagset
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 18/32] perl-HTML-Template: Renamed from HTML-Template
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (15 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 17/32] perl-HTML-Tagset: Renamed from HTML-Tagset Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 19/32] perl-IO-Socket-SSL: Renamed from IO-Socket-SSL Adolf Belka
` (14 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 770 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{HTML-Template => perl-HTML-Template} | 0
lfs/{HTML-Template => perl-HTML-Template} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{HTML-Template => perl-HTML-Template} (100%)
rename lfs/{HTML-Template => perl-HTML-Template} (100%)
diff --git a/config/rootfiles/common/HTML-Template b/config/rootfiles/common/perl-HTML-Template
similarity index 100%
rename from config/rootfiles/common/HTML-Template
rename to config/rootfiles/common/perl-HTML-Template
diff --git a/lfs/HTML-Template b/lfs/perl-HTML-Template
similarity index 100%
rename from lfs/HTML-Template
rename to lfs/perl-HTML-Template
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 19/32] perl-IO-Socket-SSL: Renamed from IO-Socket-SSL
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (16 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 18/32] perl-HTML-Template: Renamed from HTML-Template Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 20/32] perl-IO-Stringy: Renamed from IO-Stringy Adolf Belka
` (13 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 770 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{IO-Socket-SSL => perl-IO-Socket-SSL} | 0
lfs/{IO-Socket-SSL => perl-IO-Socket-SSL} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{IO-Socket-SSL => perl-IO-Socket-SSL} (100%)
rename lfs/{IO-Socket-SSL => perl-IO-Socket-SSL} (100%)
diff --git a/config/rootfiles/common/IO-Socket-SSL b/config/rootfiles/common/perl-IO-Socket-SSL
similarity index 100%
rename from config/rootfiles/common/IO-Socket-SSL
rename to config/rootfiles/common/perl-IO-Socket-SSL
diff --git a/lfs/IO-Socket-SSL b/lfs/perl-IO-Socket-SSL
similarity index 100%
rename from lfs/IO-Socket-SSL
rename to lfs/perl-IO-Socket-SSL
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 20/32] perl-IO-Stringy: Renamed from IO-Stringy
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (17 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 19/32] perl-IO-Socket-SSL: Renamed from IO-Socket-SSL Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 21/32] perl-libwww: Renamed from libwww-perl Adolf Belka
` (12 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 722 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{IO-Stringy => perl-IO-Stringy} | 0
lfs/{IO-Stringy => perl-IO-Stringy} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{IO-Stringy => perl-IO-Stringy} (100%)
rename lfs/{IO-Stringy => perl-IO-Stringy} (100%)
diff --git a/config/rootfiles/common/IO-Stringy b/config/rootfiles/common/perl-IO-Stringy
similarity index 100%
rename from config/rootfiles/common/IO-Stringy
rename to config/rootfiles/common/perl-IO-Stringy
diff --git a/lfs/IO-Stringy b/lfs/perl-IO-Stringy
similarity index 100%
rename from lfs/IO-Stringy
rename to lfs/perl-IO-Stringy
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 21/32] perl-libwww: Renamed from libwww-perl
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (18 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 20/32] perl-IO-Stringy: Renamed from IO-Stringy Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 22/32] perl-Mail-Tools: Renamed from Mail-Tools Adolf Belka
` (11 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 698 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{libwww-perl => perl-libwww} | 0
lfs/{libwww-perl => perl-libwww} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{libwww-perl => perl-libwww} (100%)
rename lfs/{libwww-perl => perl-libwww} (100%)
diff --git a/config/rootfiles/common/libwww-perl b/config/rootfiles/common/perl-libwww
similarity index 100%
rename from config/rootfiles/common/libwww-perl
rename to config/rootfiles/common/perl-libwww
diff --git a/lfs/libwww-perl b/lfs/perl-libwww
similarity index 100%
rename from lfs/libwww-perl
rename to lfs/perl-libwww
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 22/32] perl-Mail-Tools: Renamed from Mail-Tools
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (19 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 21/32] perl-libwww: Renamed from libwww-perl Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 23/32] perl-MIME-Tools: Renamed from MIME-Tools Adolf Belka
` (10 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 722 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Mail-Tools => perl-Mail-Tools} | 0
lfs/{Mail-Tools => perl-Mail-Tools} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Mail-Tools => perl-Mail-Tools} (100%)
rename lfs/{Mail-Tools => perl-Mail-Tools} (100%)
diff --git a/config/rootfiles/common/Mail-Tools b/config/rootfiles/common/perl-Mail-Tools
similarity index 100%
rename from config/rootfiles/common/Mail-Tools
rename to config/rootfiles/common/perl-Mail-Tools
diff --git a/lfs/Mail-Tools b/lfs/perl-Mail-Tools
similarity index 100%
rename from lfs/Mail-Tools
rename to lfs/perl-Mail-Tools
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 23/32] perl-MIME-Tools: Renamed from MIME-Tools
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (20 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 22/32] perl-Mail-Tools: Renamed from Mail-Tools Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 24/32] perl-Net-DNS: Renamed from Net-DNS Adolf Belka
` (9 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 722 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{MIME-Tools => perl-MIME-Tools} | 0
lfs/{MIME-Tools => perl-MIME-Tools} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{MIME-Tools => perl-MIME-Tools} (100%)
rename lfs/{MIME-Tools => perl-MIME-Tools} (100%)
diff --git a/config/rootfiles/common/MIME-Tools b/config/rootfiles/common/perl-MIME-Tools
similarity index 100%
rename from config/rootfiles/common/MIME-Tools
rename to config/rootfiles/common/perl-MIME-Tools
diff --git a/lfs/MIME-Tools b/lfs/perl-MIME-Tools
similarity index 100%
rename from lfs/MIME-Tools
rename to lfs/perl-MIME-Tools
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 24/32] perl-Net-DNS: Renamed from Net-DNS
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (21 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 23/32] perl-MIME-Tools: Renamed from MIME-Tools Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 25/32] perl-Net-IPv4Addr: Renamed from Net-IPv4Addr Adolf Belka
` (8 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 674 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Net-DNS => perl-Net-DNS} | 0
lfs/{Net-DNS => perl-Net-DNS} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Net-DNS => perl-Net-DNS} (100%)
rename lfs/{Net-DNS => perl-Net-DNS} (100%)
diff --git a/config/rootfiles/common/Net-DNS b/config/rootfiles/common/perl-Net-DNS
similarity index 100%
rename from config/rootfiles/common/Net-DNS
rename to config/rootfiles/common/perl-Net-DNS
diff --git a/lfs/Net-DNS b/lfs/perl-Net-DNS
similarity index 100%
rename from lfs/Net-DNS
rename to lfs/perl-Net-DNS
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 25/32] perl-Net-IPv4Addr: Renamed from Net-IPv4Addr
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (22 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 24/32] perl-Net-DNS: Renamed from Net-DNS Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 26/32] perl-Net-Server: Renamed from Net-Server Adolf Belka
` (7 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 754 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Net-IPv4Addr => perl-Net-IPv4Addr} | 0
lfs/{Net-IPv4Addr => perl-Net-IPv4Addr} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Net-IPv4Addr => perl-Net-IPv4Addr} (100%)
rename lfs/{Net-IPv4Addr => perl-Net-IPv4Addr} (100%)
diff --git a/config/rootfiles/common/Net-IPv4Addr b/config/rootfiles/common/perl-Net-IPv4Addr
similarity index 100%
rename from config/rootfiles/common/Net-IPv4Addr
rename to config/rootfiles/common/perl-Net-IPv4Addr
diff --git a/lfs/Net-IPv4Addr b/lfs/perl-Net-IPv4Addr
similarity index 100%
rename from lfs/Net-IPv4Addr
rename to lfs/perl-Net-IPv4Addr
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 26/32] perl-Net-Server: Renamed from Net-Server
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (23 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 25/32] perl-Net-IPv4Addr: Renamed from Net-IPv4Addr Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 27/32] perl-Net_SSLeay: Renamed from Net_SSLeay Adolf Belka
` (6 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 722 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Net-Server => perl-Net-Server} | 0
lfs/{Net-Server => perl-Net-Server} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Net-Server => perl-Net-Server} (100%)
rename lfs/{Net-Server => perl-Net-Server} (100%)
diff --git a/config/rootfiles/common/Net-Server b/config/rootfiles/common/perl-Net-Server
similarity index 100%
rename from config/rootfiles/common/Net-Server
rename to config/rootfiles/common/perl-Net-Server
diff --git a/lfs/Net-Server b/lfs/perl-Net-Server
similarity index 100%
rename from lfs/Net-Server
rename to lfs/perl-Net-Server
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 27/32] perl-Net_SSLeay: Renamed from Net_SSLeay
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (24 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 26/32] perl-Net-Server: Renamed from Net-Server Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 28/32] perl-Net-Telnet: Renamed from Net-Telnet Adolf Belka
` (5 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 722 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Net_SSLeay => perl-Net_SSLeay} | 0
lfs/{Net_SSLeay => perl-Net_SSLeay} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Net_SSLeay => perl-Net_SSLeay} (100%)
rename lfs/{Net_SSLeay => perl-Net_SSLeay} (100%)
diff --git a/config/rootfiles/common/Net_SSLeay b/config/rootfiles/common/perl-Net_SSLeay
similarity index 100%
rename from config/rootfiles/common/Net_SSLeay
rename to config/rootfiles/common/perl-Net_SSLeay
diff --git a/lfs/Net_SSLeay b/lfs/perl-Net_SSLeay
similarity index 100%
rename from lfs/Net_SSLeay
rename to lfs/perl-Net_SSLeay
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 28/32] perl-Net-Telnet: Renamed from Net-Telnet
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (25 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 27/32] perl-Net_SSLeay: Renamed from Net_SSLeay Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 29/32] perl-Text-Tabs+Wrap: Renamed from Text-Tabs+Wrap Adolf Belka
` (4 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 722 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Net-Telnet => perl-Net-Telnet} | 0
lfs/{Net-Telnet => perl-Net-Telnet} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Net-Telnet => perl-Net-Telnet} (100%)
rename lfs/{Net-Telnet => perl-Net-Telnet} (100%)
diff --git a/config/rootfiles/common/Net-Telnet b/config/rootfiles/common/perl-Net-Telnet
similarity index 100%
rename from config/rootfiles/common/Net-Telnet
rename to config/rootfiles/common/perl-Net-Telnet
diff --git a/lfs/Net-Telnet b/lfs/perl-Net-Telnet
similarity index 100%
rename from lfs/Net-Telnet
rename to lfs/perl-Net-Telnet
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 29/32] perl-Text-Tabs+Wrap: Renamed from Text-Tabs+Wrap
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (26 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 28/32] perl-Net-Telnet: Renamed from Net-Telnet Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 30/32] perl-Unix-Syslog: Renamed from Unix-Syslog Adolf Belka
` (3 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 786 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Text-Tabs+Wrap => perl-Text-Tabs+Wrap} | 0
lfs/{Text-Tabs+Wrap => perl-Text-Tabs+Wrap} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Text-Tabs+Wrap => perl-Text-Tabs+Wrap} (100%)
rename lfs/{Text-Tabs+Wrap => perl-Text-Tabs+Wrap} (100%)
diff --git a/config/rootfiles/common/Text-Tabs+Wrap b/config/rootfiles/common/perl-Text-Tabs+Wrap
similarity index 100%
rename from config/rootfiles/common/Text-Tabs+Wrap
rename to config/rootfiles/common/perl-Text-Tabs+Wrap
diff --git a/lfs/Text-Tabs+Wrap b/lfs/perl-Text-Tabs+Wrap
similarity index 100%
rename from lfs/Text-Tabs+Wrap
rename to lfs/perl-Text-Tabs+Wrap
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 30/32] perl-Unix-Syslog: Renamed from Unix-Syslog
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (27 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 29/32] perl-Text-Tabs+Wrap: Renamed from Text-Tabs+Wrap Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-06 21:46 ` [PATCH 31/32] perl-URI: Renamed from URI Adolf Belka
` (2 subsequent siblings)
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 738 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{Unix-Syslog => perl-Unix-Syslog} | 0
lfs/{Unix-Syslog => perl-Unix-Syslog} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{Unix-Syslog => perl-Unix-Syslog} (100%)
rename lfs/{Unix-Syslog => perl-Unix-Syslog} (100%)
diff --git a/config/rootfiles/common/Unix-Syslog b/config/rootfiles/common/perl-Unix-Syslog
similarity index 100%
rename from config/rootfiles/common/Unix-Syslog
rename to config/rootfiles/common/perl-Unix-Syslog
diff --git a/lfs/Unix-Syslog b/lfs/perl-Unix-Syslog
similarity index 100%
rename from lfs/Unix-Syslog
rename to lfs/perl-Unix-Syslog
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 31/32] perl-URI: Renamed from URI
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (28 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 30/32] perl-Unix-Syslog: Renamed from Unix-Syslog Adolf Belka
@ 2022-02-06 21:46 ` 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
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 591 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{URI => perl-URI} | 0
lfs/{URI => perl-URI} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{URI => perl-URI} (100%)
rename lfs/{URI => perl-URI} (100%)
diff --git a/config/rootfiles/common/URI b/config/rootfiles/common/perl-URI
similarity index 100%
rename from config/rootfiles/common/URI
rename to config/rootfiles/common/perl-URI
diff --git a/lfs/URI b/lfs/perl-URI
similarity index 100%
rename from lfs/URI
rename to lfs/perl-URI
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 32/32] perl-XML-Parser: Renamed from XML-Parser
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (29 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 31/32] perl-URI: Renamed from URI Adolf Belka
@ 2022-02-06 21:46 ` Adolf Belka
2022-02-07 10:27 ` [PATCH 01/32] make.sh: name all perl packages to start with perl Michael Tremer
31 siblings, 0 replies; 33+ messages in thread
From: Adolf Belka @ 2022-02-06 21:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 722 bytes --]
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/{XML-Parser => perl-XML-Parser} | 0
lfs/{XML-Parser => perl-XML-Parser} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
rename config/rootfiles/common/{XML-Parser => perl-XML-Parser} (100%)
rename lfs/{XML-Parser => perl-XML-Parser} (100%)
diff --git a/config/rootfiles/common/XML-Parser b/config/rootfiles/common/perl-XML-Parser
similarity index 100%
rename from config/rootfiles/common/XML-Parser
rename to config/rootfiles/common/perl-XML-Parser
diff --git a/lfs/XML-Parser b/lfs/perl-XML-Parser
similarity index 100%
rename from lfs/XML-Parser
rename to lfs/perl-XML-Parser
--
2.35.1
^ permalink raw reply [flat|nested] 33+ messages in thread
* Re: [PATCH 01/32] make.sh: name all perl packages to start with perl
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
` (30 preceding siblings ...)
2022-02-06 21:46 ` [PATCH 32/32] perl-XML-Parser: Renamed from XML-Parser Adolf Belka
@ 2022-02-07 10:27 ` Michael Tremer
31 siblings, 0 replies; 33+ messages in thread
From: Michael Tremer @ 2022-02-07 10:27 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3198 bytes --]
*thumbs up*
> On 6 Feb 2022, at 21:46, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>
> - 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
>
^ permalink raw reply [flat|nested] 33+ messages in thread
end of thread, other threads:[~2022-02-07 10:27 UTC | newest]
Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-06 21:46 [PATCH 01/32] make.sh: name all perl packages to start with perl Adolf Belka
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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox