[Pkg-ocaml-maint-commits] r1957 - trunk/packages/ocaml-ast-analyze/trunk/debian

Sylvain LE GALL gildor-guest at costa.debian.org
Wed Nov 9 15:44:08 UTC 2005


Author: gildor-guest
Date: 2005-11-09 15:44:07 +0000 (Wed, 09 Nov 2005)
New Revision: 1957

Modified:
   trunk/packages/ocaml-ast-analyze/trunk/debian/changelog
   trunk/packages/ocaml-ast-analyze/trunk/debian/control
   trunk/packages/ocaml-ast-analyze/trunk/debian/copyright
   trunk/packages/ocaml-ast-analyze/trunk/debian/libast-analyze-ocaml-dev.dirs
   trunk/packages/ocaml-ast-analyze/trunk/debian/rules
Log:
Prepare transition to 3.09: remove libdir reference -- SLG


Modified: trunk/packages/ocaml-ast-analyze/trunk/debian/changelog
===================================================================
--- trunk/packages/ocaml-ast-analyze/trunk/debian/changelog	2005-11-09 15:29:34 UTC (rev 1956)
+++ trunk/packages/ocaml-ast-analyze/trunk/debian/changelog	2005-11-09 15:44:07 UTC (rev 1957)
@@ -1,3 +1,11 @@
+ocaml-ast-analyze (0.1.1-3) unstable; urgency=low
+
+  * Remove direct reference to ocaml library dir
+  * Upgrade standards version to 3.6.2.0 (no change)
+  * Remove contents of unused target in debian/rules 
+
+ -- Sylvain Le Gall <sylvain.le-gall at polytechnique.org>  Wed,  9 Nov 2005 16:35:42 +0100
+
 ocaml-ast-analyze (0.1.1-2) unstable; urgency=low
 
   * Transition to svn-buildpackage

Modified: trunk/packages/ocaml-ast-analyze/trunk/debian/control
===================================================================
--- trunk/packages/ocaml-ast-analyze/trunk/debian/control	2005-11-09 15:29:34 UTC (rev 1956)
+++ trunk/packages/ocaml-ast-analyze/trunk/debian/control	2005-11-09 15:44:07 UTC (rev 1957)
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Sylvain Le Gall <sylvain.le-gall at polytechnique.org> 
 Build-Depends-Indep: ocaml-nox-3.08.3, debhelper (>> 4.0.0), ocaml-findlib, dpatch
-Standards-Version: 3.6.1.0
+Standards-Version: 3.6.2.0
 
 Package: libast-analyze-ocaml-dev
 Architecture: all

Modified: trunk/packages/ocaml-ast-analyze/trunk/debian/copyright
===================================================================
--- trunk/packages/ocaml-ast-analyze/trunk/debian/copyright	2005-11-09 15:29:34 UTC (rev 1956)
+++ trunk/packages/ocaml-ast-analyze/trunk/debian/copyright	2005-11-09 15:44:07 UTC (rev 1957)
@@ -22,9 +22,8 @@
    GNU Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser 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.
+   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 GNU/Linux systems, the complete text of the GNU Lesser General
 Public License can be found in `/usr/share/common-licenses/LGPL-2.1'.

Modified: trunk/packages/ocaml-ast-analyze/trunk/debian/libast-analyze-ocaml-dev.dirs
===================================================================
--- trunk/packages/ocaml-ast-analyze/trunk/debian/libast-analyze-ocaml-dev.dirs	2005-11-09 15:29:34 UTC (rev 1956)
+++ trunk/packages/ocaml-ast-analyze/trunk/debian/libast-analyze-ocaml-dev.dirs	2005-11-09 15:44:07 UTC (rev 1957)
@@ -1,3 +1,2 @@
-usr/lib/ocaml/3.08.3/
 usr/share/ocaml-doc
 usr/share/doc/libast-analyze-ocaml-dev/html

Modified: trunk/packages/ocaml-ast-analyze/trunk/debian/rules
===================================================================
--- trunk/packages/ocaml-ast-analyze/trunk/debian/rules	2005-11-09 15:29:34 UTC (rev 1956)
+++ trunk/packages/ocaml-ast-analyze/trunk/debian/rules	2005-11-09 15:44:07 UTC (rev 1957)
@@ -1,16 +1,17 @@
 #!/usr/bin/make -f
 
-OCAML_LIBDIR=`ocamlc -where`
+OCAMLIBDIR=`ocamlc -where`
+DESTDIR_DEV=$(CURDIR)/debian/libast-analyze-ocaml-dev/
 
 include /usr/share/dpatch/dpatch.make 
 
 configure: configure-stamp
 configure-stamp: patch-stamp
 	dh_testdir
-	./configure --prefix=$(CURDIR)/debian/libast-analyze-ocaml-dev/usr \
-	 --with-docdir=$(CURDIR)/debian/libast-analyze-ocaml-dev/usr/share/ocaml-doc \
-	 --libdir=$(CURDIR)/debian/libast-analyze-ocaml-dev/$(OCAML_LIBDIR)
-	touch $@
+	./configure --prefix=$(DESTDIR_DEV)/usr \
+	 --with-docdir=$(DESTDIR_DEV)/usr/share/ocaml-doc \
+	 --libdir=$(DESTDIR_DEV)/$(OCAMLIBDIR)
+	touch configure-stamp
 
 build-arch: configure-stamp build-arch-stamp
 build-arch-stamp:
@@ -32,22 +33,15 @@
 	-$(MAKE) distclean
 	dh_clean
 
-install: DH_OPTIONS=
 install: build
 	dh_testdir
 	dh_testroot
 	dh_clean -k
 	dh_installdirs
+	mkdir -p $(DESTDIR_DEV)/$(OCAMLIBDIR)
+	$(MAKE) install 
 
-install-indep: DH_OPTIONS=
-install-indep: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	dh_installdirs
-	make install 
-
-binary-indep: build install-indep
+binary-indep: build install
 	dh_testdir -i
 	dh_testroot -i
 	dh_installdocs -i
@@ -60,21 +54,7 @@
 	dh_md5sums -i
 	dh_builddeb -i
 
-binary-arch: build install
-	dh_testdir -a
-	dh_testroot -a
-	dh_installdocs -a
-	dh_installexamples -a
-	dh_installchangelogs -a
-	dh_strip -a
-	dh_link -a
-	dh_compress -a
-	dh_fixperms -a
-	dh_installdeb -a
-	dh_shlibdeps -a
-	dh_gencontrol -a
-	dh_md5sums -a
-	dh_builddeb -a
+binary-arch: 
 
 binary: binary-indep
 .PHONY: build clean binary-indep binary-arch binary install 




More information about the Pkg-ocaml-maint-commits mailing list