public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/transifex-client/
Date: Sun, 26 Feb 2023 07:26:33 +0000 (UTC)	[thread overview]
Message-ID: <1677396391.42c2afeea7a15712760daf8eeac10642f2341bf9.juippis@gentoo> (raw)

commit:     42c2afeea7a15712760daf8eeac10642f2341bf9
Author:     Robert Siebeck <gentoo.2019 <AT> r123 <DOT> de>
AuthorDate: Thu Feb 16 14:42:01 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Feb 26 07:26:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42c2afee

app-i18n/transifex-client: add new version 1.6.5

Signed-off-by: Robert Siebeck <gentoo.2019 <AT> r123.de>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-i18n/transifex-client/Manifest                 |  2 ++
 .../transifex-client/transifex-client-1.6.5.ebuild | 32 ++++++++++++++++++++++
 2 files changed, 34 insertions(+)

diff --git a/app-i18n/transifex-client/Manifest b/app-i18n/transifex-client/Manifest
index 652e2e25f4bb..3dbc49d0aa00 100644
--- a/app-i18n/transifex-client/Manifest
+++ b/app-i18n/transifex-client/Manifest
@@ -2,3 +2,5 @@ DIST transifex-client-1.4.1-deps.tar.bz 241665608 BLAKE2B 88fcdf188c0086c3a8438c
 DIST transifex-client-1.4.1.tar.gz 91054 BLAKE2B 55bde1faf526a633923691cd3dc14d9d481cd4eec040e95eae385c63593545dc2158e0d3518c53a08db70661abf4fb864157d5e7e1fdab403ef02e47d83665fe SHA512 66ad08c9a22e09dbb5690c4da830924e0bd76c9ecf73dbeadc849c7b1911b4439a456c478a5688883278e90903015b0968220f36f7cd951650f364857ac0e08e
 DIST transifex-client-1.6.4-deps.tar.bz 241683180 BLAKE2B 395caf5b5db1ea93363a7f6efc4d2b8ff9e5e8040b04fd8e78ccfbc4b6239c809e348de9d4f8e494d34a2fc6564a70df448961d62a2949c9e2a326cb5f873fcf SHA512 0463cc7ead2c111f4d3889f3f29aa1c729554af0d0934a51aebd691e1f621f9bc61b5b3a90166ee0c947187aa5b489dc6b1bbd438193d6009afdc1a040db1270
 DIST transifex-client-1.6.4.tar.gz 94703 BLAKE2B b51e29aadab41c23b95efc86c334876094772e9d4f4f0cdaa41a5d016e710597da631953446d20689b0028e34bb4cc31ab0bdc1d3107dbc3a4abd6ba9279698e SHA512 d8e6b18d30b9d225c6ed84c9cc699743c289ccfc151c1aa74411989f965f554e651ece3e36a033dc8fc77bc3bb5502b02b2d04b1affe96811195b74edadf128c
+DIST transifex-client-1.6.5-deps.tar.bz 241689777 BLAKE2B 55ca6f8c39e08887ddad1fa27fa5065cdeaa193d470be846b60ad0350578e64d10f9ea63a6d9bd744b048e0db164591d07a069e2deab55e75ecb1e78efc44c19 SHA512 72b5702b31121e42b6b107b3addecd9ac6010042f94b2116e08b18e50264d6a6bb7010e0bef6dead599d96de390390f624b413ff042cc4293538fabbf904bc19
+DIST transifex-client-1.6.5.tar.gz 94921 BLAKE2B 1d1e00c62754765e1bf51165e7fcfa2f7352d3d2033b7f8f5916c89e571dbcd2d421038e44382b490aa91013213fe89232cd5337678c265c6bf32734786737ce SHA512 212d6d008eb0f7b83483c4dfd3b3f1caf6a18cb136e8a814b6395d7baee4097c902280a93e358f1a9ccaf43e668e3dcc372e0c67765624610506012328f89f3d

diff --git a/app-i18n/transifex-client/transifex-client-1.6.5.ebuild b/app-i18n/transifex-client/transifex-client-1.6.5.ebuild
new file mode 100644
index 000000000000..4c2ef37584ef
--- /dev/null
+++ b/app-i18n/transifex-client/transifex-client-1.6.5.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="The Transifex command-line client"
+HOMEPAGE="https://github.com/transifex/cli"
+
+SRC_URI="https://github.com/transifex/cli/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
+	https://gitlab.com/api/v4/projects/35204985/packages/generic/${PN}/${PV}/${P}-deps.tar.bz"
+S="${WORKDIR}"/cli-${PV}
+
+LICENSE="Apache-2.0 BSD BSD-2 ISC LGPL-3 MIT MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+
+src_compile() {
+	emake GOFLAGS="${GOFLAGS} -ldflags=-X="github.com/transifex/cli/internal/txlib.Version=${PV}
+}
+
+src_test() {
+	# Skip tests depending on a network connection. Bug #831772
+	rm internal/txlib/update_test.go || die
+	go test ./... || die
+}
+
+src_install() {
+	dobin bin/tx
+	dodoc README.md
+}


             reply	other threads:[~2023-02-26  7:26 UTC|newest]

