[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/pacvis/

2024-05-11 Thread Brian Gloyer
commit: 2420b786568225362dfa2244706e471b8e088ab0
Author: brian gloyer  gmail  com>
AuthorDate: Sat May 11 03:41:28 2024 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Sat May 11 03:41:28 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2420b786

app-portage/pacvis: add python3.12

Closes: https://bugs.gentoo.org/921750
Closes: https://bugs.gentoo.org/931355

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

 app-portage/pacvis/{pacvis-0.4.2-r1.ebuild => pacvis-0.4.2.ebuild} | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/app-portage/pacvis/pacvis-0.4.2-r1.ebuild 
b/app-portage/pacvis/pacvis-0.4.2.ebuild
similarity index 76%
rename from app-portage/pacvis/pacvis-0.4.2-r1.ebuild
rename to app-portage/pacvis/pacvis-0.4.2.ebuild
index d57efb731c..f13d4a0fc1 100644
--- a/app-portage/pacvis/pacvis-0.4.2-r1.ebuild
+++ b/app-portage/pacvis/pacvis-0.4.2.ebuild
@@ -1,9 +1,10 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
-PYTHON_COMPAT=( python3_11 )
+EAPI=8
 
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..12} )
 inherit distutils-r1
 
 DESCRIPTION="Displays dependency graphs of packages"



