debian/0000755000000000000000000000000012201272126007161 5ustar debian/source/0000755000000000000000000000000012201270463010463 5ustar debian/source/options0000644000000000000000000000002412201270463012075 0ustar single-debian-patch debian/source/format0000644000000000000000000000001412201270463011671 0ustar 3.0 (quilt) debian/README.source0000644000000000000000000000301412201270463011340 0ustar git-notifier packaging notes ============================ The 'master' branch is used to track upstream's master. The 'debian' branch is used to track the Debian packaging. Tracking upstream ----------------- 1. Pull changes from upstream onto the 'master' branch. $ git pull --ff-only upstream master 2. Merge upstream changes onto the 'debian' branch. $ git checkout debian $ git merge --no-ff master Initialization -------------- 1. A git repository was created on collab-maint. edmonds@chase{0}:~$ ssh git.debian.org edmonds@vasks:~$ umask 002 edmonds@vasks:~$ cd /git/collab-maint/ edmonds@vasks:/git/collab-maint$ ./setup-repository git-notifier 'Packaging for git-notifier' Initialized empty shared Git repository in /srv/git.debian.org/git/collab-maint/git-notifier.git/ edmonds@vasks:/git/collab-maint$ 2. The upstream git-notifier source was initially obtained via git from . $ git clone git://git.icir.org/git-notifier 3. The 'origin' remote was renamed to 'upstream'. $ git remote rename origin upstream 4. The 'debian' remote was added. $ git remote add debian ssh://git.debian.org/git/collab-maint/git-notifier.git 5. The 'debian' branch was created. $ git checkout -b debian 6. Repository content initially pushed to collab-maint. $ git push --all -u debian 7. The Debian packaging was created in the debian/ directory and commited on the 'debian' branch. 8. Debian changes pushed to collab-maint. $ git push --tags debian/compat0000644000000000000000000000000212201270463010361 0ustar 9 debian/copyright0000644000000000000000000000523712201270463011125 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: git-notifier Upstream-Contact: Robin Sommer Source: git://git.icir.org/git-notifier Files: * Copyright: 2010-2013, Robin Sommer License: BSD-3-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . * Neither the name of the International Computer Science Institute nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Files: debian/* Copyright: 2013, Robert S. Edmonds License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. debian/changelog0000644000000000000000000000024312201270463011034 0ustar git-notifier (0.41-6-1) unstable; urgency=low * Initial release. (Closes: #719270) -- Robert S. Edmonds Fri, 09 Aug 2013 18:22:33 -0400 debian/docs0000644000000000000000000000000712201270463010033 0ustar README debian/gbp.conf0000644000000000000000000000015312201270463010601 0ustar [buildpackage] pristine-tar = False debian-branch = debian upstream-branch = master upstream-tree = branch debian/rules0000755000000000000000000000003612201270463010242 0ustar #!/usr/bin/make -f %: dh $@ debian/install0000644000000000000000000000002512201270463010551 0ustar git-notifier usr/bin debian/control0000644000000000000000000000216412201270463010571 0ustar Source: git-notifier Section: vcs Priority: optional Maintainer: Robert S. Edmonds Build-Depends: debhelper (>= 9) Standards-Version: 3.9.4 Homepage: http://www.icir.org/robin/git-notifier/ Vcs-Git: git://anonscm.debian.org/collab-maint/git-notifier.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/git-notifier.git Package: git-notifier Architecture: all Depends: ${misc:Depends}, python, git, default-mta | mail-transport-agent Enhances: git, gitolite Recommends: moreutils Description: git commit email notification script git-notifier is a script to be used with git as a post-receive hook. Once installed, it emails out a summary of all changes each time a user pushes an update to the repository. Different from other similar scripts, git-notifier sends exactly one email per change, each of which includes a complete diff of all modifications as well as the set of branches from which the new revision can be reached. The script ensures that each change is mailed out only exactly once by keeping a state file of already reported revisions. The script integrates nicely with gitolite.