mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-09-06 03:12:21 +08:00
Merge remote-tracking branch 'upstream/master' into dev
This commit is contained in:
commit
15938d0da4
@ -14,31 +14,25 @@ stages:
|
|||||||
trigger: auto
|
trigger: auto
|
||||||
executor: []
|
executor: []
|
||||||
steps:
|
steps:
|
||||||
- step: build@gcc
|
- step: build@nodejs
|
||||||
name: build_gcc
|
name: build_dtk
|
||||||
displayName: GCC 构建
|
displayName: DTK构建
|
||||||
gccVersion: '9.4'
|
nodeVersion: 14.16.0
|
||||||
commands:
|
commands:
|
||||||
- sed -i 's/archive.ubuntu.com/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
|
|
||||||
- '# 换源'
|
|
||||||
- apt update
|
|
||||||
- echo "正在准备Debian 10环境..."
|
|
||||||
- apt install git -y >/dev/null 2>&1
|
|
||||||
- git clone https://gitlink.org.cn/shenmo7192/debian-10-container.git
|
- git clone https://gitlink.org.cn/shenmo7192/debian-10-container.git
|
||||||
- mv debian-10-container/Debian-10.tar.xz /mnt
|
- mv debian-10-container/Debian-10.tar.xz /mnt
|
||||||
|
- rm -rf debian-10-container
|
||||||
|
- WORK_DIR=`pwd`
|
||||||
- cd /mnt/
|
- cd /mnt/
|
||||||
- tar -xf Debian-10.tar.xz
|
- tar -xf Debian-10.tar.xz
|
||||||
- cd Debian-10
|
- cd Debian-10
|
||||||
- wget https://gitee.com/deepin-community-store/repo_auto_update_script/raw/master/spark-build.sh
|
- wget https://gitee.com/deepin-community-store/repo_auto_update_script/raw/master/spark-build.sh
|
||||||
- chmod +x spark-build.sh
|
- chmod +x spark-build.sh
|
||||||
|
- mkdir build-spark
|
||||||
|
- cp -r $WORK_DIR build-spark/spark-store
|
||||||
- echo "进入Debian 10环境"
|
- echo "进入Debian 10环境"
|
||||||
- chroot /mnt/Debian-10 /bin/bash /spark-build.sh
|
- chroot /mnt/Debian-10 /bin/bash /spark-build.sh
|
||||||
- cd /mnt/Debian-10/build-spark
|
- cd /mnt/Debian-10/build-spark
|
||||||
- 'mkdir target '
|
|
||||||
- for f in $(find . -type f -name "*.deb")
|
|
||||||
- do
|
|
||||||
- ' mv $f target'
|
|
||||||
- done
|
|
||||||
artifacts:
|
artifacts:
|
||||||
- name: BUILD_ARTIFACT
|
- name: BUILD_ARTIFACT
|
||||||
path:
|
path:
|
||||||
|
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,3 +1,10 @@
|
|||||||
|
spark-store (3.1.6) stable; urgency=medium
|
||||||
|
|
||||||
|
* 修复部分情况下无法选中正确的镜像源的问题
|
||||||
|
* 合入3.1.5以来的各项修改
|
||||||
|
|
||||||
|
-- shenmo <shenmo@spark-app.store> Fri, 30 Jan 2022 00:00:00 +0800
|
||||||
|
|
||||||
spark-store (3.1.5-5) stable; urgency=medium
|
spark-store (3.1.5-5) stable; urgency=medium
|
||||||
|
|
||||||
* 从所有镜像源中选取最快镜像源高速下载
|
* 从所有镜像源中选取最快镜像源高速下载
|
||||||
|
@ -30,7 +30,7 @@ int main(int argc, char *argv[])
|
|||||||
DAboutDialog dialog;
|
DAboutDialog dialog;
|
||||||
a.setAboutDialog(&dialog);
|
a.setAboutDialog(&dialog);
|
||||||
dialog.setLicense(QObject::tr("We publish this program under GPL V3"));
|
dialog.setLicense(QObject::tr("We publish this program under GPL V3"));
|
||||||
dialog.setVersion(DApplication::buildVersion("Version 3.1.5-5"));
|
dialog.setVersion(DApplication::buildVersion("Version 3.1.6"));
|
||||||
dialog.setProductIcon(QIcon::fromTheme("spark-store")); // 设置Logo
|
dialog.setProductIcon(QIcon::fromTheme("spark-store")); // 设置Logo
|
||||||
dialog.setProductName(QLabel::tr("Spark Store"));
|
dialog.setProductName(QLabel::tr("Spark Store"));
|
||||||
dialog.setDescription(
|
dialog.setDescription(
|
||||||
@ -51,7 +51,7 @@ int main(int argc, char *argv[])
|
|||||||
a.setOrganizationName("spark-union");
|
a.setOrganizationName("spark-union");
|
||||||
a.setOrganizationDomain("https://www.deepinos.org/");
|
a.setOrganizationDomain("https://www.deepinos.org/");
|
||||||
a.setApplicationName("Spark Store"); //不需要翻译,否则 ~/.local/share/ 下文件夹名称也被翻译为中文
|
a.setApplicationName("Spark Store"); //不需要翻译,否则 ~/.local/share/ 下文件夹名称也被翻译为中文
|
||||||
a.setApplicationVersion(DApplication::buildVersion("3.1.5-5"));
|
a.setApplicationVersion(DApplication::buildVersion("3.1.6"));
|
||||||
a.setApplicationAcknowledgementPage("https://gitee.com/deepin-community-store/spark-store");
|
a.setApplicationAcknowledgementPage("https://gitee.com/deepin-community-store/spark-store");
|
||||||
a.setApplicationDescription(
|
a.setApplicationDescription(
|
||||||
QObject::tr(
|
QObject::tr(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user