[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-editors/neovim-qt/

2022-06-27 Thread Brian Gloyer
commit: 4749e1aea3b5c1f97e3e0920f32342b997b7fdde
Author: brian gloyer  gmail  com>
AuthorDate: Tue Jun 28 02:35:19 2022 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Tue Jun 28 02:42:30 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4749e1ae

app-editors/neovim-qt: fix package

Closes: https://bugs.gentoo.org/849620
Fixed runtime library problem.

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

 app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild | 17 ++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild 
b/app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild
index 5dfcfa586..14609e016 100644
--- a/app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild
+++ b/app-editors/neovim-qt/neovim-qt-0.2.16.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit cmake
+inherit cmake xdg-utils
 
 DESCRIPTION="Neovim client library and GUI, in Qt5"
 HOMEPAGE="https://github.com/equalsraf/neovim-qt;
@@ -12,13 +12,14 @@ 
SRC_URI="https://github.com/equalsraf/neovim-qt/archive/v${PV}.tar.gz -> ${P}.ta
 LICENSE="ISC"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="gcov"
+IUSE=""
 
 DEPEND="
dev-libs/msgpack
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
+   dev-qt/qtsvg:5
dev-qt/qttest:5
dev-qt/qtwidgets:5"
 RDEPEND="${DEPEND}
@@ -26,9 +27,19 @@ RDEPEND="${DEPEND}
 
 src_configure() {
local mycmakeargs=(
-   -DUSE_GCOV=$(usex gcov ON OFF)
-DUSE_SYSTEM_MSGPACK=ON
+   -DUSE_GCOV=OFF
+   -DENABLE_TESTS=OFF
+   -DBUILD_SHARED_LIBS=OFF # it links to static lib
)
 
cmake_src_configure
 }
+
+pkg_postinst() {
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_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/pacvis/

2022-06-24 Thread Brian Gloyer
commit: 11faa824700f6b2c81d0639b7b4044315db89c6d
Author: brian gloyer  gmail  com>
AuthorDate: Sat Jun 25 02:53:25 2022 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Sat Jun 25 02:58:29 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=11faa824

app-portage/pacvis: enable py3.10

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

 app-portage/pacvis/pacvis-0.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/pacvis/pacvis-0.4.2.ebuild 
b/app-portage/pacvis/pacvis-0.4.2.ebuild
index a55cfb8eb..438221b9e 100644
--- a/app-portage/pacvis/pacvis-0.4.2.ebuild
+++ b/app-portage/pacvis/pacvis-0.4.2.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
 



[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
+   
+



[gentoo-commits] repo/proj/guru:dev commit in: games-action/netrek-cow/netrek-cow/, games-action/netrek-cow/files/, ...

2022-01-10 Thread Brian Gloyer
commit: 8db714d919cb688074303cdddcbbfd7635f557cf
Author: brian gloyer  gmail  com>
AuthorDate: Tue Jan 11 05:56:20 2022 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Tue Jan 11 06:09:23 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8db714d9

games-action/netrek-cow: fix manifest

update EAPI 7 -> 8
delete duplicate files

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

 games-action/netrek-cow/autoupdate.patch   | 103 -
 .../files/netrek-cow-3.3.2-autoupdate.patch|   0
 games-action/netrek-cow/netrek-cow-3.3.2.ebuild|   6 +-
 games-action/netrek-cow/netrek-cow/Manifest|   4 -
 games-action/netrek-cow/netrek-cow/metadata.xml|  16 
 .../netrek-cow/netrek-cow/netrek-cow-3.3.2.ebuild  |  45 -
 6 files changed, 5 insertions(+), 169 deletions(-)

diff --git a/games-action/netrek-cow/autoupdate.patch 
b/games-action/netrek-cow/autoupdate.patch
deleted file mode 100644
index e9ededa2f..0
--- a/games-action/netrek-cow/autoupdate.patch
+++ /dev/null
@@ -1,103 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index ce956ee..5bb0866 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -1,9 +1,10 @@
- dnl   This file is an input file used by the GNU "autoconf" program to
- dnl   generate the file "configure", which is run during Netrek installation
- dnl   to configure the system for the local environment.
--AC_INIT(name.c)
--AC_CANONICAL_SYSTEM
--AC_CONFIG_HEADER(config.h)
-+AC_INIT
-+AC_CONFIG_SRCDIR([name.c])
-+AC_CANONICAL_TARGET
-+AC_CONFIG_HEADERS([config.h])
- 
- AC_PROG_INSTALL
- 
-@@ -11,7 +12,7 @@ AC_PROG_CC
- AC_PROG_CPP
- AC_PROG_LN_S
- 
--AC_AIX
-+AC_USE_SYSTEM_EXTENSIONS
- 
- AC_C_INLINE
- 
-@@ -26,18 +27,24 @@ AC_C_INLINE
- #
- 
- AC_MSG_CHECKING(if fd_set requires sys/select.h)
--AC_TRY_COMPILE( [#include ], [fd_set readMask, writeMask;],
--  AC_MSG_RESULT(no) ,
--  AC_EGREP_HEADER(fd_set, sys/select.h,
-+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include ]], [[fd_set 
readMask, writeMask;]])],[AC_MSG_RESULT(no) ],[AC_EGREP_HEADER(fd_set, 
sys/select.h,
-   AC_DEFINE(NEED_SYS_SELECT_H) AC_MSG_RESULT(yes),
--  AC_DEFINE(NO_FD_SET) AC_MSG_RESULT(fd_set missing)))
-+  AC_DEFINE(NO_FD_SET) AC_MSG_RESULT(fd_set missing))])
- 
- #
- # Check for various typedefs and provide substitutes if
- # they don't exist.
- #
- 
--AC_HEADER_STDC
-+m4_warn([obsolete],
-+[The preprocessor macro `STDC_HEADERS' is obsolete.
-+  Except in unusual embedded environments, you can safely include all
-+  ISO C90 headers unconditionally.])dnl
-+# Autoupdate added the next two lines to ensure that your configure
-+# script's behavior did not change.  They are probably safe to remove.
-+AC_CHECK_INCLUDES_DEFAULT
-+AC_PROG_EGREP
-+
- AC_CHECK_HEADERS(unistd.h memory.h math.h stdlib.h)
- AC_CHECK_HEADERS(sys/timeb.h sys/ptyio.h sys/fcntl.h fcntl.h)
- AC_CHECK_HEADERS(ctype.h machine/endian.h sys/resource.h)
-@@ -46,7 +53,7 @@ AC_CHECK_HEADERS(sys/wait.h netinet/in.h netinet/tcp.h 
sys/filio.h)
- AC_TYPE_PID_T
- AC_TYPE_UID_T
- AC_TYPE_SIZE_T
--AC_FUNC_VFORK
-+AC_FUNC_FORK
- AC_STRUCT_TM
- 
- AC_MSG_CHECKING(for itimer in time.h)
-@@ -80,7 +87,7 @@ if test -z "$NOX11" ; then
- if test -z "$x_libraries" ; then
- echo checking for X11 header files
- XINCLUDES=""
--AC_TRY_CPP([#include ], , XINCLUDES="nope")
-+AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include 
]])],[],[XINCLUDES="nope"])
- if test "$XINCLUDES" = nope; then
- dirs="/usr/unsupported/include /usr/local/include /usr/X386/include \
-   /usr/include/X11R4 /usr/X11R5/include /usr/include/X11R5 \
-@@ -165,7 +172,19 @@ AC_CHECK_LIB(sun, main, [LIBS="$LIBS -lsun"])
- # Check for type of signals
- #
- 
--AC_TYPE_SIGNAL
-+m4_warn([obsolete],
-+[your code may safely assume C89 semantics that RETSIGTYPE is void.
-+Remove this warning and the `AC_CACHE_CHECK' when you adjust the code.])dnl
-+AC_CACHE_CHECK([return type of signal 
handlers],[ac_cv_type_signal],[AC_COMPILE_IFELSE(
-+[AC_LANG_PROGRAM([#include 
-+#include 
-+],
-+   [return *(signal (0, 0)) (0) == 1;])],
-+ [ac_cv_type_signal=int],
-+ [ac_cv_type_signal=void])])
-+AC_DEFINE_UNQUOTED([RETSIGTYPE],[$ac_cv_type_signal],[Define as the return 
type of signal handlers
-+  (`int' or `void').])
-+
- AC_CHECK_FUNCS(usleep random setstate strftime ftime)
- AC_CHECK_LIB(m, main, [LIBS="$LIBS -lm"])
- AC_CHECK_FUNCS(nint)
-@@ -201,4 +220,5 @@ fi
- #---

[gentoo-commits] repo/proj/guru:dev commit in: games-action/netrek-cow/, games-action/netrek-cow/netrek-cow/, ...

2022-01-07 Thread Brian Gloyer
commit: a93bdbcec8a28899e3928d4ecf831200a61bc46a
Author: brian gloyer  gmail  com>
AuthorDate: Sat Jan  8 06:45:06 2022 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Sat Jan  8 06:45:06 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a93bdbce

games-action/netrek-cow: patch configure.ac

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

 games-action/netrek-cow/autoupdate.patch   | 103 +
 games-action/netrek-cow/netrek-cow/Manifest|   4 +
 .../files/netrek-cow-3.3.2-autoupdate.patch| 103 +
 games-action/netrek-cow/netrek-cow/metadata.xml|  16 
 .../netrek-cow/netrek-cow/netrek-cow-3.3.2.ebuild  |  45 +
 5 files changed, 271 insertions(+)

diff --git a/games-action/netrek-cow/autoupdate.patch 
b/games-action/netrek-cow/autoupdate.patch
new file mode 100644
index 0..e9ededa2f
--- /dev/null
+++ b/games-action/netrek-cow/autoupdate.patch
@@ -0,0 +1,103 @@
+diff --git a/configure.ac b/configure.ac
+index ce956ee..5bb0866 100644
+--- a/configure.ac
 b/configure.ac
+@@ -1,9 +1,10 @@
+ dnl   This file is an input file used by the GNU "autoconf" program to
+ dnl   generate the file "configure", which is run during Netrek installation
+ dnl   to configure the system for the local environment.
+-AC_INIT(name.c)
+-AC_CANONICAL_SYSTEM
+-AC_CONFIG_HEADER(config.h)
++AC_INIT
++AC_CONFIG_SRCDIR([name.c])
++AC_CANONICAL_TARGET
++AC_CONFIG_HEADERS([config.h])
+ 
+ AC_PROG_INSTALL
+ 
+@@ -11,7 +12,7 @@ AC_PROG_CC
+ AC_PROG_CPP
+ AC_PROG_LN_S
+ 
+-AC_AIX
++AC_USE_SYSTEM_EXTENSIONS
+ 
+ AC_C_INLINE
+ 
+@@ -26,18 +27,24 @@ AC_C_INLINE
+ #
+ 
+ AC_MSG_CHECKING(if fd_set requires sys/select.h)
+-AC_TRY_COMPILE( [#include ], [fd_set readMask, writeMask;],
+-  AC_MSG_RESULT(no) ,
+-  AC_EGREP_HEADER(fd_set, sys/select.h,
++AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include ]], [[fd_set 
readMask, writeMask;]])],[AC_MSG_RESULT(no) ],[AC_EGREP_HEADER(fd_set, 
sys/select.h,
+   AC_DEFINE(NEED_SYS_SELECT_H) AC_MSG_RESULT(yes),
+-  AC_DEFINE(NO_FD_SET) AC_MSG_RESULT(fd_set missing)))
++  AC_DEFINE(NO_FD_SET) AC_MSG_RESULT(fd_set missing))])
+ 
+ #
+ # Check for various typedefs and provide substitutes if
+ # they don't exist.
+ #
+ 
+-AC_HEADER_STDC
++m4_warn([obsolete],
++[The preprocessor macro `STDC_HEADERS' is obsolete.
++  Except in unusual embedded environments, you can safely include all
++  ISO C90 headers unconditionally.])dnl
++# Autoupdate added the next two lines to ensure that your configure
++# script's behavior did not change.  They are probably safe to remove.
++AC_CHECK_INCLUDES_DEFAULT
++AC_PROG_EGREP
++
+ AC_CHECK_HEADERS(unistd.h memory.h math.h stdlib.h)
+ AC_CHECK_HEADERS(sys/timeb.h sys/ptyio.h sys/fcntl.h fcntl.h)
+ AC_CHECK_HEADERS(ctype.h machine/endian.h sys/resource.h)
+@@ -46,7 +53,7 @@ AC_CHECK_HEADERS(sys/wait.h netinet/in.h netinet/tcp.h 
sys/filio.h)
+ AC_TYPE_PID_T
+ AC_TYPE_UID_T
+ AC_TYPE_SIZE_T
+-AC_FUNC_VFORK
++AC_FUNC_FORK
+ AC_STRUCT_TM
+ 
+ AC_MSG_CHECKING(for itimer in time.h)
+@@ -80,7 +87,7 @@ if test -z "$NOX11" ; then
+ if test -z "$x_libraries" ; then
+ echo checking for X11 header files
+ XINCLUDES=""
+-AC_TRY_CPP([#include ], , XINCLUDES="nope")
++AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include 
]])],[],[XINCLUDES="nope"])
+ if test "$XINCLUDES" = nope; then
+ dirs="/usr/unsupported/include /usr/local/include /usr/X386/include \
+   /usr/include/X11R4 /usr/X11R5/include /usr/include/X11R5 \
+@@ -165,7 +172,19 @@ AC_CHECK_LIB(sun, main, [LIBS="$LIBS -lsun"])
+ # Check for type of signals
+ #
+ 
+-AC_TYPE_SIGNAL
++m4_warn([obsolete],
++[your code may safely assume C89 semantics that RETSIGTYPE is void.
++Remove this warning and the `AC_CACHE_CHECK' when you adjust the code.])dnl
++AC_CACHE_CHECK([return type of signal 
handlers],[ac_cv_type_signal],[AC_COMPILE_IFELSE(
++[AC_LANG_PROGRAM([#include 
++#include 
++],
++   [return *(signal (0, 0)) (0) == 1;])],
++ [ac_cv_type_signal=int],
++ [ac_cv_type_signal=void])])
++AC_DEFINE_UNQUOTED([RETSIGTYPE],[$ac_cv_type_signal],[Define as the return 
type of signal handlers
++  (`int' or `void').])
++
+ AC_CHECK_FUNCS(usleep random setstate strftime ftime)
+ AC_CHECK_LIB(m, main, [LIBS="$LIBS -lm"])
+ AC_CHECK_FUNCS(nint)
+@@ -201,4 +220,5 @@ fi
+ #
+ #   Emit output
+ #
+-AC_OUTP

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

2021-06-27 Thread Brian Gloyer
commit: 33ec778d4c71da30fd769dd426379f525a1ca60c
Author: brian gloyer  gmail  com>
AuthorDate: Sun Jun 27 19:23:44 2021 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Sun Jun 27 20:22:51 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=33ec778d

app-portage/pacvis: added python 3.9; removed 

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: brian gloyer  gmail.com>

 app-portage/pacvis/pacvis-0.4.2.ebuild |  4 ++--
 app-portage/pacvis/pacvis-.ebuild  | 19 ---
 2 files changed, 2 insertions(+), 21 deletions(-)

diff --git a/app-portage/pacvis/pacvis-0.4.2.ebuild 
b/app-portage/pacvis/pacvis-0.4.2.ebuild
index 2adc736e8..353db4b57 100644
--- a/app-portage/pacvis/pacvis-0.4.2.ebuild
+++ b/app-portage/pacvis/pacvis-0.4.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+PYTHON_COMPAT=( python3_{6..9} )
 
 inherit distutils-r1
 

diff --git a/app-portage/pacvis/pacvis-.ebuild 
b/app-portage/pacvis/pacvis-.ebuild
deleted file mode 100644
index 5bd18faf3..0
--- a/app-portage/pacvis/pacvis-.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{3_6,3_7,3_8} )
-
-EGIT_REPO_URI="https://github.com/bgloyer/pacvis.git;
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Displays dependency graphs of packages"
-HOMEPAGE="https://github.com/bgloyer/pacvis;
-SRC_URI=""
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-RDEPEND="www-servers/tornado[${PYTHON_USEDEP}]"



[gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/gsl-lite/

2021-04-23 Thread Brian Gloyer
commit: 3ee8cf71ffe42d630b5f0612a6efa9dd648a2b2e
Author: brian gloyer  gmail  com>
AuthorDate: Fri Apr 23 06:10:05 2021 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Fri Apr 23 06:13:43 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3ee8cf71

dev-cpp/gsl-lite: Drop -Werror

Closes: https://bugs.gentoo.org/783981
Closes: https://bugs.gentoo.org/784014
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: brian gloyer  gmail.com>

 dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild 
b/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild
index ebd5b7b41..b2b2c3933 100644
--- a/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild
+++ b/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild
@@ -24,4 +24,6 @@ src_configure() {
-DGSL_LITE_OPT_BUILD_TESTS=$(usex test)
)
cmake_src_configure
+
+   sed -i -e 's/"-*Werror"//g' test/MakeTestTarget.cmake || die
 }



[gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/gsl-lite/

2021-04-10 Thread Brian Gloyer
commit: f466b3de801f51d82c0bb1b7ed6229087c2d
Author: brian gloyer  gmail  com>
AuthorDate: Sun Apr 11 05:29:43 2021 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Sun Apr 11 05:38:34 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f466b3de

dev-cpp/gsl-lite: new package

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: brian gloyer  gmail.com>

 dev-cpp/gsl-lite/Manifest   |  1 +
 dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild | 27 +++
 dev-cpp/gsl-lite/metadata.xml   |  8 
 3 files changed, 36 insertions(+)

diff --git a/dev-cpp/gsl-lite/Manifest b/dev-cpp/gsl-lite/Manifest
new file mode 100644
index 0..df22a067b
--- /dev/null
+++ b/dev-cpp/gsl-lite/Manifest
@@ -0,0 +1 @@
+DIST gsl-lite-0.38.0.tar.gz 120838 BLAKE2B 
8ead324b357480e34a4c867bde5e81424128d75e81e229f61079423f8f383d0d746961c085830db02fc5892eca94ac4b407613674da30ba106c620c148a7a41b
 SHA512 
7f73c600800ce375e231e0904c569f0d3beb8ce2790c1f66208d1c5097bed0abd1e82e72cf0051f0bbb09a4e5939d6637b09b8978d91859fc039a42adccdde36

diff --git a/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild 
b/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild
new file mode 100644
index 0..ebd5b7b41
--- /dev/null
+++ b/dev-cpp/gsl-lite/gsl-lite-0.38.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="C++ Guideline Support Library implementation"
+HOMEPAGE="https://github.com/gsl-lite/gsl-lite;
+SRC_URI="https://github.com/gsl-lite/gsl-lite/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+# header only library
+RDEPEND=""
+DEPEND=""
+
+src_configure() {
+   local mycmakeargs=(
+   -DGSL_LITE_OPT_BUILD_TESTS=$(usex test)
+   )
+   cmake_src_configure
+}

diff --git a/dev-cpp/gsl-lite/metadata.xml b/dev-cpp/gsl-lite/metadata.xml
new file mode 100644
index 0..918ede3f2
--- /dev/null
+++ b/dev-cpp/gsl-lite/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+brian.glo...@gmail.com
+brian gloyer
+  
+



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

2020-09-07 Thread Brian Gloyer
commit: 88fd2b7316bce0e35e214536c6fc3f2b7a75fe9a
Author: brian gloyer  gmail  com>
AuthorDate: Mon Sep  7 17:18:53 2020 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Mon Sep  7 17:23:59 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=88fd2b73

app-portage/pacvis: added python3_8

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: brian gloyer  gmail.com>

 app-portage/pacvis/pacvis-0.4.2.ebuild | 4 ++--
 app-portage/pacvis/pacvis-.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-portage/pacvis/pacvis-0.4.2.ebuild 
b/app-portage/pacvis/pacvis-0.4.2.ebuild
index 2e20d84..31ce08a 100644
--- a/app-portage/pacvis/pacvis-0.4.2.ebuild
+++ b/app-portage/pacvis/pacvis-0.4.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
 
 inherit distutils-r1
 

diff --git a/app-portage/pacvis/pacvis-.ebuild 
b/app-portage/pacvis/pacvis-.ebuild
index 90458ae..48a4dff 100644
--- a/app-portage/pacvis/pacvis-.ebuild
+++ b/app-portage/pacvis/pacvis-.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python{3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
 
 EGIT_REPO_URI="https://github.com/bgloyer/pacvis.git;
 inherit distutils-r1 git-r3



[gentoo-commits] repo/proj/guru:dev commit in: games-action/netrek-cow/

2020-06-16 Thread Brian Gloyer
commit: c34fb0d0e2edce33fda8e7238a3b51bda6eadaf4
Author: brian gloyer  gmail  com>
AuthorDate: Wed Jun 17 01:06:01 2020 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Wed Jun 17 01:07:31 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c34fb0d0

games-action/netrek-cow: removed test

Signed-off-by: brian gloyer  gmail.com>
Package-Manager: Portage-2.3.99, Repoman-2.3.22

 games-action/netrek-cow/netrek-cow-3.3.2.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/games-action/netrek-cow/netrek-cow-3.3.2.ebuild 
b/games-action/netrek-cow/netrek-cow-3.3.2.ebuild
index f5cabac..6be3c33 100644
--- a/games-action/netrek-cow/netrek-cow-3.3.2.ebuild
+++ b/games-action/netrek-cow/netrek-cow-3.3.2.ebuild
@@ -14,6 +14,9 @@ KEYWORDS="~amd64"
 
 S="${WORKDIR}/netrek-client-cow-${PV}"
 
+# upstream has a file named check that is unrelated to tests
+RESTRICT="test"
+
 RDEPEND="
media-libs/libsdl
media-libs/sdl-mixer



[gentoo-commits] repo/proj/guru:dev commit in: games-action/netrek-cow/

2020-06-15 Thread Brian Gloyer
commit: bc31bb0636fd4d5705a817bcefb9dd1411d1e151
Author: brian gloyer  gmail  com>
AuthorDate: Tue Jun 16 03:44:52 2020 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Tue Jun 16 04:15:27 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc31bb06

games-action/netrek-cow: new package

Signed-off-by: brian gloyer  gmail.com>
Package-Manager: Portage-2.3.99, Repoman-2.3.22

 games-action/netrek-cow/Manifest|  1 +
 games-action/netrek-cow/metadata.xml| 16 +++
 games-action/netrek-cow/netrek-cow-3.3.2.ebuild | 37 +
 3 files changed, 54 insertions(+)

diff --git a/games-action/netrek-cow/Manifest b/games-action/netrek-cow/Manifest
new file mode 100644
index 000..7da0403
--- /dev/null
+++ b/games-action/netrek-cow/Manifest
@@ -0,0 +1 @@
+DIST netrek-cow-3.3.2.tar.gz 2630673 BLAKE2B 
1a54b58d112f0893275b57967573ce308e69b99e42a660670f3a5fc7f15f2dc110f2008e496282a58da181252a196feb8218a87f52db16444f1f50cef2a6809f
 SHA512 
9a0ab78ed86d174f52d35d30a409efd985bd2d39062a993c3790f36ade1fa0a9b95b9d914f5c1fa57497f281e88ece0f6bc86abc962bd87ff44f68c1416f07f0

diff --git a/games-action/netrek-cow/metadata.xml 
b/games-action/netrek-cow/metadata.xml
new file mode 100644
index 000..bf36b05
--- /dev/null
+++ b/games-action/netrek-cow/metadata.xml
@@ -0,0 +1,16 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+brian.glo...@gmail.com
+brian gloyer
+  
+  
+
+  brian.glo...@gmail.com
+  brian gloyer
+
+https://github.com/quozl/netrek-client-cow/issues/
+quozl/netrek-client-cow
+  
+

diff --git a/games-action/netrek-cow/netrek-cow-3.3.2.ebuild 
b/games-action/netrek-cow/netrek-cow-3.3.2.ebuild
new file mode 100644
index 000..f5cabac
--- /dev/null
+++ b/games-action/netrek-cow/netrek-cow-3.3.2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools
+
+DESCRIPTION="cow client for netrek"
+HOMEPAGE="https://netrek.org;
+SRC_URI="https://github.com/quozl/netrek-client-cow/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+S="${WORKDIR}/netrek-client-cow-${PV}"
+
+RDEPEND="
+   media-libs/libsdl
+   media-libs/sdl-mixer
+   x11-base/xorg-proto
+   x11-libs/libX11
+   x11-libs/libXxf86vm
+   x11-libs/libXmu
+"
+DEPEND="
+   ${RDEPEND}
+"
+
+src_prepare() {
+   default
+   ./autogen.sh
+   eautoreconf
+}
+
+src_install() {
+   dobin netrek-client-cow
+}



[gentoo-commits] repo/proj/guru:dev commit in: games-action/netrek-brmh/

2020-06-15 Thread Brian Gloyer
commit: 7fa2421f0c78778e5da9fd5465bb429a3166ca1d
Author: brian gloyer  gmail  com>
AuthorDate: Tue Jun 16 01:19:45 2020 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Tue Jun 16 01:19:45 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7fa2421f

games-action/netrek-brmh: make -> emake

Signed-off-by: brian gloyer  gmail.com>
Package-Manager: Portage-2.3.99, Repoman-2.3.22

 games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild 
b/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild
index 85ca096..ea3f79c 100644
--- a/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild
+++ b/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild
@@ -29,7 +29,7 @@ BDEPEND="
 
 src_configure() {
xmkmf || die
-   make depend || die
+   emake depend || die
 }
 
 src_compile() {



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

2020-06-14 Thread Brian Gloyer
commit: d321db19ffb1f9c099a6c9771bcb15a5cf9f3923
Author: brian gloyer  gmail  com>
AuthorDate: Mon Jun 15 01:31:03 2020 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Mon Jun 15 01:31:03 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d321db19

app-portage/pacvis: removed old ebuild

Signed-off-by: brian gloyer  gmail.com>
Package-Manager: Portage-2.3.99, Repoman-2.3.22

 app-portage/pacvis/Manifest|  1 -
 app-portage/pacvis/pacvis-0.4.1.ebuild | 18 --
 2 files changed, 19 deletions(-)

diff --git a/app-portage/pacvis/Manifest b/app-portage/pacvis/Manifest
index bc616a3..93f0a5d 100644
--- a/app-portage/pacvis/Manifest
+++ b/app-portage/pacvis/Manifest
@@ -1,2 +1 @@
-DIST pacvis-0.4.1.tar.gz 511582 BLAKE2B 
61fe99358b2d1c6f1b500583fa9f4b017ba2548e246c0a4ed2ab59e224e8e8273cfb9c1fdaa233421ce3f45a0e498598b757995c2e74e568450e81cbd44184aa
 SHA512 
146dc13f66c7dcb81f8cbe67461a58df2ea8874c7e4fe97910006b3295c55ce4aa1dff989586a46e2c50ab8156a8dd2519962bf041c54877d1e4de43915ae015
 DIST pacvis-0.4.2.tar.gz 511929 BLAKE2B 
3be3dd286caf27b4a27e6ee813db2445262438016def5d14afbeaec70d12ea905fe97cb94b9e19bfc1a12a9560e5647808a5f7e17347db3980f0d308081ce773
 SHA512 
da86165454845edc229fcd417ceb293402e400caead4ac23f2b8a5c28fd40eea6720c6016092ab5d375d9a756744a7f68a4dbd78431a410dada86048ee188c58

diff --git a/app-portage/pacvis/pacvis-0.4.1.ebuild 
b/app-portage/pacvis/pacvis-0.4.1.ebuild
deleted file mode 100644
index 2e20d84..000
--- a/app-portage/pacvis/pacvis-0.4.1.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{3_6,3_7} )
-
-inherit distutils-r1
-
-DESCRIPTION="Displays dependency graphs of packages"
-HOMEPAGE="https://github.com/bgloyer/pacvis.git;
-SRC_URI="https://github.com/bgloyer/pacvis/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="www-servers/tornado[${PYTHON_USEDEP}]"



[gentoo-commits] repo/proj/guru:dev commit in: games-action/netrek-brmh/

2020-06-14 Thread Brian Gloyer
commit: 38189810d74986d44b14b73d0ca9f1a4e1a97672
Author: brian gloyer  gmail  com>
AuthorDate: Sun Jun 14 23:35:20 2020 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Sun Jun 14 23:59:15 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=38189810

games-action/netrek-brmh: new package

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: brian gloyer  gmail.com>

 games-action/netrek-brmh/Manifest |  1 +
 games-action/netrek-brmh/metadata.xml | 16 +
 games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild | 44 +++
 3 files changed, 61 insertions(+)

diff --git a/games-action/netrek-brmh/Manifest 
b/games-action/netrek-brmh/Manifest
new file mode 100644
index 000..a2d3f21
--- /dev/null
+++ b/games-action/netrek-brmh/Manifest
@@ -0,0 +1 @@
+DIST netrek-brmh-2.6.0.tar.gz 294581 BLAKE2B 
62c7f8d5d1e905ee1d7202eee7d2320920ff0389b077b34ab090d8b1f0fb3b3bc9d07b0375b8a367ad2bd3a0a92f596c46bb5e5d53b64d9f1ef955710a7b295d
 SHA512 
c8651b8857e685a9a6da5f783ab80019517ab9c5af09a1eada4be8f7e9694cad32a39bbeaf271e07f08cd7266819ed7ea155af3f7cfc0781c70c4814aebb2e0c

diff --git a/games-action/netrek-brmh/metadata.xml 
b/games-action/netrek-brmh/metadata.xml
new file mode 100644
index 000..10c84fb
--- /dev/null
+++ b/games-action/netrek-brmh/metadata.xml
@@ -0,0 +1,16 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+brian.glo...@gmail.com
+brian gloyer
+  
+  
+
+  brian.glo...@gmail.com
+  brian gloyer
+
+https://github.com/bgloyer/netrek-client-brmh/issues/
+bgloyer/netrek-client-brmh
+  
+

diff --git a/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild 
b/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild
new file mode 100644
index 000..85ca096
--- /dev/null
+++ b/games-action/netrek-brmh/netrek-brmh-2.6.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit toolchain-funcs
+
+DESCRIPTION="brmh client for netrek"
+HOMEPAGE="https://netrek.org;
+SRC_URI="https://github.com/bgloyer/netrek-client-brmh/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+S="${WORKDIR}/netrek-client-brmh-${PV}"
+
+RDEPEND="
+   x11-base/xorg-proto
+   x11-libs/libX11
+   x11-libs/libXmu
+"
+DEPEND="
+   ${RDEPEND}
+"
+BDEPEND="
+   x11-misc/imake
+   x11-misc/gccmakedep
+"
+
+src_configure() {
+   xmkmf || die
+   make depend || die
+}
+
+src_compile() {
+   emake \
+   CC="$(tc-getCC)" \
+   CDEBUGFLAGS="${CFLAGS}" \
+   LOCAL_LDFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+   dobin netrek
+}



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

2019-11-05 Thread Brian Gloyer
commit: 7f27e74ceed3cd2c0f76b5d7e52660b790ef3349
Author: brian gloyer  gmail  com>
AuthorDate: Wed Nov  6 07:33:45 2019 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Wed Nov  6 07:36:17 2019 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7f27e74c

app-portage/pacvis: Bump to version 0.4.2

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: brian gloyer  gmail.com>

 app-portage/pacvis/Manifest|  1 +
 app-portage/pacvis/pacvis-0.4.2.ebuild | 18 ++
 2 files changed, 19 insertions(+)

diff --git a/app-portage/pacvis/Manifest b/app-portage/pacvis/Manifest
index 4959bde..bc616a3 100644
--- a/app-portage/pacvis/Manifest
+++ b/app-portage/pacvis/Manifest
@@ -1 +1,2 @@
 DIST pacvis-0.4.1.tar.gz 511582 BLAKE2B 
61fe99358b2d1c6f1b500583fa9f4b017ba2548e246c0a4ed2ab59e224e8e8273cfb9c1fdaa233421ce3f45a0e498598b757995c2e74e568450e81cbd44184aa
 SHA512 
146dc13f66c7dcb81f8cbe67461a58df2ea8874c7e4fe97910006b3295c55ce4aa1dff989586a46e2c50ab8156a8dd2519962bf041c54877d1e4de43915ae015
+DIST pacvis-0.4.2.tar.gz 511929 BLAKE2B 
3be3dd286caf27b4a27e6ee813db2445262438016def5d14afbeaec70d12ea905fe97cb94b9e19bfc1a12a9560e5647808a5f7e17347db3980f0d308081ce773
 SHA512 
da86165454845edc229fcd417ceb293402e400caead4ac23f2b8a5c28fd40eea6720c6016092ab5d375d9a756744a7f68a4dbd78431a410dada86048ee188c58

diff --git a/app-portage/pacvis/pacvis-0.4.2.ebuild 
b/app-portage/pacvis/pacvis-0.4.2.ebuild
new file mode 100644
index 000..2e20d84
--- /dev/null
+++ b/app-portage/pacvis/pacvis-0.4.2.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{3_6,3_7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Displays dependency graphs of packages"
+HOMEPAGE="https://github.com/bgloyer/pacvis.git;
+SRC_URI="https://github.com/bgloyer/pacvis/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="www-servers/tornado[${PYTHON_USEDEP}]"



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

2019-10-09 Thread Brian Gloyer
commit: 274f594ca8ddbb16ec63227b8ffa47a63a6f09cd
Author: brian gloyer  gmail  com>
AuthorDate: Thu Oct 10 04:07:10 2019 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Thu Oct 10 04:14:02 2019 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=274f594c

app-portage/pacvis: New Package

Shows an interactive graph of packages using a web interface

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: brian gloyer  gmail.com>

 app-portage/pacvis/Manifest|  1 +
 app-portage/pacvis/metadata.xml| 16 
 app-portage/pacvis/pacvis-0.4.1.ebuild | 18 ++
 app-portage/pacvis/pacvis-.ebuild  | 19 +++
 4 files changed, 54 insertions(+)

diff --git a/app-portage/pacvis/Manifest b/app-portage/pacvis/Manifest
new file mode 100644
index 000..4959bde
--- /dev/null
+++ b/app-portage/pacvis/Manifest
@@ -0,0 +1 @@
+DIST pacvis-0.4.1.tar.gz 511582 BLAKE2B 
61fe99358b2d1c6f1b500583fa9f4b017ba2548e246c0a4ed2ab59e224e8e8273cfb9c1fdaa233421ce3f45a0e498598b757995c2e74e568450e81cbd44184aa
 SHA512 
146dc13f66c7dcb81f8cbe67461a58df2ea8874c7e4fe97910006b3295c55ce4aa1dff989586a46e2c50ab8156a8dd2519962bf041c54877d1e4de43915ae015

diff --git a/app-portage/pacvis/metadata.xml b/app-portage/pacvis/metadata.xml
new file mode 100644
index 000..90bbe38
--- /dev/null
+++ b/app-portage/pacvis/metadata.xml
@@ -0,0 +1,16 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+brian.glo...@gmail.com
+brian gloyer
+  
+  
+
+  brian.glo...@gmail.com
+  brian gloyer
+
+https://github.com/bgloyer/pacvis/issues/
+bgloyer/pacvis
+  
+

diff --git a/app-portage/pacvis/pacvis-0.4.1.ebuild 
b/app-portage/pacvis/pacvis-0.4.1.ebuild
new file mode 100644
index 000..2e20d84
--- /dev/null
+++ b/app-portage/pacvis/pacvis-0.4.1.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{3_6,3_7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Displays dependency graphs of packages"
+HOMEPAGE="https://github.com/bgloyer/pacvis.git;
+SRC_URI="https://github.com/bgloyer/pacvis/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="www-servers/tornado[${PYTHON_USEDEP}]"

diff --git a/app-portage/pacvis/pacvis-.ebuild 
b/app-portage/pacvis/pacvis-.ebuild
new file mode 100644
index 000..90458ae
--- /dev/null
+++ b/app-portage/pacvis/pacvis-.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{3_6,3_7} )
+
+EGIT_REPO_URI="https://github.com/bgloyer/pacvis.git;
+inherit distutils-r1 git-r3
+
+DESCRIPTION="Displays dependency graphs of packages"
+HOMEPAGE="https://github.com/bgloyer/pacvis.git;
+SRC_URI=""
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+RDEPEND="www-servers/tornado[${PYTHON_USEDEP}]"



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

2019-10-07 Thread Brian Gloyer
commit: 0e0653beec6499423c8c138390c41a286b7b12ed
Author: brian gloyer  gmail  com>
AuthorDate: Mon Oct  7 05:49:17 2019 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Mon Oct  7 05:51:32 2019 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0e0653be

app-portage/pacvis: Bump to version 0.4.1

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: brian gloyer  gmail.com>

 app-portage/pacvis/Manifest | 2 +-
 app-portage/pacvis/{pacvis-0.4.0.ebuild => pacvis-0.4.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/pacvis/Manifest b/app-portage/pacvis/Manifest
index 5f8b54d..4959bde 100644
--- a/app-portage/pacvis/Manifest
+++ b/app-portage/pacvis/Manifest
@@ -1 +1 @@
-DIST pacvis-0.4.0.tar.gz 510373 BLAKE2B 
0935eb1c5789d0e744a6b3a8c147ecaaa0cbb8e6de02996d7c4e608f86b660e3c2391b66925618f8fcf82ec6df844bb0748dda25c59542a6711c5601a8c8
 SHA512 
c6d920a485672c9f1083619be2788823f818c5a8adeee1ee9d207b3a40b5c0c7b1265aab2bc9533324cdc7c53ba9926751c6e1f129be7f5b1c64346ec3e6669a
+DIST pacvis-0.4.1.tar.gz 511582 BLAKE2B 
61fe99358b2d1c6f1b500583fa9f4b017ba2548e246c0a4ed2ab59e224e8e8273cfb9c1fdaa233421ce3f45a0e498598b757995c2e74e568450e81cbd44184aa
 SHA512 
146dc13f66c7dcb81f8cbe67461a58df2ea8874c7e4fe97910006b3295c55ce4aa1dff989586a46e2c50ab8156a8dd2519962bf041c54877d1e4de43915ae015

diff --git a/app-portage/pacvis/pacvis-0.4.0.ebuild 
b/app-portage/pacvis/pacvis-0.4.1.ebuild
similarity index 100%
rename from app-portage/pacvis/pacvis-0.4.0.ebuild
rename to app-portage/pacvis/pacvis-0.4.1.ebuild



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

2019-08-29 Thread Brian Gloyer
commit: 0b327ff4532fc6c001c3a2d8398d98698fb0e216
Author: brian gloyer  thuy  com>
AuthorDate: Thu Aug 29 06:14:59 2019 +
Commit:     Brian Gloyer  gmail  com>
CommitDate: Fri Aug 30 02:35:07 2019 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0b327ff4

port of pacvis to Gentoo.

pacvis shows a dependency graph of packages as seen by portage

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Bug: https://bugs.gentoo.org/692590
Signed-off-by: brian gloyer  gmail.com>

 app-portage/pacvis/Manifest|  1 +
 app-portage/pacvis/metadata.xml| 16 
 app-portage/pacvis/pacvis-0.4.0.ebuild | 18 ++
 app-portage/pacvis/pacvis-.ebuild  | 19 +++
 4 files changed, 54 insertions(+)

diff --git a/app-portage/pacvis/Manifest b/app-portage/pacvis/Manifest
new file mode 100644
index 000..5f8b54d
--- /dev/null
+++ b/app-portage/pacvis/Manifest
@@ -0,0 +1 @@
+DIST pacvis-0.4.0.tar.gz 510373 BLAKE2B 
0935eb1c5789d0e744a6b3a8c147ecaaa0cbb8e6de02996d7c4e608f86b660e3c2391b66925618f8fcf82ec6df844bb0748dda25c59542a6711c5601a8c8
 SHA512 
c6d920a485672c9f1083619be2788823f818c5a8adeee1ee9d207b3a40b5c0c7b1265aab2bc9533324cdc7c53ba9926751c6e1f129be7f5b1c64346ec3e6669a

diff --git a/app-portage/pacvis/metadata.xml b/app-portage/pacvis/metadata.xml
new file mode 100644
index 000..90bbe38
--- /dev/null
+++ b/app-portage/pacvis/metadata.xml
@@ -0,0 +1,16 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+brian.glo...@gmail.com
+brian gloyer
+  
+  
+
+  brian.glo...@gmail.com
+  brian gloyer
+
+https://github.com/bgloyer/pacvis/issues/
+bgloyer/pacvis
+  
+

diff --git a/app-portage/pacvis/pacvis-0.4.0.ebuild 
b/app-portage/pacvis/pacvis-0.4.0.ebuild
new file mode 100644
index 000..2e20d84
--- /dev/null
+++ b/app-portage/pacvis/pacvis-0.4.0.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{3_6,3_7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Displays dependency graphs of packages"
+HOMEPAGE="https://github.com/bgloyer/pacvis.git;
+SRC_URI="https://github.com/bgloyer/pacvis/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="www-servers/tornado[${PYTHON_USEDEP}]"

diff --git a/app-portage/pacvis/pacvis-.ebuild 
b/app-portage/pacvis/pacvis-.ebuild
new file mode 100644
index 000..90458ae
--- /dev/null
+++ b/app-portage/pacvis/pacvis-.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{3_6,3_7} )
+
+EGIT_REPO_URI="https://github.com/bgloyer/pacvis.git;
+inherit distutils-r1 git-r3
+
+DESCRIPTION="Displays dependency graphs of packages"
+HOMEPAGE="https://github.com/bgloyer/pacvis.git;
+SRC_URI=""
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+RDEPEND="www-servers/tornado[${PYTHON_USEDEP}]"