[med-svn] r19623 - trunk/packages/cain/trunk/debian
Ivo Maintz
ivomaintz-guest at moszumanska.debian.org
Fri Jul 17 14:43:00 UTC 2015
Author: ivomaintz-guest
Date: 2015-07-17 14:43:00 +0000 (Fri, 17 Jul 2015)
New Revision: 19623
Modified:
trunk/packages/cain/trunk/debian/changelog
trunk/packages/cain/trunk/debian/control
trunk/packages/cain/trunk/debian/rules
Log:
some minor changes to fix #792684
Modified: trunk/packages/cain/trunk/debian/changelog
===================================================================
--- trunk/packages/cain/trunk/debian/changelog 2015-07-17 07:31:56 UTC (rev 19622)
+++ trunk/packages/cain/trunk/debian/changelog 2015-07-17 14:43:00 UTC (rev 19623)
@@ -1,3 +1,15 @@
+cain (1.9-9) UNRELEASED; urgency=medium
+
+ * debian/rules:
+ - added patch by Chris Lamb <lamby at debian.org> for
+ repoducible builds
+ Closes: #792684
+ * debian/control:
+ - bumped Standards-Version to 3.9.6
+ - changed description for cain-examples and cain-solvers
+
+ -- Ivo Maintz <ivo at maintz.de> Fri, 17 Jul 2015 15:55:25 +0200
+
cain (1.9-8) unstable; urgency=medium
* Moved debian/upstream to debian/upstream/metadata
Modified: trunk/packages/cain/trunk/debian/control
===================================================================
--- trunk/packages/cain/trunk/debian/control 2015-07-17 07:31:56 UTC (rev 19622)
+++ trunk/packages/cain/trunk/debian/control 2015-07-17 14:43:00 UTC (rev 19623)
@@ -9,7 +9,7 @@
python (<< 3.0),
libeigen3-dev,
zip
-Standards-Version: 3.9.5
+Standards-Version: 3.9.6
Vcs-Browser: http://anonscm.debian.org/viewvc/debian-med/trunk/packages/cain/trunk/
Vcs-Svn: svn://anonscm.debian.org/debian-med/trunk/packages/cain/trunk/
Homepage: http://cain.sourceforge.net
@@ -54,7 +54,7 @@
Depends: ${shlibs:Depends},
${misc:Depends},
libeigen3-dev
-Description: simulations of chemical reactions
+Description: solvers for cain
Cain performs stochastic and deterministic simulations of chemical reactions.
It can spawn multiple simulation processes to utilize multi-core computers.
It stores models, methods, and simulation output (populations and reaction
@@ -81,7 +81,7 @@
Depends: ${shlibs:Depends},
${misc:Depends},
cain
-Description: simulations of chemical reactions
+Description: examples for cain
Cain performs stochastic and deterministic simulations of chemical reactions.
It can spawn multiple simulation processes to utilize multi-core computers.
It stores models, methods, and simulation output (populations and reaction
Modified: trunk/packages/cain/trunk/debian/rules
===================================================================
--- trunk/packages/cain/trunk/debian/rules 2015-07-17 07:31:56 UTC (rev 19622)
+++ trunk/packages/cain/trunk/debian/rules 2015-07-17 14:43:00 UTC (rev 19623)
@@ -32,10 +32,13 @@
[ -f ../cain_$(VERSION).zip ] || wget -O ../cain_$(VERSION).zip http://qa.debian.org/watch/sf.php/cain/Cain-$(UVERSION).zip
cd $(SRC_TMP) && unzip ../../cain_$(VERSION).zip
mv $(SRC_TMP)/Cain $(SRC_TMP)/cain-$(VERSION)
- find $(SRC_TMP) -name __MACOSX -type d | xargs -r rm -rf
- find $(SRC_TMP) -iname .DS_Store -exec rm -f {} +
- find $(SRC_TMP) -iname .scons* -exec rm -f {} +
+ find $(SRC_TMP) -name __MACOSX -type d -exec rm -rf {} +
+ find $(SRC_TMP) -iname .DS_Store -delete
+ find $(SRC_TMP) -iname "*.pyc" -delete
+ find $(SRC_TMP) -iname ".scons*" -delete
+ find $(SRC_TMP) -type f -exec chmod 644 {} +
+ find $(SRC_TMP) -type d -exec chmod 755 {} +
rm -f $(SRC_TMP)/cain-$(VERSION)/solvers/*
- rm -rf $(SRC_TMP)/cain-$(VERSION)/src/third-party/*
+ rm -rf $(SRC_TMP)/cain-$(VERSION)/src/third-party/
cd $(SRC_TMP) && tar cvzf ../../cain_$(VERSION).orig.tar.gz cain-$(VERSION)
rm -rf $(SRC_TMP)
More information about the debian-med-commit
mailing list