[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2023-04-08 Thread Arthur Zamarin
commit: 9ada50b9c1949391158f93da5a65d92b5f0099f8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr  8 17:59:20 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr  8 17:59:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ada50b9

app-misc/tmate: Stabilize 2.4.0-r2 amd64, #904011

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-misc/tmate/tmate-2.4.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/tmate/tmate-2.4.0-r2.ebuild 
b/app-misc/tmate/tmate-2.4.0-r2.ebuild
index 43708efa23c3..3b27ffa1aa08 100644
--- a/app-misc/tmate/tmate-2.4.0-r2.ebuild
+++ b/app-misc/tmate/tmate-2.4.0-r2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="ISC BSD BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv ~x86"
+KEYWORDS="amd64 ~riscv ~x86"
 IUSE="debug"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2023-04-08 Thread Ulrich Müller
commit: f120e9e52da0ae3be739e94267319dce6e522d30
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sat Apr  8 08:28:30 2023 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sat Apr  8 08:35:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f120e9e5

app-misc/tmate: Fix LICENSE

Bug: https://bugs.gentoo.org/708760
Signed-off-by: Ulrich Müller  gentoo.org>

 app-misc/tmate/tmate-2.4.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/tmate/tmate-2.4.0-r2.ebuild 
b/app-misc/tmate/tmate-2.4.0-r2.ebuild
index 2c24d7966261..43708efa23c3 100644
--- a/app-misc/tmate/tmate-2.4.0-r2.ebuild
+++ b/app-misc/tmate/tmate-2.4.0-r2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="Instant terminal sharing"
 HOMEPAGE="https://tmate.io/";
 SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
-LICENSE="ISC"
+LICENSE="ISC BSD BSD-2"
 SLOT="0"
 KEYWORDS="~amd64 ~riscv ~x86"
 IUSE="debug"



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/files/, app-misc/tmate/

2023-04-02 Thread Sam James
commit: 1b41b2e0a7c6568538039f4e5ffb000837659dc5
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 06:46:12 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 06:46:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b41b2e0

app-misc/tmate: fix msgpack-c patch for older versions

Closes: https://bugs.gentoo.org/903718
Signed-off-by: Sam James  gentoo.org>

 app-misc/tmate/files/tmate-2.4.0-msgpack-6.patch | 40 +++-
 app-misc/tmate/tmate-2.4.0-r2.ebuild |  2 +-
 2 files changed, 19 insertions(+), 23 deletions(-)

diff --git a/app-misc/tmate/files/tmate-2.4.0-msgpack-6.patch 
b/app-misc/tmate/files/tmate-2.4.0-msgpack-6.patch
index 85252867a692..6fbda6197eef 100644
--- a/app-misc/tmate/files/tmate-2.4.0-msgpack-6.patch
+++ b/app-misc/tmate/files/tmate-2.4.0-msgpack-6.patch
@@ -1,30 +1,26 @@
 https://bugs.gentoo.org/903657
 https://github.com/tmate-io/tmate/pull/281
-
-From a5c6e80d3c54cd7faed52de5283b4f96bea86c13 Mon Sep 17 00:00:00 2001
-From: Carlo Cabrera <30379873+carlo...@users.noreply.github.com>
-Date: Sun, 5 Mar 2023 20:58:13 +0800
-Subject: [PATCH] Fix finding msgpack 6+
-
-`msgpack.pc` was renamed to `msgpack-c.pc` upstream in msgpack/msgpack-c#1053.
 --- a/configure.ac
 +++ b/configure.ac
-@@ -209,6 +209,17 @@ PKG_CHECK_MODULES(
+@@ -207,7 +207,20 @@ PKG_CHECK_MODULES(
+ LIBS="$MSGPACK_LIBS $LIBS"
+ found_msgpack=yes
],
-   found_msgpack=no
- )
-+# msgpack.pc was renamed to msgpack-c.pc in 6.0.0.
-+PKG_CHECK_MODULES(
-+  MSGPACKC,
-+  msgpack-c >= 1.1.0,
+-  found_msgpack=no
 +  [
-+CPPFLAGS="$MSGPACKC_CFLAGS $CPPFLAGS"
-+LIBS="$MSGPACKC_LIBS $LIBS"
-+found_msgpack=yes
-+  ],
-+  found_msgpack=no
-+)
++found_msgpack=no
++# msgpack.pc was renamed to msgpack-c.pc in 6.0.0.
++PKG_CHECK_MODULES(
++  MSGPACKC,
++  msgpack-c >= 1.1.0,
++  [
++CPPFLAGS="$MSGPACKC_CFLAGS $CPPFLAGS"
++LIBS="$MSGPACKC_LIBS $LIBS"
++found_msgpack=yes
++  ],
++  found_msgpack=no
++)
++  ]
+ )
  if test "x$found_msgpack" = xno; then
AC_MSG_ERROR("msgpack >= 1.1.0 not found")
- fi
-

diff --git a/app-misc/tmate/tmate-2.4.0-r2.ebuild 
b/app-misc/tmate/tmate-2.4.0-r2.ebuild
index a59788a5ce64..2c24d7966261 100644
--- a/app-misc/tmate/tmate-2.4.0-r2.ebuild
+++ b/app-misc/tmate/tmate-2.4.0-r2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="amd64 ~riscv ~x86"
+KEYWORDS="~amd64 ~riscv ~x86"
 IUSE="debug"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2023-04-02 Thread Sam James
commit: 23f7d1919ab3169b7deb4e47424874db97b0846e
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 06:45:32 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 06:46:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23f7d191

app-misc/tmate: restore -r1

Bug: https://bugs.gentoo.org/903718
Signed-off-by: Sam James  gentoo.org>

 app-misc/tmate/tmate-2.4.0-r1.ebuild | 40 
 1 file changed, 40 insertions(+)

diff --git a/app-misc/tmate/tmate-2.4.0-r1.ebuild 
b/app-misc/tmate/tmate-2.4.0-r1.ebuild
new file mode 100644
index ..920c528ee69e
--- /dev/null
+++ b/app-misc/tmate/tmate-2.4.0-r1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Instant terminal sharing"
+HOMEPAGE="https://tmate.io/";
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="amd64 ~riscv ~x86"
+IUSE="debug"
+
+SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+RDEPEND="
+   sys-libs/zlib
+   sys-libs/libutempter
+   dev-libs/libevent
+   dev-libs/msgpack
+   >=net-libs/libssh-0.6.0
+   dev-libs/openssl:0=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable debug)
+   --disable-static
+   )
+   econf "${myeconfargs[@]}"
+}



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/, app-misc/tmate/files/

2023-04-02 Thread Sam James
commit: 7bd84e098a747208514b888ac6963693edd38d0b
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  3 05:27:48 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  3 05:28:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bd84e09

app-misc/tmate: add msgpack subslot dep, fix build w/ msgpack-6

While at it, cleanup obsolete --disable-static (EAPI 8 does it for us).

Closes: https://bugs.gentoo.org/903657
Signed-off-by: Sam James  gentoo.org>

 app-misc/tmate/files/tmate-2.4.0-msgpack-6.patch   | 30 ++
 ...tmate-2.4.0-r1.ebuild => tmate-2.4.0-r2.ebuild} | 16 +++-
 2 files changed, 39 insertions(+), 7 deletions(-)

diff --git a/app-misc/tmate/files/tmate-2.4.0-msgpack-6.patch 
b/app-misc/tmate/files/tmate-2.4.0-msgpack-6.patch
new file mode 100644
index ..85252867a692
--- /dev/null
+++ b/app-misc/tmate/files/tmate-2.4.0-msgpack-6.patch
@@ -0,0 +1,30 @@
+https://bugs.gentoo.org/903657
+https://github.com/tmate-io/tmate/pull/281
+
+From a5c6e80d3c54cd7faed52de5283b4f96bea86c13 Mon Sep 17 00:00:00 2001
+From: Carlo Cabrera <30379873+carlo...@users.noreply.github.com>
+Date: Sun, 5 Mar 2023 20:58:13 +0800
+Subject: [PATCH] Fix finding msgpack 6+
+
+`msgpack.pc` was renamed to `msgpack-c.pc` upstream in msgpack/msgpack-c#1053.
+--- a/configure.ac
 b/configure.ac
+@@ -209,6 +209,17 @@ PKG_CHECK_MODULES(
+   ],
+   found_msgpack=no
+ )
++# msgpack.pc was renamed to msgpack-c.pc in 6.0.0.
++PKG_CHECK_MODULES(
++  MSGPACKC,
++  msgpack-c >= 1.1.0,
++  [
++CPPFLAGS="$MSGPACKC_CFLAGS $CPPFLAGS"
++LIBS="$MSGPACKC_LIBS $LIBS"
++found_msgpack=yes
++  ],
++  found_msgpack=no
++)
+ if test "x$found_msgpack" = xno; then
+   AC_MSG_ERROR("msgpack >= 1.1.0 not found")
+ fi
+

diff --git a/app-misc/tmate/tmate-2.4.0-r1.ebuild 
b/app-misc/tmate/tmate-2.4.0-r2.ebuild
similarity index 86%
rename from app-misc/tmate/tmate-2.4.0-r1.ebuild
rename to app-misc/tmate/tmate-2.4.0-r2.ebuild
index 920c528ee69e..a59788a5ce64 100644
--- a/app-misc/tmate/tmate-2.4.0-r1.ebuild
+++ b/app-misc/tmate/tmate-2.4.0-r2.ebuild
@@ -7,25 +7,28 @@ inherit autotools
 
 DESCRIPTION="Instant terminal sharing"
 HOMEPAGE="https://tmate.io/";
+SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="ISC"
 SLOT="0"
 KEYWORDS="amd64 ~riscv ~x86"
 IUSE="debug"
 
-SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
 RDEPEND="
