Skip to content

Commit eac0946

Browse files
committed
Merge branch 'stable'
2 parents a4560ce + 09e94d6 commit eac0946

File tree

536 files changed

+8468
-1020
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

536 files changed

+8468
-1020
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Overview
2+
3+
- Description of this Pull Request
4+
5+
# What I want the members to see
6+
7+
- Please make a list of key points that you would like to see reviewed (and if the logic is complex, please provide additional explanations)
8+
9+
# Members who would like to share this Pull Request
10+
11+
- Please use @mention function
12+
- @member1
13+
- @member2... (If more than one, please add them)
14+
15+
# Relevant Issue (optional)
16+
17+
- Links to issues
18+
- (If more than one, please add them.)
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# 概要
2+
3+
- このPull Requestの説明
4+
5+
# メンバーに見てほしいところ
6+
7+
- 重点的にレビューして欲しいところをリストアップして下さい (複雑なロジックであれば補足説明もお願いします)
8+
9+
# このPull Requestを共有しておきたいメンバー
10+
11+
- @mention機能を使用して下さい
12+
- @member1
13+
- @member2... (複数の場合書き足してください)
14+
15+
# 関連するIssue (任意)
16+
17+
- Githubのissueのリンク
18+
- (複数の場合書き足してください)

.vscode/launch.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "bashdb",
6+
"request": "launch",
7+
"name": "Bash-Debug (select script from list of sh files)",
8+
"cwd": "${workspaceFolder}",
9+
"program": "${command:SelectScriptName}",
10+
"showDebugOutput": true,
11+
"terminalKind": "debugConsole",
12+
"args": []
13+
}
14+
]
15+
}

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
FROM archlinux:latest
2-
RUN echo 'Server = https://mirrors.cat.net/archlinux/$repo/os/$arch' > /etc/pacman.d/mirrorlist
2+
RUN echo 'Server = http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch' > /etc/pacman.d/mirrorlist
33
RUN pacman -Syyu --noconfirm
4-
RUN pacman -S git archiso arch-install-scripts --noconfirm
4+
RUN pacman -S git archiso arch-install-scripts sudo --noconfirm
55
RUN git clone https://github.com/SereneTeam/alterlinux.git alterlinux/
66
WORKDIR /alterlinux
7-
RUN git checkout dev-stable
7+
RUN git checkout dev
88
RUN ./keyring.sh -ca
99
CMD ["./build.sh", "-b"]

Makefile

Lines changed: 39 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,46 @@
11
BUILD_SCRIPT = build.sh
2-
SHARE_OPTION = -b -c "zstd" -u "alter" -p "alter"
3-
DEBUG_OPTION = -t '-Xcompression-level 1' -x
2+
KERNEL = zen
3+
SHARE_OPTION = -b -c "zstd" -u "alter" -p "alter" -k "${KERNEL}"
4+
DEBUG_OPTION = -t '-Xcompression-level 1' -x -d
5+
ARCH_x86_64 = -a x86_64
6+
ARCH_i686 = -a i686
47

58

6-
xfce:
7-
@sudo ./${BUILD_SCRIPT} ${SHARE_OPTION} xfce
8-
@make cleanup
9+
full:
10+
@sudo ./fullbuild.sh
11+
@make clean
912

10-
plasma:
11-
@sudo ./${BUILD_SCRIPT} ${SHARE_OPTION} plasma
12-
@make cleanup
13+
xfce-64:
14+
@sudo ./${BUILD_SCRIPT} ${SHARE_OPTION} ${ARCH_x86_64} xfce
15+
@make clean
1316

14-
xfce-test:
15-
@sudo ./${BUILD_SCRIPT} ${SHARE_OPTION} ${DEBUG_OPTION} xfce
16-
@make cleanup
17+
plasma-64:
18+
@sudo ./${BUILD_SCRIPT} ${SHARE_OPTION} ${ARCH_x86_64} plasma
19+
@make clean
1720

18-
plasma-test:
19-
@sudo ./${BUILD_SCRIPT} ${SHARE_OPTION} ${DEBUG_OPTION} plasma
20-
@make cleanup
21+
releng-64:
22+
@sudo ./${BUILD_SCRIPT} ${SHARE_OPTION} ${ARCH_x86_64} releng
23+
@make clean
2124

22-
cleanup:
23-
@[[ -d ./work ]] && sudo rm -rf ./work
25+
lxde-64:
26+
@sudo ./${BUILD_SCRIPT} ${SHARE_OPTION} ${ARCH_x86_64} lxde
27+
@make clean
28+
29+
xfce-32:
30+
@sudo ./${BUILD_SCRIPT} ${SHARE_OPTION} ${ARCH_i686} xfce
31+
@make clean
32+
33+
plasma-32:
34+
@sudo ./${BUILD_SCRIPT} ${SHARE_OPTION} ${ARCH_i686} plasma
35+
@make clean
36+
37+
releng-32:
38+
@sudo ./${BUILD_SCRIPT} ${SHARE_OPTION} ${ARCH_i686} releng
39+
@make clean
40+
41+
lxde-32:
42+
@sudo ./${BUILD_SCRIPT} ${SHARE_OPTION} ${ARCH_i686} lxde
43+
@make clean
44+
45+
clean:
46+
@sudo ./${BUILD_SCRIPT} clean

0 commit comments

Comments
 (0)