diff -Nru mongodb-1.4.4/debian/changelog mongodb-1.4.4/debian/changelog --- mongodb-1.4.4/debian/changelog 2010-07-09 21:26:33.000000000 +0200 +++ mongodb-1.4.4/debian/changelog 2010-07-14 15:53:24.000000000 +0200 @@ -1,3 +1,13 @@ +mongodb (1:1.4.4-2ubuntu1) maverick; urgency=low + + * Merge from debian unstable (LP: #605383). Remaining changes: + - debian/mongodb-server.mongodb.upstart: add upstart job. + - Add dependency on xulrunner-1.9.2 since mongodb requires libmozjs.so. + - Mark mongodb-{server,client,dev} as replacing mongodb to be able to + upgrade from Lucid. + + -- Angel Abad Sat, 10 Jul 2010 06:40:58 +0100 + mongodb (1:1.4.4-2) unstable; urgency=low * [3bd69dc] install libs to /usr/lib not /usr/lib64 (Closes: #588557) @@ -14,6 +24,21 @@ -- Antonin Kral Wed, 30 Jun 2010 09:32:45 +0200 +mongodb (1:1.4.3-2ubuntu1) maverick; urgency=low + + [ Clint Byrum ] + * Merge from Debian unstable (LP: #589566) + Remaining changes: + - debian/mongodb-server.mongodb.upstart: add upstart job. + + [ Mathias Gug ] + * debian/control: + - Add dependency on xulrunner-1.9.2 since mongodb requires libmozjs.so. + - Mark mongodb-{server,client,dev} as replacing mongodb to be able to + upgrade from Lucid. + + -- Mathias Gug Thu, 10 Jun 2010 15:25:34 -0400 + mongodb (1:1.4.3-2) unstable; urgency=low * [64bca3c] Updated copyright information as requested by Richard @@ -112,6 +137,19 @@ -- Antonin Kral Sat, 06 Mar 2010 22:55:17 +0100 +mongodb (1:1.2.2-1ubuntu1) lucid; urgency=low + + [ Richard M Kreuter ] + * debian/mongodb.conf: uncomment lines to support upstart (LP: #564198) + * debian/mongodb.upstart: only execute when available (LP: #564202) + * buildscripts/hacks_ubuntu.py: include nspr in CPPPATH (LP: #557024) + * scripting/engine_spidermonkey.h: include jsobj.h (LP: #557024) + + [ Emmet Hikory ] + * Integrate patches (raw): expecting resync when Debian uses new upstream + + -- Emmet Hikory Fri, 23 Apr 2010 00:43:22 +0900 + mongodb (1:1.2.2-1) unstable; urgency=low * this commit introduces stable version of MongoDB to Debian, hopefully to diff -Nru mongodb-1.4.4/debian/control mongodb-1.4.4/debian/control --- mongodb-1.4.4/debian/control 2010-07-09 21:26:33.000000000 +0200 +++ mongodb-1.4.4/debian/control 2010-07-14 15:54:58.000000000 +0200 @@ -1,8 +1,8 @@ Source: mongodb Section: database Priority: optional -Maintainer: Antonin Kral -Uploaders: Roberto C. Sanchez +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Antonin Kral Build-Depends: debhelper (>= 7), libpcre3, libpcre3-dev, scons, xulrunner-dev (>= 1.9) | xulrunner-1.9-dev | xulrunner-1.9.1-dev, libboost1.42-dev | libboost1.40-dev | libboost1.35-dev | libboost1.37-dev | libboost1.38-dev, libboost-thread1.42-dev | libboost-thread1.40-dev | libboost-thread1.38-dev | libboost-thread1.37-dev | libboost-thread1.35-dev, libboost-filesystem1.42-dev | libboost-filesystem1.40-dev | libboost-filesystem1.38-dev | libboost-filesystem1.37-dev | libboost-filesystem1.35-dev, libboost-program-options1.42-dev | libboost-program-options1.40-dev | libboost-program-options1.38-dev | libboost-program-options1.37-dev | libboost-program-options1.35-dev, libboost-date-time1.42-dev | libboost-date-time1.40-dev | libboost-date-time1.38-dev | libboost-date-time1.37-dev | libboost-date-time1.35-dev Standards-Version: 3.9.0 Homepage: http://www.mongodb.org @@ -32,7 +32,9 @@ Package: mongodb-server Architecture: i386 amd64 -Depends: mongodb-clients, ${shlibs:Depends}, ${misc:Depends}, adduser +Depends: mongodb-clients, ${shlibs:Depends}, ${misc:Depends}, adduser, + xulrunner-1.9.2 +Replaces: mongodb (<= 1:1.4.2-2) Description: An object/document-oriented database (server package) MongoDB is a high-performance, open source, schema-free document-oriented data store that's easy to deploy, manage @@ -56,6 +58,7 @@ Package: mongodb-clients Architecture: i386 amd64 Depends: ${shlibs:Depends}, ${misc:Depends} +Replaces: mongodb (<= 1:1.4.2-2) Description: An object/document-oriented database (client apps) MongoDB is a high-performance, open source, schema-free document-oriented data store that's easy to deploy, manage @@ -80,6 +83,7 @@ Section: libdevel Architecture: i386 amd64 Depends: mongodb-server, ${shlibs:Depends}, ${misc:Depends} +Replaces: mongodb (<= 1:1.4.2-2) Description: An object/document-oriented database (development) MongoDB is a high-performance, open source, schema-free document-oriented data store that's easy to deploy, manage diff -Nru mongodb-1.4.4/debian/mongodb-server.mongodb.upstart mongodb-1.4.4/debian/mongodb-server.mongodb.upstart --- mongodb-1.4.4/debian/mongodb-server.mongodb.upstart 1970-01-01 01:00:00.000000000 +0100 +++ mongodb-1.4.4/debian/mongodb-server.mongodb.upstart 2010-06-11 07:12:28.000000000 +0200 @@ -0,0 +1,15 @@ +# Ubuntu upstart file at /etc/init/mongodb.conf + +pre-start script + mkdir -p /var/lib/mongodb/ + mkdir -p /var/log/mongodb/ +end script + +start on runlevel [2345] +stop on runlevel [06] + +script + ENABLE_MONGODB="yes" + if [ -f /etc/default/mongodb ]; then . /etc/default/mongodb; fi + if [ "x$ENABLE_MONGODB" = "xyes" ]; then exec start-stop-daemon --start --quiet --chuid mongodb --exec /usr/bin/mongod -- --config /etc/mongodb.conf; fi +end script