public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Rahul Sundaram <rahul@mether.x200>
To: git-commits@fedoraproject.org
Subject: [rpms/transmission] epel10: Upstream 2.30 Beta 1 release
Date: Mon, 20 Jul 2026 20:36:59 GMT [thread overview]
Message-ID: <178457981984.1.5540816425452057326.rpms-transmission-975afb602983@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/transmission
Branch : epel10
Commit : 975afb6029839a5f5d0c0a0a703ea9589592e3e5
Author : Rahul Sundaram <rahul@mether.x200>
Date : 2011-04-04T02:22:00+05:30
Stats : +20/-54 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/transmission/c/975afb6029839a5f5d0c0a0a703ea9589592e3e5?branch=epel10
Log:
Upstream 2.30 Beta 1 release
Enable configure options explicitly
Drop source and patch for icons since it is now upstream
https://trac.transmissionbt.com/wiki/Changes#version-2.30b1
* Major changes include the following:
* µTP, UDP tracker, Multiscrape support
* Download scarcest pieces first
* The "lazy bitfield" feature has been superseded by the "Fast Extension" BEP6
* GTK: Register as a magnet link handler in the .desktop file
* Web: Peer and Network preferences
---
diff --git a/.gitignore b/.gitignore
index 4127140..b4a911e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ transmission-2.04.tar.xz
/transmission-2.21.tar.xz
/icons.tar.bz2
/transmission-2.22.tar.xz
+/transmission-2.30b1.tar.xz
diff --git a/0001-Update-for-new-icons.patch b/0001-Update-for-new-icons.patch
deleted file mode 100644
index 4323619..0000000
--- a/0001-Update-for-new-icons.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 1c16f68daf8c02fcbbe091e03cca1678f05e32c4 Mon Sep 17 00:00:00 2001
-From: Bastien Nocera <hadess@hadess.net>
-Date: Thu, 10 Mar 2011 17:55:30 +0000
-Subject: [PATCH] Update for new icons
-
----
- gtk/icons/Makefile.am | 8 +++++---
- 1 files changed, 5 insertions(+), 3 deletions(-)
-
-diff --git a/gtk/icons/Makefile.am b/gtk/icons/Makefile.am
-index 335f5a7..fee9ead 100644
---- a/gtk/icons/Makefile.am
-+++ b/gtk/icons/Makefile.am
-@@ -10,6 +10,7 @@ public_icons = \
- hicolor_apps_24x24_transmission.png \
- hicolor_apps_32x32_transmission.png \
- hicolor_apps_48x48_transmission.png \
-+ hicolor_apps_256x256_transmission.png \
- hicolor_apps_scalable_transmission.svg \
- $(NULL)
-
-@@ -17,9 +18,10 @@ private_icons = \
- $(NULL)
-
- noinst_DATA = \
-- hicolor_apps_16x16_transmission.svg
-- hicolor_apps_22x22_transmission.svg
-- hicolor_apps_32x32_transmission.svg
-+ hicolor_apps_16x16_transmission.svg \
-+ hicolor_apps_22x22_transmission.svg \
-+ hicolor_apps_32x32_transmission.svg \
-+ transmission.svg \
- $(NULL)
-
- EXTRA_DIST = \
---
-1.7.4.1
-
diff --git a/sources b/sources
index a6009d0..3223cd0 100644
--- a/sources
+++ b/sources
@@ -1,2 +1 @@
-052d37d290658e87d543d0d1bafd7b06 transmission-2.22.tar.xz
-86ba89f0299c8b0cde2a0fa19338dbde icons.tar.bz2
+63ffeb8990eca051e055ff5f88300b91 transmission-2.30b1.tar.xz
diff --git a/transmission.spec b/transmission.spec
index a73e7dc..2e6f41e 100644
--- a/transmission.spec
+++ b/transmission.spec
@@ -1,13 +1,13 @@
Name: transmission
-Version: 2.22
-Release: 2%{?dist}
+Version: 2.30
+Release: 0.b1%{?dist}
Summary: A lightweight GTK+ BitTorrent client
Group: Applications/Internet
# See COPYING. This licensing situation is... special.
License: MIT and GPLv2
URL: http://www.transmissionbt.com/
-Source0: http://download.m0k.org/transmission/files/transmission-%{version}.tar.xz
+Source0: http://download.m0k.org/transmission/files/transmission-%{version}b1.tar.xz
# This is intended to be merged by upstream post 1.80 release
Source1: transmission-qt.desktop
# init script. Upstream doesn't want it because it is distro specific
@@ -31,10 +31,6 @@ Patch1: fix-optflags.patch
Requires: transmission-cli
Requires: transmission-gtk
-# Patch for new icons
-Patch2: 0001-Update-for-new-icons.patch
-Source4: icons.tar.bz2
-BuildRequires: automake autoconf intltool libtool
%description
Transmission is a free, lightweight BitTorrent client. It features a
@@ -97,16 +93,12 @@ useradd -r -g transmission -d /var/lib/transmission -s /sbin/nologin \
exit 0
%prep
-%setup -q
+%setup -q -n transmission-%{version}b1
%patch1 -p1
-%patch2 -p1
-pushd gtk/icons
-tar xvjf %{SOURCE4}
-popd
%build
-autoreconf -f
-%configure --disable-static --with-gtk --without-wx --enable-libcanberra --enable-libnotify --enable-daemon
+%configure --disable-static --enable-gtk --enable-utp --enable-libcanberra --enable-libnotify --enable-daemon \
+ --enable-gconf2 --enable-nls --enable-cli --enable-daemon --with-gnu-ld --with-inotify
make %{?_smp_mflags}
pushd qt
@@ -216,6 +208,18 @@ update-desktop-database > /dev/null 2>&1 || :
%doc %{_mandir}/man1/transmission-qt.*
%changelog
+* Mon Apr 04 2011 Rahul Sundaram <sundaram@fedoraproject.org> - 2.30-0.b1
+- Upstream 2.30 Beta 1 release
+- Enable configure options explicitly
+- Drop source and patch for icons since it is now upstream
+- https://trac.transmissionbt.com/wiki/Changes#version-2.30b1
+ * Major changes include the following:
+ * µTP, UDP tracker, Multiscrape support
+ * Download scarcest pieces first
+ * The "lazy bitfield" feature has been superseded by the "Fast Extension" BEP6
+ * GTK: Register as a magnet link handler in the .desktop file
+ * Web: Peer and Network preferences
+
* Thu Mar 10 2011 Bastien Nocera <bnocera@redhat.com> 2.22-2
- Add new icons
reply other threads:[~2026-07-20 20:36 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=178457981984.1.5540816425452057326.rpms-transmission-975afb602983@fedoraproject.org \
--to=rahul@mether.x200 \
--cc=git-commits@fedoraproject.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