* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2016-02-22 3:35 Yixun Lan
0 siblings, 0 replies; 19+ messages in thread
From: Yixun Lan @ 2016-02-22 3:35 UTC (permalink / raw
To: gentoo-commits
commit: 333c7fa94468f155d7ea5ad457756c406d38c3e7
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 22 03:34:23 2016 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Mon Feb 22 03:34:23 2016 +0000
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 0000000..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 0000000..3398ef8
--- /dev/null
+++ b/app-misc/tmate/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>dlan@gentoo.org</email>
+ <name>Yixun Lan</name>
+ </maintainer>
+</pkgmetadata>
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 0000000..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
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2016-03-26 20:26 Yixun Lan
0 siblings, 0 replies; 19+ messages in thread
From: Yixun Lan @ 2016-03-26 20:26 UTC (permalink / raw
To: gentoo-commits
commit: 109ba3e3ab9c366296da3d8cdecf1f0adb8d88df
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 26 20:24:53 2016 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sat Mar 26 20:24:53 2016 +0000
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?]
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2016-08-03 1:58 Yixun Lan
0 siblings, 0 replies; 19+ messages in thread
From: Yixun Lan @ 2016-08-03 1:58 UTC (permalink / raw
To: gentoo-commits
commit: 32c16627efb86809cc9b100e269b642c6d0f4001
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 3 01:57:43 2016 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Aug 3 01:58:14 2016 +0000
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 0000000..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
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2016-08-30 5:57 Yixun Lan
0 siblings, 0 replies; 19+ messages in thread
From: Yixun Lan @ 2016-08-30 5:57 UTC (permalink / raw
To: gentoo-commits
commit: a8ec6dc048735955ad8e39be442cabee0696d3c3
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 30 05:56:19 2016 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Tue Aug 30 05:57:42 2016 +0000
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() {
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2019-01-07 17:00 Lars Wendler
0 siblings, 0 replies; 19+ messages in thread
From: Lars Wendler @ 2019-01-07 17:00 UTC (permalink / raw
To: gentoo-commits
commit: 8053132a458b4b0028937430c5cddbd6503b226f
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 7 16:32:02 2019 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Jan 7 17:00:10 2019 +0000
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 <polynomial-c <AT> 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?]
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2019-08-28 18:23 Stefan Strogin
0 siblings, 0 replies; 19+ messages in thread
From: Stefan Strogin @ 2019-08-28 18:23 UTC (permalink / raw
To: gentoo-commits
commit: 0d7adab330e514eb0dce33d2173d3b901feb8726
Author: Stefan Strogin <steils <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 28 18:13:49 2019 +0000
Commit: Stefan Strogin <steils <AT> gentoo <DOT> org>
CommitDate: Wed Aug 28 18:22:49 2019 +0000
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 <steils <AT> 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 00000000000..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[@]}"
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2019-10-16 2:58 Yixun Lan
0 siblings, 0 replies; 19+ messages in thread
From: Yixun Lan @ 2019-10-16 2:58 UTC (permalink / raw
To: gentoo-commits
commit: 10380785846487ace49515ac9897cd347dbab0b4
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 16 02:43:55 2019 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Oct 16 02:58:37 2019 +0000
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 <dlan <AT> 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 00000000000..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[@]}"
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2019-10-16 2:58 Yixun Lan
0 siblings, 0 replies; 19+ messages in thread
From: Yixun Lan @ 2019-10-16 2:58 UTC (permalink / raw
To: gentoo-commits
commit: 76f28b981563f60ccb958141db75410042fe7b66
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 16 02:45:01 2019 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Oct 16 02:58:45 2019 +0000
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 <dlan <AT> 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..00000000000
--- 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..00000000000
--- 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/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
-}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2019-12-12 5:53 Yixun Lan
0 siblings, 0 replies; 19+ messages in thread
From: Yixun Lan @ 2019-12-12 5:53 UTC (permalink / raw
To: gentoo-commits
commit: 304499a2bff947643c7605baf328affd852161b0
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 12 05:51:10 2019 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Dec 12 05:53:23 2019 +0000
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 <dlan <AT> 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 00000000000..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[@]}"
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2019-12-12 5:53 Yixun Lan
0 siblings, 0 replies; 19+ messages in thread
From: Yixun Lan @ 2019-12-12 5:53 UTC (permalink / raw
To: gentoo-commits
commit: 2e055af42142baa62dcb232ac44769f5981b04f6
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 12 05:52:12 2019 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Dec 12 05:53:27 2019 +0000
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 <dlan <AT> 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..00000000000
--- 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[@]}"
-}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2021-05-02 19:55 Mikle Kolyada
0 siblings, 0 replies; 19+ messages in thread
From: Mikle Kolyada @ 2021-05-02 19:55 UTC (permalink / raw
To: gentoo-commits
commit: b2a94c8ad3a6e089b1eae59174a1bc2947209ccb
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun May 2 19:55:17 2021 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun May 2 19:55:17 2021 +0000
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 <zlogene <AT> 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"
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2021-08-05 8:11 Yixun Lan
0 siblings, 0 replies; 19+ messages in thread
From: Yixun Lan @ 2021-08-05 8:11 UTC (permalink / raw
To: gentoo-commits
commit: 97cde42d9506642465b3d1b9df9a16dca0662209
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 5 06:48:02 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Aug 5 08:09:59 2021 +0000
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 <dlan <AT> 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"
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2021-08-05 8:11 Yixun Lan
0 siblings, 0 replies; 19+ messages in thread
From: Yixun Lan @ 2021-08-05 8:11 UTC (permalink / raw
To: gentoo-commits
commit: 9b849f25c6d9340c751d1e2d7678c41971db119c
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 5 08:09:05 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Aug 5 08:10:03 2021 +0000
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 <dlan <AT> 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..00000000000
--- 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[@]}"
-}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2023-02-07 8:37 Yixun Lan
0 siblings, 0 replies; 19+ messages in thread
From: Yixun Lan @ 2023-02-07 8:37 UTC (permalink / raw
To: gentoo-commits
commit: f07f87a5e308b534930011dc505337e24a9051dd
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 7 08:30:29 2023 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Tue Feb 7 08:34:55 2023 +0000
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 <dlan <AT> 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[@]}"
}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2023-03-19 18:57 Sam James
0 siblings, 0 replies; 19+ messages in thread
From: Sam James @ 2023-03-19 18:57 UTC (permalink / raw
To: gentoo-commits
commit: ba4871ef29c7b9d02b761d4ce589bd5d1e633d5c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 19 18:57:09 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 19 18:57:15 2023 +0000
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 <sam <AT> 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"
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2023-04-03 6:47 Sam James
0 siblings, 0 replies; 19+ messages in thread
From: Sam James @ 2023-04-03 6:47 UTC (permalink / raw
To: gentoo-commits
commit: 23f7d1919ab3169b7deb4e47424874db97b0846e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 3 06:45:32 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 3 06:46:49 2023 +0000
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 <sam <AT> 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 000000000000..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[@]}"
+}
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2023-04-08 8:36 Ulrich Müller
0 siblings, 0 replies; 19+ messages in thread
From: Ulrich Müller @ 2023-04-08 8:36 UTC (permalink / raw
To: gentoo-commits
commit: f120e9e52da0ae3be739e94267319dce6e522d30
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 8 08:28:30 2023 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Apr 8 08:35:02 2023 +0000
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 <ulm <AT> 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"
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2023-04-08 17:59 Arthur Zamarin
0 siblings, 0 replies; 19+ messages in thread
From: Arthur Zamarin @ 2023-04-08 17:59 UTC (permalink / raw
To: gentoo-commits
commit: 9ada50b9c1949391158f93da5a65d92b5f0099f8
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 8 17:59:20 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 8 17:59:20 2023 +0000
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 <arthurzam <AT> 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="
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/
@ 2024-11-08 14:42 Andreas K. Hüttel
0 siblings, 0 replies; 19+ messages in thread
From: Andreas K. Hüttel @ 2024-11-08 14:42 UTC (permalink / raw
To: gentoo-commits
commit: 9c190d76e0d95ab7d225de37f1f8d5cc37d7a916
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 8 14:41:38 2024 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Nov 8 14:42:31 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c190d76
app-misc/tmate: suppress false positive QA warning (b64_ntop on musl)
Closes: https://bugs.gentoo.org/900483
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
app-misc/tmate/tmate-2.4.0-r1.ebuild | 40 ------------------------------------
app-misc/tmate/tmate-2.4.0-r2.ebuild | 7 ++++++-
2 files changed, 6 insertions(+), 41 deletions(-)
diff --git a/app-misc/tmate/tmate-2.4.0-r1.ebuild b/app-misc/tmate/tmate-2.4.0-r1.ebuild
deleted file mode 100644
index 920c528ee69e..000000000000
--- a/app-misc/tmate/tmate-2.4.0-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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[@]}"
-}
diff --git a/app-misc/tmate/tmate-2.4.0-r2.ebuild b/app-misc/tmate/tmate-2.4.0-r2.ebuild
index 3b27ffa1aa08..080a3e255c75 100644
--- a/app-misc/tmate/tmate-2.4.0-r2.ebuild
+++ b/app-misc/tmate/tmate-2.4.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -29,6 +29,11 @@ PATCHES=(
"${FILESDIR}"/${PN}-2.4.0-msgpack-6.patch
)
+QA_CONFIG_IMPL_DECL_SKIP=(
+ # missing on musl, check works as intended
+ b64_ntop
+)
+
src_prepare() {
default
eautoreconf
^ permalink raw reply related [flat|nested] 19+ messages in thread
end of thread, other threads:[~2024-11-08 14:42 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-12 5:53 [gentoo-commits] repo/gentoo:master commit in: app-misc/tmate/ Yixun Lan
-- strict thread matches above, loose matches on Subject: below --
2024-11-08 14:42 Andreas K. Hüttel
2023-04-08 17:59 Arthur Zamarin
2023-04-08 8:36 Ulrich Müller
2023-04-03 6:47 Sam James
2023-03-19 18:57 Sam James
2023-02-07 8:37 Yixun Lan
2021-08-05 8:11 Yixun Lan
2021-08-05 8:11 Yixun Lan
2021-05-02 19:55 Mikle Kolyada
2019-12-12 5:53 Yixun Lan
2019-10-16 2:58 Yixun Lan
2019-10-16 2:58 Yixun Lan
2019-08-28 18:23 Stefan Strogin
2019-01-07 17:00 Lars Wendler
2016-08-30 5:57 Yixun Lan
2016-08-03 1:58 Yixun Lan
2016-03-26 20:26 Yixun Lan
2016-02-22 3:35 Yixun Lan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox