[gentoo-commits] repo/proj/guru:dev commit in: app-portage/appswipe/

2024-06-02 Thread Brian Gloyer
commit: ae72abc87df06d9db374f56ab490913abb99c649
Author: brian gloyer  gmail  com>
AuthorDate: Sun Jun  2 17:12:18 2024 +
Commit: Brian Gloyer  gmail  com>
CommitDate: Sun Jun  2 17:19:37 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ae72abc8

app-portage/appswipe: edg.utils -> edg

Signed-off-by: brian gloyer  gmail.com>

 app-portage/appswipe/appswipe-1.1.68.ebuild | 16 +++-
 1 file changed, 3 insertions(+), 13 deletions(-)

diff --git a/app-portage/appswipe/appswipe-1.1.68.ebuild 
b/app-portage/appswipe/appswipe-1.1.68.ebuild
index 70895cbda..fe657607e 100644
--- a/app-portage/appswipe/appswipe-1.1.68.ebuild
+++ b/app-portage/appswipe/appswipe-1.1.68.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit desktop qmake-utils xdg-utils
+inherit desktop qmake-utils xdg
 
 DESCRIPTION="Application for browsing your local Portage repository files"
 HOMEPAGE="https://github.com/k9spud/appswipe;
@@ -45,19 +45,9 @@ src_compile() {
 }
 
 src_install() {
-   mv AppSwipe appswipe
-   dobin appswipe
+   newbin AppSwipe appswipe
dobin backend/appswipebackend
dobin transport/appswipetransport
-   mv "${S}/img/appicon.svg" "${S}/img/appswipe.svg"
-   doicon -s scalable "${S}/img/appswipe.svg"
+   newicon -s scalable img/appicon.svg ${PN}.svg
domenu ${PN}.desktop
 }
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/proj/guru:dev commit in: app-portage/appswipe/

2024-06-02 Thread Brian Gloyer
commit: 7985d9fdbf0d0180afb693148226284579623954
Author: brian gloyer  gmail  com>
AuthorDate: Sun Jun  2 06:14:57 2024 +
Commit: Brian Gloyer  gmail  com>
CommitDate: Sun Jun  2 06:16:21 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7985d9fd

app-portage/appswipe: add 1.1.68

Signed-off-by: brian gloyer  gmail.com>

 app-portage/appswipe/Manifest   |  1 +
 app-portage/appswipe/appswipe-1.1.68.ebuild | 63 +
 2 files changed, 64 insertions(+)

diff --git a/app-portage/appswipe/Manifest b/app-portage/appswipe/Manifest
index dfa5dfb8b..5e5565509 100644
--- a/app-portage/appswipe/Manifest
+++ b/app-portage/appswipe/Manifest
@@ -1 +1,2 @@
 DIST appswipe-1.1.14.tar.gz 121832 BLAKE2B 
a6e6afeaba68d21fa766e4278f9dfd4345a609f87ddb7dca459210a8a4aa3119f5381e2ccf2eda3f6c96cdc48db40265c68819f2ffeaecb89094471ca056dcb5
 SHA512 
a3ed041360483ba302f1d4fc13b5083d5e66fe200891ea1c180f47220c28188376c581b5de09dbbae4d2cee5d30e991c663607d7eea7a250fe839023b5c703be
+DIST appswipe-1.1.68.tar.gz 167746 BLAKE2B 
cff900d76257bb8e757c311918a99ce2dcd65eded12dbc63e09b19aff9356378c373d96f5c6f1684fe3169a30b9af246c73e380ed2b9d4b3e999abdd1b7e91e7
 SHA512 
0ba04d4da871307522090c215a9b2a6c0f2e78b0618ccdd7739a9343ee511f1ef7d9c0d67bd31791583c232a3d84bb6148e91d8f7dee8208dff5911ddcd5beed

