[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2022-12-18 Thread Sam James
commit: fc1accd2f8cacf4a150e71ad1940b729eddd08f4
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 18 12:44:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 18 12:44:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc1accd2

app-admin/radmind: Stabilize 1.15.4-r1 x86, #886649

Signed-off-by: Sam James  gentoo.org>

 app-admin/radmind/radmind-1.15.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/radmind/radmind-1.15.4-r1.ebuild 
b/app-admin/radmind/radmind-1.15.4-r1.ebuild
index 0f568b6c08d0..5fcd12e2ac45 100644
--- a/app-admin/radmind/radmind-1.15.4-r1.ebuild
+++ b/app-admin/radmind/radmind-1.15.4-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/voretaq7/radmind/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="pam zlib"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2022-07-29 Thread Sam James
commit: 8e9f05a7277e0a42483b425ed394526fb8f04ac5
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul 29 09:31:34 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul 29 20:35:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e9f05a7

app-admin/radmind: add github upstream metadata

Signed-off-by: Sam James  gentoo.org>

 app-admin/radmind/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-admin/radmind/metadata.xml b/app-admin/radmind/metadata.xml
index e980be75a6a5..4bf7c59e8555 100644
--- a/app-admin/radmind/metadata.xml
+++ b/app-admin/radmind/metadata.xml
@@ -5,6 +5,7 @@
A suite of Unix command-line tools and a server 
designed to remotely administer
 the file systems of multiple Unix machines.

+   Radmind/radmind
radmind

 



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2022-05-14 Thread Sam James
commit: 9eff4d0ba68af651bcccd797849bc72849faac53
Author: orbea  riseup  net>
AuthorDate: Sat May 14 17:59:47 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun May 15 00:05:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9eff4d0b

app-admin/radmind: Remove old

Signed-off-by: orbea  riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/25485
Signed-off-by: Sam James  gentoo.org>

 app-admin/radmind/radmind-1.15.4.ebuild | 41 -
 1 file changed, 41 deletions(-)

diff --git a/app-admin/radmind/radmind-1.15.4.ebuild 
b/app-admin/radmind/radmind-1.15.4.ebuild
deleted file mode 100644
index 2cf0aaf939f6..
--- a/app-admin/radmind/radmind-1.15.4.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="Command-line tools and server to remotely administer multiple 
Unix filesystems"
-HOMEPAGE="https://github.com/Radmind https://sourceforge.net/projects/radmind/;
-SRC_URI="https://github.com/voretaq7/radmind/releases/download/${P}/${P}.tar.gz;
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="dev-libs/openssl:0="
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.7.0-gentoo.patch
-   "${FILESDIR}"/${PN}-1.14.1-glibc225.patch
-   # 779664
-   "${FILESDIR}"/${PN}-1.15.4-autoreconf.patch
-   "${FILESDIR}"/${PN}-1.15.4-autoreconf-libsnet.patch
-)
-
-src_prepare() {
-   default
-
-   # We really don't want these
-   # https://github.com/Radmind/radmind/pull/336
-   # https://sourceforge.net/p/libsnet/patches/7/
-   rm -f {,libsnet/}aclocal.m4 || die
-
-   eautoreconf
-}
-
-src_install() {
-   default
-   keepdir /var/radmind/{cert,client,postapply,preapply}
-}



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/files/, app-admin/radmind/

2022-05-14 Thread Sam James
commit: 1843f84e6b30d338ad004baed919ef6313fe0e4f
Author: orbea  riseup  net>
AuthorDate: Sat May 14 17:44:59 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun May 15 00:05:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1843f84e

app-admin/radmind: Fix build with cyrus-sasl

When radmind is build while cyrus-sasl is installed on the system the
libsnet submodule will enable it and then radmind will fail to compile
with undefined refererenes for sasl.

This was caused by my earlier patches that accidentally dropped that
part in radmind that disabled sasl support during the libsnet configure
process.

I also added missing dependencies and USE flags.

Bug: https://bugs.gentoo.org/844160
Upstream-PR: https://github.com/Radmind/radmind/pull/336
Upstream-PR: https://github.com/voretaq7/radmind/pull/1
Upstream-PR: https://sourceforge.net/p/libsnet/patches/7/
Fixes: 
https://github.com/gentoo/gentoo/commit/601775bd1dbb2e6f87c8eb39bee18a8964324e22
Signed-off-by: orbea  riseup.net>
Signed-off-by: Sam James  gentoo.org>

 .../files/radmind-1.15.4-autoreconf-libsnet.patch  | 109 +
 .../radmind/files/radmind-1.15.4-autoreconf.patch  | 176 +
 app-admin/radmind/radmind-1.15.4-r1.ebuild |  57 +++
 3 files changed, 342 insertions(+)

diff --git a/app-admin/radmind/files/radmind-1.15.4-autoreconf-libsnet.patch 
b/app-admin/radmind/files/radmind-1.15.4-autoreconf-libsnet.patch
index 211342d0bd83..a33003b33424 100644
--- a/app-admin/radmind/files/radmind-1.15.4-autoreconf-libsnet.patch
+++ b/app-admin/radmind/files/radmind-1.15.4-autoreconf-libsnet.patch
@@ -165,3 +165,112 @@ index 000..88a421b
 -- 
 2.35.1
 
+From 4ea29130382b5ae8b9cf3e3dc8962da764f65377 Mon Sep 17 00:00:00 2001
+From: orbea 
+Date: Fri, 13 May 2022 13:41:49 -0700
+Subject: [PATCH 2/2] Add AC_ARG_ENABLE options for ssl, sasl and zlib
+
+---
+ configure.ac | 83 +---
+ 1 file changed, 66 insertions(+), 17 deletions(-)
+
+diff --git a/libsnet/configure.ac b/libsnet/configure.ac
+index 83f7e59..9cd16c7 100644
+--- a/libsnet/configure.ac
 b/libsnet/configure.ac
+@@ -11,26 +11,75 @@ AC_PROG_AWK
+ AC_PROG_CC
+ AC_PROG_INSTALL
+ 
+-PKG_CHECK_MODULES([zlib], [zlib],
+-[AC_DEFINE([HAVE_ZLIB], [1], [zlib])],
+-[AC_MSG_WARN(zlib.pc not found, building without zlib support)])
+-AC_SUBST([zlib_LIBS])
+-AC_SUBST([zlib_CFLAGS])
++# Enable features
++AC_ARG_ENABLE([sasl],
++AS_HELP_STRING([--enable-sasl], [Build with crypto_sasl 
@<:@default=yes@:>@]),
++[AS_CASE(${enableval}, [yes], [], [no], [],
++[AC_MSG_ERROR([bad value '${enableval}' for --enable-sasl])])],
++[enable_sasl=check])
+ 
+-# Checks for libraries.
+-if test \! x_$with_ssl = x_no; then
+-PKG_CHECK_MODULES([ssl], [openssl],
+-[AC_DEFINE([HAVE_LIBSSL], [1], [libssl])],
+-[AC_MSG_WARN(openssl.pc not found, building without libssl support)])
+-AC_SUBST([ssl_LIBS])
+-AC_SUBST([ssl_CFLAGS])
+-fi
++AC_ARG_ENABLE([ssl],
++AS_HELP_STRING([--enable-ssl], [Build with openssl @<:@default=yes@:>@]),
++[AS_CASE(${enableval}, [yes], [], [no], [],
++[AC_MSG_ERROR([bad value '${enableval}' for --enable-ssl])])],
++[enable_ssl=check])
+ 
+-PKG_CHECK_MODULES([sasl], [libsasl2],
+-[AC_DEFINE([HAVE_LIBSASL], [1], [libsasl])],
+-[AC_MSG_WARN(libsasl2.pc not found, building without libsasl support)])
+-AC_SUBST([sasl_LIBS])
++AC_ARG_ENABLE([zlib],
++AS_HELP_STRING([--enable-zlib], [Build with zlib @<:@default=yes@:>@]),
++[AS_CASE(${enableval}, [yes], [], [no], [],
++[AC_MSG_ERROR([bad value '${enableval}' for --enable-zlib])])],
++[enable_zlib=check])
++
++# Checks for crypto_sasl.
++AS_IF([test x$enable_sasl != xno],
++[PKG_CHECK_MODULES([sasl], [libsasl2],
++[AC_DEFINE([HAVE_LIBSASL], [1], [libsasl])],
++[AS_IF([test x$enable_sasl != xyes],
++[AC_MSG_WARN([cannot find libsasl2.pc, disabling libsasl 
support])],
++[enable_sasl=error])
++])
++])
++
++AS_IF([test x$enable_sasl = xerror],
++[AC_MSG_ERROR([cannot find libsasl2.pc and libsasl support requested])])
++
++AM_CONDITIONAL([ENABLE_LIBSASL], [test x$enable_sasl = xyes])
+ AC_SUBST([sasl_CFLAGS])
++AC_SUBST([sasl_LIBS])
++
++# Checks for openssl.
++AS_IF([test x$enable_ssl != xno],
++[PKG_CHECK_MODULES([ssl], [openssl],
++[AC_DEFINE([HAVE_LIBSSL], [1], [libssl])],
++[AS_IF([test x$enable_ssl != xyes],
++[AC_MSG_WARN([cannot find openssl.pc, disabling libssl support])],
++[enable_ssl=error])
++])
++])
++
++AS_IF([test x$enable_ssl = xerror],
++[AC_MSG_ERROR([cannot find openssl.pc and libssl support requested])])
++
++AM_CONDITIONAL([ENABLE_LIBSSL], [test x$enable_ssl = xyes])
++AC_SUBST([ssl_CFLAGS])
++AC_SUBST([ssl_LIBS])
++
++# Checks for zlib.
++AS_IF([test x$enable_zlib != xno],
++

[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/, app-admin/radmind/files/

2022-05-13 Thread Sam James
commit: 601775bd1dbb2e6f87c8eb39bee18a8964324e22
Author: orbea  riseup  net>
AuthorDate: Fri May 13 00:46:07 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri May 13 20:17:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=601775bd

app-admin/radmind: Add 1.15.4

The build prepends ../ to the $(LIBTOOL) variable which obviously
doesn't work with slibtool.

Additionally the build has a lot of other autoreconf issues that
needed to be fixed.

Upstream-PR: https://github.com/voretaq7/radmind/pull/1
Upstream-PR: https://github.com/Radmind/radmind/pull/336
Upstream-PR: https://sourceforge.net/p/libsnet/patches/4/
Upstream-PR: https://sourceforge.net/p/libsnet/patches/6/
Bug: https://bugs.gentoo.org/779664
Signed-off-by: orbea  riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/25459
Signed-off-by: Sam James  gentoo.org>

 app-admin/radmind/Manifest |   1 +
 .../files/radmind-1.15.4-autoreconf-libsnet.patch  | 167 
 .../radmind/files/radmind-1.15.4-autoreconf.patch  | 219 +
 app-admin/radmind/radmind-1.15.4.ebuild|  41 
 4 files changed, 428 insertions(+)

diff --git a/app-admin/radmind/Manifest b/app-admin/radmind/Manifest
index e5cfe77288e0..7d07c97eef1d 100644
--- a/app-admin/radmind/Manifest
+++ b/app-admin/radmind/Manifest
@@ -1 +1,2 @@
 DIST radmind-1.15.3.tar.gz 843033 BLAKE2B 
3d4446e5ce9e668039277f63a16c014dbbecca870886e68603af4100cdbf4a0adf074d26c90985968ec1a680fb483395676b85020134ec56686318b3d0664d99
 SHA512 
121fa2ea4dc9532bdbb1440c3ee485db1d6a1e770bd01dc0e832d51ee26112441ff47bea8e7f063feffc4d5bf3cfc5ce53d316bb469ff4ff0a65ca5463c99d11
+DIST radmind-1.15.4.tar.gz 413132 BLAKE2B 
1327b429e12b09d49866e393b344ec7e2c471313a9437e5cb979f25674c7871948a0a4374c05d4939a697702675df70279ac476b3ed6a437b99afe5c98918e25
 SHA512 
538165123dfebc5c3890ae0864bc32988170e5235093d291a18ea7cf86eb50e9cf90c8a0530ae4b72611e95b5faa9474561f411ad646374173ee7b14235b5a5b

diff --git a/app-admin/radmind/files/radmind-1.15.4-autoreconf-libsnet.patch 
b/app-admin/radmind/files/radmind-1.15.4-autoreconf-libsnet.patch
new file mode 100644
index ..211342d0bd83
--- /dev/null
+++ b/app-admin/radmind/files/radmind-1.15.4-autoreconf-libsnet.patch
@@ -0,0 +1,167 @@
+From c91010238967d6042f2fffd3dd00b436ba5a39f0 Mon Sep 17 00:00:00 2001
+From: orbea 
+Date: Thu, 12 May 2022 22:41:54 -0700
+Subject: [PATCH] Upstream-PR: https://sourceforge.net/p/libsnet/patches/7/
+
+Restore missing parts from aclocal.m4
+
+* Uses pkg-config for libsasl, libssl and zlib
+* Restores CHECK_PROFILED
+* Removes broken legacy osx macros
+
+The legacy CHECK_SASL, CHECK_SSL and CHECK_ZLIB macros
+have problems with adding hardcoded -L linker directories
+to the LDFLAGS which is inappropriate on modern systems.
+Using pkg-config avoids this problem.
+
+When setting LIBTOOL in the environment to slibtool the
+profiled libraries will fail to build because of the ../
+prepended to the $(LIBTOOL) variable. This was expoed when
+building radmind which includes libsnet as a submodule.
+
+Gentoo Bug: https://bugs.gentoo.org/show_bug.cgi?id=779664
+---
+ libsnet/Makefile.in| 29 +++--
+ libsnet/configure.ac   | 22 +-
+ libsnet/m4/profiled.m4 | 16 
+ 3 files changed, 48 insertions(+), 19 deletions(-)
+ create mode 100644 m4/profiled.m4
+
+diff --git a/libsnet/Makefile.in b/libsnet/Makefile.in
+index 8af7eaf..2c7932e 100644
+--- a/libsnet/Makefile.in
 b/libsnet/Makefile.in
+@@ -14,8 +14,9 @@ LOBJ = snet.lo
+ INCPATH=  @CPPFLAGS@ -I.
+ DEFS= 
+ OPTOPTS=  @OPTOPTS@
+-CFLAGS=   ${DEFS} ${OPTOPTS} ${INCPATH} @CFLAGS@
+-LDFLAGS=  @LDFLAGS@
++CFLAGS=   ${DEFS} ${OPTOPTS} ${INCPATH} \
++  @sasl_CFLAGS@ @ssl_CFLAGS@ @zlib_CFLAGS@ @CFLAGS@
++LDFLAGS=  @LDFLAGS@ @sasl_LIBS@ @ssl_LIBS@ @zlib_LIBS@
+ PROFILED= @PROFILED@
+ CC=   @CC@
+ 
+@@ -31,31 +32,31 @@ DISTDIR=   ../libsnet-${VERSION}
+ .SUFFIXES: .o .lo
+ 
+ .c.o:
+-  $(LIBTOOL) --mode=compile \
++  $(LIBTOOL) --mode=compile --tag=CC \
+ $(CC) -c $(CFLAGS) $<
+   @if test x_$(PROFILED) = x_true ; then echo "building profiled $@" ; \
+-( mkdir -p profiled; cd profiled ; ../$(LIBTOOL) --mode=compile \
++mkdir -p profiled; $(LIBTOOL) --mode=compile --tag=CC \
+ $(CC) -c $(CFLAGS) -p -I.. -I$(srcdir) `if [ -f $< ]; then echo $<; \
+-else echo ../$<; fi` >/dev/null 2>&1 ) ; fi
++else echo ../$<; fi` >/dev/null 2>&1 ; fi
+ 
+ .c.lo:
+-  $(LIBTOOL) --mode=compile \
++  $(LIBTOOL) --mode=compile --tag=CC \
+ $(CC) -c $(CFLAGS) $<
+   @if test x_$(PROFILED) = x_true ; then echo "building profiled $@" ; \
+-( mkdir -p profiled; cd profiled ; ../$(LIBTOOL) --mode=compile \
++mkdir -p profiled; $(LIBTOOL) --mode=compile --tag=CC \
+ $(CC) -c $(CFLAGS) -p -I.. 

[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2022-02-13 Thread Matthew Smith
commit: e7de810da5e5de84618df6113677af8cceb5e2f8
Author: Matthew Smith  gentoo  org>
AuthorDate: Sun Feb 13 11:02:03 2022 +
Commit: Matthew Smith  gentoo  org>
CommitDate: Sun Feb 13 16:09:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7de810d

app-admin/radmind: Remove obsolete blocker

Signed-off-by: Matthew Smith  gentoo.org>

 app-admin/radmind/radmind-1.15.3-r1.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/app-admin/radmind/radmind-1.15.3-r1.ebuild 
b/app-admin/radmind/radmind-1.15.3-r1.ebuild
index 0e948d4f5d21..972433fc9009 100644
--- a/app-admin/radmind/radmind-1.15.3-r1.ebuild
+++ b/app-admin/radmind/radmind-1.15.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,8 +12,7 @@ SLOT="0"
 KEYWORDS="amd64 x86"
 
 DEPEND="dev-libs/openssl:0="
-RDEPEND="${DEPEND}
-   !dev-util/repo"
+RDEPEND="${DEPEND}"
 
 PATCHES=(
"${FILESDIR}"/${PN}-1.7.0-gentoo.patch



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2021-02-25 Thread Sam James
commit: f2a11e7cec6c3d4defd78e3776152dd2efc19d17
Author: Jakov Smolic  sartura  hr>
AuthorDate: Thu Feb 25 18:07:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Feb 25 19:07:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2a11e7c

app-admin/radmind: Remove old

Bug: https://bugs.gentoo.org/769896
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: Sam James  gentoo.org>

 app-admin/radmind/Manifest  |  1 -
 app-admin/radmind/radmind-1.15.1.ebuild | 38 -
 2 files changed, 39 deletions(-)

diff --git a/app-admin/radmind/Manifest b/app-admin/radmind/Manifest
index 6cc119ceb3f..e5cfe77288e 100644
--- a/app-admin/radmind/Manifest
+++ b/app-admin/radmind/Manifest
@@ -1,2 +1 @@
-DIST radmind-1.15.1.tar.gz 449653 BLAKE2B 
8a516ede28d561a60f7c51424c6e48ea030dd571528fd3422fab3b23b4448ee898d408136c4845ebe9c5f9088fb425ed67b341f4d1721747a415183687e6daa6
 SHA512 
3dd9477d00083cf9912e2143adff52f9bc127665ff6705bc200b7323e53390fb76ac125733596ba309905fca3db062c7b1bc1d1372b77a3044c3794bacb96e6c
 DIST radmind-1.15.3.tar.gz 843033 BLAKE2B 
3d4446e5ce9e668039277f63a16c014dbbecca870886e68603af4100cdbf4a0adf074d26c90985968ec1a680fb483395676b85020134ec56686318b3d0664d99
 SHA512 
121fa2ea4dc9532bdbb1440c3ee485db1d6a1e770bd01dc0e832d51ee26112441ff47bea8e7f063feffc4d5bf3cfc5ce53d316bb469ff4ff0a65ca5463c99d11

diff --git a/app-admin/radmind/radmind-1.15.1.ebuild 
b/app-admin/radmind/radmind-1.15.1.ebuild
deleted file mode 100644
index 96807f42abc..000
--- a/app-admin/radmind/radmind-1.15.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic
-
-DESCRIPTION="Command-line tools and server to remotely administer multiple 
Unix filesystems"
-HOMEPAGE="https://github.com/Radmind https://sourceforge.net/projects/radmind/;
-SRC_URI="https://github.com/voretaq7/radmind/releases/download/${P}/${P}.tar.gz;
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="libressl"
-
-DEPEND="
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-"
-RDEPEND="${DEPEND}
-   !dev-util/repo
-"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.7.0-gentoo.patch
-   "${FILESDIR}"/${PN}-1.14.1-glibc225.patch
-)
-
-src_configure() {
-   append-cflags -fcommon
-   default
-}
-
-src_install() {
-   default
-   keepdir /var/radmind/{cert,client,postapply,preapply}
-}



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2021-02-25 Thread Sam James
commit: db488d0021d50516e8d725f1a75def2fe62febc3
Author: Sam James  gentoo  org>
AuthorDate: Thu Feb 25 17:53:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Feb 25 17:53:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db488d00

app-admin/radmind: Stabilize 1.15.3-r1 amd64, #769896

Signed-off-by: Sam James  gentoo.org>

 app-admin/radmind/radmind-1.15.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/radmind/radmind-1.15.3-r1.ebuild 
b/app-admin/radmind/radmind-1.15.3-r1.ebuild
index 75d9ba668d2..0e948d4f5d2 100644
--- a/app-admin/radmind/radmind-1.15.3-r1.ebuild
+++ b/app-admin/radmind/radmind-1.15.3-r1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/voretaq7/radmind/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 DEPEND="dev-libs/openssl:0="
 RDEPEND="${DEPEND}



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2021-02-24 Thread Sam James
commit: 597f5b9562e5cadf600ca6fcca8381e6185a1b8d
Author: Sam James  gentoo  org>
AuthorDate: Thu Feb 25 03:24:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Feb 25 03:24:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=597f5b95

app-admin/radmind: Stabilize 1.15.3-r1 x86, #769896

Signed-off-by: Sam James  gentoo.org>

 app-admin/radmind/radmind-1.15.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/radmind/radmind-1.15.3-r1.ebuild 
b/app-admin/radmind/radmind-1.15.3-r1.ebuild
index a7be0069497..75d9ba668d2 100644
--- a/app-admin/radmind/radmind-1.15.3-r1.ebuild
+++ b/app-admin/radmind/radmind-1.15.3-r1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/voretaq7/radmind/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 DEPEND="dev-libs/openssl:0="
 RDEPEND="${DEPEND}



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2021-02-20 Thread David Seifert
commit: cf63dd7bd5bde2028f6823661f6a95ea01a3ff0e
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sat Feb 20 19:30:59 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Feb 20 19:30:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf63dd7b

app-admin/radmind: Drop libressl support

Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: David Seifert  gentoo.org>

 .../radmind/{radmind-1.15.3.ebuild => radmind-1.15.3-r1.ebuild}  | 9 ++---
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/app-admin/radmind/radmind-1.15.3.ebuild 
b/app-admin/radmind/radmind-1.15.3-r1.ebuild
similarity index 83%
rename from app-admin/radmind/radmind-1.15.3.ebuild
rename to app-admin/radmind/radmind-1.15.3-r1.ebuild
index 7a4b40665a2..a7be0069497 100644
--- a/app-admin/radmind/radmind-1.15.3.ebuild
+++ b/app-admin/radmind/radmind-1.15.3-r1.ebuild
@@ -10,15 +10,10 @@ 
SRC_URI="https://github.com/voretaq7/radmind/releases/download/${P}/${P}.tar.gz;
 LICENSE="HPND"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="libressl"
 
-DEPEND="
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-"
+DEPEND="dev-libs/openssl:0="
 RDEPEND="${DEPEND}
-   !dev-util/repo
-"
+   !dev-util/repo"
 
 PATCHES=(
"${FILESDIR}"/${PN}-1.7.0-gentoo.patch



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2021-02-09 Thread Ben Kohler
commit: 79ab506b3c9268b40e70f0a894e7e3b10dd25756
Author: Ben Kohler  gentoo  org>
AuthorDate: Tue Feb  9 16:33:53 2021 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Tue Feb  9 16:59:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79ab506b

app-admin/radmind: bump to 1.15.3

Includes gcc10 fix upstream

Bug: https://bugs.gentoo.org/706702
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Ben Kohler  gentoo.org>

 app-admin/radmind/Manifest  |  1 +
 app-admin/radmind/radmind-1.15.3.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/app-admin/radmind/Manifest b/app-admin/radmind/Manifest
index b7eeb46b7c6..6cc119ceb3f 100644
--- a/app-admin/radmind/Manifest
+++ b/app-admin/radmind/Manifest
@@ -1 +1,2 @@
 DIST radmind-1.15.1.tar.gz 449653 BLAKE2B 
8a516ede28d561a60f7c51424c6e48ea030dd571528fd3422fab3b23b4448ee898d408136c4845ebe9c5f9088fb425ed67b341f4d1721747a415183687e6daa6
 SHA512 
3dd9477d00083cf9912e2143adff52f9bc127665ff6705bc200b7323e53390fb76ac125733596ba309905fca3db062c7b1bc1d1372b77a3044c3794bacb96e6c
+DIST radmind-1.15.3.tar.gz 843033 BLAKE2B 
3d4446e5ce9e668039277f63a16c014dbbecca870886e68603af4100cdbf4a0adf074d26c90985968ec1a680fb483395676b85020134ec56686318b3d0664d99
 SHA512 
121fa2ea4dc9532bdbb1440c3ee485db1d6a1e770bd01dc0e832d51ee26112441ff47bea8e7f063feffc4d5bf3cfc5ce53d316bb469ff4ff0a65ca5463c99d11

diff --git a/app-admin/radmind/radmind-1.15.3.ebuild 
b/app-admin/radmind/radmind-1.15.3.ebuild
new file mode 100644
index 000..7a4b40665a2
--- /dev/null
+++ b/app-admin/radmind/radmind-1.15.3.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Command-line tools and server to remotely administer multiple 
Unix filesystems"
+HOMEPAGE="https://github.com/Radmind https://sourceforge.net/projects/radmind/;
+SRC_URI="https://github.com/voretaq7/radmind/releases/download/${P}/${P}.tar.gz;
+
+LICENSE="HPND"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libressl"
+
+DEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+"
+RDEPEND="${DEPEND}
+   !dev-util/repo
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.7.0-gentoo.patch
+   "${FILESDIR}"/${PN}-1.14.1-glibc225.patch
+)
+
+src_install() {
+   default
+   keepdir /var/radmind/{cert,client,postapply,preapply}
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2020-11-07 Thread Andreas K. Hüttel
commit: 9dce1946ac8d694128fd5e871a09c9e5e37a223d
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Nov  7 18:24:34 2020 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Nov  7 18:24:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dce1946

app-admin/radmind: Apply gcc-10 workaround

Bug: https://bugs.gentoo.org/706556
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 app-admin/radmind/radmind-1.15.1.ebuild | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/app-admin/radmind/radmind-1.15.1.ebuild 
b/app-admin/radmind/radmind-1.15.1.ebuild
index 3d2decf2a3d..96807f42abc 100644
--- a/app-admin/radmind/radmind-1.15.1.ebuild
+++ b/app-admin/radmind/radmind-1.15.1.ebuild
@@ -1,8 +1,10 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
+inherit flag-o-matic
+
 DESCRIPTION="Command-line tools and server to remotely administer multiple 
Unix filesystems"
 HOMEPAGE="https://github.com/Radmind https://sourceforge.net/projects/radmind/;
 
SRC_URI="https://github.com/voretaq7/radmind/releases/download/${P}/${P}.tar.gz;
@@ -25,6 +27,11 @@ PATCHES=(
"${FILESDIR}"/${PN}-1.14.1-glibc225.patch
 )
 
+src_configure() {
+   append-cflags -fcommon
+   default
+}
+
 src_install() {
default
keepdir /var/radmind/{cert,client,postapply,preapply}



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/files/, app-admin/radmind/

2019-05-19 Thread Andreas Sturmlechner
commit: 709146dcdd1cc924d47db6aa83511de7005600ba
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May 19 20:57:49 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May 19 21:07:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=709146dc

app-admin/radmind: Drop 1.14.1-r1

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-admin/radmind/Manifest |  1 -
 .../files/radmind-1.14.0-parallel-make.patch   | 50 --
 app-admin/radmind/files/radmind-1.7.1-dnssd.patch  | 22 --
 app-admin/radmind/radmind-1.14.1-r1.ebuild | 34 ---
 4 files changed, 107 deletions(-)

diff --git a/app-admin/radmind/Manifest b/app-admin/radmind/Manifest
index 840b4bef85c..b7eeb46b7c6 100644
--- a/app-admin/radmind/Manifest
+++ b/app-admin/radmind/Manifest
@@ -1,2 +1 @@
-DIST radmind-1.14.1.tar.gz 403553 BLAKE2B 
ea89c7c28714134df3d9f9ab522c4499590f5f08f3b5d6c0d02c750ee896922720d66e4f08dac70fe93933da0fa5d8776fdf0f7d32b926d76ece27cbcedb87ad
 SHA512 
bccf9681a6899be3b500065237dd1e04cd83ffb6f9be0e355412e7b0c556325f7d13435cec65a8a5e156e4411da915744f01a615472f6361d52c4d54d8be20eb
 DIST radmind-1.15.1.tar.gz 449653 BLAKE2B 
8a516ede28d561a60f7c51424c6e48ea030dd571528fd3422fab3b23b4448ee898d408136c4845ebe9c5f9088fb425ed67b341f4d1721747a415183687e6daa6
 SHA512 
3dd9477d00083cf9912e2143adff52f9bc127665ff6705bc200b7323e53390fb76ac125733596ba309905fca3db062c7b1bc1d1372b77a3044c3794bacb96e6c

diff --git a/app-admin/radmind/files/radmind-1.14.0-parallel-make.patch 
b/app-admin/radmind/files/radmind-1.14.0-parallel-make.patch
deleted file mode 100644
index 63c52ba3306..000
--- a/app-admin/radmind/files/radmind-1.14.0-parallel-make.patch
+++ /dev/null
@@ -1,50 +0,0 @@
 a/Makefile.in
-+++ b/Makefile.in
-@@ -204,37 +204,37 @@
- radmind : libsnet/libsnet.la ${RADMIND_OBJ} Makefile
-   ${CC} ${CFLAGS} -o radmind ${RADMIND_OBJ} ${LDFLAGS}
- 
--fsdiff : ${FSDIFF_OBJ}
-+fsdiff : libsnet/libsnet.la ${FSDIFF_OBJ}
-   ${CC} ${CFLAGS} -o fsdiff ${FSDIFF_OBJ} ${LDFLAGS}
- 
--ktcheck: ${KTCHECK_OBJ}
-+ktcheck: libsnet/libsnet.la ${KTCHECK_OBJ}
-   ${CC} ${CFLAGS} -o ktcheck ${KTCHECK_OBJ} ${LDFLAGS}
- 
--lapply: ${LAPPLY_OBJ}
-+lapply: libsnet/libsnet.la ${LAPPLY_OBJ}
-   ${CC} ${CFLAGS} -o lapply ${LAPPLY_OBJ} ${LDFLAGS}
- 
--lcksum: ${LCKSUM_OBJ}
-+lcksum: libsnet/libsnet.la ${LCKSUM_OBJ}
-   ${CC} ${CFLAGS} -o lcksum ${LCKSUM_OBJ} ${LDFLAGS}
- 
--lcreate: ${LCREATE_OBJ}
-+lcreate: libsnet/libsnet.la ${LCREATE_OBJ}
-   ${CC} ${CFLAGS} -o lcreate ${LCREATE_OBJ} ${LDFLAGS}
- 
--lmerge: ${LMERGE_OBJ}
-+lmerge: libsnet/libsnet.la ${LMERGE_OBJ}
-   ${CC} ${CFLAGS} -o lmerge ${LMERGE_OBJ} ${LDFLAGS}
- 
--lfdiff: ${LFDIFF_OBJ}
-+lfdiff: libsnet/libsnet.la ${LFDIFF_OBJ}
-   ${CC} ${CFLAGS} -o lfdiff ${LFDIFF_OBJ} ${LDFLAGS}
- 
--repo : ${REPO_OBJ}
-+repo: libsnet/libsnet.la ${REPO_OBJ}
-   ${CC} ${CFLAGS} -o repo ${REPO_OBJ} ${LDFLAGS}
- 
- t2pkg: ${T2PKG_OBJ}
-   ${CC} ${CFLAGS} -o t2pkg ${T2PKG_OBJ} ${LDFLAGS}
- 
--twhich: ${TWHICH_OBJ}
-+twhich: libsnet/libsnet.la ${TWHICH_OBJ}
-   ${CC} ${CFLAGS} -o twhich ${TWHICH_OBJ} ${LDFLAGS}
- 
--lsort: ${LSORT_OBJ}
-+lsort: libsnet/libsnet.la ${LSORT_OBJ}
-   ${CC} ${CFLAGS} -o lsort ${LSORT_OBJ} ${LDFLAGS}
- 
- FRC :

diff --git a/app-admin/radmind/files/radmind-1.7.1-dnssd.patch 
b/app-admin/radmind/files/radmind-1.7.1-dnssd.patch
deleted file mode 100644
index fe71ee013d1..000
--- a/app-admin/radmind/files/radmind-1.7.1-dnssd.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff -ru radmind-1.7.1~/configure radmind-1.7.1/configure
 radmind-1.7.1~/configure   2007-02-10 19:20:01.0 +0100
-+++ radmind-1.7.1/configure2007-02-10 19:22:04.0 +0100
-@@ -5265,12 +5265,12 @@
- echo "${ECHO_T}$ac_cv_header_dns_sd_h" >&6
- 
- fi
--if test $ac_cv_header_dns_sd_h = yes; then
--  cat >>confdefs.h <<\_ACEOF
--#define HAVE_DNSSD 1
--_ACEOF
--
--fi
-+#if test $ac_cv_header_dns_sd_h = yes; then
-+#  cat >>confdefs.h <<\_ACEOF
-+##define HAVE_DNSSD 1
-+#_ACEOF
-+#
-+#fi
- 
- 
- 

diff --git a/app-admin/radmind/radmind-1.14.1-r1.ebuild 
b/app-admin/radmind/radmind-1.14.1-r1.ebuild
deleted file mode 100644
index e21fec83efb..000
--- a/app-admin/radmind/radmind-1.14.1-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="command-line tools and server to remotely administer multiple 
Unix filesystems"
-HOMEPAGE="https://github.com/Radmind https://sourceforge.net/projects/radmind/;
-SRC_URI="mirror://sourceforge/radmind/${P}.tar.gz"
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="libressl"
-
-DEPEND="
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )"
-RDEPEND="${DEPEND}
-   

[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2019-05-19 Thread Mikle Kolyada
commit: f1ca4af7d7d3851fea4757959eb4a03bb562764a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May 19 20:54:00 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May 19 20:54:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1ca4af7

app-admin/radmind: amd64 stable wrt bug #684598

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 app-admin/radmind/radmind-1.15.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/radmind/radmind-1.15.1.ebuild 
b/app-admin/radmind/radmind-1.15.1.ebuild
index 15b7b00a2b5..3d2decf2a3d 100644
--- a/app-admin/radmind/radmind-1.15.1.ebuild
+++ b/app-admin/radmind/radmind-1.15.1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/voretaq7/radmind/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="libressl"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2019-05-19 Thread Thomas Deutschmann
commit: 063035569d1367061dfa27c6d9118fbc581b6f9a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun May 19 15:15:53 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun May 19 15:15:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06303556

app-admin/radmind: x86 stable (bug #684598)

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/radmind/radmind-1.15.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/radmind/radmind-1.15.1.ebuild 
b/app-admin/radmind/radmind-1.15.1.ebuild
index 7c4ecf7017b..15b7b00a2b5 100644
--- a/app-admin/radmind/radmind-1.15.1.ebuild
+++ b/app-admin/radmind/radmind-1.15.1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/voretaq7/radmind/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="libressl"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2019-05-08 Thread Andreas Sturmlechner
commit: 39c0349187badc03a3c40b1e9b7840722951c01b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed May  8 20:26:44 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed May  8 22:56:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39c03491

app-admin/radmind: Capitalise

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-admin/radmind/radmind-1.15.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/radmind/radmind-1.15.1.ebuild 
b/app-admin/radmind/radmind-1.15.1.ebuild
index 62e78e98fb1..7c4ecf7017b 100644
--- a/app-admin/radmind/radmind-1.15.1.ebuild
+++ b/app-admin/radmind/radmind-1.15.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-DESCRIPTION="command-line tools and server to remotely administer multiple 
Unix filesystems"
+DESCRIPTION="Command-line tools and server to remotely administer multiple 
Unix filesystems"
 HOMEPAGE="https://github.com/Radmind https://sourceforge.net/projects/radmind/;
 
SRC_URI="https://github.com/voretaq7/radmind/releases/download/${P}/${P}.tar.gz;
 



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2019-05-08 Thread Andreas Sturmlechner
commit: c6e02af6fc9124115ca4cb45b6e29bcc4417d979
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed May  8 18:31:56 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed May  8 22:56:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6e02af6

app-admin/radmind: update HOMEPAGE

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11942
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-admin/radmind/radmind-1.14.1-r1.ebuild | 4 ++--
 app-admin/radmind/radmind-1.15.1.ebuild| 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-admin/radmind/radmind-1.14.1-r1.ebuild 
b/app-admin/radmind/radmind-1.14.1-r1.ebuild
index f571df69900..e21fec83efb 100644
--- a/app-admin/radmind/radmind-1.14.1-r1.ebuild
+++ b/app-admin/radmind/radmind-1.14.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -6,7 +6,7 @@ EAPI=5
 inherit eutils
 
 DESCRIPTION="command-line tools and server to remotely administer multiple 
Unix filesystems"
-HOMEPAGE="http://rsug.itd.umich.edu/software/radmind/;
+HOMEPAGE="https://github.com/Radmind https://sourceforge.net/projects/radmind/;
 SRC_URI="mirror://sourceforge/radmind/${P}.tar.gz"
 
 LICENSE="HPND"

diff --git a/app-admin/radmind/radmind-1.15.1.ebuild 
b/app-admin/radmind/radmind-1.15.1.ebuild
index 6f595b238a9..62e78e98fb1 100644
--- a/app-admin/radmind/radmind-1.15.1.ebuild
+++ b/app-admin/radmind/radmind-1.15.1.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 
 DESCRIPTION="command-line tools and server to remotely administer multiple 
Unix filesystems"
-HOMEPAGE="http://rsug.itd.umich.edu/software/radmind/ 
https://github.com/voretaq7/radmind;
+HOMEPAGE="https://github.com/Radmind https://sourceforge.net/projects/radmind/;
 
SRC_URI="https://github.com/voretaq7/radmind/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="HPND"



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2019-01-26 Thread Pacho Ramos
commit: 1b6e0d9fc9ac14f7f6e99543f2778ba22d854f98
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Jan 26 12:35:49 2019 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Jan 26 12:42:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b6e0d9f

app-admin/radmind: Bump to 1.15.1

Closes: https://bugs.gentoo.org/675614
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Pacho Ramos  gentoo.org>

 app-admin/radmind/Manifest  |  1 +
 app-admin/radmind/radmind-1.15.1.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/app-admin/radmind/Manifest b/app-admin/radmind/Manifest
index 399db035cd1..840b4bef85c 100644
--- a/app-admin/radmind/Manifest
+++ b/app-admin/radmind/Manifest
@@ -1 +1,2 @@
 DIST radmind-1.14.1.tar.gz 403553 BLAKE2B 
ea89c7c28714134df3d9f9ab522c4499590f5f08f3b5d6c0d02c750ee896922720d66e4f08dac70fe93933da0fa5d8776fdf0f7d32b926d76ece27cbcedb87ad
 SHA512 
bccf9681a6899be3b500065237dd1e04cd83ffb6f9be0e355412e7b0c556325f7d13435cec65a8a5e156e4411da915744f01a615472f6361d52c4d54d8be20eb
+DIST radmind-1.15.1.tar.gz 449653 BLAKE2B 
8a516ede28d561a60f7c51424c6e48ea030dd571528fd3422fab3b23b4448ee898d408136c4845ebe9c5f9088fb425ed67b341f4d1721747a415183687e6daa6
 SHA512 
3dd9477d00083cf9912e2143adff52f9bc127665ff6705bc200b7323e53390fb76ac125733596ba309905fca3db062c7b1bc1d1372b77a3044c3794bacb96e6c

diff --git a/app-admin/radmind/radmind-1.15.1.ebuild 
b/app-admin/radmind/radmind-1.15.1.ebuild
new file mode 100644
index 000..6f595b238a9
--- /dev/null
+++ b/app-admin/radmind/radmind-1.15.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="command-line tools and server to remotely administer multiple 
Unix filesystems"
+HOMEPAGE="http://rsug.itd.umich.edu/software/radmind/ 
https://github.com/voretaq7/radmind;
+SRC_URI="https://github.com/voretaq7/radmind/releases/download/${P}/${P}.tar.gz;
+
+LICENSE="HPND"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libressl"
+
+DEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+"
+RDEPEND="${DEPEND}
+   !dev-util/repo
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.7.0-gentoo.patch
+   "${FILESDIR}"/${PN}-1.14.1-glibc225.patch
+)
+
+src_install() {
+   default
+   keepdir /var/radmind/{cert,client,postapply,preapply}
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2017-12-19 Thread Austin English
commit: cadcd1931c0a1f0c540dd880668e5f18831fcf9d
Author: Austin English  gentoo  org>
AuthorDate: Tue Dec 19 23:20:06 2017 +
Commit: Austin English  gentoo  org>
CommitDate: Tue Dec 19 23:20:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cadcd193

app-admin/radmind: add dev-util/repo blocker

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 app-admin/radmind/radmind-1.14.1-r1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-admin/radmind/radmind-1.14.1-r1.ebuild 
b/app-admin/radmind/radmind-1.14.1-r1.ebuild
index 2637e4c0828..f571df69900 100644
--- a/app-admin/radmind/radmind-1.14.1-r1.ebuild
+++ b/app-admin/radmind/radmind-1.14.1-r1.ebuild
@@ -17,7 +17,8 @@ IUSE="libressl"
 DEPEND="
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )"
-RDEPEND="${DEPEND}"
+RDEPEND="${DEPEND}
+   !dev-util/repo"
 
 src_prepare() {
epatch "${FILESDIR}"/${PN}-1.7.0-gentoo.patch



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/files/, app-admin/radmind/

2017-10-20 Thread Andreas Hüttel
commit: d0648f10a2055d4731ff9fc8a572387edc91ddf6
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Oct 20 21:10:17 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Oct 20 21:10:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0648f10

app-admin/radmind: Fix build with glibc-2.25, bug 580916

Closes: https://bugs.gentoo.org/580916
Package-Manager: Portage-2.3.12, Repoman-2.3.3

 .../radmind/files/radmind-1.14.1-glibc225.patch| 22 ++
 app-admin/radmind/radmind-1.14.1-r1.ebuild |  1 +
 2 files changed, 23 insertions(+)

diff --git a/app-admin/radmind/files/radmind-1.14.1-glibc225.patch 
b/app-admin/radmind/files/radmind-1.14.1-glibc225.patch
new file mode 100644
index 000..60ff5925ae1
--- /dev/null
+++ b/app-admin/radmind/files/radmind-1.14.1-glibc225.patch
@@ -0,0 +1,22 @@
+diff -ruN radmind-1.14.1.orig/transcript.c radmind-1.14.1/transcript.c
+--- radmind-1.14.1.orig/transcript.c   2010-12-13 04:42:49.0 +0100
 radmind-1.14.1/transcript.c2017-10-20 23:07:47.126110238 +0200
+@@ -6,6 +6,7 @@
+ #include "config.h"
+ 
+ #include 
++#include 
+ #include 
+ #ifdef sun
+ #include 
+diff -ruN radmind-1.14.1.orig/update.c radmind-1.14.1/update.c
+--- radmind-1.14.1.orig/update.c   2010-12-13 04:42:49.0 +0100
 radmind-1.14.1/update.c2017-10-20 23:07:29.173898776 +0200
+@@ -6,6 +6,7 @@
+ #include "config.h"
+ 
+ #include 
++#include 
+ #include 
+ #include 
+ #ifdef sun

diff --git a/app-admin/radmind/radmind-1.14.1-r1.ebuild 
b/app-admin/radmind/radmind-1.14.1-r1.ebuild
index cfc09f32cca..2637e4c0828 100644
--- a/app-admin/radmind/radmind-1.14.1-r1.ebuild
+++ b/app-admin/radmind/radmind-1.14.1-r1.ebuild
@@ -24,6 +24,7 @@ src_prepare() {
# remove dnssd as it doesn't compile
epatch "${FILESDIR}"/${PN}-1.7.1-dnssd.patch
epatch "${FILESDIR}"/${PN}-1.14.0-parallel-make.patch
+   epatch "${FILESDIR}"/${PN}-1.14.1-glibc225.patch
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2017-06-09 Thread Michael Palimaka
commit: f453c693bdf9e21737ff9fedc30b0e26dc7a1fd6
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Jun  9 12:50:12 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Jun  9 12:51:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f453c693

app-admin/radmind: remove 1.14.1-r0

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-admin/radmind/radmind-1.14.1.ebuild | 29 -
 1 file changed, 29 deletions(-)

diff --git a/app-admin/radmind/radmind-1.14.1.ebuild 
b/app-admin/radmind/radmind-1.14.1.ebuild
deleted file mode 100644
index 946cffdfc9d..000
--- a/app-admin/radmind/radmind-1.14.1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="command-line tools and server to remotely administer multiple 
Unix filesystems"
-HOMEPAGE="http://rsug.itd.umich.edu/software/radmind/;
-SRC_URI="mirror://sourceforge/radmind/${P}.tar.gz"
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="~amd64 x86"
-
-DEPEND="dev-libs/openssl"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-1.7.0-gentoo.patch
-   # remove dnssd as it doesn't compile
-   epatch "${FILESDIR}"/${PN}-1.7.1-dnssd.patch
-   epatch "${FILESDIR}"/${PN}-1.14.0-parallel-make.patch
-}
-
-src_install() {
-   default
-   dodoc README VERSION COPYRIGHT
-}



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2017-06-08 Thread Agostino Sarubbo
commit: d1f73ebc3da0f31d01dae2f2aa73118c729f3cf2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jun  8 10:14:03 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jun  8 10:14:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1f73ebc

app-admin/radmind: amd64 stable wrt bug #621008

Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-admin/radmind/radmind-1.14.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/radmind/radmind-1.14.1-r1.ebuild 
b/app-admin/radmind/radmind-1.14.1-r1.ebuild
index 9d94df3075c..ee0ccba5c77 100644
--- a/app-admin/radmind/radmind-1.14.1-r1.ebuild
+++ b/app-admin/radmind/radmind-1.14.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/radmind/${P}.tar.gz"
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="libressl"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2016-05-17 Thread Austin English
commit: a9c36125051e62ee030b1b3e00d0533f579bd1b1
Author: Austin English  gentoo  org>
AuthorDate: Tue May 17 09:01:15 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Tue May 17 09:03:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9c36125

app-admin/radmind: add missing maintainer-needed

 app-admin/radmind/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-admin/radmind/metadata.xml b/app-admin/radmind/metadata.xml
index 7c4843c..482e815 100644
--- a/app-admin/radmind/metadata.xml
+++ b/app-admin/radmind/metadata.xml
@@ -1,6 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+   
A suite of Unix command-line tools and a server 
designed to remotely administer
 the file systems of multiple Unix machines.




[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2016-04-25 Thread Jeroen Roovers
commit: 002b5571ac2060117c160fd69f035b5539981cee
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Apr 25 07:32:17 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Apr 25 07:32:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=002b5571

app-admin/radmind: netmon was never the right project for this package.

Package-Manager: portage-2.2.28

 app-admin/radmind/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/app-admin/radmind/metadata.xml b/app-admin/radmind/metadata.xml
index f78e8ae..7c4843c 100644
--- a/app-admin/radmind/metadata.xml
+++ b/app-admin/radmind/metadata.xml
@@ -1,10 +1,6 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   net...@gentoo.org
-   Gentoo network monitoring and analysis project
-   
A suite of Unix command-line tools and a server 
designed to remotely administer
 the file systems of multiple Unix machines.




[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2016-03-21 Thread Anthony G. Basile
commit: 4a601ee022f33455841521c03e31292217c75fd7
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 21:37:32 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 21:37:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a601ee0

app-admin/radmind: fix openssl and libressl slots

Package-Manager: portage-2.2.26

 app-admin/radmind/radmind-1.14.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/radmind/radmind-1.14.1-r1.ebuild 
b/app-admin/radmind/radmind-1.14.1-r1.ebuild
index ed0b79b..45bb581 100644
--- a/app-admin/radmind/radmind-1.14.1-r1.ebuild
+++ b/app-admin/radmind/radmind-1.14.1-r1.ebuild
@@ -16,8 +16,8 @@ KEYWORDS="~amd64 ~x86"
 IUSE="libressl"
 
 DEPEND="
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )"
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )"
 RDEPEND="${DEPEND}"
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: app-admin/radmind/

2015-12-25 Thread Anthony G. Basile
commit: 633c4217dc36a5b8ed3381b286b9adef4f804227
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Dec 26 01:18:23 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Dec 26 01:18:23 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=633c4217

app-admin/radmind: add libressl support

Package-Manager: portage-2.2.24

 app-admin/radmind/radmind-1.14.1-r1.ebuild | 33 ++
 1 file changed, 33 insertions(+)

diff --git a/app-admin/radmind/radmind-1.14.1-r1.ebuild 
b/app-admin/radmind/radmind-1.14.1-r1.ebuild
new file mode 100644
index 000..ed0b79b
--- /dev/null
+++ b/app-admin/radmind/radmind-1.14.1-r1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils
+
+DESCRIPTION="command-line tools and server to remotely administer multiple 
Unix filesystems"
+HOMEPAGE="http://rsug.itd.umich.edu/software/radmind/;
+SRC_URI="mirror://sourceforge/radmind/${P}.tar.gz"
+
+LICENSE="HPND"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libressl"
+
+DEPEND="
+   !libressl? ( dev-libs/openssl:0 )
+   libressl? ( dev-libs/libressl )"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   epatch "${FILESDIR}"/${PN}-1.7.0-gentoo.patch
+   # remove dnssd as it doesn't compile
+   epatch "${FILESDIR}"/${PN}-1.7.1-dnssd.patch
+   epatch "${FILESDIR}"/${PN}-1.14.0-parallel-make.patch
+}
+
+src_install() {
+   default
+   dodoc README VERSION COPYRIGHT
+}