Codebase list telepathy-glib / acbed4e
Move packaging to git; the setup is basically the same as telepathy-farsight, but with pristine-tar enabled Also wrap Uploaders line in debian/control. Simon McVittie 15 years ago
4 changed file(s) with 26 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
0 telepathy-glib (0.7.19-2) UNRELEASED; urgency=low
1
2 * Move packaging to git; the setup is basically the same as
3 telepathy-farsight, but with pristine-tar enabled
4 * debian/control: wrap Uploaders line
5
6 -- Simon McVittie <smcv@debian.org> Wed, 17 Dec 2008 23:47:06 +0000
7
08 telepathy-glib (0.7.19-1) experimental; urgency=low
19
210 * New upstream release (ABI, API added)
11 Section: libs
22 Priority: optional
33 Maintainer: Debian Telepathy maintainers <pkg-telepathy-maintainers@lists.alioth.debian.org>
4 Uploaders: Dafydd Harries <daf@debian.org>, Simon McVittie <smcv@debian.org>, Sjoerd Simons <sjoerd@debian.org>, Laurent Bigonville <bigon@debian.org>
4 Uploaders: Dafydd Harries <daf@debian.org>,
5 Simon McVittie <smcv@debian.org>,
6 Sjoerd Simons <sjoerd@debian.org>,
7 Laurent Bigonville <bigon@debian.org>
58 Build-Depends: cdbs,
69 debhelper (>= 5),
710 libglib2.0-dev (>= 2.16),
1215 gtk-doc-tools (>= 1.10),
1316 pkg-config (>= 0.21)
1417 Standards-Version: 3.8.0
15 Vcs-Bzr: http://bzr.debian.org/pkg-telepathy/packages/unstable/telepathy-glib/
18 Vcs-Git: git://git.debian.org/git/pkg-telepathy/telepathy-glib.git
19 Vcs-Browser: http://git.debian.org/?p=pkg-telepathy/telepathy-glib.git
1620 Homepage: http://telepathy.freedesktop.org/wiki/
1721 XS-Dm-Upload-Allowed: yes
1822
2525 DEB_INSTALL_CHANGELOGS_libtelepathy-glib0-dbg := --no-act
2626 DEB_INSTALL_DOCS_libtelepathy-glib-dev := --no-act
2727 DEB_INSTALL_CHANGELOGS_libtelepathy-glib-dev := --no-act
28
29 include $(CURDIR)/debian/update-patches.mk
0 update-patches:
1 mkdir -p $(CURDIR)/debian/patches
2 rm -f $(CURDIR)/debian/patches/*.patch
3 git-format-patch -o $(CURDIR)/debian/patches debian-patches ^upstream
4 for patch in $$(ls $(CURDIR)/debian/patches/*.patch) ; \
5 do \
6 lines=$$(cat $$patch | wc -l) ; \
7 head -n $$(($$lines - 3)) $$patch > $${patch}.chomped ; \
8 mv $${patch}.chomped $$patch ; \
9 done