diff --git a/app-portage/appswipe/appswipe-1.1.68.ebuild 
b/app-portage/appswipe/appswipe-1.1.68.ebuild
new file mode 100644
index 0..70895cbda
--- /dev/null
+++ b/app-portage/appswipe/appswipe-1.1.68.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop qmake-utils xdg-utils
+
+DESCRIPTION="Application for browsing your local Portage repository files"
+HOMEPAGE="https://github.com/k9spud/appswipe;
+SRC_URI="https://github.com/k9spud/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+"
+
+RDEPEND="
+   app-portage/gentoolkit
+   app-portage/portage-utils
+   lxde-base/lxterminal
+   ${DEPEND}
+"
+
+src_configure() {
+   eqmake5 AppSwipe.pro
+
+   cd backend || die
+   eqmake5 appswipebackend.pro
+
+   cd ../transport || die
+   eqmake5 appswipetransport.pro
+}
+
+src_compile() {
+   emake -C ./
+   emake -C backend/
+   emake -C transport/
+}
+
+src_install() {
+   mv AppSwipe appswipe
+   dobin appswipe
+   dobin backend/appswipebackend
+   dobin transport/appswipetransport
+   mv "${S}/img/appicon.svg" "${S}/img/appswipe.svg"
+   doicon -s scalable "${S}/img/appswipe.svg"
+   domenu ${PN}.desktop
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/proj/guru:dev commit in: app-portage/appswipe/

2022-06-30 Thread Brian Gloyer
commit: 3117dcca185751254eda14174ee84165f1321df5
Author: brian gloyer  gmail  com>
AuthorDate: Fri Jul  1 04:58:28 2022 +
Commit: Brian Gloyer  gmail  com>
CommitDate: Fri Jul  1 05:03:06 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3117dcca

app-portage/appswipe: icon fix

Closes: https://bugs.gentoo.org/855065
Signed-off-by: brian gloyer  gmail.com>

 app-portage/appswipe/appswipe-1.1.14.ebuild | 10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/app-portage/appswipe/appswipe-1.1.14.ebuild 
b/app-portage/appswipe/appswipe-1.1.14.ebuild
index fe5848065..a4e308c5b 100644
--- a/app-portage/appswipe/appswipe-1.1.14.ebuild
+++ b/app-portage/appswipe/appswipe-1.1.14.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit desktop qmake-utils
+inherit desktop qmake-utils xdg-utils
 
 DESCRIPTION="Application for browsing your local Portage repository files"
 HOMEPAGE="https://github.com/k9spud/appswipe;
@@ -39,3 +39,11 @@ src_install() {
doicon -s scalable "${S}/img/appswipe.svg"
domenu ${PN}.desktop
 }
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/proj/guru:dev commit in: app-portage/appswipe/

2022-06-24 Thread Brian Gloyer
commit: 1ad87810d209a3922f2b62a2c37a911d0b75918e
Author: brian gloyer  gmail  com>
AuthorDate: Sat Jun 25 04:42:07 2022 +
Commit: Brian Gloyer  gmail  com>
CommitDate: Sat Jun 25 04:48:12 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1ad87810

app-portage/appswipe: added missing dependency

Closes: https://bugs.gentoo.org/843569
Signed-off-by: brian gloyer  gmail.com>

 app-portage/appswipe/appswipe-1.1.14.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-portage/appswipe/appswipe-1.1.14.ebuild 
b/app-portage/appswipe/appswipe-1.1.14.ebuild
index 2f77e8206..fe5848065 100644
--- a/app-portage/appswipe/appswipe-1.1.14.ebuild
+++ b/app-portage/appswipe/appswipe-1.1.14.ebuild
@@ -18,6 +18,7 @@ DEPEND="
dev-qt/qtcore
dev-qt/qtgui
dev-qt/qtsql[sqlite]
+   dev-qt/qtwidgets
 "
 
 RDEPEND="



[gentoo-commits] repo/proj/guru:dev commit in: app-portage/appswipe/

2022-05-09 Thread Brian Gloyer
commit: 45c6f7a740aef49600433bc61be74badcb8e633c
Author: brian gloyer  gmail  com>
AuthorDate: Tue May 10 04:50:05 2022 +
Commit: Brian Gloyer  gmail  com>
CommitDate: Tue May 10 04:50:05 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=45c6f7a7

app-portage/appswipe: initial import

Signed-off-by: brian gloyer  gmail.com>

 app-portage/appswipe/Manifest   |  1 +
 app-portage/appswipe/appswipe-1.1.14.ebuild | 40 +
 app-portage/appswipe/metadata.xml   | 12 +
 3 files changed, 53 insertions(+)

diff --git a/app-portage/appswipe/Manifest b/app-portage/appswipe/Manifest
new file mode 100644
index 0..dfa5dfb8b
--- /dev/null
+++ b/app-portage/appswipe/Manifest
@@ -0,0 +1 @@
+DIST appswipe-1.1.14.tar.gz 121832 BLAKE2B 
a6e6afeaba68d21fa766e4278f9dfd4345a609f87ddb7dca459210a8a4aa3119f5381e2ccf2eda3f6c96cdc48db40265c68819f2ffeaecb89094471ca056dcb5
 SHA512 
a3ed041360483ba302f1d4fc13b5083d5e66fe200891ea1c180f47220c28188376c581b5de09dbbae4d2cee5d30e991c663607d7eea7a250fe839023b5c703be

diff --git a/app-portage/appswipe/appswipe-1.1.14.ebuild 
b/app-portage/appswipe/appswipe-1.1.14.ebuild
new file mode 100644
index 0..2f77e8206
--- /dev/null
+++ b/app-portage/appswipe/appswipe-1.1.14.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop qmake-utils
+
+DESCRIPTION="Application for browsing your local Portage repository files"
+HOMEPAGE="https://github.com/k9spud/appswipe;
+SRC_URI="https://github.com/k9spud/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+   dev-qt/qtcore
+   dev-qt/qtgui
+   dev-qt/qtsql[sqlite]
+"
+
+RDEPEND="
+   app-portage/gentoolkit
+   app-portage/portage-utils
+   lxde-base/lxterminal
+   ${DEPEND}
+"
+
+src_configure() {
+   eqmake5
+}
+
+src_install() {
+   mv AppSwipe appswipe
+   dobin appswipe
+   mv "${S}/img/appicon.svg" "${S}/img/appswipe.svg"
+   doicon -s scalable "${S}/img/appswipe.svg"
+   domenu ${PN}.desktop
+}

diff --git a/app-portage/appswipe/metadata.xml 
b/app-portage/appswipe/metadata.xml
new file mode 100644
index 0..b55e1e4d6
--- /dev/null
+++ b/app-portage/appswipe/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   co-maintainers welcome
+   brian.glo...@gmail.com
+   Brian Gloyer
+   
+   
+   k9spud/appswipe
+   
+