Skip to content

Commit a5ee86a

Browse files
committed
[add] : Added share-extra module for pen4
1 parent 2d0e815 commit a5ee86a

19 files changed

Lines changed: 456 additions & 0 deletions

File tree

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
#
2+
# /etc/pacman.conf
3+
#
4+
# See the pacman.conf(5) manpage for option and repository directives
5+
#
6+
# Yamada Hayao
7+
# Twitter: @Hayao0819
8+
# Email : hayao@fascode.net
9+
#
10+
# (c) 2019-2021 Fascode Network.
11+
#
12+
13+
#
14+
# GENERAL OPTIONS
15+
#
16+
[options]
17+
# The following paths are commented out with their default values listed.
18+
# If you wish to use different paths, uncomment and update the paths.
19+
#RootDir = /
20+
#DBPath = /var/lib/pacman/
21+
#CacheDir = /var/cache/pacman/pkg/
22+
#LogFile = /var/log/pacman.log
23+
#GPGDir = /etc/pacman.d/gnupg/
24+
#HookDir = /etc/pacman.d/hooks/
25+
HoldPkg = pacman glibc
26+
#XferCommand = /usr/bin/curl -L -C - -f -o %o %u
27+
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
28+
#CleanMethod = KeepInstalled
29+
Architecture = pentium4
30+
31+
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
32+
#IgnorePkg =
33+
#IgnoreGroup =
34+
35+
#NoUpgrade =
36+
#NoExtract =
37+
38+
# Misc options
39+
#UseSyslog
40+
Color
41+
#NoProgressBar
42+
CheckSpace
43+
#VerbosePkgLists
44+
ParallelDownloads = 5
45+
46+
# By default, pacman accepts packages signed by keys that its local keyring
47+
# trusts (see pacman-key and its man page), as well as unsigned packages.
48+
SigLevel = Required DatabaseOptional
49+
LocalFileSigLevel = Optional
50+
#RemoteFileSigLevel = Required
51+
52+
# NOTE: You must run `pacman-key --init` before first using pacman; the local
53+
# keyring can then be populated with the keys of all official Arch Linux
54+
# packagers with `pacman-key --populate archlinux`.
55+
56+
#
57+
# REPOSITORIES
58+
# - can be defined here or included from another file
59+
# - pacman will search repositories in the order defined here
60+
# - local/custom mirrors can be added here or in separate files
61+
# - repositories listed first will take precedence when packages
62+
# have identical names, regardless of version number
63+
# - URLs will have $repo replaced by the name of the current repo
64+
# - URLs will have $arch replaced by the name of the architecture
65+
#
66+
# Repository entries are of the format:
67+
# [repo-name]
68+
# Server = ServerName
69+
# Include = IncludePath
70+
#
71+
# The header [repo-name] is crucial - it must be present and
72+
# uncommented to enable the repo.
73+
#
74+
75+
# The testing repositories are disabled by default. To enable, uncomment the
76+
# repo name header and Include lines. You can add preferred servers immediately
77+
# after the header, and they will be used before the default mirrors.
78+
79+
# Alter Linux
80+
[alter-stable]
81+
Include = /etc/pacman.d/mirrorlist-alter
82+
83+
#[testing]
84+
#Include = /etc/pacman.d/mirrorlist
85+
#Server = http://de.mirror.archlinux32.org/$arch/$repo/
86+
#Server = https://de.mirror.archlinux32.org/$arch/$repo/
87+
#Server = http://mirror.archlinux32.org/$arch/$repo/
88+
#Server = https://mirror.archlinux32.org/$arch/$repo/
89+
#Server = http://mirror.archlinux32.oss/$arch/$repo/
90+
91+
[core]
92+
Include = /etc/pacman.d/mirrorlist
93+
Server = http://de.mirror.archlinux32.org/$arch/$repo/
94+
Server = https://de.mirror.archlinux32.org/$arch/$repo/
95+
Server = http://mirror.archlinux32.org/$arch/$repo/
96+
Server = https://mirror.archlinux32.org/$arch/$repo/
97+
Server = http://mirror.archlinux32.oss/$arch/$repo/
98+
99+
[extra]
100+
Include = /etc/pacman.d/mirrorlist
101+
Server = http://de.mirror.archlinux32.org/$arch/$repo/
102+
Server = https://de.mirror.archlinux32.org/$arch/$repo/
103+
Server = http://mirror.archlinux32.org/$arch/$repo/
104+
Server = https://mirror.archlinux32.org/$arch/$repo/
105+
Server = http://mirror.archlinux32.oss/$arch/$repo/
106+
107+
#[community-testing]
108+
#Include = /etc/pacman.d/mirrorlist
109+
#Server = http://de.mirror.archlinux32.org/$arch/$repo/
110+
#Server = https://de.mirror.archlinux32.org/$arch/$repo/
111+
#Server = http://mirror.archlinux32.org/$arch/$repo/
112+
#Server = https://mirror.archlinux32.org/$arch/$repo/
113+
#Server = http://mirror.archlinux32.oss/$arch/$repo/
114+
115+
[community]
116+
Include = /etc/pacman.d/mirrorlist
117+
Server = http://de.mirror.archlinux32.org/$arch/$repo/
118+
Server = https://de.mirror.archlinux32.org/$arch/$repo/
119+
Server = http://mirror.archlinux32.org/$arch/$repo/
120+
Server = https://mirror.archlinux32.org/$arch/$repo/
121+
Server = http://mirror.archlinux32.oss/$arch/$repo/
122+
123+
# This is Yamada Hayao's personal repository.
124+
# It was used early but is now disabled.
125+
#[hayao]
126+
#Server = https://repo.dyama.net/$repo/$arch
127+
#Server = https://xn--d-8o2b.com/repo/$repo/$arch
128+
129+
# An example of a custom package repository. See the pacman manpage for
130+
# tips on creating your own repositories.
131+
#[custom]
132+
#SigLevel = Optional TrustAll
133+
#Server = file:///home/custompkgs

