~ubuntu-branches/ubuntu/trusty/indicator-sync/trusty

« back to all changes in this revision

Viewing changes to Makefile.am.authors

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2012-08-28 16:25:25 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120828162525-v3mx9o332fqrseu8
Tags: 12.10.1-0ubuntu1
* New upstream release.
* debian/control:
  - rename gir1.2-syncclient-12.10 to gir1.2-syncmenu-0.1.
  - rename libindicator-sync-client1 to libsync-menu1.
  - rename libindicator-sync-client-dev to libsync-menu-dev.
  - add gir1.2-dbusmenu-glib-0.4 to Build-Depends.
  - add dbus-test-runner to Build-Depends.
* debian/*.install:
  - rename files as per package name changes.
  - update libsync-menu-dev.install to the library name.
  - update libsync-menu1.install to the library name.
  - update libsync-menu1.symbols to the library name.
  - rename /usr/include/indicator-sync-0.1 to /usr/include/sync-menu-0.1.
* debian/patches/upstream-soname-versioning.patch,
  debian/patches/upstream-pkgconfig-fixes.patch: dropped, no longer needed.
* debian/libsync-menu1.symbols:
  - update symbols that were renamed; keep the old ones as missing.
* debian/patches/upstream-watchers-client-test.patch: fix up the client test
  to avoid failing due to watchers not being allowed to connect.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dist-hook:
 
2
        @if test -d "$(top_srcdir)/.bzr"; \
 
3
                then \
 
4
                        echo Creating ChangeLog && \
 
5
                                ( cd "$(top_srcdir)" && \
 
6
                                echo '# Generated by Makefile. Do not edit.'; echo; \
 
7
                                $(top_srcdir)/missing --run bzr log --gnu-changelog ) > ChangeLog.tmp \
 
8
                                && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
 
9
                                || (rm -f ChangeLog.tmp; \
 
10
                                        echo Failed to generate ChangeLog >&2 ); \
 
11
        else \
 
12
                        echo Failed to generate ChangeLog: not a branch >&2; \
 
13
        fi
 
14
        @if test -d "$(top_srcdir)/.bzr"; \
 
15
                then \
 
16
                        echo Creating AUTHORS && \
 
17
                                ( cd "$(top_srcdir)" && \
 
18
                                echo '# Generated by Makefile. Do not edit.'; echo; \
 
19
                                $(top_srcdir)/missing --run  bzr log --long --levels=0 | grep -e "^\s*author:" -e "^\s*committer:" | cut -d ":" -f 2 | cut -d "<" -f 1 | sort -u) > AUTHORS.tmp \
 
20
                                && mv -f AUTHORS.tmp $(top_distdir)/AUTHORS \
 
21
                                || (rm -f AUTHORS.tmp; \
 
22
                                        echo Failed to generate AUTHORS >&2 ); \
 
23
        else \
 
24
                        echo Failed to generate AUTHORS: not a branch >&2; \
 
25
        fi