[SCM] Mathpiper: a Java Computer Algebra System branch, master, updated. debian/0.81f+svn4469+dfsg2-1-9-g3273871

Giovanni Mascellani mascellani at poisson.phc.unipi.it
Fri Mar 2 23:51:44 UTC 2012


The following commit has been merged in the master branch:
commit 2353177ab69cdddabba149220091640a0f2efbd3
Author: Giovanni Mascellani <mascellani at poisson.phc.unipi.it>
Date:   Mon Feb 27 15:11:08 2012 +0100

    Add downloading of Reduce Lisp scripts in get_orig_source.sh.

diff --git a/debian/README.source b/debian/README.source
index d5400be..d024237 100644
--- a/debian/README.source
+++ b/debian/README.source
@@ -8,8 +8,11 @@ the desired version and then:
  * Deleting the misc/ directory, which are not necessary for the
    Debian package;
 
- * Deleteing a few embedded copies of other pieces of software,
-   documented below.
+ * Deleting a few embedded copies of other pieces of software,
+   documented below;
+
+ * Deleting a few script files distributed under the non-DFSG-free
+   license "CCL Public License".
 
 
 QUILT
diff --git a/debian/get_orig_source.sh b/debian/get_orig_source.sh
index 4b48d63..a0cc729 100755
--- a/debian/get_orig_source.sh
+++ b/debian/get_orig_source.sh
@@ -14,9 +14,15 @@ if [ "x$ONLYFILTER" == "x" ] ; then
 	if [ "x$REVISION" == "x" ] ; then
 		svn export "http://mathpiper.googlecode.com/svn/trunk/src/library_apps/mathpiper" "$DESTDIR"
 		svn export "http://mathpiper.googlecode.com/svn/trunk/src/library_apps/mpreduce/src/java/org/mathpiper/mpreduce" "$DESTDIR/src/org/mathpiper/mpreduce"
+		svn export "http://mathpiper.googlecode.com/svn/trunk/src/library_apps/mpreduce/src/packages" "$DESTDIR/src/packages"
+		mkdir "$DESTDIR/lib"
+		svn export "http://mathpiper.googlecode.com/svn/trunk/src/library_apps/mpreduce/lib/build_scripts" "$DESTDIR/lib/build_scripts"
 	else
 		svn export -r "$REVISION" "http://mathpiper.googlecode.com/svn/trunk/src/library_apps/mathpiper" "$DESTDIR"
 		svn export -r "$REVISION" "http://mathpiper.googlecode.com/svn/trunk/src/library_apps/mpreduce/src/java/org/mathpiper/mpreduce" "$DESTDIR/src/org/mathpiper/mpreduce"
+		svn export -r "$REVISION" "http://mathpiper.googlecode.com/svn/trunk/src/library_apps/mpreduce/src/packages" "$DESTDIR/src/packages"
+		mkdir "$DESTDIR/lib"
+		svn export -r "$REVISION" "http://mathpiper.googlecode.com/svn/trunk/src/library_apps/mpreduce/lib/build_scripts" "$DESTDIR/lib/build_scripts"
 	fi
 else
 	# Uncompress the previous tarball
@@ -35,6 +41,12 @@ rm -vfr "$DESTDIR/misc"
 rm -vf "$DESTDIR/src/org/mathpiper/test/matheclipse/ParseRubiFiles.java"
 rm -vf "$DESTDIR/src/org/mathpiper/builtin/functions/optional/ViewGeoGebra.java"
 
+# Remove other files with problematic licenses
+rm -f "$DESTDIR/lib/build_scripts/buildcsl.lsp"
+rm -f "$DESTDIR/lib/build_scripts/ccomp.lsp"
+rm -f "$DESTDIR/lib/build_scripts/mkbytes.red"
+rm -f "$DESTDIR/lib/build_scripts/opcodes.red"
+
 # Removes all upstream JARs, DLLs, SOs and JNILIBs
 for ext in jar dll so jnilib ; do
 	find "$DESTDIR" -iname '*'."$ext" -print0 | xargs -0 rm -vf

-- 
Mathpiper: a Java Computer Algebra System



More information about the pkg-java-commits mailing list