Skip to content
Commits on Source (5)
vecmath (1.5.2-7) unstable; urgency=medium
* Team upload.
[ Andrius Merkys ]
* Install the Maven artifacts (Closes: #898609)
[ Emmanuel Bourg ]
* Standards-Version updated to 4.1.4
* Switch to debhelper level 11
* Use salsa.debian.org Vcs-* URLs
-- Emmanuel Bourg <ebourg@apache.org> Mon, 14 May 2018 11:27:50 +0200
vecmath (1.5.2-6) unstable; urgency=medium
* Team upload.
......
......@@ -4,13 +4,14 @@ Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Emmanuel Bourg <ebourg@apache.org>
Build-Depends: ant-optional,
debhelper (>= 10),
debhelper (>= 11),
default-jdk,
default-jdk-doc,
javahelper (>= 0.32~)
Standards-Version: 4.0.0
Vcs-Git: https://anonscm.debian.org/git/pkg-java/vecmath.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/vecmath.git
javahelper (>= 0.32~),
maven-repo-helper
Standards-Version: 4.1.4
Vcs-Git: https://salsa.debian.org/java-team/vecmath.git
Vcs-Browser: https://salsa.debian.org/java-team/vecmath
Homepage: https://tracker.debian.org/pkg/vecmath
Package: libvecmath-java
......
debian/pom.xml --java-lib --has-package-version --artifact=vecmath/build/debug/lib/ext/vecmath.jar --relocate=java3d:vecmath
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>javax.vecmath</groupId>
<artifactId>vecmath</artifactId>
<version>1.5.2</version>
<packaging>jar</packaging>
<name>vecmath</name>
<description>3D Vector Math Package</description>
<url>https://java.net/projects/vecmath/</url>
<licenses>
<license>
<name>GPLv2 license, includes the CLASSPATH exception</name>
<url>https://java.net/projects/vecmath/sources/svn/content/trunk/COPYRIGHT.txt</url>
</license>
</licenses>
</project>
#!/usr/bin/make -f
CVS_TAG = rel-1_5_2-fcs
CVS_VER = 1.5.2
%:
dh $@ --with javahelper --builddirectory=vecmath
dh $@ --with javahelper,maven_repo_helper --builddirectory=vecmath
override_dh_auto_build:
dh_auto_build -Dvecmath -- jar docs
override_dh_auto_clean:
dh_auto_clean -Dvecmath clean
get-orig-source::
@ echo "Password for the guest CVS user is an empty password (press [enter])"
cvs -d :pserver:guest@cvs.dev.java.net:/cvs login
mkdir source-cvs && cd source-cvs && \
cvs -d :pserver:guest@cvs.dev.java.net:/cvs co -r $(CVS_TAG) vecmath
tar -zcv --exclude '*/CVS' --exclude .cvsignore -f ../vecmath_$(CVS_VER).orig.tar.gz source-cvs
rm -rf source-cvs