penguins-eggs 10.0.36 → 10.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.oclif.manifest.json +1 -1
- package/README.md +26 -26
- package/addons/eggs/theme/livecd/{isolinux.main.alpine.cfg → isolinux.main.simple.cfg} +1 -1
- package/conf/distros/opensuse/README.md +3 -0
- package/conf/distros/opensuse/calamares/calamares-modules/bootloader-config/bootloader-config.sh +40 -0
- package/conf/distros/opensuse/calamares/calamares-modules/bootloader-config/module.yml +9 -0
- package/conf/distros/opensuse/calamares/calamares-modules/cleanup/cleanup.sh +13 -0
- package/conf/distros/opensuse/calamares/calamares-modules/cleanup/module.yml +9 -0
- package/conf/distros/opensuse/calamares/modules/bootloader.yml +57 -0
- package/conf/distros/opensuse/calamares/modules/displaymanager.yml +23 -0
- package/conf/distros/opensuse/calamares/modules/finished.yml +5 -0
- package/conf/distros/opensuse/calamares/modules/fstab.yml +12 -0
- package/conf/distros/opensuse/calamares/modules/locale.yml +98 -0
- package/conf/distros/opensuse/calamares/modules/luksopenswaphookcfg.yml +5 -0
- package/conf/distros/opensuse/calamares/modules/machineid.yml +17 -0
- package/conf/distros/opensuse/calamares/modules/mount.yml +56 -0
- package/conf/distros/opensuse/calamares/modules/packages.yml +6 -0
- package/conf/distros/opensuse/calamares/modules/partition.yml +242 -0
- package/conf/distros/opensuse/calamares/modules/removeuser.yml +15 -0
- package/conf/distros/opensuse/calamares/modules/unpackfs.yml +6 -0
- package/conf/distros/opensuse/calamares/modules/users.yml +18 -0
- package/conf/distros/opensuse/calamares/modules/welcome.yml +19 -0
- package/conf/distros/opensuse/calamares/settings.yml +57 -0
- package/dist/classes/bleach.js +1 -1
- package/dist/classes/distro.js +84 -65
- package/dist/classes/families/opensuse.js +3 -3
- package/dist/classes/incubation/fisherman.d.ts +1 -1
- package/dist/classes/incubation/fisherman.js +1 -1
- package/dist/classes/incubation/incubator.js +8 -0
- package/dist/classes/locales.d.ts +4 -4
- package/dist/classes/locales.js +33 -36
- package/dist/classes/ovary.d.ts +5 -9
- package/dist/classes/ovary.js +32 -62
- package/dist/classes/pacman.js +37 -0
- package/dist/classes/utils.js +18 -9
- package/dist/components/finished.js +5 -4
- package/dist/components/install.js +12 -8
- package/dist/krill/modules/del-live-user.js +3 -2
- package/dist/krill/modules/locale.js +5 -5
- package/dist/krill/modules/m-keyboard.js +4 -17
- package/dist/krill/modules/machine-id.js +4 -4
- package/dist/krill/modules/mkfs.d.ts +2 -0
- package/dist/krill/modules/mkfs.js +2 -0
- package/dist/krill/modules/unpackfs.js +3 -2
- package/dist/krill/sequence.d.ts +9 -6
- package/dist/krill/sequence.js +162 -258
- package/dracut/README.md +8 -0
- package/manpages/doc/man/eggs.1.gz +0 -0
- package/manpages/doc/man/eggs.html +4 -4
- package/package.json +8 -5
- package/syslinux/chain.c32 +0 -0
- package/syslinux/isolinux.bin +0 -0
- package/syslinux/ldlinux.c32 +0 -0
- package/syslinux/libcom32.c32 +0 -0
- package/syslinux/libutil.c32 +0 -0
- package/syslinux/vesamenu.c32 +0 -0
- /package/addons/eggs/theme/livecd/{isolinux.main.original.cfg → isolinux.main.full.cfg} +0 -0
package/dracut/README.md
CHANGED
|
Binary file
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
7
|
</head>
|
|
8
8
|
<body>
|
|
9
|
-
<h1>eggs(1) -- the reproductive system of penguins: eggs v10.0.
|
|
9
|
+
<h1>eggs(1) -- the reproductive system of penguins: eggs v10.0.38</h1>
|
|
10
10
|
<h1>SYNOPSIS</h1>
|
|
11
11
|
<p>eggs is a console utility, in active development, who let you to remaster your system and redistribuite it as live ISO image.</p>
|
|
12
12
|
<h1>INSTALL</h1>
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
</code></pre>
|
|
16
16
|
<p>Arch</p>
|
|
17
17
|
<pre><code>$ sudo pacman -S penguins-eggs
|
|
18
|
-
$ sudo pacman -U penguins-eggs_10.0.
|
|
18
|
+
$ sudo pacman -U penguins-eggs_10.0.38-bionic-1_amd64-1-x86_64.pkg.tar.zst
|
|
19
19
|
</code></pre>
|
|
20
20
|
<p>Debian/Devuan/Ubuntu</p>
|
|
21
21
|
<pre><code>$ sudo apt install penguins-eggs
|
|
22
|
-
$ sudo dpkg -i penguins-eggs_10.0.
|
|
22
|
+
$ sudo dpkg -i penguins-eggs_10.0.38-bionic-1_amd64.deb
|
|
23
23
|
</code></pre>
|
|
24
24
|
<p>Manjaro</p>
|
|
25
25
|
<pre><code>$ sudo pamac install penguins-eggs
|
|
@@ -27,7 +27,7 @@ $ sudo dpkg -i penguins-eggs_10.0.36-1_amd64.deb
|
|
|
27
27
|
<h1>USAGE</h1>
|
|
28
28
|
<pre><code>$ eggs (-v|--version|version)
|
|
29
29
|
|
|
30
|
-
penguins-eggs/10.0.
|
|
30
|
+
penguins-eggs/10.0.38
|
|
31
31
|
$ eggs --help [COMMAND]
|
|
32
32
|
|
|
33
33
|
USAGE
|
package/package.json
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
"name": "penguins-eggs",
|
|
3
3
|
"shortName": "eggs",
|
|
4
4
|
"description": "A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others",
|
|
5
|
-
"version": "10.0.
|
|
5
|
+
"version": "10.0.38",
|
|
6
6
|
"author": "Piero Proietti",
|
|
7
7
|
"bin": {
|
|
8
8
|
"eggs": "./bin/run.js"
|
|
9
9
|
},
|
|
10
10
|
"bugs": "https://github.com/pieroproietti/penguins-eggs/issues",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@oclif/core": "^4.0.
|
|
12
|
+
"@oclif/core": "^4.0.22",
|
|
13
13
|
"@oclif/plugin-autocomplete": "^3.2.3",
|
|
14
14
|
"@oclif/plugin-help": "^6.2.11",
|
|
15
15
|
"@oclif/plugin-version": "^2.2.12",
|
|
@@ -19,6 +19,8 @@
|
|
|
19
19
|
"cli-cursor": "^4.0.0",
|
|
20
20
|
"debug": "^4.3.7",
|
|
21
21
|
"ink": "^5.0.1",
|
|
22
|
+
"ink-progress-bar": "^3.0.0",
|
|
23
|
+
"ink-spinner": "^5.0.0",
|
|
22
24
|
"inquirer": "^9.3.6",
|
|
23
25
|
"js-yaml": "^4.1.0",
|
|
24
26
|
"mustache": "^4.2.0",
|
|
@@ -37,7 +39,7 @@
|
|
|
37
39
|
"@types/debug": "^4.1.12",
|
|
38
40
|
"@types/inquirer": "^9.0.7",
|
|
39
41
|
"@types/js-yaml": "^4.0.9",
|
|
40
|
-
"@types/mocha": "^10.0.
|
|
42
|
+
"@types/mocha": "^10.0.8",
|
|
41
43
|
"@types/mustache": "^4.2.5",
|
|
42
44
|
"@types/netmask": "^2.0.5",
|
|
43
45
|
"@types/node": "^20.16.1",
|
|
@@ -50,7 +52,7 @@
|
|
|
50
52
|
"eslint-config-oclif-typescript": "^3.1.11",
|
|
51
53
|
"eslint-config-prettier": "^9.1.0",
|
|
52
54
|
"mocha": "^10.7.3",
|
|
53
|
-
"oclif": "^4.14.
|
|
55
|
+
"oclif": "^4.14.32",
|
|
54
56
|
"perrisbrewery": "^10.0.1",
|
|
55
57
|
"prettier": "^3.3.3",
|
|
56
58
|
"shx": "^0.3.4",
|
|
@@ -73,7 +75,8 @@
|
|
|
73
75
|
"/manpages",
|
|
74
76
|
"/mkinitcpio",
|
|
75
77
|
"/mkinitfs",
|
|
76
|
-
"/scripts"
|
|
78
|
+
"/scripts",
|
|
79
|
+
"/syslinux"
|
|
77
80
|
],
|
|
78
81
|
"homepage": "https://penguins-eggs.net",
|
|
79
82
|
"keywords": [
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|