Debian packaging fixes.
- Split gitk off to its own package; it needs tk installed, but nothing else does. - Refer to GPL properly, don't install COPYING. - Fix maintainer. - Use dh_movefiles instead of dh_install; we don't want to list everything *except* gitk. Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:

committed by
Junio C Hamano

parent
b4ad66b778
commit
5acc5bfd63
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -1,3 +1,11 @@
|
|||||||
|
git-core (0.99.4-3) unstable; urgency=low
|
||||||
|
|
||||||
|
* Split off gitk.
|
||||||
|
* Do not depend on diff which is an essential package.
|
||||||
|
* Use dh_movefiles, not dh_install, to stage two subpackages.
|
||||||
|
|
||||||
|
-- Matthias Urlichs <smurf@debian.org> Thu, 11 Aug 2005 01:43:24 +0200
|
||||||
|
|
||||||
git-core (0.99.4-2) unstable; urgency=low
|
git-core (0.99.4-2) unstable; urgency=low
|
||||||
|
|
||||||
* Git 0.99.4 official release.
|
* Git 0.99.4 official release.
|
||||||
|
10
debian/control
vendored
10
debian/control
vendored
@ -7,7 +7,7 @@ Standards-Version: 3.6.1
|
|||||||
|
|
||||||
Package: git-core
|
Package: git-core
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Depends: ${shlibs:Depends}, ${misc:Depends}, patch, diff, rcs
|
Depends: ${shlibs:Depends}, ${misc:Depends}, patch, rcs
|
||||||
Recommends: rsync, curl, ssh, libmail-sendmail-perl, libemail-valid-perl
|
Recommends: rsync, curl, ssh, libmail-sendmail-perl, libemail-valid-perl
|
||||||
Conflicts: git
|
Conflicts: git
|
||||||
Description: The git content addressable filesystem
|
Description: The git content addressable filesystem
|
||||||
@ -15,5 +15,11 @@ Description: The git content addressable filesystem
|
|||||||
and flexible filesystem-based database designed to store directory trees
|
and flexible filesystem-based database designed to store directory trees
|
||||||
with regard to their history. The top layer is a SCM-like tool which
|
with regard to their history. The top layer is a SCM-like tool which
|
||||||
enables human beings to work with the database in a manner to a degree
|
enables human beings to work with the database in a manner to a degree
|
||||||
similar to other SCM tools (like CVS, BitKeeper or Monotone).
|
similar to other SCM tools.
|
||||||
|
|
||||||
|
Package: git-tk
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}, git-core, tk8.4
|
||||||
|
Description: The git content addressable filesystem, GUI add-on
|
||||||
|
This package contains 'gitk', the git revision tree visualizer.
|
||||||
|
|
||||||
|
25
debian/copyright
vendored
25
debian/copyright
vendored
@ -1,3 +1,24 @@
|
|||||||
License:
|
This package was downloaded from ftp.kernel.org:/pub/software/scm/git/.
|
||||||
|
|
||||||
GPL v2 (see COPYING for details)
|
Upstream Author: Linus Torvalds and many others
|
||||||
|
|
||||||
|
Copyright:
|
||||||
|
|
||||||
|
Copyright 2005, Linus Torvalds and others.
|
||||||
|
|
||||||
|
This package 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; version 2 dated June, 1991.
|
||||||
|
|
||||||
|
This package 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., 59 Temple Place - Suite 330, Boston, MA
|
||||||
|
02111-1307, USA.
|
||||||
|
|
||||||
|
On Debian GNU/Linux systems, the complete text of the GNU General
|
||||||
|
Public License can be found in `/usr/share/common-licenses/GPL'.
|
||||||
|
2
debian/docs
vendored
2
debian/docs
vendored
@ -1,3 +1 @@
|
|||||||
README
|
README
|
||||||
COPYING
|
|
||||||
|
|
||||||
|
1
debian/git-core.files
vendored
Normal file
1
debian/git-core.files
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/usr
|
1
debian/git-core.install
vendored
1
debian/git-core.install
vendored
@ -1 +0,0 @@
|
|||||||
*
|
|
1
debian/git-tk.files
vendored
Normal file
1
debian/git-tk.files
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/gitk
|
4
debian/rules
vendored
4
debian/rules
vendored
@ -61,7 +61,9 @@ install: build
|
|||||||
mkdir -p $(DOC_DESTDIR)
|
mkdir -p $(DOC_DESTDIR)
|
||||||
find $(DOC) '(' -name '*.txt' -o -name '*.html' ')' -exec install {} $(DOC_DESTDIR) ';'
|
find $(DOC) '(' -name '*.txt' -o -name '*.html' ')' -exec install {} $(DOC_DESTDIR) ';'
|
||||||
|
|
||||||
dh_install --list-missing --sourcedir=$(DESTDIR)
|
dh_movefiles -p git-tk
|
||||||
|
dh_movefiles -p git-core
|
||||||
|
find debian/tmp -type d -o -print | sed -e 's/^/? /'
|
||||||
|
|
||||||
binary: build install
|
binary: build install
|
||||||
dh_testdir
|
dh_testdir
|
||||||
|
Reference in New Issue
Block a user