Author: tille Date: 2009-04-30 20:27:40 +0000 (Thu, 30 Apr 2009) New Revision: 3337
Modified: trunk/packages/gnumed-server/trunk/debian/changelog trunk/packages/gnumed-server/trunk/debian/control trunk/packages/gnumed-server/trunk/debian/install trunk/packages/gnumed-server/trunk/debian/postinst Log: Fix open bugs Modified: trunk/packages/gnumed-server/trunk/debian/changelog =================================================================== --- trunk/packages/gnumed-server/trunk/debian/changelog 2009-04-30 09:56:41 UTC (rev 3336) +++ trunk/packages/gnumed-server/trunk/debian/changelog 2009-04-30 20:27:40 UTC (rev 3337) @@ -1,3 +1,17 @@ +gnumed-server (0v10.3-2) unstable; urgency=low + + * Provide server/pycommon and do not use the code of + GNUmed client (gnumed-common) + Closes: #525282 + * debian/postinst: Remove danglink sysmlink which was created + by previous package versions + Closes: #525287 + * debian/install: bootstrap directory will not be handled by + dh_install but manually in debian/rules + Closes: #525285 + + -- Andreas Tille <[email protected]> Thu, 23 Apr 2009 15:18:36 +0200 + gnumed-server (0v10.3-1) unstable; urgency=low * New upstream version Modified: trunk/packages/gnumed-server/trunk/debian/control =================================================================== --- trunk/packages/gnumed-server/trunk/debian/control 2009-04-30 09:56:41 UTC (rev 3336) +++ trunk/packages/gnumed-server/trunk/debian/control 2009-04-30 20:27:40 UTC (rev 3337) @@ -13,7 +13,7 @@ Package: gnumed-server Architecture: all -Depends: ${misc:Depends}, gnumed-common, postgresql, postgresql-client, python, debconf, +Depends: ${misc:Depends}, postgresql, postgresql-client, python, debconf, mailx, openssl, bzip2, cron | anacron, sudo, gnupg | gnupg2, rsync Recommends: postgresql-filedump-8.3 Suggests: postgresql-contrib, postgresql-8.3-plr Modified: trunk/packages/gnumed-server/trunk/debian/install =================================================================== --- trunk/packages/gnumed-server/trunk/debian/install 2009-04-30 09:56:41 UTC (rev 3336) +++ trunk/packages/gnumed-server/trunk/debian/install 2009-04-30 20:27:40 UTC (rev 3337) @@ -1,4 +1,4 @@ server/sql var/lib/gnumed/server -server/bootstrap/gm*.py var/lib/gnumed/server +server/pycommon var/lib/gnumed/server debian/gm-bootstrap_server usr/sbin debian/conf/* etc/gnumed Modified: trunk/packages/gnumed-server/trunk/debian/postinst =================================================================== --- trunk/packages/gnumed-server/trunk/debian/postinst 2009-04-30 09:56:41 UTC (rev 3336) +++ trunk/packages/gnumed-server/trunk/debian/postinst 2009-04-30 20:27:40 UTC (rev 3337) @@ -21,6 +21,10 @@ case "$1" in configure) mkdir -p /var/log/gnumed/server/ + # Remove dangling symlink from previous package versions + if [ -L /var/lib/gnumed/Gnumed ] ; then + rm -f /var/lib/gnumed/Gnumed + fi ;; abort-upgrade|abort-remove|abort-deconfigure) _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/debian-med-commit
