Codebase list coq-float / d2f97e9
Update packaging Stephane Glondu 4 years ago
6 changed file(s) with 8 addition(s) and 39 deletion(s). Raw diff Collapse all Expand all
+0
-1
debian/compat less more
0 9
33 Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
44 Uploaders:
55 Stéphane Glondu <glondu@debian.org>
6 Build-Depends: debhelper (>= 9), coq (>= 8.4)
7 Standards-Version: 3.9.5
6 Build-Depends: debhelper-compat (= 12), coq (>= 8.9)
7 Standards-Version: 4.5.0
8 Rules-Requires-Root: no
89 Homepage: https://github.com/coq-contribs/float
910 Vcs-Browser: https://salsa.debian.org/ocaml-team/coq-float
1011 Vcs-Git: https://salsa.debian.org/ocaml-team/coq-float.git
0 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
11 Packaged-By: Samuel Mimram <smimram@debian.org>
22 Packaged-Date: Fri, 10 Aug 2007 14:48:56 +0000
33 Upstream-Contact:
55 Sylvie Boldo <Sylvie.Boldo@ens-lyon.fr>,
66 Laurence Rideau <lrg@sophia.inria.fr>,
77 Laurent Fousse
8 Source: http://lipforge.ens-lyon.fr/www/pff/
98
109 Files: *
1110 Copyright: 2001-2002, Sylvie Boldo
+0
-3
debian/libfloat-coq.install less more
0 *.vo /usr/lib/coq/user-contrib/Float
1 */*.vo /usr/lib/coq/user-contrib/Float
2 html /usr/share/doc/libfloat-coq
33 # Uncomment this to turn on verbose mode.
44 #export DH_VERBOSE=1
55
6 # Build cache (for accelerating Debian debugging)
7 BUILDCACHE := $(wildcard ../coq-float.cache)
8
96 include /usr/share/coq/coqvars.mk
10
11 INCDIRS := -R . Float
12
13 FILES_TO_BACKUP := Makefile
147
158 %:
169 dh $@
1710
18 .PHONY: override_dh_auto_configure
19 override_dh_auto_configure:
20 for u in $(FILES_TO_BACKUP); do \
21 if [ ! -f "$$u.backup" ]; then cp "$$u" "$$u.backup"; fi \
22 done
23 coq_makefile $(INCDIRS) $(shell find . -name .pc -prune -or -name \*.v -print ) > Makefile
11 override_dh_auto_clean:
12 dh_auto_clean
13 rm -f Makefile.coq.conf .*.aux
2414
25 .PHONY: override_dh_auto_build
2615 override_dh_auto_build:
27 ifeq ($(BUILDCACHE),)
28 $(MAKE) depend
2916 $(MAKE) all
3017 $(MAKE) html
31 else
32 @echo "===> Build cache detected, skipping compilation <==="
33 rsync -a --exclude=debian --exclude=.git $(BUILDCACHE)/ .
34 endif
3518
36 .PHONY: override_dh_auto_install
37 override_dh_auto_install:
38
39 .PHONY: override_dh_clean
40 override_dh_clean:
41 dh_clean
42 for u in $(FILES_TO_BACKUP); do \
43 if [ -f "$$u.backup" ]; then mv "$$u.backup" "$$u"; fi \
44 done
45
46 .PHONY: override_dh_gencontrol
4719 override_dh_gencontrol:
4820 dh_gencontrol -- -VF:CoqABI="$(COQ_ABI)"