mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-02 09:09:47 +01:00
* debian updates
This commit is contained in:
parent
0e3f0c5eca
commit
6d82c76861
@ -14,6 +14,7 @@ in /etc/texmf/texmf.cnf to use (at least) the specified values:
|
||||
hash_extra = 10000
|
||||
pool_size.context = 1500000
|
||||
pool_size = 250000
|
||||
max_strings = 30000
|
||||
|
||||
You'll probably need to run
|
||||
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
fpc (1.1-0) unstable; urgency=low
|
||||
fpc (1.0.6-20020228) unstable; urgency=low
|
||||
|
||||
* Snapshot release
|
||||
* New upstream version.
|
||||
|
||||
-- Peter Vreman <peter@freepascal.org> Tue, 1 Mrt 2002 11:01:50 +0100
|
||||
|
||||
|
||||
fpc (1.0.4-2) unstable; urgency=low
|
||||
|
||||
* New maintainer.
|
||||
@ -13,7 +13,7 @@ fpc (1.0.4-2) unstable; urgency=low
|
||||
build-deps list.
|
||||
|
||||
-- Carlos Laviola <claviola@debian.org> Wed, 29 Aug 2001 23:15:17 -0300
|
||||
|
||||
|
||||
fpc (1.0.4-1) unstable; urgency=low
|
||||
|
||||
* New upstream version.
|
||||
@ -110,8 +110,3 @@ fpc (0.99.12a-1) unstable; urgency=low
|
||||
* Initial Release
|
||||
|
||||
-- Peter Vreman <pfv@cooldown.demon.nl> Thu, 10 Jun 1999 12:00:00 +0200
|
||||
|
||||
Local variables:
|
||||
mode: debian-changelog
|
||||
add-log-mailing-address: "mf@debian.org"
|
||||
End:
|
||||
|
||||
@ -6,4 +6,4 @@ Abstract: Documentation for the Free Pascal Compiler.
|
||||
Section: Development
|
||||
|
||||
Format: PDF
|
||||
Files: /usr/doc/fp-docs/*.pdf
|
||||
Files: /usr/share/doc/fp-docs/*.pdf
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
bin2obj.1
|
||||
fprcp.1
|
||||
data2inc.1
|
||||
h2paspp.1
|
||||
|
||||
@ -1,11 +1,12 @@
|
||||
#!/usr/bin/make -f
|
||||
# debian/rules for Free Pascal
|
||||
|
||||
# Note: You must unset FPCDIR before using this Makefile
|
||||
|
||||
# Documentation type to use pdf/html
|
||||
DOCTYPE=pdf
|
||||
|
||||
# Reset FPC and FPCDIR if it was set
|
||||
FPC=
|
||||
FPCDIR=
|
||||
# Get Package version and FPC version out of changelog file
|
||||
PACKAGEVERSION:=$(shell head -n 1 debian/changelog | awk '{ print $$2 }' | tr -d '[()]')
|
||||
FPCVERSION:=$(shell echo $(PACKAGEVERSION) | awk -F '-' '{ print $$1 }')
|
||||
@ -80,8 +81,9 @@ build-arch-stamp: debian-files-stamp
|
||||
# First make a new Compiler and RTL using a make cycle
|
||||
$(MAKE) compiler_cycle
|
||||
$(MAKE) rtl_clean rtl_smart $(BUILDOPTS)
|
||||
$(MAKE) packages_smart $(BUILDOPTS)
|
||||
$(MAKE) packages_base_smart $(BUILDOPTS)
|
||||
$(MAKE) fcl_smart $(BUILDOPTS)
|
||||
$(MAKE) packages_extra_smart $(BUILDOPTS)
|
||||
$(MAKE) utils_all $(BUILDOPTS)
|
||||
|
||||
touch build-arch-stamp
|
||||
@ -97,8 +99,8 @@ install-arch-stamp: build-arch-stamp debian-files-stamp
|
||||
# Specify the compiler to use so installing will use the correct versioned dir
|
||||
$(MAKE) compiler_distinstall $(INSTALLOPTS)
|
||||
$(MAKE) rtl_distinstall $(INSTALLOPTS)
|
||||
$(MAKE) packages_distinstall $(INSTALLOPTS)
|
||||
$(MAKE) fcl_distinstall $(INSTALLOPTS)
|
||||
$(MAKE) packages_distinstall $(INSTALLOPTS)
|
||||
$(MAKE) utils_distinstall $(INSTALLOPTS)
|
||||
|
||||
# Copy examples to the correct doc dir
|
||||
@ -128,7 +130,8 @@ install-arch-stamp: build-arch-stamp debian-files-stamp
|
||||
mv -f $(EXAMPLE_TEMP)/mysql $(DOC_DIR)/fp-units-db/examples
|
||||
mv -f $(EXAMPLE_TEMP)/oracle $(DOC_DIR)/fp-units-db/examples
|
||||
mv -f $(EXAMPLE_TEMP)/postgres $(DOC_DIR)/fp-units-db/examples
|
||||
|
||||
mv -f $(EXAMPLE_TEMP)/gdbm $(DOC_DIR)/fp-units-db/examples
|
||||
|
||||
mv -f $(EXAMPLE_TEMP)/cmem $(DOC_DIR)/fp-units-misc/examples
|
||||
mv -f $(EXAMPLE_TEMP)/gdbint $(DOC_DIR)/fp-units-misc/examples
|
||||
mv -f $(EXAMPLE_TEMP)/utmp $(DOC_DIR)/fp-units-misc/examples
|
||||
@ -153,7 +156,6 @@ install-arch-stamp: build-arch-stamp debian-files-stamp
|
||||
|
||||
arrange-arch: arrange-arch-stamp
|
||||
arrange-arch-stamp: install-arch-stamp debian-files-stamp
|
||||
dh_testversion 2
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_movefiles -a
|
||||
@ -207,7 +209,6 @@ binary: binary-indep binary-arch
|
||||
|
||||
binary-indep: build-indep install-indep debian-files
|
||||
@echo "--- Building: arch-indep packages"
|
||||
dh_testversion 2
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_installdocs -i
|
||||
@ -223,7 +224,6 @@ binary-indep: build-indep install-indep debian-files
|
||||
|
||||
binary-arch: build-arch arrange-arch debian-files
|
||||
@echo "--- Building: arch packages"
|
||||
dh_testversion 2
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_installdocs -a
|
||||
|
||||
Loading…
Reference in New Issue
Block a user