modules/share-extra/architecture

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99

1010
x86_64
1111
i686
12+
pen4
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#
2+
# Alter Linux package list
3+
#
4+
# Yamada Hayao
5+
# Twitter: @Hayao0819
6+
# Email : hayao@fascode.net
7+
#
8+
# (c) 2019-2021 Fascode Network.
9+
#
10+
# Base packages
11+
12+
13+
base-devel
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#
2+
# Alter Linux package list
3+
#
4+
# Yamada Hayao
5+
# Twitter: @Hayao0819
6+
# Email : hayao@fascode.net
7+
#
8+
# (c) 2019-2021 Fascode Network.
9+
#
10+
# Disk management
11+
12+
#-- GUI --#
13+
#baobab
14+
#gnome-disk-utility
15+
#gparted
16+
17+
#-- CLI --#
18+
clonezilla
19+
ddrescue
20+
dmraid
21+
fsarchiver
22+
gptfdisk
23+
hdparm
24+
lvm2
25+
mdadm
26+
nvme-cli
27+
partclone
28+
parted
29+
partimage
30+
sdparm
31+
smartmontools
32+
testdisk

modules/share-extra/packages.pen4/exclude

Whitespace-only changes.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#
2+
# Alter Linux package list
3+
#
4+
# Yamada Hayao
5+
# Twitter: @Hayao0819
6+
# Email : hayao@fascode.net
7+
#
8+
# (c) 2019-2021 Fascode Network.
9+
#
10+
# File System
11+
12+
13+
#-- mtp --#
14+
gvfs-mtp
15+
mtpfs
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#
2+
# Alter Linux package list
3+
#
4+
# Yamada Hayao
5+
# Twitter: @Hayao0819
6+
# Email : hayao@fascode.net
7+
#
8+
# (c) 2019-2021 Fascode Network.
9+
#
10+
# Fonts
11+
12+
13+
# font
14+
adobe-source-code-pro-fonts
15+
noto-fonts
16+
noto-fonts-cjk
17+
noto-fonts-emoji
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#
2+
# Alter Linux package list
3+
#
4+
# Yamada Hayao
5+
# Twitter: @Hayao0819
6+
# Email : hayao@fascode.net
7+
#
8+
# (c) 2019-2021 Fascode Network.
9+
#
10+
# Internet
11+
12+
13+
#-- connection --#
14+
network-manager-applet
15+
16+
17+
#-- mail client --#
18+
thunderbird
19+
# mailspring
20+
21+
22+
#-- web browser --#
23+
firefox
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#
2+
# Alter Linux package list
3+
#
4+
# Yamada Hayao
5+
# Twitter: @Hayao0819
6+
# Email : hayao@fascode.net
7+
#
8+
# (c) 2019-2021 Fascode Network.
9+
#
10+
# This package list will only be installed if the Japanese option is enabled.
11+
#
12+
# Japanese package
13+
14+
# fcitx config
15+
alterlinux-fcitx-conf
16+
17+
# fcitx
18+
fcitx
19+
fcitx-configtool
20+
fcitx-mozc
21+
fcitx-qt5
22+
23+
# Firefox
24+
#firefox-i18n-ja
25+
26+
# LibreOffice
27+
libreoffice-still-ja
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#
2+
# Alter Linux package list
3+
#
4+
# Yamada Hayao
5+
# Twitter: @Hayao0819
6+
# Email : hayao@fascode.net
7+
#
8+
# (c) 2019-2021 Fascode Network.
9+
#
10+
# Media
11+
12+
#-- bluetooth --#
13+
blueman
14+
bluez
15+
bluez-utils
16+
17+
18+
#-- media player --#
19+
vlc

0 commit comments

Comments
 (0)