update rules

This commit is contained in:
maryjane 2024-02-23 02:18:42 +00:00
parent 6e900b6cda
commit 98c4bd8536
3 changed files with 15 additions and 26 deletions

5
debian/changelog vendored
View File

@ -1,10 +1,11 @@
gpodder (3.10.21+1-1) UNRELEASED; urgency=medium
gpodder-adaptive (3.11.4+1-1.1) UNRELEASED; urgency=medium
[ Maryjane ]
* Updated manitainer to Maryjane
* Added libhandy 1 as a runtime dependency
* Import gpodder Debian directory from the salsa.debian.org repository
-- Maryjane <maryjane@disroot.org> Thu, 18 Nov 2021 15:35:57 +0100
-- maryjane <maryjane@disroot.org> Fri, 23 Feb 2024 02:04:31 +0000
gpodder (3.10.17-1) unstable; urgency=medium

5
debian/control vendored
View File

@ -1,4 +1,4 @@
Source: gpodder
Source: gpodder-adaptive
Maintainer: Maryjane <maryjane@disroot.org>
XSBC-Original-Maintainer: Thomas Perl <m@thp.io>
Section: x11
@ -15,7 +15,7 @@ Vcs-Browser: https://salsa.debian.org/debian/gpodder
Vcs-Git: https://salsa.debian.org/debian/gpodder.git
Rules-Requires-Root: no
Package: gpodder
Package: gpodder-adaptive
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends},
default-dbus-session-bus | dbus-session-bus,
@ -36,6 +36,7 @@ Recommends:
python3-html5lib,
python3-simplejson
Suggests: mplayer, gnome-bluetooth, yt-dlp (>= 2023.02.17)
Conflicts: gpodder
Description: podcast client and feed aggregator
gPodder is a podcast receiver/catcher. You can subscribe to feeds
("podcasts") and automatically download new audio and video content.

31
debian/rules vendored
View File

@ -1,33 +1,20 @@
#!/usr/bin/make -f
PACKAGE = $(firstword $(shell dh_listpackages))
TMP = $(CURDIR)/debian/$(PACKAGE)
CHANGELOG = ChangeLog
DOCS = README.md
PYTHON = /usr/bin/python3
SETUP = ${PYTHON} setup.py
DESTDIR = debian/${PACKAGE}
PREFIX = usr
PREFIX = /usr
export DH_VERBOSE = 1
%:
dh $@ --with python3
dh $@ --with python3 --buildsystem=pybuild
override_dh_auto_test:
# skip tests
override_dh_clean:
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
${SETUP} clean --all
rm -rf build dist
dh_clean
make clean
override_dh_install:
dh_testdir
dh_testroot
dh_prep
dh_installdirs
make messages
override_dh_auto_install:
PREFIX=$(PREFIX) make messages
PREFIX=$(PREFIX) make share/dbus-1/services/org.gpodder.service
${SETUP} install --no-compile --root='$(DESTDIR)' --prefix=$(PREFIX)
DESTDIR=$(CURDIR)/debian/$(DEB_SOURCE) PREFIX=$(PREFIX) make install
dh_auto_install