mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
boinctui: update to 2.7.1.
This commit is contained in:
parent
b27a971dd6
commit
1423377497
2 changed files with 4 additions and 48 deletions
|
@ -1,44 +0,0 @@
|
||||||
diff --git a/src/resultparse.cpp b/src/resultparse.cpp
|
|
||||||
index ae00b32..d4f0440 100644
|
|
||||||
--- a/src/resultparse.cpp
|
|
||||||
+++ b/src/resultparse.cpp
|
|
||||||
@@ -123,7 +123,7 @@ void callbackData(void *userdata, const char *content, int len)
|
|
||||||
//kLogPrintf("\ncallbackData()-->[%s]<-- len=%d\n",tmp,len);
|
|
||||||
//заносим значение в текущий эл-т
|
|
||||||
bool empty = true;
|
|
||||||
- for (uint i = 0; i < strlen(tmp); i++)
|
|
||||||
+ for (unsigned int i = 0; i < strlen(tmp); i++)
|
|
||||||
{
|
|
||||||
if (tmp[i] != ' ')
|
|
||||||
{
|
|
||||||
diff --git a/src/topmenu.cpp b/src/topmenu.cpp
|
|
||||||
index 4277d26..fcb3eb8 100644
|
|
||||||
--- a/src/topmenu.cpp
|
|
||||||
+++ b/src/topmenu.cpp
|
|
||||||
@@ -502,7 +502,7 @@ ProjectsSubMenu::ProjectsSubMenu(NRect rect, Srv* srv) : NMenu(rect)
|
|
||||||
if (client_state != NULL)
|
|
||||||
{
|
|
||||||
std::vector<Item*> projects = client_state->getItems("project");
|
|
||||||
- for (uint i = 0; i < projects.size(); i++)
|
|
||||||
+ for (unsigned int i = 0; i < projects.size(); i++)
|
|
||||||
{
|
|
||||||
Item* project_name = projects[i]->findItem("project_name");
|
|
||||||
if (project_name != NULL)
|
|
||||||
@@ -817,7 +817,7 @@ ProjectAllListSubMenu::ProjectAllListSubMenu(NRect rect, Srv* srv) : NMenu(rect)
|
|
||||||
if (projects != NULL)
|
|
||||||
{
|
|
||||||
std::vector<Item*> projlist = projects->getItems("project");
|
|
||||||
- for (uint i = 0; i < projlist.size(); i++)
|
|
||||||
+ for (unsigned int i = 0; i < projlist.size(); i++)
|
|
||||||
{
|
|
||||||
Item* name = projlist[i]->findItem("name");
|
|
||||||
Item* general_area = projlist[i]->findItem("general_area");
|
|
||||||
@@ -899,7 +899,7 @@ ProjectAccMgrSubMenu::ProjectAccMgrSubMenu(NRect rect, Srv* srv) : NMenu(rect)
|
|
||||||
if (projects != NULL)
|
|
||||||
{
|
|
||||||
std::vector<Item*> mgrlist = projects->getItems("account_manager");
|
|
||||||
- for (uint i = 0; i < mgrlist.size(); i++)
|
|
||||||
+ for (unsigned int i = 0; i < mgrlist.size(); i++)
|
|
||||||
{
|
|
||||||
Item* name = mgrlist[i]->findItem("name");
|
|
||||||
if (name != NULL)
|
|
|
@ -1,9 +1,9 @@
|
||||||
# Template file for 'boinctui'
|
# Template file for 'boinctui'
|
||||||
pkgname=boinctui
|
pkgname=boinctui
|
||||||
version=2.7.0
|
version=2.7.1
|
||||||
revision=2
|
revision=1
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--without-gnutls"
|
configure_args="--without-gnutls --with-boinc-dir=/var/lib/boinc"
|
||||||
hostmakedepends="automake"
|
hostmakedepends="automake"
|
||||||
makedepends="ncurses-devel expat-devel openssl-devel"
|
makedepends="ncurses-devel expat-devel openssl-devel"
|
||||||
short_desc="Curses based fullscreen BOINC manager"
|
short_desc="Curses based fullscreen BOINC manager"
|
||||||
|
@ -11,7 +11,7 @@ maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
|
||||||
license="GPL-3.0-or-later"
|
license="GPL-3.0-or-later"
|
||||||
homepage="https://sourceforge.net/projects/boinctui/"
|
homepage="https://sourceforge.net/projects/boinctui/"
|
||||||
distfiles="https://sourceforge.net/projects/boinctui/files/boinctui_${version}.tar.gz"
|
distfiles="https://sourceforge.net/projects/boinctui/files/boinctui_${version}.tar.gz"
|
||||||
checksum=22eb46dea8b111e2e16ceb50f2668577216c1563c815b1719b2b680d485d75c9
|
checksum=44b059a31d1dc4d7125a48bef6c201c08fda599ed22490cbb626880bbd0ccf66
|
||||||
|
|
||||||
pre_configure() {
|
pre_configure() {
|
||||||
autoreconf -vfi
|
autoreconf -vfi
|
||||||
|
|
Loading…
Add table
Reference in a new issue