-   sys-libs/zlib
-   sys-libs/libutempter
dev-libs/libevent
-   dev-libs/msgpack
+   dev-libs/msgpack:=
+   dev-libs/openssl:=
>=net-libs/libssh-0.6.0
-   dev-libs/openssl:0=
+   sys-libs/zlib
+   sys-libs/libutempter
 "
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.4.0-msgpack-6.patch
+)
+
 src_prepare() {
default
eautoreconf
@@ -34,7 +37,6 @@ src_prepare() {
 src_configure() {
local myeconfargs=(
$(use_enable debug)
-   --disable-static
)
econf "${myeconfargs[@]}"
 }



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2023-03-19 Thread Sam James
commit: ba4871ef29c7b9d02b761d4ce589bd5d1e633d5c
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar 19 18:57:09 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar 19 18:57:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba4871ef

app-misc/tmate: Stabilize 2.4.0-r1 amd64, #901741

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

 app-misc/tmate/tmate-2.4.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/tmate/tmate-2.4.0-r1.ebuild 
b/app-misc/tmate/tmate-2.4.0-r1.ebuild
index 25034bb83628..920c528ee69e 100644
--- a/app-misc/tmate/tmate-2.4.0-r1.ebuild
+++ b/app-misc/tmate/tmate-2.4.0-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://tmate.io/";
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv ~x86"
+KEYWORDS="amd64 ~riscv ~x86"
 IUSE="debug"
 
 SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2023-02-07 Thread Yixun Lan
commit: f07f87a5e308b534930011dc505337e24a9051dd
Author: Yixun Lan  gentoo  org>
AuthorDate: Tue Feb  7 08:30:29 2023 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Feb  7 08:34:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f07f87a5

app-misc/tmate: drop IUSE=static-libs

updated, due to dev-libs/msgpack will remove IUSE=static-libs

Signed-off-by: Yixun Lan  gentoo.org>

 .../{tmate-2.4.0.ebuild => tmate-2.4.0-r1.ebuild} | 19 ++-
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/app-misc/tmate/tmate-2.4.0.ebuild 
b/app-misc/tmate/tmate-2.4.0-r1.ebuild
similarity index 64%
rename from app-misc/tmate/tmate-2.4.0.ebuild
rename to app-misc/tmate/tmate-2.4.0-r1.ebuild
index 362ba28cb0f9..25034bb83628 100644
--- a/app-misc/tmate/tmate-2.4.0.ebuild
+++ b/app-misc/tmate/tmate-2.4.0-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit autotools
 
@@ -11,17 +11,17 @@ HOMEPAGE="https://tmate.io/";
 LICENSE="ISC"
 SLOT="0"
 KEYWORDS="~amd64 ~riscv ~x86"
-IUSE="debug static-libs"
+IUSE="debug"
 
 SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 RDEPEND="
-   sys-libs/zlib[static-libs?]
-   sys-libs/libutempter[static-libs?]
-   dev-libs/libevent[static-libs?]
-   dev-libs/msgpack[static-libs?]
-   >=net-libs/libssh-0.6.0[static-libs?]
-   dev-libs/openssl:0=[static-libs?]
+   sys-libs/zlib
+   sys-libs/libutempter
+   dev-libs/libevent
+   dev-libs/msgpack
+   >=net-libs/libssh-0.6.0
+   dev-libs/openssl:0=
 "
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
@@ -34,6 +34,7 @@ src_prepare() {
 src_configure() {
local myeconfargs=(
$(use_enable debug)
+   --disable-static
)
econf "${myeconfargs[@]}"
 }



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2021-08-05 Thread Yixun Lan
commit: 97cde42d9506642465b3d1b9df9a16dca0662209
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Aug  5 06:48:02 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Aug  5 08:09:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97cde42d

app-misc/tmate: keyword ~riscv

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 app-misc/tmate/tmate-2.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/tmate/tmate-2.4.0.ebuild 
b/app-misc/tmate/tmate-2.4.0.ebuild
index 7386182a40c..362ba28cb0f 100644
--- a/app-misc/tmate/tmate-2.4.0.ebuild
+++ b/app-misc/tmate/tmate-2.4.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://tmate.io/";
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~riscv ~x86"
 IUSE="debug static-libs"
 
 SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2021-08-05 Thread Yixun Lan
commit: 9b849f25c6d9340c751d1e2d7678c41971db119c
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Aug  5 08:09:05 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Aug  5 08:10:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b849f25

app-misc/tmate: drop old

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 app-misc/tmate/Manifest   |  1 -
 app-misc/tmate/tmate-2.3.1.ebuild | 39 ---
 2 files changed, 40 deletions(-)

diff --git a/app-misc/tmate/Manifest b/app-misc/tmate/Manifest
index 29bd9018a67..d441076d15a 100644
--- a/app-misc/tmate/Manifest
+++ b/app-misc/tmate/Manifest
@@ -1,2 +1 @@
-DIST tmate-2.3.1.tar.gz 611136 BLAKE2B 
bbcfb137cb9e712bbe3c36b2d57e6f1ea5a68c884e6e6ccd252315bca689b1bbec7a53cd131f0f36a6bab5b1defd3acb26bb458684894c81d676d2585db4790b
 SHA512 
98531e3a3c1cc4da11894e8298df560fd58f1ede6a81ac8cb5f8cbea86f5c21672a016977dab801ec06e14f6c718a64599a9e32740934fcd4c0a155f92710520
 DIST tmate-2.4.0.tar.gz 614179 BLAKE2B 
9864f71255ceafb10cfd622346ef7d2db2a124d13599a7c8ae81e83950ba56216193e02633a9becd90fd430c6ddff66df763fe2733d58f45b02c74c8fb8f7fc4
 SHA512 
92d2ca354b295678bfc2747ca83a45ebafeaec40ebac94bd94c4926af4f820b3f3a087f365147f41c80d1c8ad032f52c697a2421839c39315d84f98f7eccada6

diff --git a/app-misc/tmate/tmate-2.3.1.ebuild 
b/app-misc/tmate/tmate-2.3.1.ebuild
deleted file mode 100644
index 7386182a40c..000
--- a/app-misc/tmate/tmate-2.3.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Instant terminal sharing"
-HOMEPAGE="https://tmate.io/";
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug static-libs"
-
-SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-RDEPEND="
-   sys-libs/zlib[static-libs?]
-   sys-libs/libutempter[static-libs?]
-   dev-libs/libevent[static-libs?]
-   dev-libs/msgpack[static-libs?]
-   >=net-libs/libssh-0.6.0[static-libs?]
-   dev-libs/openssl:0=[static-libs?]
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   local myeconfargs=(
-   $(use_enable debug)
-   )
-   econf "${myeconfargs[@]}"
-}



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2021-05-02 Thread Mikle Kolyada
commit: b2a94c8ad3a6e089b1eae59174a1bc2947209ccb
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  2 19:55:17 2021 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  2 19:55:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2a94c8a

app-misc/tmate: remove libressl support

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Mikle Kolyada  gentoo.org>

 app-misc/tmate/tmate-2.3.1.ebuild | 7 +++
 app-misc/tmate/tmate-2.4.0.ebuild | 7 +++
 2 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/app-misc/tmate/tmate-2.3.1.ebuild 
b/app-misc/tmate/tmate-2.3.1.ebuild
index bdddbdf93b1..7386182a40c 100644
--- a/app-misc/tmate/tmate-2.3.1.ebuild
+++ b/app-misc/tmate/tmate-2.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ HOMEPAGE="https://tmate.io/";
 LICENSE="ISC"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="debug libressl static-libs"
+IUSE="debug static-libs"
 
 SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
@@ -21,8 +21,7 @@ RDEPEND="
dev-libs/libevent[static-libs?]
dev-libs/msgpack[static-libs?]
>=net-libs/libssh-0.6.0[static-libs?]
-   !libressl? ( dev-libs/openssl:0=[static-libs?] )
-   libressl? ( dev-libs/libressl:0=[static-libs?] )
+   dev-libs/openssl:0=[static-libs?]
 "
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"

diff --git a/app-misc/tmate/tmate-2.4.0.ebuild 
b/app-misc/tmate/tmate-2.4.0.ebuild
index bdddbdf93b1..7386182a40c 100644
--- a/app-misc/tmate/tmate-2.4.0.ebuild
+++ b/app-misc/tmate/tmate-2.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ HOMEPAGE="https://tmate.io/";
 LICENSE="ISC"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="debug libressl static-libs"
+IUSE="debug static-libs"
 
 SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
@@ -21,8 +21,7 @@ RDEPEND="
dev-libs/libevent[static-libs?]
dev-libs/msgpack[static-libs?]
>=net-libs/libssh-0.6.0[static-libs?]
-   !libressl? ( dev-libs/openssl:0=[static-libs?] )
-   libressl? ( dev-libs/libressl:0=[static-libs?] )
+   dev-libs/openssl:0=[static-libs?]
 "
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2019-12-11 Thread Yixun Lan
commit: 2e055af42142baa62dcb232ac44769f5981b04f6
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Dec 12 05:52:12 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Dec 12 05:53:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e055af4

app-misc/tmate: drop old

Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Yixun Lan  gentoo.org>

 app-misc/tmate/Manifest   |  1 -
 app-misc/tmate/tmate-2.3.0.ebuild | 40 ---
 2 files changed, 41 deletions(-)

diff --git a/app-misc/tmate/Manifest b/app-misc/tmate/Manifest
index c3c91f7c9be..29bd9018a67 100644
--- a/app-misc/tmate/Manifest
+++ b/app-misc/tmate/Manifest
@@ -1,3 +1,2 @@
-DIST tmate-2.3.0.tar.gz 611262 BLAKE2B 
c4e789b20fbfb1736eacbf36f368d8ceb573937ed2c72f2b79b8da175a811985af12d9823fdbade9ee3f72bfb43427e8fa64eea75ba5fc3cf64273c31856d4d6
 SHA512 
b7de8f28ab5ee8ea389d4882ed64de3d71bd53d626ae6bf323d5be732066e63a7dba2a85318c0202a088af53df7e0d976256c1253895ad81739d270ee65d0eb7
 DIST tmate-2.3.1.tar.gz 611136 BLAKE2B 
bbcfb137cb9e712bbe3c36b2d57e6f1ea5a68c884e6e6ccd252315bca689b1bbec7a53cd131f0f36a6bab5b1defd3acb26bb458684894c81d676d2585db4790b
 SHA512 
98531e3a3c1cc4da11894e8298df560fd58f1ede6a81ac8cb5f8cbea86f5c21672a016977dab801ec06e14f6c718a64599a9e32740934fcd4c0a155f92710520
 DIST tmate-2.4.0.tar.gz 614179 BLAKE2B 
9864f71255ceafb10cfd622346ef7d2db2a124d13599a7c8ae81e83950ba56216193e02633a9becd90fd430c6ddff66df763fe2733d58f45b02c74c8fb8f7fc4
 SHA512 
92d2ca354b295678bfc2747ca83a45ebafeaec40ebac94bd94c4926af4f820b3f3a087f365147f41c80d1c8ad032f52c697a2421839c39315d84f98f7eccada6

diff --git a/app-misc/tmate/tmate-2.3.0.ebuild 
b/app-misc/tmate/tmate-2.3.0.ebuild
deleted file mode 100644
index bdddbdf93b1..000
--- a/app-misc/tmate/tmate-2.3.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Instant terminal sharing"
-HOMEPAGE="https://tmate.io/";
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug libressl static-libs"
-
-SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-RDEPEND="
-   sys-libs/zlib[static-libs?]
-   sys-libs/libutempter[static-libs?]
-   dev-libs/libevent[static-libs?]
-   dev-libs/msgpack[static-libs?]
-   >=net-libs/libssh-0.6.0[static-libs?]
-   !libressl? ( dev-libs/openssl:0=[static-libs?] )
-   libressl? ( dev-libs/libressl:0=[static-libs?] )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   local myeconfargs=(
-   $(use_enable debug)
-   )
-   econf "${myeconfargs[@]}"
-}



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2019-12-11 Thread Yixun Lan
commit: 304499a2bff947643c7605baf328affd852161b0
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Dec 12 05:51:10 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Dec 12 05:53:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=304499a2

app-misc/tmate: version bump, 2.4.0

Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Yixun Lan  gentoo.org>

 app-misc/tmate/Manifest   |  1 +
 app-misc/tmate/tmate-2.4.0.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/app-misc/tmate/Manifest b/app-misc/tmate/Manifest
index bc657811867..c3c91f7c9be 100644
--- a/app-misc/tmate/Manifest
+++ b/app-misc/tmate/Manifest
@@ -1,2 +1,3 @@
 DIST tmate-2.3.0.tar.gz 611262 BLAKE2B 
c4e789b20fbfb1736eacbf36f368d8ceb573937ed2c72f2b79b8da175a811985af12d9823fdbade9ee3f72bfb43427e8fa64eea75ba5fc3cf64273c31856d4d6
 SHA512 
b7de8f28ab5ee8ea389d4882ed64de3d71bd53d626ae6bf323d5be732066e63a7dba2a85318c0202a088af53df7e0d976256c1253895ad81739d270ee65d0eb7
 DIST tmate-2.3.1.tar.gz 611136 BLAKE2B 
bbcfb137cb9e712bbe3c36b2d57e6f1ea5a68c884e6e6ccd252315bca689b1bbec7a53cd131f0f36a6bab5b1defd3acb26bb458684894c81d676d2585db4790b
 SHA512 
98531e3a3c1cc4da11894e8298df560fd58f1ede6a81ac8cb5f8cbea86f5c21672a016977dab801ec06e14f6c718a64599a9e32740934fcd4c0a155f92710520
+DIST tmate-2.4.0.tar.gz 614179 BLAKE2B 
9864f71255ceafb10cfd622346ef7d2db2a124d13599a7c8ae81e83950ba56216193e02633a9becd90fd430c6ddff66df763fe2733d58f45b02c74c8fb8f7fc4
 SHA512 
92d2ca354b295678bfc2747ca83a45ebafeaec40ebac94bd94c4926af4f820b3f3a087f365147f41c80d1c8ad032f52c697a2421839c39315d84f98f7eccada6

diff --git a/app-misc/tmate/tmate-2.4.0.ebuild 
b/app-misc/tmate/tmate-2.4.0.ebuild
new file mode 100644
index 000..bdddbdf93b1
--- /dev/null
+++ b/app-misc/tmate/tmate-2.4.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Instant terminal sharing"
+HOMEPAGE="https://tmate.io/";
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug libressl static-libs"
+
+SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+RDEPEND="
+   sys-libs/zlib[static-libs?]
+   sys-libs/libutempter[static-libs?]
+   dev-libs/libevent[static-libs?]
+   dev-libs/msgpack[static-libs?]
+   >=net-libs/libssh-0.6.0[static-libs?]
+   !libressl? ( dev-libs/openssl:0=[static-libs?] )
+   libressl? ( dev-libs/libressl:0=[static-libs?] )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable debug)
+   )
+   econf "${myeconfargs[@]}"
+}



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2019-10-15 Thread Yixun Lan
commit: 76f28b981563f60ccb958141db75410042fe7b66
Author: Yixun Lan  gentoo  org>
AuthorDate: Wed Oct 16 02:45:01 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Oct 16 02:58:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76f28b98

