public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mike Gilbert" <floppym@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/transmission/
Date: Tue, 13 Aug 2024 17:24:23 +0000 (UTC)	[thread overview]
Message-ID: <1723569855.d800bb25926fcd06f8c1f60dc3be72abc399adb2.floppym@gentoo> (raw)

commit:     d800bb25926fcd06f8c1f60dc3be72abc399adb2
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 13 17:24:15 2024 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Tue Aug 13 17:24:15 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d800bb25

net-p2p/transmission: drop 4.0.5-r1

Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 net-p2p/transmission/Manifest                     |   1 -
 net-p2p/transmission/transmission-4.0.5-r1.ebuild | 158 ----------------------
 2 files changed, 159 deletions(-)

diff --git a/net-p2p/transmission/Manifest b/net-p2p/transmission/Manifest
index ee2b56c96a39..25fe0a891814 100644
--- a/net-p2p/transmission/Manifest
+++ b/net-p2p/transmission/Manifest
@@ -1,2 +1 @@
-DIST transmission-4.0.5.tar.xz 9745756 BLAKE2B 60caa3bc615137b225d3ac3f25daa352c6960fcc848c91e5ea45488ae109d93b53e314e4683bd7c4ef3f9b2f364d796b6c5bb014ca647d3f44fb5c9df9f8c997 SHA512 9d3df965929ba18aa8186f89060aeacc8ead3df4a5acdc74a005dc62deadc5fa239af99c49ca2477cc5c1adfcd834481105f1dbc94e0efe210e9e6680bfec124
 DIST transmission-4.0.6.tar.xz 11908296 BLAKE2B 3eb1d851322299cb1b79c799f431c09db5aee1be0372fa2877e16508ca6f9e78ea42ed75520ab29a3325e62efcfca63a83559db73c39c981c9e2eddb403ef65a SHA512 d11654bd5174a990d8021fde890389bc7c073f63f80e1335bb2c250aff60f06d0b6481fb041ae4fdccd1c43278c71ddc36f692d7dda3ed2a1aaa9bd1bbc2cb0c

