[Collab-maint-devel] r298 - in /unstable/bodr/debian: changelog control copyright dirs rules

egonw-guest at users.alioth.debian.org egonw-guest at users.alioth.debian.org
Wed Jan 17 16:41:08 CET 2007


Author: egonw-guest
Date: Wed Jan 17 16:41:07 2007
New Revision: 298

URL: http://svn.debian.org/wsvn/?sc=1&rev=298
Log:
Applied changes suggested by Daniel Leidert. No new deb build yet.

Removed:
    unstable/bodr/debian/dirs
Modified:
    unstable/bodr/debian/changelog
    unstable/bodr/debian/control
    unstable/bodr/debian/copyright
    unstable/bodr/debian/rules

Modified: unstable/bodr/debian/changelog
URL: http://svn.debian.org/wsvn/unstable/bodr/debian/changelog?rev=298&op=diff
==============================================================================
--- unstable/bodr/debian/changelog (original)
+++ unstable/bodr/debian/changelog Wed Jan 17 16:41:07 2007
@@ -1,3 +1,15 @@
+bodr (5-2) unstable; urgency=low
+
+  * control: architecture is all (not any), moved xlstproc to Build-Depends-Indep
+  * control: added homepage in prescribed format
+  * rules: removed commented out and unused lines
+  * rules: removed CFLAGS, LDFLAGS
+  * rules: debhelper scripts are now in build-indep, not build
+  * copyright: added list of authors and full MIT license
+  * dirs: removed
+
+ -- Egon Willighagen <e.willighagen at science.ru.nl>  Wed, 17 Jan 2007 16:20:51 +0100
+
 bodr (5-1) unstable; urgency=low
 
   * Initial release

Modified: unstable/bodr/debian/control
URL: http://svn.debian.org/wsvn/unstable/bodr/debian/control?rev=298&op=diff
==============================================================================
--- unstable/bodr/debian/control (original)
+++ unstable/bodr/debian/control Wed Jan 17 16:41:07 2007
@@ -2,13 +2,16 @@
 Section: science
 Priority: optional
 Maintainer: Egon Willighagen <e.willighagen at science.ru.nl>
-Build-Depends: debhelper (>= 5), autotools-dev, xsltproc
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: xsltproc
 Standards-Version: 3.7.2
 
 Package: bodr
-Architecture: any
+Architecture: all
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Description: The Blue Obelisk Data Repository
  Common repository of chemical and physical facts that aim
  to increase interoperability between chemistry programs.
- See DOI 10.1021/ci050400b, http://www.blueobelisk.org/.
+ See DOI 10.1021/ci050400b.
+ .
+ Homepage: http://www.blueobelisk.org/

Modified: unstable/bodr/debian/copyright
URL: http://svn.debian.org/wsvn/unstable/bodr/debian/copyright?rev=298&op=diff
==============================================================================
--- unstable/bodr/debian/copyright (original)
+++ unstable/bodr/debian/copyright Wed Jan 17 16:41:07 2007
@@ -3,11 +3,32 @@
 
 It was downloaded from http://www.blueobelisk.org/.
 
-Upstream Author: see AUTHORS.
+Upstream Author:
+Geoff Hutchinson
+Carsten Niehaus
+Egon Willighagen
+Joerg Buchwald
+Martin Pfeiffer
 
-Copyright: 2006, the authors.
+Copyright: 2006, The authors
 
 License: The MIT License
+
+Copyright (c) 2006 The Blue Obelisk Project (http://www.blueobelisk.org/)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this 
+software and associated documentation files (the "Software"), to deal in the Software without 
+restriction, including without limitation the rights to use, copy, modify, merge, publish, 
+distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the 
+Software is furnished to do so, subject to the following conditions:
+The above copyright notice and this permission notice shall be included in all copies or 
+substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
+BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 
+DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
 The Debian packaging is (C) 2007, Egon Willighagen <e.willighagen at science.ru.nl> and
 is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Modified: unstable/bodr/debian/rules
URL: http://svn.debian.org/wsvn/unstable/bodr/debian/rules?rev=298&op=diff
==============================================================================
--- unstable/bodr/debian/rules (original)
+++ unstable/bodr/debian/rules Wed Jan 17 16:41:07 2007
@@ -1,10 +1,5 @@
 #!/usr/bin/make -f
 # -*- makefile -*-
-# Sample debian/rules that uses debhelper.
-# This file was originally written by Joey Hess and Craig Small.
-# As a special exception, when this file is copied by dh-make into a
-# dh-make output file, you may use that output file without restriction.
-# This special exception was added by Craig Small in version 0.37 of dh-make.
 
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
@@ -15,19 +10,10 @@
 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
-
-CFLAGS = -Wall -g
-
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-	CFLAGS += -O0
-else
-	CFLAGS += -O2
-endif
-
 config.status: configure
 	dh_testdir
 	# Add here commands to configure the package.
-	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
+	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
 
 
 build: build-stamp
@@ -37,7 +23,6 @@
 
 	# Add here commands to compile the package.
 	$(MAKE)
-	#docbook-to-man debian/bodr.sgml > bodr.1
 
 	touch $@
 
@@ -70,38 +55,25 @@
 
 # Build architecture-independent files here.
 binary-indep: build install
-# We have nothing to do by default.
-
-# Build architecture-dependent files here.
-binary-arch: build install
 	dh_testdir
 	dh_testroot
 	dh_installchangelogs ChangeLog
 	dh_installdocs
 	dh_installexamples
-#	dh_install
-#	dh_installmenu
-#	dh_installdebconf	
-#	dh_installlogrotate
-#	dh_installemacsen
-#	dh_installpam
-#	dh_installmime
-#	dh_python
-#	dh_installinit
-#	dh_installcron
-#	dh_installinfo
 	dh_installman
 	dh_link
 	dh_strip
 	dh_compress
 	dh_fixperms
-#	dh_perl
-#	dh_makeshlibs
 	dh_installdeb
 	dh_shlibdeps
 	dh_gencontrol
 	dh_md5sums
 	dh_builddeb
 
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
 binary: binary-indep binary-arch
 .PHONY: build clean binary-indep binary-arch binary install 




More information about the Collab-maint-devel mailing list