mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-12-15 13:22:04 +08:00
Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9ac0c67a25 | |||
| cb66f5e903 | |||
| 842f0893b3 | |||
| f5a35a332a | |||
| 0ba0587e17 | |||
| fd4b52e384 | |||
| c65eea12a6 | |||
| d6e01a5803 | |||
| 04aeac62f8 | |||
| db79a59fb6 | |||
| 9b1b432e7c | |||
| cfafc04628 | |||
| 8450e6afa6 | |||
| 2a4d33e73f | |||
| 8c2a10ebbc | |||
| 2bec2de456 | |||
| 90dea4ed2e | |||
| 06ca1b7a97 | |||
| f9e2cea98e | |||
| 1bbf7027d3 |
25
debian/changelog
vendored
25
debian/changelog
vendored
@@ -1,3 +1,28 @@
|
||||
spark-store (4.2.6.2) stable; urgency=medium
|
||||
* 新增:支持arm架构搜索
|
||||
|
||||
-- shenmo <shenmo@spark-app.store>
|
||||
|
||||
|
||||
spark-store (4.2.6.1) stable; urgency=medium
|
||||
* 修复:mint下更新检测不正常
|
||||
|
||||
-- shenmo <shenmo@spark-app.store>
|
||||
|
||||
|
||||
spark-store (4.2.6) stable; urgency=medium
|
||||
* 修复:截图加载失败时点击闪退
|
||||
|
||||
-- shenmo <shenmo@spark-app.store>
|
||||
|
||||
|
||||
spark-store (4.2.5.1) stable; urgency=medium
|
||||
* 调整:重写了spark-dstore-patch,速度提升,尤其对机械硬盘下
|
||||
* 调整:优化了aptss源文件同步策略
|
||||
|
||||
-- shenmo <shenmo@spark-app.store>
|
||||
|
||||
|
||||
spark-store (4.2.5) stable; urgency=medium
|
||||
* 修复:ssinstall在文件不存在时仍然报安装成功
|
||||
* 修复:删除不再需要的依赖:libc6-dev
|
||||
|
||||
2
debian/control
vendored
2
debian/control
vendored
@@ -40,7 +40,7 @@ Depends:${shlibs:Depends}, ${misc:Depends},
|
||||
openssl,
|
||||
dde-qt5integration,
|
||||
aria2,
|
||||
gcc,
|
||||
gnupg,
|
||||
zenity,
|
||||
policykit-1,
|
||||
libnotify-bin
|
||||
|
||||
@@ -11,7 +11,6 @@ TEMPLATE = subdirs
|
||||
CONFIG += wayland-compositor
|
||||
|
||||
SUBDIRS += \
|
||||
src/spark-dstore-patch \
|
||||
src/spark-store.pro
|
||||
|
||||
# https://wiki.debian.org/Hardening
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
QString SparkAPI::serverUrl = "";
|
||||
#ifdef __x86_64__
|
||||
QString SparkAPI::serverUrlDir = "store";
|
||||
|
||||
#elif __aarch64__
|
||||
QString SparkAPI::serverUrlDir = "aarch64-store";
|
||||
#endif
|
||||
|
||||
@@ -58,8 +58,9 @@ void AppIntoPage::openUrl(const QUrl &url)
|
||||
// 获取图标
|
||||
QNetworkRequest request;
|
||||
QNetworkAccessManager *manager = new QNetworkAccessManager(this);
|
||||
qDebug() << api->getImgServerUrl() + SparkAPI::getArchDir() + url.path() + "/icon.png";
|
||||
request.setUrl(QUrl(api->getImgServerUrl() + SparkAPI::getArchDir() + url.path() + "/icon.png"));
|
||||
QString pkgUrlBase = api->getImgServerUrl() + SparkAPI::getArchDir() + url.path();
|
||||
qDebug() << "Icon URL: " << pkgUrlBase + "/icon.png";
|
||||
request.setUrl(QUrl(pkgUrlBase + "/icon.png"));
|
||||
request.setRawHeader("User-Agent", "Mozilla/5.0");
|
||||
request.setRawHeader("Content-Type", "charset='utf-8'");
|
||||
manager->get(request);
|
||||
@@ -74,20 +75,13 @@ void AppIntoPage::openUrl(const QUrl &url)
|
||||
manager->deleteLater(); });
|
||||
|
||||
// 获取截图
|
||||
QJsonParseError error;
|
||||
QJsonArray array = QJsonDocument::fromJson(info.value("img_urls").toString().toUtf8(), &error).array();
|
||||
QStringList imglist;
|
||||
foreach (const QJsonValue &value, array) {
|
||||
QString imgUrl = value.toString();
|
||||
imglist.append(imgUrl);
|
||||
}
|
||||
qDebug() << imglist;
|
||||
|
||||
for (int i = 0; i < imglist.size(); i++)
|
||||
for (int i = 0; i < 5 /* 魔法数字,最多五个截图 */; i++)
|
||||
{
|
||||
QString imgUrl = pkgUrlBase + "/screen_" + QString::number(i + 1) + ".png";
|
||||
QNetworkRequest request;
|
||||
QNetworkAccessManager *manager = new QNetworkAccessManager(this);
|
||||
request.setUrl(QUrl(imglist.value(i)));
|
||||
request.setUrl(QUrl(imgUrl));
|
||||
request.setRawHeader("User-Agent", "Mozilla/5.0");
|
||||
request.setRawHeader("Content-Type", "charset='utf-8'");
|
||||
manager->get(request);
|
||||
@@ -95,17 +89,21 @@ void AppIntoPage::openUrl(const QUrl &url)
|
||||
{
|
||||
QByteArray jpegData = reply->readAll();
|
||||
QPixmap pixmap;
|
||||
pixmap.loadFromData(jpegData);
|
||||
pixmap.scaled(100, 100, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
|
||||
image_show *img=new image_show(this);
|
||||
img->setImage(pixmap);
|
||||
//img->setScaledContents(true);
|
||||
QListWidgetItem* pItem = new QListWidgetItem();
|
||||
pItem->setSizeHint(QSize(280, 200));
|
||||
ui->listWidget->addItem(pItem);
|
||||
ui->listWidget->setItemWidget(pItem, img);
|
||||
if (pixmap.loadFromData(jpegData))
|
||||
{
|
||||
pixmap.scaled(100, 100, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
|
||||
image_show *img = new image_show(this);
|
||||
img->setImage(pixmap);
|
||||
// img->setScaledContents(true);
|
||||
QListWidgetItem *pItem = new QListWidgetItem();
|
||||
pItem->setSizeHint(QSize(280, 200));
|
||||
ui->listWidget->addItem(pItem);
|
||||
ui->listWidget->setItemWidget(pItem, img);
|
||||
qDebug() << imgUrl;
|
||||
}
|
||||
|
||||
manager->deleteLater(); });
|
||||
manager->deleteLater();
|
||||
});
|
||||
}
|
||||
|
||||
// Check UOS
|
||||
@@ -201,24 +199,20 @@ void AppIntoPage::clear()
|
||||
ui->tag_community->hide();
|
||||
ui->icon->clear();
|
||||
ui->title->clear();
|
||||
ui->version->clear();
|
||||
ui->author->clear();
|
||||
ui->d_author->clear();
|
||||
ui->d_size->clear();
|
||||
ui->d_update->clear();
|
||||
ui->d_pkgname->clear();
|
||||
ui->d_website->clear();
|
||||
ui->d_contributor->clear();
|
||||
ui->label_2->clear();
|
||||
ui->downloadButton->hide();
|
||||
ui->downloadButton->setEnabled(false);
|
||||
ui->pushButton_3->hide();
|
||||
|
||||
// QListWidgetItem *item = nullptr;
|
||||
// while ((item = ui->listWidget->takeItem(0)) != nullptr)
|
||||
// {
|
||||
// QWidget *card = ui->listWidget->itemWidget(item);
|
||||
// if (card)
|
||||
// {
|
||||
// card->deleteLater();
|
||||
// card = nullptr;
|
||||
// }
|
||||
// delete item;
|
||||
// item = nullptr;
|
||||
// }
|
||||
|
||||
|
||||
ui->listWidget->clear(); // NOTE: QListWidget::clear() 会析构所有 items
|
||||
}
|
||||
|
||||
@@ -40,30 +40,24 @@ void AppListPage::getAppList(QString type)
|
||||
if (isDark)
|
||||
{
|
||||
theme = "theme=dark";
|
||||
#ifdef __aarch64__
|
||||
theme = "dark";
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
theme = "theme=light";
|
||||
#ifdef __aarch64__
|
||||
theme = "";
|
||||
#endif
|
||||
}
|
||||
if (type == "")
|
||||
{
|
||||
url = api->getServerUrl() + SparkAPI::getArchDir() + "/#/flamescion/?" + theme;
|
||||
#ifdef __aarch64__
|
||||
url = api->getServerUrl() + "aarch64-store/#/"+ theme;
|
||||
#endif
|
||||
url = api->getServerUrl() + SparkAPI::getArchDir() + "/#/flamescion/?" + theme + "&" + "arch=x86";
|
||||
#ifdef __aarch64__
|
||||
url = api->getServerUrl() + SparkAPI::getArchDir() + "/#/flamescion/?" + theme + "&" + "arch=aarch64";
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
url = api->getServerUrl() + SparkAPI::getArchDir() + "/#/flamescion/applist?type=" + type + "&" + theme;
|
||||
#ifdef __aarch64__
|
||||
url = api->getServerUrl() + "aarch64-store/#/"+ theme + type;
|
||||
#endif
|
||||
url = api->getServerUrl() + SparkAPI::getArchDir() + "/#/flamescion/applist?type=" + type + "&" + theme + "&" + "arch=x86";
|
||||
#ifdef __aarch64__
|
||||
url = api->getServerUrl() + SparkAPI::getArchDir() + "/#/flamescion/applist?type=" + type + "&" + theme + "&" + "arch=aarch64";
|
||||
#endif
|
||||
}
|
||||
|
||||
ui->webEngineView->setUrl(url);
|
||||
@@ -85,7 +79,11 @@ void AppListPage::getSearchList(const QString &keyword)
|
||||
{
|
||||
theme = "theme=light";
|
||||
}
|
||||
url = api->getServerUrl() + SparkAPI::getArchDir() + "/#/flamescion/search?keywords=" + QUrl::toPercentEncoding(keyword) + "&" + theme;
|
||||
|
||||
url = api->getServerUrl() + SparkAPI::getArchDir() + "/#/flamescion/search?keywords=" + QUrl::toPercentEncoding(keyword) + "&" + theme + "&" + "arch=x86";
|
||||
#ifdef __aarch64__
|
||||
url = api->getServerUrl() + SparkAPI::getArchDir() + "/#/flamescion/search?keywords=" + QUrl::toPercentEncoding(keyword) + "&" + theme + "&" + "arch=aarch64";
|
||||
#endif
|
||||
ui->webEngineView->setUrl(url);
|
||||
delete api;
|
||||
}
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
TARGET = spark-dstore-patch
|
||||
TEMPLATE += app
|
||||
QT += widgets
|
||||
SOURCES += spark-dstore-tool.cpp
|
||||
|
||||
# Default rules for deployment.
|
||||
qnx: target.path = /tmp/spark-store/bin
|
||||
else: unix:!android: target.path = /opt/durapps/spark-store/bin
|
||||
!isEmpty(target.path): INSTALLS += target
|
||||
@@ -1,195 +0,0 @@
|
||||
#include <QCoreApplication>
|
||||
#include <QDir>
|
||||
#include <QJsonObject>
|
||||
#include <QJsonDocument>
|
||||
#include <QDebug>
|
||||
#include <QDirIterator>
|
||||
#include <QProcess>
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
QList<QJsonObject> enumAppInfoList()
|
||||
{
|
||||
QList<QJsonObject> appInfoList;
|
||||
QDir apps("/opt/apps");
|
||||
auto list = apps.entryList(QDir::Dirs | QDir::NoDotAndDotDot);
|
||||
for (auto &appID : list) {
|
||||
auto infoPath = apps.absoluteFilePath(appID + "/info");
|
||||
QFile infoFile(infoPath);
|
||||
if (!infoFile.open(QIODevice::ReadOnly)) {
|
||||
continue;
|
||||
}
|
||||
auto doc = QJsonDocument::fromJson(infoFile.readAll());
|
||||
appInfoList.push_back(doc.object());
|
||||
}
|
||||
return appInfoList;
|
||||
}
|
||||
//这段是去找appid和info,没看懂用来干啥的,在此之后info文件也没再用过
|
||||
//可能以后版本的实现会用到,等官方加功能再说
|
||||
void linkDir(const QString &source, const QString &target)
|
||||
{
|
||||
auto ensureTargetDir = [](const QString &targetFile) {
|
||||
QFileInfo t(targetFile);
|
||||
QDir tDir(t.dir());
|
||||
tDir.mkpath(".");
|
||||
};
|
||||
|
||||
QDir sourceDir(source);
|
||||
QDir targetDir(target);
|
||||
QDirIterator iter(source, QDir::Files | QDir::NoDotAndDotDot, QDirIterator::Subdirectories);
|
||||
while (iter.hasNext()) {
|
||||
auto sourceFile = iter.next();
|
||||
auto targetFile = targetDir.absoluteFilePath(sourceDir.relativeFilePath(sourceFile));
|
||||
|
||||
QFileInfo tfi(targetFile);
|
||||
// if (tfi.isSymLink() && (tfi.canonicalFilePath() == sourceFile)) {
|
||||
//这里官方应该是写错了,否则会每触发一次就把所有软链接都删了重新创建一次
|
||||
if (tfi.isSymLink() && (tfi.symLinkTarget() == sourceFile)) {
|
||||
continue;
|
||||
} else {
|
||||
QFile::remove(targetFile);
|
||||
}
|
||||
|
||||
ensureTargetDir(targetFile);
|
||||
auto ret = symlink(sourceFile.toStdString().c_str(), targetFile.toStdString().c_str());
|
||||
if (0 != ret) {
|
||||
qDebug() << "link failed" << sourceFile << "=>" << targetFile << ret;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//reset Dynamic library rpath
|
||||
void setRpath(const QString &file, const QString &path)
|
||||
{
|
||||
if (!QFileInfo::exists(path))
|
||||
return;
|
||||
QProcess p;
|
||||
auto cmd = "patchelf " + file + " --set-rpath " + path;
|
||||
p.start("bash", QStringList {"-c", cmd});
|
||||
p.waitForFinished();
|
||||
}
|
||||
|
||||
QString getGlic()
|
||||
{
|
||||
//get arch & glibc
|
||||
QProcess p;
|
||||
auto cmd = "gcc -dumpmachine";
|
||||
p.start("bash", QStringList {"-c", cmd});
|
||||
p.waitForFinished();
|
||||
return p.readAll();
|
||||
}
|
||||
|
||||
void linkApp(const QJsonObject &app)
|
||||
{
|
||||
auto appID = app.value("appid").toString();
|
||||
auto appEntriesDir = QDir("/opt/apps/" + appID + "/entries");
|
||||
auto appLibsDir = QDir("/opt/apps/" + appID + "/files/lib");
|
||||
auto autoStartDir = QDir(appEntriesDir.absoluteFilePath("autostart"));
|
||||
|
||||
bool autoStart = app.value("permissions").toObject().value("autostart").toBool();
|
||||
if (autoStart) {
|
||||
linkDir(appEntriesDir.absoluteFilePath("autostart"), "/etc/xdg/autostart");
|
||||
}
|
||||
|
||||
// link application
|
||||
auto sysShareDir = QDir("/usr/share");
|
||||
linkDir(appEntriesDir.absoluteFilePath("applications"), sysShareDir.absoluteFilePath("applications"));
|
||||
linkDir(appEntriesDir.absoluteFilePath("icons"), sysShareDir.absoluteFilePath("icons"));
|
||||
linkDir(appEntriesDir.absoluteFilePath("mime"), sysShareDir.absoluteFilePath("mime"));
|
||||
linkDir(appEntriesDir.absoluteFilePath("glib-2.0"), sysShareDir.absoluteFilePath("glib-2.0"));
|
||||
linkDir(appEntriesDir.absoluteFilePath("services"), sysShareDir.absoluteFilePath("dbus-1/services"));
|
||||
linkDir(appEntriesDir.absoluteFilePath("GConf"), sysShareDir.absoluteFilePath("GConf"));
|
||||
linkDir(appEntriesDir.absoluteFilePath("help"), sysShareDir.absoluteFilePath("help"));
|
||||
linkDir(appEntriesDir.absoluteFilePath("locale"), sysShareDir.absoluteFilePath("locale"));
|
||||
linkDir(appEntriesDir.absoluteFilePath("fcitx"), sysShareDir.absoluteFilePath("fcitx"));
|
||||
linkDir(appEntriesDir.absoluteFilePath("polkit"), sysShareDir.absoluteFilePath("polkit-1"));
|
||||
linkDir(appEntriesDir.absoluteFilePath("fonts/conf"), "/etc/fonts/conf.d");
|
||||
linkDir(appEntriesDir.absoluteFilePath("fonts/files"), sysShareDir.absoluteFilePath("fonts"));
|
||||
|
||||
|
||||
//原来会导致Gtk相关应用翻译缺失,补足了
|
||||
|
||||
|
||||
auto pluginDir = QDir(appEntriesDir.absoluteFilePath("plugins"));
|
||||
if (pluginDir.exists()) {
|
||||
QString arch = getGlic();
|
||||
// if (pluginDir.exists()) {
|
||||
// QDirIterator iter(pluginDir.absolutePath(), QDir::Files | QDir::NoDotAndDotDot, QDirIterator::Subdirectories);
|
||||
// while (iter.hasNext()) {
|
||||
// auto sourceFile = iter.next();
|
||||
// setRpath(sourceFile, appLibsDir.absolutePath()); //set rpath
|
||||
// }
|
||||
// }
|
||||
|
||||
linkDir(appEntriesDir.absoluteFilePath("plugins/fcitx"), "/usr/lib/" + arch + "/fcitx");
|
||||
linkDir(appEntriesDir.absoluteFilePath("plugins/browser"), "/usr/lib/mozilla/plugins");
|
||||
}
|
||||
}
|
||||
|
||||
void cleanLink()
|
||||
{
|
||||
auto cleanDirBrokenLink = [](const QString &dir) {
|
||||
QProcess p;
|
||||
auto cmd = "find " + dir + " -xtype l -delete";
|
||||
p.start("bash", QStringList {"-c", cmd});
|
||||
p.waitForFinished();
|
||||
};
|
||||
|
||||
QString arch = getGlic();
|
||||
auto sysShareDir = QDir("/usr/share");
|
||||
cleanDirBrokenLink(sysShareDir.absoluteFilePath("applications"));
|
||||
cleanDirBrokenLink(sysShareDir.absoluteFilePath("icons"));
|
||||
cleanDirBrokenLink(sysShareDir.absoluteFilePath("mime/packages"));
|
||||
cleanDirBrokenLink(sysShareDir.absoluteFilePath("glib-2.0"));
|
||||
cleanDirBrokenLink(sysShareDir.absoluteFilePath("dbus-1/services"));
|
||||
cleanDirBrokenLink("/etc/xdg/autostart");
|
||||
cleanDirBrokenLink(sysShareDir.absoluteFilePath("fcitx"));
|
||||
cleanDirBrokenLink(sysShareDir.absoluteFilePath("help"));
|
||||
cleanDirBrokenLink(sysShareDir.absoluteFilePath("locale"));
|
||||
cleanDirBrokenLink("/usr/lib/" + arch + "/fcitx");
|
||||
cleanDirBrokenLink("/usr/lib/mozilla/plugins");
|
||||
cleanDirBrokenLink(sysShareDir.absoluteFilePath("polkit-1/actions"));
|
||||
cleanDirBrokenLink(sysShareDir.absoluteFilePath("fonts"));
|
||||
cleanDirBrokenLink("/etc/fonts/conf.d");
|
||||
}
|
||||
|
||||
void update()
|
||||
{
|
||||
QProcess p;
|
||||
auto cmd = "glib-compile-schemas /usr/share/glib-2.0/schemas/";
|
||||
p.start("bash", QStringList {"-c", cmd});
|
||||
p.waitForFinished();
|
||||
|
||||
cmd = "update-icon-caches /usr/share/icons/*";
|
||||
p.start("bash", QStringList {"-c", cmd});
|
||||
p.waitForFinished();
|
||||
|
||||
cmd = "update-desktop-database -q";
|
||||
p.start("bash", QStringList {"-c", cmd});
|
||||
p.waitForFinished();
|
||||
|
||||
cmd = "update-mime-database -V /usr/share/mime";
|
||||
p.start("bash", QStringList {"-c", cmd});
|
||||
p.waitForFinished();
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
QCoreApplication app(argc, argv);
|
||||
|
||||
cleanLink();
|
||||
|
||||
for (auto &a : enumAppInfoList()) {
|
||||
linkApp(a);
|
||||
}
|
||||
qInfo()<<"Spark dstore patch (c) The Spark Project 2022-Now. Modified from deepin-app-store-tool";
|
||||
|
||||
// trigger
|
||||
update();
|
||||
|
||||
return 0;
|
||||
}
|
||||
13
tool/aptss
13
tool/aptss
@@ -28,19 +28,10 @@ echo "${TRANSHELL_CONTENT_RUNNING_IN_NOT_ROOT_USER}"
|
||||
|
||||
else
|
||||
|
||||
if is_empty_dir /etc/apt/sources.list.d/ ;then
|
||||
echo "${TRANSHELL_CONTENT_INFO_SOURCES_LIST_D_IS_EMPTY}"
|
||||
else
|
||||
|
||||
ln -sf /etc/apt/sources.list.d/* /opt/durapps/spark-store/bin/apt-fast-conf/sources.list.d
|
||||
###让这里和系统同步,先链接,然后清除无效链接
|
||||
for a in `find /opt/durapps/spark-store/bin/apt-fast-conf/sources.list.d -type l`
|
||||
do
|
||||
stat -L $a >/dev/null 2>/dev/null
|
||||
if [ $? -gt 0 ];then
|
||||
rm $a
|
||||
fi
|
||||
done
|
||||
fi
|
||||
find /opt/durapps/spark-store/bin/apt-fast-conf/sources.list.d -xtype l -delete
|
||||
|
||||
fi
|
||||
|
||||
|
||||
124
tool/spark-dstore-patch
Executable file
124
tool/spark-dstore-patch
Executable file
@@ -0,0 +1,124 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo "----------------Running Spark DStore Patch----------------"
|
||||
#!/bin/bash
|
||||
|
||||
|
||||
enumAppInfoList() {
|
||||
appInfoList=()
|
||||
apps="/opt/apps"
|
||||
list=$(ls $apps)
|
||||
for appID in $list; do
|
||||
appInfoList+=("$appID")
|
||||
done
|
||||
echo "${appInfoList[@]}"
|
||||
}
|
||||
linkDir() {
|
||||
ensureTargetDir() {
|
||||
targetFile=$1
|
||||
t=$(dirname "$targetFile")
|
||||
mkdir -p "$t"
|
||||
}
|
||||
|
||||
source=$1
|
||||
target=$2
|
||||
sourceDir=$(dirname "$source")
|
||||
targetDir=$(dirname "$target")
|
||||
find "$source" -type f | while read sourceFile; do
|
||||
targetFile="$targetDir/${sourceFile#$sourceDir/}"
|
||||
if [ -L "$targetFile" ] && [ "$(readlink "$targetFile")" = "$sourceFile" ]; then
|
||||
continue
|
||||
else
|
||||
rm -f "$targetFile"
|
||||
fi
|
||||
|
||||
ensureTargetDir "$targetFile"
|
||||
ln -s "$sourceFile" "$targetFile"
|
||||
done
|
||||
}
|
||||
|
||||
linkApp() {
|
||||
appID=$1
|
||||
appEntriesDir="/opt/apps/$appID/entries"
|
||||
appLibsDir="/opt/apps/$appID/files/lib"
|
||||
autoStartDir="$appEntriesDir/autostart"
|
||||
|
||||
if [ -d "$autoStartDir" ]; then
|
||||
linkDir "$autoStartDir" "/etc/xdg/autostart"
|
||||
fi
|
||||
|
||||
# link application
|
||||
sysShareDir="/usr/share"
|
||||
for folder in "$appEntriesDir/applications" "$appEntriesDir/icons" "$appEntriesDir/mime" "$appEntriesDir/glib-2.0" "$appEntriesDir/services" "$appEntriesDir/GConf" "$appEntriesDir/help" "$appEntriesDir/locale" "$appEntriesDir/fcitx"; do
|
||||
if [ ! -d "$folder" ]; then
|
||||
continue
|
||||
fi
|
||||
if [ "$folder" = "$appEntriesDir/polkit" ]; then
|
||||
linkDir "$folder" "/usr/share/polkit-1"
|
||||
elif [ "$folder" = "$appEntriesDir/fonts/conf" ]; then
|
||||
linkDir "$folder" "/etc/fonts/conf.d"
|
||||
else
|
||||
linkDir "$folder" "$sysShareDir/${folder##*/}"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
|
||||
# execute linkApp function for each app and print output
|
||||
for app in $(enumAppInfoList); do
|
||||
linkApp "$app" &
|
||||
|
||||
if [ "$1" = "--debug" ]; then
|
||||
echo "Linking for $app"
|
||||
fi
|
||||
# remove broken links in /usr/share
|
||||
done
|
||||
wait
|
||||
|
||||
if [ "$1" = "--debug" ]; then
|
||||
echo "Cleaning links and updating databases and caches..."
|
||||
fi
|
||||
|
||||
|
||||
if [ "$1" = "--debug" ]; then
|
||||
find /usr/share/applications -xtype l -delete &
|
||||
find /usr/share/icons -xtype l -delete &
|
||||
find /usr/share/mime/packages -xtype l -delete &
|
||||
find /usr/share/glib-2.0 -xtype l -delete &
|
||||
find /usr/share/dbus-1/services -xtype l -delete &
|
||||
find /usr/share/fcitx -xtype l -delete &
|
||||
find /usr/share/help -xtype l -delete &
|
||||
find /usr/share/locale -xtype l -delete &
|
||||
find /usr/lib/`dpkg-architecture -qDEB_HOST_MULTIARCH`/fcitx -xtype l -delete &
|
||||
find /usr/lib/mozilla/plugins -xtype l -delete &
|
||||
find /usr/share/polkit-1/actions -xtype l -delete &
|
||||
find /usr/share/fonts -xtype l -delete &
|
||||
find /etc/fonts/conf.d -xtype l -delete &
|
||||
update-icon-caches /usr/share/icons/* &
|
||||
update-desktop-database -q &
|
||||
update-mime-database -V /usr/share/mime &
|
||||
glib-compile-schemas /usr/share/glib-2.0/schemas/ &
|
||||
wait
|
||||
else
|
||||
find /usr/share/applications -xtype l -delete > /dev/null 2>&1 &
|
||||
find /usr/share/icons -xtype l -delete > /dev/null 2>&1 &
|
||||
find /usr/share/mime/packages -xtype l -delete > /dev/null 2>&1 &
|
||||
find /usr/share/glib-2.0 -xtype l -delete > /dev/null 2>&1 &
|
||||
find /usr/share/dbus-1/services -xtype l -delete > /dev/null 2>&1 &
|
||||
find /usr/share/fcitx -xtype l -delete > /dev/null 2>&1 &
|
||||
find /usr/share/help -xtype l -delete > /dev/null 2>&1 &
|
||||
find /usr/share/locale -xtype l -delete > /dev/null 2>&1 &
|
||||
find /usr/lib/`dpkg-architecture -qDEB_HOST_MULTIARCH`/fcitx -xtype l -delete > /dev/null 2>&1 &
|
||||
find /usr/lib/mozilla/plugins -xtype l -delete > /dev/null 2>&1 &
|
||||
find /usr/share/polkit-1/actions -xtype l -delete > /dev/null 2>&1 &
|
||||
find /usr/share/fonts -xtype l -delete > /dev/null 2>&1 &
|
||||
find /etc/fonts/conf.d -xtype l -delete > /dev/null 2>&1 &
|
||||
update-icon-caches /usr/share/icons/* > /dev/null 2>&1 &
|
||||
update-desktop-database -q > /dev/null 2>&1 &
|
||||
update-mime-database -V /usr/share/mime > /dev/null 2>&1 &
|
||||
glib-compile-schemas /usr/share/glib-2.0/schemas/ > /dev/null 2>&1 &
|
||||
fi
|
||||
|
||||
|
||||
|
||||
echo "----------------Finished----------------"
|
||||
@@ -12,7 +12,7 @@ case $1 in
|
||||
;;
|
||||
|
||||
upgradable-list)
|
||||
output=$(env LANGUAGE=en_US apt -c /opt/durapps/spark-store/bin/apt-fast-conf/aptss-apt.conf list --upgradable -o Dir::Etc::sourcelist="/opt/durapps/spark-store/bin/apt-fast-conf/sources.list.d/sparkstore.list" -o Dir::Etc::sourceparts="/dev/null" -o APT::Get::List-Cleanup="0" | awk NR\>1)
|
||||
output=$(env LANGUAGE=en_US /usr/bin/apt -c /opt/durapps/spark-store/bin/apt-fast-conf/aptss-apt.conf list --upgradable -o Dir::Etc::sourcelist="/opt/durapps/spark-store/bin/apt-fast-conf/sources.list.d/sparkstore.list" -o Dir::Etc::sourceparts="/dev/null" -o APT::Get::List-Cleanup="0" | awk NR\>1)
|
||||
|
||||
IFS_OLD="$IFS"
|
||||
IFS=$'\n'
|
||||
|
||||
Reference in New Issue
Block a user