[osm2pgrouting] 02/03: Imported Debian patch 2.0.0-release-ppa1~precise2

Sebastiaan Couwenberg sebastic at moszumanska.debian.org
Fri Apr 29 17:11:09 UTC 2016


This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository osm2pgrouting.

commit 0ceb02c550664a6378c09dfb0d8c4d96c7aaae0d
Author: Daniel Kastl (Georepublic) <daniel at georepublic.de>
Date:   Sun Feb 23 05:53:29 2014 +0900

    Imported Debian patch 2.0.0-release-ppa1~precise2
---
 CMakeLists.txt       |  2 +-
 debian/README.Debian | 19 ++++++++++++++
 debian/changelog     | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/compat        |  1 +
 debian/control       | 17 +++++++++++++
 debian/copyright     | 55 +++++++++++++++++++++++++++++++++++++++
 debian/docs          |  2 ++
 debian/gbp.conf      | 18 +++++++++++++
 debian/rules         | 16 ++++++++++++
 9 files changed, 201 insertions(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6b0402b..7e5c1b6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -19,7 +19,7 @@ ADD_EXECUTABLE(osm2pgrouting ${SRC})
 TARGET_LINK_LIBRARIES(osm2pgrouting ${PostgreSQL_LIBRARIES} ${EXPAT_LIBRARIES})
 
 INSTALL(TARGETS osm2pgrouting
-  RUNTIME DESTINATION "/usr/share/bin"
+  RUNTIME DESTINATION "/usr/bin"
 )
 
 INSTALL(FILES
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..367971e
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,19 @@
+osm2pgrouting - Import OSM data for pgRouting
+---------------------------------------------
+
+osm2pgrouting is a command line tool that makes it easy to import OpenStreetMap data into a pgRouting database. It builds the routing network topology automatically and creates tables for feature types and road classes. osm2pgrouting was primarily written by Daniel Wendt and is now hosted on the pgRouting project site.
+
+Project website: http://www.pgrouting.org/docs/tools/osm2pgrouting.html
+Code repository: https://github.com/pgRouting/osm2pgrouting
+
+How to use
+----------
+
+osm2pgrouting -file your-OSM-XML-File.osm \
+	-conf mapconfig.xml -dbname routing \
+	-user postgres -clean
+
+License
+-------
+
+osm2pgrouting is available under the GPLv2 license.
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..7b4ce9e
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,72 @@
+osm2pgrouting (2.0.0-release-ppa1~precise2) precise; urgency=medium
+
+  * changed RUNTIME DESTINATION target
+
+ -- Daniel Kastl (Georepublic) <daniel at georepublic.de>  Sun, 23 Feb 2014 05:53:29 +0900
+
+osm2pgrouting (2.0.0-release-ppa1~saucy1) saucy; urgency=medium
+
+  * Imported Upstream version 2.0.0-release
+  * Cleaned up and updated Debian directory
+
+ -- Daniel Kastl (Georepublic) <daniel at georepublic.de>  Sun, 22 Sep 2013 11:22:58 +0900
+
+osm2pgrouting (2.0.0-beta-ppa4) quantal; urgency=medium
+
+  [ Daniel Kastl (Georepublic) ]
+  * Imported Upstream version 2.0.0-beta2
+
+ -- Daniel Kastl (Georepublic) <daniel at georepublic.de>  Sat, 29 Jun 2013 09:12:59 +0900
+
+osm2pgrouting (2.0.0-beta-ppa3) quantal; urgency=medium
+
+  [ Daniel Kastl (Georepublic) ]
+  * Imported Upstream version 2.0.0-beta
+
+ -- Daniel Kastl (Georepublic) <daniel at georepublic.de>  Mon, 24 Jun 2013 13:39:21 +0900
+
+osm2pgrouting (2.0.0-alpha-ppa2) raring; urgency=medium
+
+  [ Daniel Kastl (Georepublic) ]
+  * Imported Upstream version 2.0.0-alpha
+  * Updated debian packaging documents
+  * Changed to CDBS
+
+ -- Daniel Kastl (Georepublic) <daniel at georepublic.de>  Tue, 18 Jun 2013 16:31:41 +0900
+
+osm2pgrouting (0.1-6) natty; urgency=low
+
+  * Package for Natty
+
+ -- Daniel Kastl <daniel at georepublic.de>  Tue, 21 Jun 2011 17:22:52 +0900
+
+osm2pgrouting (0.1-5) maverick; urgency=low
+
+  * Increased build number because of build problems in Launchpad (no changes)
+
+ -- Daniel Kastl <daniel at georepublic.de>  Thu, 25 Nov 2010 11:45:14 +0900
+
+osm2pgrouting (0.1-4) lucid; urgency=low
+
+  * Added copyright information
+  * Added long package description
+
+ -- Daniel Kastl <daniel at georepublic.de>  Fri, 02 Jul 2010 01:53:09 +0900
+
+osm2pgrouting (0.1-3) lucid; urgency=low
+
+  * Set section to utils
+
+ -- Frederic Junod <frederic.junod at camptocamp.com>  Wed, 30 Jun 2010 16:02:11 +0200
+
+osm2pgrouting (0.1-2) lucid; urgency=low
+
+  * Set distroseries to lucid.
+
+ -- Frederic Junod <frederic.junod at camptocamp.com>  Wed, 30 Jun 2010 15:58:17 +0200
+
+osm2pgrouting (0.1-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Frederic Junod <frederic.junod at camptocamp.com>  Wed, 30 Jun 2010 08:55:33 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..f17026f
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,17 @@
+Source: osm2pgrouting
+Section: utils
+Priority: extra
+Maintainer: Ubuntu Developers <ubuntu-devel-discuss at lists.ubuntu.com>
+XSBC-Original-Maintainer: Daniel Kastl <daniel at georepublic.de>
+Build-Depends: debhelper (>= 7), cdbs, cmake, libboost-graph-dev, libpq-dev, libexpat1-dev
+Standards-Version: 3.7.3
+Homepage: https://github.com/pgRouting/osm2pgrouting
+
+Package: osm2pgrouting
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Tool to import OpenStreetMap data into a pgRouting database.
+ osm2pgrouting is a command line tool that makes it easy to import OpenStreetMap data 
+ into a pgRouting database. It builds the routing network topology automatically and 
+ creates tables for feature types and road classes.
+ pgRouting has to be installed to be able to run osm2pgrouting.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..c275a90
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,55 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pgRouting
+Upstream-Contact: Daniel Kastl <daniel at georepublic.de>
+Source: https://github.com/pgrouting/osm2pgrouting
+
+Files: *
+Copyright: Copyright 2008 Daniel Wendt
+           Further authors see AUTHORS.txt file.
+License: GPL-2+
+ This program 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; either
+ version 2 of the License, or (at your option) any later
+ version.
+ .
+ This program 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., 51 Franklin St, Fifth Floor,
+ Boston, MA  02110-1301 USA
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'.
+
+Files: debian/*
+Copyright: Copyright 2010 Frederic Junod <frederic.junod at camptocamp.com>
+           Copyright 2013 Daniel Kastl <daniel at georepublic.de>
+License: GPL-2+
+ This program 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; either
+ version 2 of the License, or (at your option) any later
+ version.
+ .
+ This program 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., 51 Franklin St, Fifth Floor,
+ Boston, MA  02110-1301 USA
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'.
+
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..ed5df79
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,2 @@
+AUTHORS.txt
+Readme.md
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..a86d047
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,18 @@
+[DEFAULT]
+pristine-tar = True
+debian-branch = master
+upstream-branch = upstream
+cleaner = fakeroot debian/rules clean
+
+[git-buildpackage]
+export-dir = ../build-area/
+tarball-dir = ../tarballs/
+#sign-tags = True
+#keyid = 0xdeadbeef
+#ignore-new = True
+
+[git-import-orig]
+#dch = False
+
+[git-dch]
+#git-log = --no-merges
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..a235bd8
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,16 @@
+#!/usr/bin/make -f
+# ------------------------------------------------------------------------------
+# Debian/Ubuntu packaging
+# Copyright(c) pgRouting Contributors
+#
+# Build rules
+# ------------------------------------------------------------------------------
+
+#export DH_VERBOSE=1
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/cmake.mk
+
+# Build CMake flags
+# ------------------------------------------------------------------------------
+#DEB_CMAKE_NORMAL_ARGS

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/osm2pgrouting.git



More information about the Pkg-grass-devel mailing list