[med-svn] [Git][med-team/gnumed-server][master] 6 commits: Delete xtest.py which should not be in the package

Andreas Tille gitlab at salsa.debian.org
Sun Jan 27 13:11:56 GMT 2019


Andreas Tille pushed to branch master at Debian Med / gnumed-server


Commits:
1595c2a2 by Andreas Tille at 2019-01-14T14:15:32Z
Delete xtest.py which should not be in the package

- - - - -
2704ff16 by Andreas Tille at 2019-01-14T14:17:39Z
Upload to unstable

- - - - -
77fa82d7 by Andreas Tille at 2019-01-27T13:08:40Z
New upstream version 22.5
- - - - -
ba9782b3 by Andreas Tille at 2019-01-27T13:09:26Z
Update upstream source from tag 'upstream/22.5'

Update to upstream version '22.5'
with Debian dir 149961039ed9a2a4f0ae161504e10b07a3278e93
- - - - -
560c53d8 by Andreas Tille at 2019-01-27T13:09:27Z
New upstream version

- - - - -
7cc75880 by Andreas Tille at 2019-01-27T13:11:08Z
Upload to unstable

- - - - -


6 changed files:

- debian/changelog
- debian/control
- debian/rules
- server/doc/schema/gnumed-entire_schema.html
- − server/pycommon/xtest.py
- server/sql/v21-v22/fixups/v22-release_notes-fixup.sql


Changes:

=====================================
debian/changelog
=====================================
@@ -1,12 +1,18 @@
+gnumed-server (22.5-1) unstable; urgency=medium
+
+  * New upstream version
+
+ -- Andreas Tille <tille at debian.org>  Sun, 27 Jan 2019 14:09:36 +0100
+
 gnumed-server (22.4-1) unstable; urgency=medium
 
   * New upstream version
   * debhelper 12
   * Standards-Version: 4.3.0
   * Secure URI in copyright format
-  * Add python3 as Depends since there are some Python3 scripts
+  * Delete xtest.py which should not be in the package
 
- -- Andreas Tille <tille at debian.org>  Mon, 14 Jan 2019 14:46:24 +0100
+ -- Andreas Tille <tille at debian.org>  Mon, 14 Jan 2019 15:16:05 +0100
 
 gnumed-server (22.3-1) unstable; urgency=medium
 


=====================================
debian/control
=====================================
@@ -18,7 +18,6 @@ Depends: ${misc:Depends},
          postgresql (>= 9.2),
          postgresql-client,
          python,
-         python3,
          debconf,
          bsd-mailx | mail-reader,
          openssl,


=====================================
debian/rules
=====================================
@@ -21,4 +21,4 @@ override_dh_install:
 	    fi \
 	done
 	cp -a server/gm-fingerprint_db.py debian/$(DEB_SOURCE)/usr/sbin/gm-fingerprint_db ; \
-
+	find debian -name xtest.py -delete


=====================================
server/doc/schema/gnumed-entire_schema.html
=====================================
@@ -112,7 +112,7 @@
   <body>
 
     <!-- Primary Index -->
-	<p><br><br>Dumped on 2018-12-19</p>
+	<p><br><br>Dumped on 2019-01-25</p>
 <h1><a name="index">Index of database - gnumed_v22</a></h1>
 <ul>
     


=====================================
server/pycommon/xtest.py deleted
=====================================
@@ -1,39 +0,0 @@
-#!/usr/bin/python3
-
-import sys
-
-import pyudev
-import psutil
-
-def enumerate_removable_partitions():
-	removable_partitions = {}
-	ctxt = pyudev.Context()
-	removable_devices = [ dev for dev in ctxt.list_devices(subsystem='block', DEVTYPE='disk') if dev.attributes.get('removable') == b'1' ]
-	all_mounted_partitions = { part.device: part for part in psutil.disk_partitions() }
-	for device in removable_devices:
-		partitions_on_removable_device = {
-			part.device_node: {
-				'device': part['DEVNAME'],
-				'vendor': part['ID_VENDOR'],
-				'model': part['ID_MODEL'],
-				'fs_label': part['ID_FS_LABEL'],
-				'is_mounted': False,
-				'mountpoint': None,
-				'fs_type': None,
-			} for part in ctxt.list_devices(subsystem='block', DEVTYPE='partition', parent=device)
-		}
-		for part in partitions_on_removable_device:
-			try:
-				partitions_on_removable_device[part]['mountpoint'] = all_mounted_partitions[part].mountpoint
-				partitions_on_removable_device[part]['is_mounted'] = True
-				partitions_on_removable_device[part]['fs_type'] = all_mounted_partitions[part].fstype
-			except KeyError:
-				pass			# not mounted
-		removable_partitions.update(partitions_on_removable_device)
-	return removable_partitions
-
-parts = enumerate_removable_partitions()
-for part_name in parts:
-	part = parts[part_name]
-	if part['is_mounted']:
-		print('mounted:', part)


=====================================
server/sql/v21-v22/fixups/v22-release_notes-fixup.sql
=====================================
@@ -17,8 +17,12 @@ INSERT INTO dem.message_inbox (
 ) VALUES (
 	(select pk from dem.staff where db_user = 'any-doc'),
 	(select pk_type from dem.v_inbox_item_type where type = 'memo' and category = 'administrative'),
-	'Release Notes for GNUmed 1.7.4 (database v22.4)',
-	'GNUmed 1.7.4 Release Notes:
+	'Release Notes for GNUmed 1.7.5 (database v22.5)',
+	'GNUmed 1.7.5 Release Notes:
+
+	1.7.5
+
+FIX: exception on following vaccs reminder from provider inbox
 
 	1.7.4
 



View it on GitLab: https://salsa.debian.org/med-team/gnumed-server/compare/16da58e7f110b4a88122688d785a1481dbfc8c57...7cc75880ab90ababc8cc7084e82d956fe60082c1

-- 
View it on GitLab: https://salsa.debian.org/med-team/gnumed-server/compare/16da58e7f110b4a88122688d785a1481dbfc8c57...7cc75880ab90ababc8cc7084e82d956fe60082c1
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20190127/ebaf6d75/attachment-0001.html>


More information about the debian-med-commit mailing list