diff --git a/net-p2p/transmission/transmission-4.0.5-r1.ebuild b/net-p2p/transmission/transmission-4.0.5-r1.ebuild
deleted file mode 100644
index 84c29cb03a00..000000000000
--- a/net-p2p/transmission/transmission-4.0.5-r1.ebuild
+++ /dev/null
@@ -1,158 +0,0 @@
-# Copyright 2006-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic tmpfiles systemd xdg-utils
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/transmission/transmission"
-else
-	MY_PV="${PV/_beta/-beta.}"
-	MY_P="${PN}-${MY_PV}"
-	S="${WORKDIR}/${MY_P}"
-	SRC_URI="https://github.com/transmission/transmission/releases/download/${MY_PV}/${MY_P}.tar.xz"
-	KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv x86"
-fi
-
-DESCRIPTION="A fast, easy, and free BitTorrent client"
-HOMEPAGE="https://transmissionbt.com/"
-
-# web/LICENSE is always GPL-2 whereas COPYING allows either GPL-2 or GPL-3 for the rest
-# transmission in licenses/ is for mentioning OpenSSL linking exception
-# MIT is in several libtransmission/ headers
-LICENSE="|| ( GPL-2 GPL-3 Transmission-OpenSSL-exception ) GPL-2 MIT"
-SLOT="0"
-IUSE="appindicator cli debug gtk nls mbedtls qt5 qt6 systemd test"
-REQUIRED_USE="?? ( qt5 qt6 )"
-RESTRICT="!test? ( test )"
-
-ACCT_DEPEND="
-	acct-group/transmission
-	acct-user/transmission
-"
-BDEPEND="
-	virtual/pkgconfig
-	nls? (
-		gtk? ( sys-devel/gettext )
-	)
-	qt5? ( dev-qt/linguist-tools:5 )
-	qt6? ( dev-qt/qttools:6[linguist] )
-"
-COMMON_DEPEND="
-	>=dev-libs/libevent-2.1.0:=[threads(+)]
-	!mbedtls? ( dev-libs/openssl:0= )
-	mbedtls? ( net-libs/mbedtls:0= )
-	net-libs/libnatpmp
-	>=net-libs/libpsl-0.21.1
-	<net-libs/miniupnpc-2.2.8:=
-	>=net-misc/curl-7.28.0[ssl]
-	sys-libs/zlib:=
-	nls? ( virtual/libintl )
-	gtk? (
-		>=dev-cpp/gtkmm-3.24.0:4.0
-		>=dev-cpp/glibmm-2.60.0:2.68
-		appindicator? ( dev-libs/libayatana-appindicator )
-	)
-	qt5? (
-		dev-qt/qtcore:5
-		dev-qt/qtdbus:5
-		dev-qt/qtgui:5
-		dev-qt/qtnetwork:5
-		dev-qt/qtsvg:5
-		dev-qt/qtwidgets:5
-	)
-	qt6? (
-		dev-qt/qtbase:6[dbus,gui,network,widgets]
-		dev-qt/qtsvg:6
-	)
-	systemd? ( >=sys-apps/systemd-209:= )
-"
-DEPEND="${COMMON_DEPEND}
-	nls? ( virtual/libintl )
-"
-RDEPEND="${COMMON_DEPEND}
-	${ACCT_DEPEND}
-"
-
-src_configure() {
-	local mycmakeargs=(
-		-DCMAKE_INSTALL_DOCDIR=share/doc/${PF}
-
-		-DENABLE_GTK=$(usex gtk ON OFF)
-		-DENABLE_MAC=OFF
-		-DREBUILD_WEB=OFF
-		-DENABLE_CLI=$(usex cli ON OFF)
-		-DENABLE_TESTS=$(usex test ON OFF)
-		-DENABLE_NLS=$(usex nls ON OFF)
-
-		-DRUN_CLANG_TIDY=OFF
-
-		-DUSE_GTK_VERSION=4
-		-DUSE_SYSTEM_EVENT2=ON
-		-DUSE_SYSTEM_DEFLATE=OFF
-		-DUSE_SYSTEM_DHT=OFF
-		-DUSE_SYSTEM_MINIUPNPC=ON
-		-DUSE_SYSTEM_NATPMP=ON
-		-DUSE_SYSTEM_UTP=OFF
-		-DUSE_SYSTEM_B64=OFF
-		-DUSE_SYSTEM_PSL=ON
-
-		-DWITH_CRYPTO=$(usex mbedtls mbedtls openssl)
-		-DWITH_INOTIFY=ON
-		-DWITH_APPINDICATOR=$(usex appindicator ON OFF)
-		-DWITH_SYSTEMD=$(usex systemd ON OFF)
-	)
-
-	if use qt6; then
-		mycmakeargs+=( -DENABLE_QT=ON -DUSE_QT_VERSION=6 )
-	elif use qt5; then
-		mycmakeargs+=( -DENABLE_QT=ON -DUSE_QT_VERSION=5 )
-	else
-		mycmakeargs+=( -DENABLE_QT=OFF )
-	fi
-
-	# Disable assertions by default, bug 893870.
-	use debug || append-cppflags -DNDEBUG
-
-	cmake_src_configure
-}
-
-src_test() {
-	# https://github.com/transmission/transmission/issues/4763
-	cmake_src_test -E DhtTest.usesBootstrapFile
-}
-
-src_install() {
-	cmake_src_install
-
-	newinitd "${FILESDIR}"/transmission-daemon.initd.10 transmission-daemon
-	newconfd "${FILESDIR}"/transmission-daemon.confd.4 transmission-daemon
-
-	if use systemd; then
-		# Service sets Type=notify
-		systemd_dounit daemon/transmission-daemon.service
-		systemd_install_serviced "${FILESDIR}"/transmission-daemon.service.conf
-	fi
-
-	insinto /usr/lib/sysctl.d
-	doins "${FILESDIR}"/60-transmission.conf
-
-	newtmpfiles "${FILESDIR}"/transmission-daemon.tmpfiles transmission-daemon.conf
-}
-
-pkg_postrm() {
-	if use gtk || use qt5 || use qt6; then
-		xdg_desktop_database_update
-		xdg_icon_cache_update
-	fi
-}
-
-pkg_postinst() {
-	if use gtk || use qt5 || use qt6; then
-		xdg_desktop_database_update
-		xdg_icon_cache_update
-	fi
-	tmpfiles_process transmission-daemon.conf
-}


             reply	other threads:[~2024-08-13 17:24 UTC|newest]