app-misc/tmate: drop old versions

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Yixun Lan  gentoo.org>

 app-misc/tmate/Manifest  |  3 ---
 app-misc/tmate/tmate-2.2.0-r1.ebuild | 52 
 app-misc/tmate/tmate-2.2.1.ebuild| 52 
 3 files changed, 107 deletions(-)

diff --git a/app-misc/tmate/Manifest b/app-misc/tmate/Manifest
index 5e974b1c6fa..bc657811867 100644
--- a/app-misc/tmate/Manifest
+++ b/app-misc/tmate/Manifest
@@ -1,5 +1,2 @@
-DIST tmate-2.2.0-upstream-patches-0.tar.xz 6784 BLAKE2B 
b21a2065ba7a7832238cb6b6bbfe3e730593766a34244e139d0e357cad538a4462e68a9e884a6250fc72a10a775fa13e53054618c35804cc05ad0cc31854d9e3
 SHA512 
3e16e0b7988d3d1942fcac0a535d2cc8d7156d26332dc84fd21c4761afae40159282b0fbeb71cd5f6525b5a1c7a46e7813c8e6a11851592077570c1a001a73a7
-DIST tmate-2.2.0.tar.gz 610793 BLAKE2B 
febe2ed652e8387f65d938f09c6abbd92841a71a285035f6322bcf786aa4f80f71a0f49fc475743a8565bf4c7e434d9f503ffc6bae26d531429b1c58bc0ffbe9
 SHA512 