Thread overview: 81+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-26  7:26 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-07  6:46 [gentoo-commits] repo/gentoo:master commit in: app-i18n/transifex-client/ Joonas Niilola
2024-10-07  6:46 Joonas Niilola
2024-08-23  8:54 Yixun Lan
2024-08-23  8:54 Yixun Lan
2024-08-22  2:07 Sam James
2024-08-22  2:07 Sam James
2024-07-11 16:29 Eli Schwartz
2024-07-11 16:29 Eli Schwartz
2024-06-28  7:43 Joonas Niilola
2024-06-28  7:43 Joonas Niilola
2024-04-27 11:39 Yixun Lan
2024-04-27 11:39 Yixun Lan
2023-09-06  7:12 Joonas Niilola
2023-09-06  7:12 Joonas Niilola
2023-04-13  6:03 Joonas Niilola
2023-02-26  7:26 Joonas Niilola
2023-02-16 22:57 Sam James
2023-02-16 22:57 Sam James
2022-12-09  7:12 Joonas Niilola
2022-12-09  7:12 Joonas Niilola
2022-12-09  7:12 Joonas Niilola
2022-11-18  4:54 Sam James
2022-11-18  4:54 Sam James
2022-10-30  9:35 Sam James
2022-10-30  9:35 Sam James
2022-09-22 11:35 Joonas Niilola
2022-09-22 11:35 Joonas Niilola
2022-09-13  5:13 Joonas Niilola
2022-09-13  5:13 Joonas Niilola
2022-08-10  8:31 Joonas Niilola
2022-08-10  8:31 Joonas Niilola
2022-07-05  8:52 Joonas Niilola
2022-05-17  7:13 Sam James
2022-05-17  7:12 Sam James
2022-05-16 12:22 Jakov Smolić
2022-05-15 22:07 Jakov Smolić
2022-04-08 15:50 Joonas Niilola
2022-04-08 15:50 Joonas Niilola
2022-03-30 20:09 Jakov Smolić
2022-03-30 20:09 Jakov Smolić
2022-02-26  2:43 Sam James
2022-02-26  2:43 Sam James
2022-02-25  9:41 Yixun Lan
2022-02-25  9:40 Yixun Lan
2022-02-25  9:40 Yixun Lan
2022-02-19 10:09 Matthew Smith
2022-02-19 10:09 Matthew Smith
2022-02-11 19:07 Jakov Smolić
2022-02-11  7:24 Agostino Sarubbo
2022-01-28 18:53 Arthur Zamarin
2022-01-28  7:53 Sam James
2022-01-21 19:11 Sam James
2022-01-19  0:09 Sam James
2021-12-29  7:41 Sam James
2021-12-29  7:35 Sam James
2021-12-29  1:51 Sam James
2021-07-14 14:32 Joonas Niilola
2021-07-14 14:32 Joonas Niilola
2021-03-03 22:01 Sam James
2021-03-02 14:17 Thomas Deutschmann
2021-02-18 17:12 Sam James
2021-02-16  8:25 Sergei Trofimovich
2021-02-04 10:25 Joonas Niilola
2021-02-04 10:21 Joonas Niilola
2021-02-04 10:21 Joonas Niilola
2021-02-04 10:21 Joonas Niilola
2020-12-17 13:48 Joonas Niilola
2020-12-17 13:48 Joonas Niilola
2020-11-24 13:26 Joonas Niilola
2020-11-24 13:26 Joonas Niilola
2020-10-02  7:32 Joonas Niilola
2020-05-14 22:12 Aaron Bauman
2020-05-13 10:08 Agostino Sarubbo
2020-05-12 13:05 Agostino Sarubbo
2020-04-30 12:00 Joonas Niilola
2020-04-29  8:10 Joonas Niilola
2019-01-27 10:15 Pacho Ramos
2018-07-01  9:52 Mikle Kolyada
2018-06-27 17:15 Pacho Ramos
2017-08-13 13:00 Patrice Clement

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1677396391.42c2afeea7a15712760daf8eeac10642f2341bf9.juippis@gentoo \
    --to=juippis@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox