summaryrefslogtreecommitdiff
path: root/libre/octopi/parabola-support.patch
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-07-09 12:51:45 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-07-09 12:51:45 -0300
commitca8154faa5191e6f1264fc2d46e5eb512535c51a (patch)
tree967816e55fffa2518981cd858427f5a3283f5473 /libre/octopi/parabola-support.patch
parentc6478dc413b65e5ca059fa8e756514153fdc335c (diff)
downloadabslibre-ca8154faa5191e6f1264fc2d46e5eb512535c51a.tar.gz
abslibre-ca8154faa5191e6f1264fc2d46e5eb512535c51a.tar.bz2
abslibre-ca8154faa5191e6f1264fc2d46e5eb512535c51a.zip
octopi: add new package to [libre]
Diffstat (limited to 'libre/octopi/parabola-support.patch')
-rw-r--r--libre/octopi/parabola-support.patch154
1 files changed, 154 insertions, 0 deletions
diff --git a/libre/octopi/parabola-support.patch b/libre/octopi/parabola-support.patch
new file mode 100644
index 000000000..1e0d88291
--- /dev/null
+++ b/libre/octopi/parabola-support.patch
@@ -0,0 +1,154 @@
+diff -Nur octopi-0.7.0.orig/src/mainwindow_news.cpp octopi-0.7.0/src/mainwindow_news.cpp
+--- octopi-0.7.0.orig/src/mainwindow_news.cpp 2015-04-27 20:05:43.000000000 -0300
++++ octopi-0.7.0/src/mainwindow_news.cpp 2015-07-09 10:53:40.713803510 -0300
+@@ -92,6 +92,11 @@
+ writeToTabOutputExt("<b>" +
+ StrConstants::getSearchingForDistroNews().arg("Netrunner Rolling") + "</b>");
+ }
++ else if (gotoNewsTab && distro == ectn_PARABOLA)
++ {
++ writeToTabOutputExt("<b>" +
++ StrConstants::getSearchingForDistroNews().arg("Parabola GNU/Linux-libre") + "</b>");
++ }
+
+ /*
+ * Here, we retrieve distro's latest news without
+diff -Nur octopi-0.7.0.orig/src/package.cpp octopi-0.7.0/src/package.cpp
+--- octopi-0.7.0.orig/src/package.cpp 2015-04-27 20:05:43.000000000 -0300
++++ octopi-0.7.0/src/package.cpp 2015-07-09 10:53:40.713803510 -0300
+@@ -1154,7 +1154,8 @@
+ else if (UnixCommand::getLinuxDistro() == ectn_ARCHBANGLINUX ||
+ UnixCommand::getLinuxDistro() == ectn_ARCHLINUX ||
+ UnixCommand::getLinuxDistro() == ectn_KAOS ||
+- UnixCommand::getLinuxDistro() == ectn_MOOOSLINUX)
++ UnixCommand::getLinuxDistro() == ectn_MOOOSLINUX ||
++ UnixCommand::getLinuxDistro() == ectn_PARABOLA)
+ {
+ result = UnixCommand::getPackageContentsUsingPkgfile(pkgName);
+ }
+diff -Nur octopi-0.7.0.orig/src/strconstants.h octopi-0.7.0/src/strconstants.h
+--- octopi-0.7.0.orig/src/strconstants.h 2015-04-27 20:05:43.000000000 -0300
++++ octopi-0.7.0/src/strconstants.h 2015-07-09 11:10:32.856845110 -0300
+@@ -60,6 +60,9 @@
+ if (UnixCommand::getLinuxDistro() == ectn_KAOS)
+ return QLatin1String( "KCP" );
+
++ if (UnixCommand::getLinuxDistro() == ectn_PARABOLA)
++ return QLatin1String( "Custom" );
++
+ return QLatin1String( "AUR" );
+ }
+
+@@ -68,6 +71,8 @@
+ return QLatin1String( "ccr" );
+ else if (UnixCommand::getLinuxDistro() == ectn_KAOS)
+ return QLatin1String( "kcp" );
++ else if (UnixCommand::getLinuxDistro() == ectn_PARABOLA)
++ return QLatin1String( "custom" );
+
+ return QLatin1String( "aur" );
+ }
+@@ -85,6 +90,8 @@
+ ret = QLatin1String( "kcp" );
+ else if (UnixCommand::hasTheExecutable("pacaur"))
+ ret = QLatin1String( "pacaur" );
++ else if (UnixCommand::getLinuxDistro() == ectn_PARABOLA)
++ ret = QLatin1String( "custom" );
+ else
+ ret = QLatin1String( "yaourt" );
+
+@@ -100,6 +107,8 @@
+ return QLatin1String( "Ccr" );
+ else if (UnixCommand::getLinuxDistro() == ectn_KAOS)
+ return QLatin1String( "KCP" );
++ else if (UnixCommand::getLinuxDistro() == ectn_PARABOLA)
++ return QLatin1String( "Custom" );
+
+ return QLatin1String( "AUR" );
+ }
+@@ -110,6 +119,8 @@
+ return QLatin1String( "ccr/" );
+ else if (UnixCommand::getLinuxDistro() == ectn_KAOS)
+ return "kcp/";
++ else if (UnixCommand::getLinuxDistro() == ectn_PARABOLA)
++ return "custom/";
+
+ return QLatin1String( "aur/" );
+ }
+@@ -142,12 +153,16 @@
+ return QObject::tr("Netrunner Rolling news");
+ }
+
++ static QString getParabolaNews(){
++ return QObject::tr("Parabola GNU/Linux-libre news");
++ }
++
+ static QString getNewsErrorMessage(){
+ return QObject::tr("No news could be found! Press Ctrl+G to download the latest news.");
+ }
+
+ static QString getIncompatibleLinuxDistroError(){
+- return QObject::tr("This Linux distro seems to be incompatible with Octopi!");
++ return QObject::tr("This GNU/Linux distro seems to be incompatible with Octopi!");
+ }
+
+ static QString getInternetUnavailableError(){
+diff -Nur octopi-0.7.0.orig/src/unixcommand.cpp octopi-0.7.0/src/unixcommand.cpp
+--- octopi-0.7.0.orig/src/unixcommand.cpp 2015-04-27 20:05:43.000000000 -0300
++++ octopi-0.7.0/src/unixcommand.cpp 2015-07-09 10:53:40.717136678 -0300
+@@ -1036,6 +1036,10 @@
+ {
+ ret = ectn_NETRUNNER;
+ }
++ else if (contents.contains(QRegExp("Parabola GNU/Linux-libre")))
++ {
++ ret = ectn_PARABOLA;
++ }
+ else
+ {
+ ret = ectn_UNKNOWN;
+diff -Nur octopi-0.7.0.orig/src/unixcommand.h octopi-0.7.0/src/unixcommand.h
+--- octopi-0.7.0.orig/src/unixcommand.h 2015-04-27 20:05:43.000000000 -0300
++++ octopi-0.7.0/src/unixcommand.h 2015-07-09 10:53:40.717136678 -0300
+@@ -37,7 +37,7 @@
+ ectn_RUN_IN_TERMINAL };
+
+ enum LinuxDistro { ectn_ANTERGOS, ectn_ARCHBANGLINUX, ectn_ARCHBSD, ectn_ARCHLINUX, ectn_CHAKRA,
+- ectn_KAOS, ectn_MANJAROLINUX, ectn_MOOOSLINUX, ectn_NETRUNNER, ectn_UNKNOWN };
++ ectn_KAOS, ectn_MANJAROLINUX, ectn_MOOOSLINUX, ectn_NETRUNNER, ectn_PARABOLA, ectn_UNKNOWN };
+
+ enum Language { ectn_LANG_ENGLISH, ectn_LANG_USER_DEFINED };
+
+diff -Nur octopi-0.7.0.orig/src/utils.cpp octopi-0.7.0/src/utils.cpp
+--- octopi-0.7.0.orig/src/utils.cpp 2015-04-27 20:05:43.000000000 -0300
++++ octopi-0.7.0/src/utils.cpp 2015-07-09 11:21:49.993222650 -0300
+@@ -278,6 +278,7 @@
+ //const QString ctn_MANJARO_LINUX_RSS_URL = "http://manjaro.org/feed/";
+ const QString ctn_MANJARO_LINUX_RSS_URL = "https://manjaro.github.io/feed.xml";
+ const QString ctn_NETRUNNER_RSS_URL = "http://www.netrunner-os.com/feed/";
++ const QString ctn_PARABOLA_RSS_URL = "https://www.parabola.nu/feeds/news/";
+
+ LinuxDistro distro = UnixCommand::getLinuxDistro();
+ QString res;
+@@ -326,6 +327,10 @@
+ {
+ curlCommand = curlCommand.arg(ctn_NETRUNNER_RSS_URL).arg(tmpRssPath);
+ }
++ else if (distro == ectn_PARABOLA)
++ {
++ curlCommand = curlCommand.arg(ctn_PARABOLA_RSS_URL).arg(tmpRssPath);
++ }
+
+ if (UnixCommand::runCurlCommand(curlCommand).isEmpty())
+ {
+@@ -438,6 +443,10 @@
+ {
+ html = "<p align=\"center\"><h2>" + StrConstants::getNetrunnerNews() + "</h2></p><ul>";
+ }
++ else if (distro == ectn_PARABOLA)
++ {
++ html = "<p align=\"center\"><h2>" + StrConstants::getParabolaNews() + "</h2></p><ul>";
++ }
+
+ QString rssPath = QDir::homePath() + QDir::separator() + ".config/octopi/distro_rss.xml";
+ QDomDocument doc("rss");