Compare commits

..
Author SHA1 Message Date
shenmo7192andGitee 5a1a2390d2 system-config-printer
Signed-off-by: shenmo <jifengshenmo@outlook.com>
2024-10-10 04:21:23 +00:00
shenmo7192andGitee d21b5907d2 update link
Signed-off-by: shenmo <jifengshenmo@outlook.com>
2024-10-08 06:46:42 +00:00
shenmo7192andGitee c59a837cec torrent
Signed-off-by: shenmo <jifengshenmo@outlook.com>
2024-10-08 06:00:37 +00:00
shenmo7192andGitee e450748e92 gxde boot maker
Signed-off-by: shenmo <jifengshenmo@outlook.com>
2024-10-05 11:54:07 +00:00
gfdgd-xi 8393ff7d4e 调整dde-requ为gxde-requ 2024-10-05 13:39:40 +08:00
gfdgd-xi 9174b9be73 更换loong action构建时使用的apt源 2024-10-05 13:35:55 +08:00
gfdgd-xi 8f6fd15352 构建时会git clone tag 2024-10-05 09:38:41 +08:00
gfdgd-xi a4068fbe0c 调整riscv64构建 2024-10-05 09:14:34 +08:00
9 changed files with 30 additions and 18 deletions
+10 -6
View File
@@ -109,7 +109,7 @@ jobs:
sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM $UPATH/$tarName > /dev/null sshpass -p "$UPASSWD" ssh $UUSERS@$UHOST -p $UPORT $UPROGRAM $UPATH/$tarName > /dev/null
arm64: arm64:
runs-on: ubuntu-latest runs-on: ubuntu-24.04
steps: steps:
- name: Clone Repository To Get Script - name: Clone Repository To Get Script
run: | run: |
@@ -208,7 +208,7 @@ jobs:
- name: Configure Base System - name: Configure Base System
run: | run: |
bash .github/workflows/configure-building-enviroment-base-system.sh loong64 unstable $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://mirror.sjtu.edu.cn/debian-ports/ bash .github/workflows/configure-building-enviroment-base-system.sh loong64 unstable $REPOSITORY https://github.com/$GITHUB_REPOSITORY https://deb.debian.org/debian-ports/
- name: Building ${{ GITHUB.repository }} - name: Building ${{ GITHUB.repository }}
run: | run: |
@@ -255,20 +255,23 @@ jobs:
- name: Configure Base System - name: Configure Base System
run: | run: |
bash .github/workflows/configure-building-enviroment-base-system.sh riscv64 sid $REPOSITORY https://github.com/$GITHUB_REPOSITORY | true bash .github/workflows/configure-building-enviroment-base-system.sh riscv64 sid $REPOSITORY https://github.com/$GITHUB_REPOSITORY
- name: Building ${{ GITHUB.repository }} - name: Building ${{ GITHUB.repository }}
run: | run: |
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GO111MODULE=off dpkg-buildpackage -b | true set +e
env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh env GO111MODULE=off dpkg-buildpackage -b
- name: Remove Debug Package - name: Remove Debug Package
run: | run: |
env env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh rm -rfv ../*dbg*.deb | true set +e
env env gitPath=$(basename $GITHUB_REPOSITORY) bash .github/workflows/run-command-in-chroot.sh rm -rfv ../*dbg*.deb
- name: Pack tar - name: Pack tar
run: | run: |
set +e
cd $BOTTLEPATH cd $BOTTLEPATH
sudo tar -cvf ../deb-$(date +%s).tar *.deb | true sudo tar -cvf ../deb-$(date +%s).tar *.deb
- name: Push - name: Push
env: env:
@@ -279,6 +282,7 @@ jobs:
UPROGRAM: ${{ secrets.UPROGRAM }} UPROGRAM: ${{ secrets.UPROGRAM }}
UPORT: ${{ secrets.UPORT }} UPORT: ${{ secrets.UPORT }}
run: | run: |
set +e
sudo apt update sudo apt update
sudo apt install sshpass -y sudo apt install sshpass -y
mkdir -p ~/.ssh/ mkdir -p ~/.ssh/
@@ -40,8 +40,8 @@ sudo bash .github/workflows/pardus-chroot $bottlePath
sudo chroot $bottlePath apt update sudo chroot $bottlePath apt update
sudo chroot $bottlePath apt full-upgrade -y sudo chroot $bottlePath apt full-upgrade -y
sudo chroot $bottlePath apt install git -y sudo chroot $bottlePath apt install git -y
sudo chroot $bottlePath git clone $3 --depth=1 sudo chroot $bottlePath git clone $3 #--depth=1
sudo chroot $bottlePath git clone $4 --depth=1 sudo chroot $bottlePath git clone $4 #--depth=1
sudo mv $bottlePath/$(basename $3)/.github/workflows/* $bottlePath/$(basename $4)/.github/workflows -v sudo mv $bottlePath/$(basename $3)/.github/workflows/* $bottlePath/$(basename $4)/.github/workflows -v
# 修改版本号 # 修改版本号
#sudo sed -i "s/) UNRELEASED; urgency=medium/~$2) UNRELEASED; urgency=medium/g" $bottlePath/deep-wine-runner-qemu-system/debian/changelog #sudo sed -i "s/) UNRELEASED; urgency=medium/~$2) UNRELEASED; urgency=medium/g" $bottlePath/deep-wine-runner-qemu-system/debian/changelog
@@ -18,7 +18,7 @@ export DEBIAN_FRONTEND=noninteractive # 防止卡 tzdate
echo "deb [trusted=true] https://repo1.gxde.top/gxde-os/tianlu ./" >> /etc/apt/sources.list.d/gxde-os.list echo "deb [trusted=true] https://repo1.gxde.top/gxde-os/tianlu ./" >> /etc/apt/sources.list.d/gxde-os.list
echo "deb [trusted=true] https://repo1.gxde.top/gxde-os/bixie ./" >> /etc/apt/sources.list.d/gxde-os.list echo "deb [trusted=true] https://repo1.gxde.top/gxde-os/bixie ./" >> /etc/apt/sources.list.d/gxde-os.list
if [[ $(dpkg --print-architecture) == "loong64" ]]; then if [[ $(dpkg --print-architecture) == "loong64" ]]; then
echo "deb [trusted=true] http://mirror.sjtu.edu.cn/debian-ports unreleased main" > /etc/apt/sources.list.d/debian-unreleased.list echo "deb [trusted=true] http://deb.debian.org/debian-ports unreleased main" > /etc/apt/sources.list.d/debian-unreleased.list
fi fi
for i in {1..8}; for i in {1..8};
do do
+6 -4
View File
@@ -1,14 +1,16 @@
gxde (2024.10.04) UNRELEASED; urgency=medium gxde (2024.10.10) UNRELEASED; urgency=medium
* Add packages * Add package: gxde-boot-maker
* Add package : system-config-printer
-- gfdgd_xi <3025613752@qq.com> Fri, 04 Oct 2024 09:22:50 +0800 -- shenmo <shenmo@spark-app.store> Fri, 04 Oct 2024 09:22:50 +0800
gxde (2024.10.01) UNRELEASED; urgency=medium gxde (2024.10.01) UNRELEASED; urgency=medium
* fix 15.14 conponents dependencies * fix 15.14 conponents dependencies
*
-- gfdgd_xi <3025613752@qq.com> Fri, 04 Oct 2024 09:22:50 +0800 -- gfdgd_xi <3025613752@qq.com> Sat, 05 Oct 2024 13:39:12 +0800
gxde (2024.09.01) UNRELEASED; urgency=medium gxde (2024.09.01) UNRELEASED; urgency=medium
+5 -2
View File
@@ -23,12 +23,15 @@ Depends: ${misc:Depends},
gxde-picker, gxde-picker,
gxde-font-installer, gxde-font-installer,
deepin-movie, deepin-movie,
dde-requ, gxde-requ,
gxde-quick-hash, gxde-quick-hash,
gxde-sendbylan, gxde-sendbylan,
gxde-dict, gxde-dict,
gxde-system-assistant, gxde-system-assistant,
spark-store | aptss spark-store | aptss,
gxde-boot-maker,
system-config-printer
Description: GXDE New Desktop Environment Extra - Next Description: GXDE New Desktop Environment Extra - Next
This is a meta package depends GXDE New Desktop Envrionment Extra. This is a meta package depends GXDE New Desktop Envrionment Extra.
. .
+1 -1
View File
@@ -16,7 +16,7 @@ A1: Install GXDE by adding repositories.
Repository installation method: Repository installation method:
Download the deb file and install it from https://pan.huang1111.cn/s/k2nRvuB. Download the deb file and install it from https://repo-gxde.gfdgdxi.top/gxde-os/bixie/g/gxde-source/
After installation, run: After installation, run:
+1 -1
View File
@@ -16,7 +16,7 @@ A1: 加源安装GXDE
加源安装方法 加源安装方法
下载deb并安装 https://pan.huang1111.cn/s/k2nRvuB 下载deb并安装 https://repo-gxde.gfdgdxi.top/gxde-os/bixie/g/gxde-source/
安装之后 安装之后
+3
View File
@@ -3,11 +3,14 @@
**[中文](./Install.zh.md)** **[中文](./Install.zh.md)**
Multiline download(Recommended): https://repo-gxde.gfdgdxi.top/ISO/15.14/amd64/GXDE-OS_15.14_amd64.iso.torrent
huang111: https://pan.huang1111.cn/s/laonjFL huang111: https://pan.huang1111.cn/s/laonjFL
Sourceforge: https://sourceforge.net/projects/gxde-os/files Sourceforge: https://sourceforge.net/projects/gxde-os/files
**For ISO versions 15.13 and below, Legacy BIOS currently only supports installation using the Debian installer. Select "Advanced options" on the boot screen and then choose "Install." This issue will be resolved in version 15.14.** **For ISO versions 15.13 and below, Legacy BIOS currently only supports installation using the Debian installer. Select "Advanced options" on the boot screen and then choose "Install." This issue will be resolved in version 15.14.**
--- ---
+1 -1
View File
@@ -3,7 +3,7 @@
**[English](./Install.md)** **[English](./Install.md)**
多线加速下载(推荐使用): https://repo-gxde.gfdgdxi.top/ISO/15.14/amd64/GXDE-OS_15.14_amd64.iso.torrent
huang111https://pan.huang1111.cn/s/laonjFL huang111https://pan.huang1111.cn/s/laonjFL