This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It can plot value vs line number/ time value (for only known log formats), and value vs another value scatter graphs. Log: add software name--CSV-Analyzer
- Loading branch information
Showing
2 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package: | ||
id: io.github.CSV-Analyzer | ||
name: CSV-Analyzer | ||
version: 1.0.3.1 | ||
kind: app | ||
description: | | ||
It can plot value vs line number/ time value (for only known log formats), and value vs another value scatter graphs. | ||
runtime: | ||
id: org.deepin.Runtime | ||
version: 23.0.0 | ||
|
||
source: | ||
kind: git | ||
url: https://github.com/dd-sudo/CSV-Analyzer.git | ||
commit: ba273f34c16fe38c3ab2798b0886912ce483b7d8 | ||
patch: patches/0001-install.patch | ||
|
||
build: | ||
kind: qmake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
From a89e84ec3f230072906e5aa5eacb42989f88741d Mon Sep 17 00:00:00 2001 | ||
From: wjyrich <[email protected]> | ||
Date: Wed, 29 May 2024 13:05:11 +0800 | ||
Subject: [PATCH] install | ||
|
||
--- | ||
CsvAnalyzer.pro | 13 +++++++++++-- | ||
images/CsvAnalyzer.desktop | 9 +++++++++ | ||
2 files changed, 20 insertions(+), 2 deletions(-) | ||
create mode 100644 images/CsvAnalyzer.desktop | ||
|
||
diff --git a/CsvAnalyzer.pro b/CsvAnalyzer.pro | ||
index 9cd6a40..9c20ed0 100644 | ||
--- a/CsvAnalyzer.pro | ||
+++ b/CsvAnalyzer.pro | ||
@@ -1,4 +1,4 @@ | ||
- | ||
+ | ||
QT += core gui printsupport opengl | ||
android: QT += androidextras | ||
windows: RC_ICONS += "images/analyzing_icon.ico" | ||
@@ -40,7 +40,7 @@ FORMS += \ | ||
|
||
# Default rules for deployment. | ||
qnx: target.path = /tmp/$${TARGET}/bin | ||
-else: unix:!android: target.path = /opt/$${TARGET}/bin | ||
+else: unix:!android: #target.path = /opt/$${TARGET}/bin | ||
!isEmpty(target.path): INSTALLS += target | ||
|
||
RESOURCES += \ | ||
@@ -57,6 +57,15 @@ DISTFILES += \ | ||
|
||
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android | ||
|
||
+ | ||
+ | ||
+target.path = $$PREFIX/bin | ||
+desktop.files = images/CsvAnalyzer.desktop | ||
+desktop.path = $$PREFIX/share/applications/ | ||
+icons.path = $$PREFIX/share/icons/hicolor/16X16/apps/ | ||
+icons.files = images/analyzing.png | ||
+ | ||
+INSTALLS += target desktop icons | ||
|
||
|
||
|
||
diff --git a/images/CsvAnalyzer.desktop b/images/CsvAnalyzer.desktop | ||
new file mode 100644 | ||
index 0000000..6c4cc90 | ||
--- /dev/null | ||
+++ b/images/CsvAnalyzer.desktop | ||
@@ -0,0 +1,9 @@ | ||
+[Desktop Entry] | ||
+Exec=CsvAnalyzer | ||
+Name=CsvAnalyzer | ||
+Icon=analyzing | ||
+Categories=tools;Qt;Utility; | ||
+StartupNotify=false | ||
+Type=Application | ||
+GenericName=CsvAnalyzer | ||
+Version=1.0 | ||
-- | ||
2.43.4 | ||
|