Thread overview: 132+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-13 17:24 Mike Gilbert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-06  0:28 [gentoo-commits] repo/gentoo:master commit in: net-p2p/transmission/ Sam James
2024-10-05 21:47 Jakov Smolić
2024-10-05 21:47 Jakov Smolić
2024-09-02 18:38 Mike Gilbert
2024-09-02 18:34 Andreas Sturmlechner
2024-09-02 18:34 Andreas Sturmlechner
2024-08-13 20:45 Mike Gilbert
2024-08-13 17:24 Mike Gilbert
2024-08-04  3:16 Sam James
2024-08-03 22:51 Sam James
2024-08-03 16:48 Jakov Smolić
2024-08-03 16:48 Jakov Smolić
2024-06-10 20:15 Mike Gilbert
2024-05-30 16:26 Craig Andrews
2024-05-30 16:02 Craig Andrews
2024-05-22 19:24 Sam James
2024-05-22 19:24 Sam James
2024-05-19 15:57 Mike Gilbert
2024-04-24 19:08 Sam James
2024-04-24 19:08 Sam James
2023-12-21  7:51 Arthur Zamarin
2023-12-21  7:51 Arthur Zamarin
2023-12-07 17:21 Craig Andrews
2023-11-29 13:23 Arthur Zamarin
2023-11-27 23:45 Sam James
2023-08-28 20:06 Craig Andrews
2023-08-23 14:27 Mike Gilbert
2023-05-14 17:31 Sam James
2023-05-06 17:50 Mike Gilbert
2023-05-06  0:40 Matt Turner
2023-04-14 17:04 Craig Andrews
2023-04-14 17:04 Craig Andrews
2023-03-16 13:49 Craig Andrews
2023-03-12  3:33 Mike Gilbert
2023-03-03 17:20 Mike Gilbert
2023-03-02 20:51 Mike Gilbert
2023-03-01  1:44 Mike Gilbert
2023-02-23 18:33 Craig Andrews
2023-02-23 18:33 Craig Andrews
2023-02-23 15:04 Craig Andrews
2023-02-16 16:21 Mike Gilbert
2023-02-13 19:00 Mike Gilbert
2023-02-09  0:38 Mike Gilbert
2023-02-09  0:37 Mike Gilbert
2023-02-08 15:14 Craig Andrews
2023-01-28 19:19 Mike Gilbert
2023-01-28 19:19 Mike Gilbert
2023-01-20 19:45 Mike Gilbert
2023-01-20 19:45 Mike Gilbert
2023-01-05 15:49 Craig Andrews
2022-12-04 19:40 Craig Andrews
2022-10-27 23:46 Sam James
2022-10-27 17:02 Mike Gilbert
2022-10-25 10:44 Sam James
2022-10-25  7:17 Agostino Sarubbo
2022-10-25  7:16 Agostino Sarubbo
2022-10-07 22:18 Mike Gilbert
2022-10-07 21:57 Mike Gilbert
2022-08-08  9:40 Andreas Sturmlechner
2022-06-13 17:49 Mike Gilbert
2022-06-13 17:49 Mike Gilbert
2022-05-17 20:20 Mike Gilbert
2022-05-17 20:18 Mike Gilbert
2022-05-17 20:18 Mike Gilbert
2022-05-17 20:18 Mike Gilbert
2022-04-08 22:51 Mike Gilbert
2022-04-04 11:11 Yixun Lan
2022-03-25  2:29 Sam James
2021-11-21 19:55 Mike Gilbert
2021-10-23 12:41 Conrad Kostecki
2021-10-21 20:37 Conrad Kostecki
2021-08-13 15:34 Mike Gilbert
2021-08-13 15:29 Mike Gilbert
2021-05-04 18:40 Mike Gilbert
2021-04-30 16:49 Mikle Kolyada
2020-06-07  8:44 Agostino Sarubbo
2020-06-06 20:14 Agostino Sarubbo
2020-06-06 17:34 Agostino Sarubbo
2020-06-06 17:32 Agostino Sarubbo
2020-05-26 16:00 Mike Gilbert
2020-05-26 15:58 Mike Gilbert
2020-05-26 15:51 Mike Gilbert
2020-05-23 14:15 Mike Gilbert
2020-05-01 17:57 Pacho Ramos
2020-04-20 19:51 Mike Gilbert
2019-11-13 15:20 Mike Gilbert
2019-09-02 19:16 Mike Gilbert
2019-09-02 18:45 Mike Gilbert
2019-08-05 16:38 Mike Gilbert
2018-08-20 14:30 Mike Gilbert
2018-08-05 20:15 Sergei Trofimovich
2018-07-15 17:07 Mikle Kolyada
2018-07-15 14:23 Thomas Deutschmann
2018-07-14 20:10 Sergei Trofimovich
2018-05-27 23:15 Mike Gilbert
2018-05-27 23:14 Mike Gilbert
2018-03-31 19:01 Mart Raudsepp
2018-03-28 22:24 Sergei Trofimovich
2018-03-20  8:00 Sergei Trofimovich
2018-03-11 13:49 Mike Gilbert
2018-03-11 10:00 Mikle Kolyada
2018-03-11  2:16 Thomas Deutschmann
2018-02-01 18:34 Mike Gilbert
2017-11-26 23:23 David Seifert
2017-01-26 20:40 Mike Gilbert
2017-01-26 20:40 Mike Gilbert
2017-01-03  1:49 Mike Gilbert
2016-12-25 10:23 Agostino Sarubbo
2016-12-22  8:57 Agostino Sarubbo
2016-12-21 21:20 Mike Gilbert
2016-12-18 18:45 Mike Gilbert
2016-12-18 17:57 Mike Gilbert
2016-12-09 21:56 Mike Gilbert
2016-12-01 23:48 Mike Gilbert
2016-11-27  8:48 Mike Gilbert
2016-10-23 15:08 Mike Gilbert
2016-10-07 19:16 Mike Gilbert
2016-08-06 10:17 Pacho Ramos
2016-04-23 18:06 Mike Gilbert
2016-03-27  1:32 Mike Gilbert
2016-03-16 23:51 Mike Gilbert
2016-03-08  2:18 Mike Gilbert
2015-12-31 20:00 Anthony G. Basile
2015-12-03 17:42 Mike Gilbert
2015-12-03 17:42 Mike Gilbert
2015-11-12 10:37 Agostino Sarubbo
2015-10-22 17:39 Mike Gilbert
2015-10-18 18:06 Mikle Kolyada
2015-10-09  6:01 Jeroen Roovers
2015-10-04 16:00 Mike Gilbert
2015-10-03 19:02 Mike Gilbert

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=1723569855.d800bb25926fcd06f8c1f60dc3be72abc399adb2.floppym@gentoo \
    --to=floppym@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