e9429833cdb8c28873d01bfc6b9a0d1241e30346ef1b3efae6763389c8444943b831283c1ea65e49c68d11936d6586186b38e0f7c14d373d9f63e841026c3338
-DIST tmate-2.2.1.tar.gz 610745 BLAKE2B 
8a97d7726b528d12e14c74c07f795b18510a4b7a0068f1e1168b06e2a6856945518b3b9a35f71ba8598b8f9390d754443eca197f95f5c9c61d6160f4008ff65d
 SHA512 
3d4ce7510cd8da39bc4fe63f2a64179846a813bb3560ca811d9e1e2a28b06d95a9033047a900d76bda069c249d7ebbe1143daa082b23212c5d32a50bf1819d2d
 DIST tmate-2.3.0.tar.gz 611262 BLAKE2B 
c4e789b20fbfb1736eacbf36f368d8ceb573937ed2c72f2b79b8da175a811985af12d9823fdbade9ee3f72bfb43427e8fa64eea75ba5fc3cf64273c31856d4d6
 SHA512 
b7de8f28ab5ee8ea389d4882ed64de3d71bd53d626ae6bf323d5be732066e63a7dba2a85318c0202a088af53df7e0d976256c1253895ad81739d270ee65d0eb7
 DIST tmate-2.3.1.tar.gz 611136 BLAKE2B 
bbcfb137cb9e712bbe3c36b2d57e6f1ea5a68c884e6e6ccd252315bca689b1bbec7a53cd131f0f36a6bab5b1defd3acb26bb458684894c81d676d2585db4790b
 SHA512 
98531e3a3c1cc4da11894e8298df560fd58f1ede6a81ac8cb5f8cbea86f5c21672a016977dab801ec06e14f6c718a64599a9e32740934fcd4c0a155f92710520

diff --git a/app-misc/tmate/tmate-2.2.0-r1.ebuild 
b/app-misc/tmate/tmate-2.2.0-r1.ebuild
deleted file mode 100644
index 22a9a0bf317..000
--- a/app-misc/tmate/tmate-2.2.0-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=1
-inherit eutils autotools-utils
-
-DESCRIPTION="Instant terminal sharing"
-HOMEPAGE="http://tmate.io/";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug static-libs"
-
-UPSTREAM_VER=0
-[[ -n ${UPSTREAM_VER} ]] && \
-   
UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${P}-upstream-patches-${UPSTREAM_VER}.tar.xz";
-SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
-   ${UPSTREAM_PATCHSET_URI}"
-
-RDEPEND="
-   sys-libs/zlib[static-libs?]
-   sys-libs/libutempter[static-libs?]
-   dev-libs/openssl:0=[static-libs?]
-   dev-libs/libevent[static-libs?]
-   dev-libs/msgpack[static-libs?]
-   >=net-libs/libssh-0.6.0[static-libs?]
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-src_prepare() {
-   # Upstream's patchset
-   if [[ -n ${UPSTREAM_VER} ]]; then
-   einfo "Try to apply tmate Upstream patch set"
-   EPATCH_SUFFIX="patch" \
-   EPATCH_FORCE="yes" \
-   EPATCH_OPTS="-p1" \
-   epatch "${WORKDIR}"/patches-upstream
-   fi
-
-   autotools-utils_src_prepare
-}
-
-src_configure() {
-   local myeconfargs=(
-   $(use_enable debug)
-   )
-   autotools-utils_src_configure
-}

diff --git a/app-misc/tmate/tmate-2.2.1.ebuild 
b/app-misc/tmate/tmate-2.2.1.ebuild
deleted file mode 100644
index f4cfc6999c0..000
--- a/app-misc/tmate/tmate-2.2.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=1
-inherit eutils autotools-utils
-
-DESCRIPTION="Instant terminal sharing"
-HOMEPAGE="http://tmate.io/";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug static-libs"
-
-UPSTREAM_VER=
-[[ -n ${UPSTREAM_VER} ]] && \
-   
UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${P}-upstream-patches-${UPSTREAM_VER}.tar.xz";
-SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
-   ${UPSTREAM_PATCHSET_URI}"
-
-RDEPEND="
-   sys-libs/zlib[static-libs?]
-   sys-libs/libutempter[static-libs?]
-   dev-libs/openssl:0=[static-libs?]
-   dev-libs

[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2019-10-15 Thread Yixun Lan
commit: 10380785846487ace49515ac9897cd347dbab0b4
Author: Yixun Lan  gentoo  org>
AuthorDate: Wed Oct 16 02:43:55 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Oct 16 02:58:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10380785

app-misc/tmate: version bump, 2.3.1

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Yixun Lan  gentoo.org>

 app-misc/tmate/Manifest   |  1 +
 app-misc/tmate/tmate-2.3.1.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/app-misc/tmate/Manifest b/app-misc/tmate/Manifest
index d5df5da5e89..5e974b1c6fa 100644
--- a/app-misc/tmate/Manifest
+++ b/app-misc/tmate/Manifest
@@ -2,3 +2,4 @@ DIST tmate-2.2.0-upstream-patches-0.tar.xz 6784 BLAKE2B 
b21a2065ba7a7832238cb6b6
 DIST tmate-2.2.0.tar.gz 610793 BLAKE2B 
febe2ed652e8387f65d938f09c6abbd92841a71a285035f6322bcf786aa4f80f71a0f49fc475743a8565bf4c7e434d9f503ffc6bae26d531429b1c58bc0ffbe9
 SHA512 
e9429833cdb8c28873d01bfc6b9a0d1241e30346ef1b3efae6763389c8444943b831283c1ea65e49c68d11936d6586186b38e0f7c14d373d9f63e841026c3338
 DIST tmate-2.2.1.tar.gz 610745 BLAKE2B 
8a97d7726b528d12e14c74c07f795b18510a4b7a0068f1e1168b06e2a6856945518b3b9a35f71ba8598b8f9390d754443eca197f95f5c9c61d6160f4008ff65d
 SHA512 
3d4ce7510cd8da39bc4fe63f2a64179846a813bb3560ca811d9e1e2a28b06d95a9033047a900d76bda069c249d7ebbe1143daa082b23212c5d32a50bf1819d2d
 DIST tmate-2.3.0.tar.gz 611262 BLAKE2B 
c4e789b20fbfb1736eacbf36f368d8ceb573937ed2c72f2b79b8da175a811985af12d9823fdbade9ee3f72bfb43427e8fa64eea75ba5fc3cf64273c31856d4d6
 SHA512 
b7de8f28ab5ee8ea389d4882ed64de3d71bd53d626ae6bf323d5be732066e63a7dba2a85318c0202a088af53df7e0d976256c1253895ad81739d270ee65d0eb7
+DIST tmate-2.3.1.tar.gz 611136 BLAKE2B 
bbcfb137cb9e712bbe3c36b2d57e6f1ea5a68c884e6e6ccd252315bca689b1bbec7a53cd131f0f36a6bab5b1defd3acb26bb458684894c81d676d2585db4790b
 SHA512 
98531e3a3c1cc4da11894e8298df560fd58f1ede6a81ac8cb5f8cbea86f5c21672a016977dab801ec06e14f6c718a64599a9e32740934fcd4c0a155f92710520

diff --git a/app-misc/tmate/tmate-2.3.1.ebuild 
b/app-misc/tmate/tmate-2.3.1.ebuild
new file mode 100644
index 000..bdddbdf93b1
--- /dev/null
+++ b/app-misc/tmate/tmate-2.3.1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Instant terminal sharing"
+HOMEPAGE="https://tmate.io/";
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug libressl static-libs"
+
+SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+RDEPEND="
+   sys-libs/zlib[static-libs?]
+   sys-libs/libutempter[static-libs?]
+   dev-libs/libevent[static-libs?]
+   dev-libs/msgpack[static-libs?]
+   >=net-libs/libssh-0.6.0[static-libs?]
+   !libressl? ( dev-libs/openssl:0=[static-libs?] )
+   libressl? ( dev-libs/libressl:0=[static-libs?] )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable debug)
+   )
+   econf "${myeconfargs[@]}"
+}



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2019-08-28 Thread Stefan Strogin
commit: 0d7adab330e514eb0dce33d2173d3b901feb8726
Author: Stefan Strogin  gentoo  org>
AuthorDate: Wed Aug 28 18:13:49 2019 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Wed Aug 28 18:22:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d7adab3

app-misc/tmate: bump version to 2.3.0

- Add USE=libressl.
- EAPI=7.
- Correct LICENSE.

Closes: https://bugs.gentoo.org/614222
Closes: https://bugs.gentoo.org/683116
Package-Manager: Portage-2.3.73, Repoman-2.3.17
Signed-off-by: Stefan Strogin  gentoo.org>

 app-misc/tmate/Manifest   |  1 +
 app-misc/tmate/tmate-2.3.0.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/app-misc/tmate/Manifest b/app-misc/tmate/Manifest
index aa8903f0585..d5df5da5e89 100644
--- a/app-misc/tmate/Manifest
+++ b/app-misc/tmate/Manifest
@@ -1,3 +1,4 @@
 DIST tmate-2.2.0-upstream-patches-0.tar.xz 6784 BLAKE2B 
b21a2065ba7a7832238cb6b6bbfe3e730593766a34244e139d0e357cad538a4462e68a9e884a6250fc72a10a775fa13e53054618c35804cc05ad0cc31854d9e3
 SHA512 
3e16e0b7988d3d1942fcac0a535d2cc8d7156d26332dc84fd21c4761afae40159282b0fbeb71cd5f6525b5a1c7a46e7813c8e6a11851592077570c1a001a73a7
 DIST tmate-2.2.0.tar.gz 610793 BLAKE2B 
febe2ed652e8387f65d938f09c6abbd92841a71a285035f6322bcf786aa4f80f71a0f49fc475743a8565bf4c7e434d9f503ffc6bae26d531429b1c58bc0ffbe9
 SHA512 
e9429833cdb8c28873d01bfc6b9a0d1241e30346ef1b3efae6763389c8444943b831283c1ea65e49c68d11936d6586186b38e0f7c14d373d9f63e841026c3338
 DIST tmate-2.2.1.tar.gz 610745 BLAKE2B 
8a97d7726b528d12e14c74c07f795b18510a4b7a0068f1e1168b06e2a6856945518b3b9a35f71ba8598b8f9390d754443eca197f95f5c9c61d6160f4008ff65d
 SHA512 
3d4ce7510cd8da39bc4fe63f2a64179846a813bb3560ca811d9e1e2a28b06d95a9033047a900d76bda069c249d7ebbe1143daa082b23212c5d32a50bf1819d2d
+DIST tmate-2.3.0.tar.gz 611262 BLAKE2B 
c4e789b20fbfb1736eacbf36f368d8ceb573937ed2c72f2b79b8da175a811985af12d9823fdbade9ee3f72bfb43427e8fa64eea75ba5fc3cf64273c31856d4d6
 SHA512 
b7de8f28ab5ee8ea389d4882ed64de3d71bd53d626ae6bf323d5be732066e63a7dba2a85318c0202a088af53df7e0d976256c1253895ad81739d270ee65d0eb7

diff --git a/app-misc/tmate/tmate-2.3.0.ebuild 
b/app-misc/tmate/tmate-2.3.0.ebuild
new file mode 100644
index 000..bdddbdf93b1
--- /dev/null
+++ b/app-misc/tmate/tmate-2.3.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Instant terminal sharing"
+HOMEPAGE="https://tmate.io/";
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug libressl static-libs"
+
+SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+RDEPEND="
+   sys-libs/zlib[static-libs?]
+   sys-libs/libutempter[static-libs?]
+   dev-libs/libevent[static-libs?]
+   dev-libs/msgpack[static-libs?]
+   >=net-libs/libssh-0.6.0[static-libs?]
+   !libressl? ( dev-libs/openssl:0=[static-libs?] )
+   libressl? ( dev-libs/libressl:0=[static-libs?] )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable debug)
+   )
+   econf "${myeconfargs[@]}"
+}



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2019-01-07 Thread Lars Wendler
commit: 8053132a458b4b0028937430c5cddbd6503b226f
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Jan  7 16:32:02 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jan  7 17:00:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8053132a

app-misc/tmate: Adjusted (sub-)slot dependency on dev-libs/openssl

Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 app-misc/tmate/tmate-2.2.0-r1.ebuild | 4 ++--
 app-misc/tmate/tmate-2.2.1.ebuild| 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-misc/tmate/tmate-2.2.0-r1.ebuild 
b/app-misc/tmate/tmate-2.2.0-r1.ebuild
index 37f0c9a8cae..22a9a0bf317 100644
--- a/app-misc/tmate/tmate-2.2.0-r1.ebuild
+++ b/app-misc/tmate/tmate-2.2.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -23,7 +23,7 @@ 
SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 RDEPEND="
sys-libs/zlib[static-libs?]
sys-libs/libutempter[static-libs?]
-   dev-libs/openssl[static-libs?]
+   dev-libs/openssl:0=[static-libs?]
dev-libs/libevent[static-libs?]
dev-libs/msgpack[static-libs?]
>=net-libs/libssh-0.6.0[static-libs?]

diff --git a/app-misc/tmate/tmate-2.2.1.ebuild 
b/app-misc/tmate/tmate-2.2.1.ebuild
index 0afcb394d3f..f4cfc6999c0 100644
--- a/app-misc/tmate/tmate-2.2.1.ebuild
+++ b/app-misc/tmate/tmate-2.2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -23,7 +23,7 @@ 
SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 RDEPEND="
sys-libs/zlib[static-libs?]
sys-libs/libutempter[static-libs?]
-   dev-libs/openssl[static-libs?]
+   dev-libs/openssl:0=[static-libs?]
dev-libs/libevent[static-libs?]
dev-libs/msgpack[static-libs?]
>=net-libs/libssh-0.6.0[static-libs?]



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2016-08-29 Thread Yixun Lan
commit: a8ec6dc048735955ad8e39be442cabee0696d3c3
Author: Yixun Lan  gentoo  org>
AuthorDate: Tue Aug 30 05:56:19 2016 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Aug 30 05:57:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8ec6dc0

app-misc/tmate: fix DEPEND typo

Gentoo-Bug: 592250

Package-Manager: portage-2.3.0

 app-misc/tmate/tmate-2.2.0-r1.ebuild | 2 +-
 app-misc/tmate/tmate-2.2.1.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/tmate/tmate-2.2.0-r1.ebuild 
b/app-misc/tmate/tmate-2.2.0-r1.ebuild
index 28ed752..d7fb1ea 100644
--- a/app-misc/tmate/tmate-2.2.0-r1.ebuild
+++ b/app-misc/tmate/tmate-2.2.0-r1.ebuild
@@ -29,7 +29,7 @@ RDEPEND="
dev-libs/msgpack[static-libs?]
>=net-libs/libssh-0.6.0[static-libs?]
 "
-DEPEND="${RPDEND}
+DEPEND="${RDEPEND}
virtual/pkgconfig"
 
 src_prepare() {

diff --git a/app-misc/tmate/tmate-2.2.1.ebuild 
b/app-misc/tmate/tmate-2.2.1.ebuild
index 460f89e..56200d2 100644
--- a/app-misc/tmate/tmate-2.2.1.ebuild
+++ b/app-misc/tmate/tmate-2.2.1.ebuild
@@ -29,7 +29,7 @@ RDEPEND="
dev-libs/msgpack[static-libs?]
>=net-libs/libssh-0.6.0[static-libs?]
 "
-DEPEND="${RPDEND}
+DEPEND="${RDEPEND}
virtual/pkgconfig"
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2016-08-02 Thread Yixun Lan
commit: 32c16627efb86809cc9b100e269b642c6d0f4001
Author: Yixun Lan  gentoo  org>
AuthorDate: Wed Aug  3 01:57:43 2016 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Aug  3 01:58:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32c16627

app-misc/tmate: version bump

Package-Manager: portage-2.3.0

 app-misc/tmate/Manifest   |  1 +
 app-misc/tmate/tmate-2.2.1.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/app-misc/tmate/Manifest b/app-misc/tmate/Manifest
index 58de496..0046161 100644
--- a/app-misc/tmate/Manifest
+++ b/app-misc/tmate/Manifest
@@ -1,2 +1,3 @@
 DIST tmate-2.2.0-upstream-patches-0.tar.xz 6784 SHA256 
aa5b0ca858bb652418aa5200f0f5dcda0827295c16fb73fd34594d718a65878a SHA512 
3e16e0b7988d3d1942fcac0a535d2cc8d7156d26332dc84fd21c4761afae40159282b0fbeb71cd5f6525b5a1c7a46e7813c8e6a11851592077570c1a001a73a7
 WHIRLPOOL 
fb05b5d90f2542bb2e8fdc8c5df988338d5626bd48899697b8c16b9078ca71d2b2682c648f5f7c37ed8cd4a9966b1c6d5524823b34a4ac4cb9833a62325bb39c
 DIST tmate-2.2.0.tar.gz 610793 SHA256 
932148b24d9c67e524ce744c9480b5603c9f976afb6ad7ca6d63246cd9e7fd3a SHA512 
e9429833cdb8c28873d01bfc6b9a0d1241e30346ef1b3efae6763389c8444943b831283c1ea65e49c68d11936d6586186b38e0f7c14d373d9f63e841026c3338
 WHIRLPOOL 
e1a2203e9a63466244d9d61e6e06d4dea77a9eb3e7069c1c87c115e5ce370e3b3b7ad2d7fc8b4c740030ee980b4d52833066f853a05d1c611a5d5c4810c89a36
+DIST tmate-2.2.1.tar.gz 610745 SHA256 
d9c2ac59f42e65aac5f500f0548ea8056fd79c9c5285e5af324d833e2a84c305 SHA512 
3d4ce7510cd8da39bc4fe63f2a64179846a813bb3560ca811d9e1e2a28b06d95a9033047a900d76bda069c249d7ebbe1143daa082b23212c5d32a50bf1819d2d
 WHIRLPOOL 
b0d90d28b263b1e7c6dbf755c7e2d5f37598e63d484189d04ee15d5b3f09f84efc9e22dd75576a627e8c27ef0dd4524d59ed882f8fff2efca43664fbe3772bf9

diff --git a/app-misc/tmate/tmate-2.2.1.ebuild 
b/app-misc/tmate/tmate-2.2.1.ebuild
new file mode 100644
index 000..460f89e
--- /dev/null
+++ b/app-misc/tmate/tmate-2.2.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=1
+inherit eutils autotools-utils
+
+DESCRIPTION="Instant terminal sharing"
+HOMEPAGE="http://tmate.io/";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug static-libs"
+
+UPSTREAM_VER=
+[[ -n ${UPSTREAM_VER} ]] && \
+   
UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${P}-upstream-patches-${UPSTREAM_VER}.tar.xz";
+SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
+   ${UPSTREAM_PATCHSET_URI}"
+
+RDEPEND="
+   sys-libs/zlib[static-libs?]
+   sys-libs/libutempter[static-libs?]
+   dev-libs/openssl[static-libs?]
+   dev-libs/libevent[static-libs?]
+   dev-libs/msgpack[static-libs?]
+   >=net-libs/libssh-0.6.0[static-libs?]
+"
+DEPEND="${RPDEND}
+   virtual/pkgconfig"
+
+src_prepare() {
+   # Upstream's patchset
+   if [[ -n ${UPSTREAM_VER} ]]; then
+   einfo "Try to apply tmate Upstream patch set"
+   EPATCH_SUFFIX="patch" \
+   EPATCH_FORCE="yes" \
+   EPATCH_OPTS="-p1" \
+   epatch "${WORKDIR}"/patches-upstream
+   fi
+
+   autotools-utils_src_prepare
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable debug)
+   )
+   autotools-utils_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2016-03-26 Thread Yixun Lan
commit: 109ba3e3ab9c366296da3d8cdecf1f0adb8d88df
Author: Yixun Lan  gentoo  org>
AuthorDate: Sat Mar 26 20:24:53 2016 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Sat Mar 26 20:24:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=109ba3e3

app-misc/tmate: fix missing sys-libs/libutempter dep problem

Gentoo-bug: 578080

Package-Manager: portage-2.2.28

 app-misc/tmate/{tmate-2.2.0.ebuild => tmate-2.2.0-r1.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-misc/tmate/tmate-2.2.0.ebuild 
b/app-misc/tmate/tmate-2.2.0-r1.ebuild
similarity index 96%
rename from app-misc/tmate/tmate-2.2.0.ebuild
rename to app-misc/tmate/tmate-2.2.0-r1.ebuild
index f58ded2..28ed752 100644
--- a/app-misc/tmate/tmate-2.2.0.ebuild
+++ b/app-misc/tmate/tmate-2.2.0-r1.ebuild
@@ -23,6 +23,7 @@ 
SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 RDEPEND="
sys-libs/zlib[static-libs?]
+   sys-libs/libutempter[static-libs?]
dev-libs/openssl[static-libs?]
dev-libs/libevent[static-libs?]
dev-libs/msgpack[static-libs?]



[gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/

2016-02-21 Thread Yixun Lan
commit: 333c7fa94468f155d7ea5ad457756c406d38c3e7
Author: Yixun Lan  gentoo  org>
AuthorDate: Mon Feb 22 03:34:23 2016 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Mon Feb 22 03:34:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=333c7fa9

app-misc/tmate: new 2.2.0 added

Gentoo-bug: 498692

initial version contributed by Jayson Reis (jaysonsantos)
at sunrise overlay, and slightly improved by me

Package-Manager: portage-2.2.27

 app-misc/tmate/Manifest   |  2 ++
 app-misc/tmate/metadata.xml   |  8 ++
 app-misc/tmate/tmate-2.2.0.ebuild | 52 +++
 3 files changed, 62 insertions(+)

diff --git a/app-misc/tmate/Manifest b/app-misc/tmate/Manifest
new file mode 100644
index 000..58de496
--- /dev/null
+++ b/app-misc/tmate/Manifest
@@ -0,0 +1,2 @@
+DIST tmate-2.2.0-upstream-patches-0.tar.xz 6784 SHA256 
aa5b0ca858bb652418aa5200f0f5dcda0827295c16fb73fd34594d718a65878a SHA512 
3e16e0b7988d3d1942fcac0a535d2cc8d7156d26332dc84fd21c4761afae40159282b0fbeb71cd5f6525b5a1c7a46e7813c8e6a11851592077570c1a001a73a7
 WHIRLPOOL 
fb05b5d90f2542bb2e8fdc8c5df988338d5626bd48899697b8c16b9078ca71d2b2682c648f5f7c37ed8cd4a9966b1c6d5524823b34a4ac4cb9833a62325bb39c
+DIST tmate-2.2.0.tar.gz 610793 SHA256 
932148b24d9c67e524ce744c9480b5603c9f976afb6ad7ca6d63246cd9e7fd3a SHA512 
e9429833cdb8c28873d01bfc6b9a0d1241e30346ef1b3efae6763389c8444943b831283c1ea65e49c68d11936d6586186b38e0f7c14d373d9f63e841026c3338
 WHIRLPOOL 
e1a2203e9a63466244d9d61e6e06d4dea77a9eb3e7069c1c87c115e5ce370e3b3b7ad2d7fc8b4c740030ee980b4d52833066f853a05d1c611a5d5c4810c89a36

diff --git a/app-misc/tmate/metadata.xml b/app-misc/tmate/metadata.xml
new file mode 100644
index 000..3398ef8
--- /dev/null
+++ b/app-misc/tmate/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+  
+d...@gentoo.org
+Yixun Lan
+  
+

diff --git a/app-misc/tmate/tmate-2.2.0.ebuild 
b/app-misc/tmate/tmate-2.2.0.ebuild
new file mode 100644
index 000..f58ded2
--- /dev/null
+++ b/app-misc/tmate/tmate-2.2.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=1
+inherit eutils autotools-utils
+
+DESCRIPTION="Instant terminal sharing"
+HOMEPAGE="http://tmate.io/";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug static-libs"
+
+UPSTREAM_VER=0
+[[ -n ${UPSTREAM_VER} ]] && \
+   
UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${P}-upstream-patches-${UPSTREAM_VER}.tar.xz";
+SRC_URI="https://github.com/tmate-io/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
+   ${UPSTREAM_PATCHSET_URI}"
+
+RDEPEND="
+   sys-libs/zlib[static-libs?]
+   dev-libs/openssl[static-libs?]
+   dev-libs/libevent[static-libs?]
+   dev-libs/msgpack[static-libs?]
+   >=net-libs/libssh-0.6.0[static-libs?]
+"
+DEPEND="${RPDEND}
+   virtual/pkgconfig"
+
+src_prepare() {
+   # Upstream's patchset
+   if [[ -n ${UPSTREAM_VER} ]]; then
+   einfo "Try to apply tmate Upstream patch set"
+   EPATCH_SUFFIX="patch" \
+   EPATCH_FORCE="yes" \
+   EPATCH_OPTS="-p1" \
+   epatch "${WORKDIR}"/patches-upstream
+   fi
+
+   autotools-utils_src_prepare
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable debug)
+   )
+   autotools-utils_src_configure
+}