Author: moeller
Date: 2012-01-15 17:01:10 +0000 (Sun, 15 Jan 2012)
New Revision: 15711

Added:
   trunk/geronimo-javamail-1.4-provider/
   trunk/geronimo-javamail-1.4-provider/debian/
   trunk/geronimo-javamail-1.4-provider/debian/build.xml
   trunk/geronimo-javamail-1.4-provider/debian/changelog
   trunk/geronimo-javamail-1.4-provider/debian/compat
   trunk/geronimo-javamail-1.4-provider/debian/control
   trunk/geronimo-javamail-1.4-provider/debian/copyright
   trunk/geronimo-javamail-1.4-provider/debian/rules
   trunk/geronimo-javamail-1.4-provider/debian/source/
   trunk/geronimo-javamail-1.4-provider/debian/source/format
Log:
Uploaded Ubuntu package to Debian.



Property changes on: trunk/geronimo-javamail-1.4-provider/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: trunk/geronimo-javamail-1.4-provider/debian/build.xml
===================================================================
--- trunk/geronimo-javamail-1.4-provider/debian/build.xml                       
        (rev 0)
+++ trunk/geronimo-javamail-1.4-provider/debian/build.xml       2012-01-15 
17:01:10 UTC (rev 15711)
@@ -0,0 +1,41 @@
+<?xml version="1.0"?>
+
+<project name="pkg-java" default="package" basedir="..">
+
+    <property name="build.sourceDirectory" value="src/main/java"/>
+    <property name="build.resourcesDirectory" value="src/main/resources"/>
+    <property name="build.directory" value="build"/>
+    <property name="build.outputDirectory" value="${build.directory}/classes"/>
+
+    <target name="init">
+        <available property="available.resources" 
file="${build.resourcesDirectory}"/>
+    </target>
+
+    <target name="clean">
+        <delete dir="${build.directory}"/>
+    </target>
+
+    <target name="process-resources" depends="init" if="available.resources">
+        <mkdir dir="${build.outputDirectory}"/>
+        <copy todir="${build.outputDirectory}">
+            <fileset dir="${build.resourcesDirectory}"/>
+        </copy>
+    </target>
+
+    <target name="compile" depends="process-resources">
+        <mkdir dir="${build.outputDirectory}"/>
+        <javac
+            destdir="${build.outputDirectory}"
+            nowarn="true"
+            source="${sourceVersion}" target="${targetVersion}"
+            debug="on">
+            <src path="${build.sourceDirectory}"/>
+        </javac>
+    </target>
+
+    <target name="package" depends="compile">
+        <jar jarfile="${build.directory}/${artifactId}-${artifactVersion}.jar"
+            basedir="${build.outputDirectory}"/>
+    </target>
+
+</project>

Added: trunk/geronimo-javamail-1.4-provider/debian/changelog
===================================================================
--- trunk/geronimo-javamail-1.4-provider/debian/changelog                       
        (rev 0)
+++ trunk/geronimo-javamail-1.4-provider/debian/changelog       2012-01-15 
17:01:10 UTC (rev 15711)
@@ -0,0 +1,29 @@
+geronimo-javamail-1.4-provider (1.8.3-1) unstable; urgency=low
+
+  * Upload to Debian (new package)
+
+  [ by sponsor Steffen Moeller ]
+  * Brian as uploader, pkg-java as maintainer
+  * Added Vcs paths
+  * DMUA yes
+
+ -- Brian Thomason <brian.thoma...@eucalyptus.com>  Sun, 15 Jan 2012 17:54:43 
+0100
+
+geronimo-javamail-1.4-provider (1.8.3-0ubuntu1) precise; urgency=low
+
+  * New upstream release
+  * Bumped Standards-Version
+     - Added debian/source/format
+     - Removed default-jdk runtime dep
+  * Changed Maintainer from MOTU to Ubuntu Developers
+  * Slightly extended the long description
+  * Tightened javamail-spec build-dep
+  * Changed Section from libs to java
+
+ -- Brian Thomason <brian.thoma...@eucalyptus.com>  Wed, 11 Jan 2012 15:56:11 
-0500
+
+geronimo-javamail-1.4-provider (1.6-0ubuntu1) jaunty; urgency=low
+
+  * Initial release.
+
+ -- Thierry Carrez <thierry.car...@ubuntu.com>  Tue, 10 Feb 2009 13:58:31 +0000

Added: trunk/geronimo-javamail-1.4-provider/debian/compat
===================================================================
--- trunk/geronimo-javamail-1.4-provider/debian/compat                          
(rev 0)
+++ trunk/geronimo-javamail-1.4-provider/debian/compat  2012-01-15 17:01:10 UTC 
(rev 15711)
@@ -0,0 +1 @@
+5

Added: trunk/geronimo-javamail-1.4-provider/debian/control
===================================================================
--- trunk/geronimo-javamail-1.4-provider/debian/control                         
(rev 0)
+++ trunk/geronimo-javamail-1.4-provider/debian/control 2012-01-15 17:01:10 UTC 
(rev 15711)
@@ -0,0 +1,19 @@
+Source: geronimo-javamail-1.4-provider
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers 
<pkg-java-maintainers@lists.alioth.debian.org>
+Uploaders: Brian Thomason <brian.thoma...@eucalyptus.com>
+Build-Depends-Indep: default-jdk, libgeronimo-javamail-1.4-spec-java (>= 1.7.1)
+Build-Depends: ant, debhelper (>= 5), cdbs (>= 0.4.5.3)
+Standards-Version: 3.9.2
+DM-Upload-Allowed: yes
+Vcs-Svn: 
svn://svn.debian.org/svn/pkg-java/trunk/geronimo-javamail-1.4-provider-java
+Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-java/trunk/geronimo-javamail-1.4-provider-java
+
+Package: libgeronimo-javamail-1.4-provider-java
+Architecture: all
+Depends: ${misc:Depends}
+Description: Geronimo implementation of the JavaMail 1.4 provider
+ This package provides Geronimo implementation of the JavaMail 1.4 provider
+ which allows for the sending of email. It can be used as a replacement for the
+ standard JavaMail API provided by Oracle.

Added: trunk/geronimo-javamail-1.4-provider/debian/copyright
===================================================================
--- trunk/geronimo-javamail-1.4-provider/debian/copyright                       
        (rev 0)
+++ trunk/geronimo-javamail-1.4-provider/debian/copyright       2012-01-15 
17:01:10 UTC (rev 15711)
@@ -0,0 +1,83 @@
+This package was debianized by Thierry Carrez <thierry.car...@ubuntu.com> on
+Wed, 04 Feb 2009 11:39:01 +0100
+
+Source tarballs are rebuilt from the SVN export of the relevant tag under
+http://svn.apache.org/repos/asf/geronimo/javamail
+
+Copyright:
+    Copyright (C) 2003-2006 The Apache Software Foundation
+
+Authors:
+    The Apache Software Foundation, including but not limited to:
+    Aaron Mulder
+    Alan Cabrera
+    Alexy Petrenko
+    Anita Kulshreshtha
+    Bruce Snyder
+    B.J. Reed
+    Christopher J. Blythe
+    Christopher M. Cardona
+    Dain Sundstrom
+    Darren Middleman
+    Davanum Srinivas
+    David Blevins
+    David Jencks
+    Donald Woods (dwoods)
+    Erik B. Craig
+    Geir Magnusson Jr.
+    Gianny D'Amour
+    Greg Wilkins
+    Guillaume Nodet
+    Hernan Cunico
+    Hiram Chirino
+    Jacek Laskowski
+    James Strachan
+    Jan Bartel
+    Jarek Gawor
+    Jason Dillon
+    Jason van Zyl
+    Jason Warner
+    Jay D. McHugh
+    Jeff Genender
+    Jeremy Boynes
+    Joe Bohn
+    John R. Sisson
+    Jules Gosnell
+    Kevan Miller
+    Ken Coar
+    Lars Kuhne
+    Lin Sun
+    Manu George
+    Mark DeLaFranier
+    Matt R. Hogstrom
+    Paul McMahan
+    Prasad Kashyap
+    Rakesh Midha
+    Rick McGuire
+    Sachin P. Patel
+    Shiva Kumar H R
+    Srinath Perera
+    Ted Kirby
+    Tim McConnell
+    Vamsavardhana Reddy Chillakuru
+    Viet Nguyen
+    Yun Feng Ma
+
+License:
+
+    Licensed under the Apache License, Version 2.0 (the "License");
+    you may not use this file except in compliance with the License.
+    You may obtain a copy of the License at
+ 
+         http://www.apache.org/licenses/LICENSE-2.0
+ 
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+
+On Debian GNU/Linux and Ubuntu systems, the complete text of the Apache 2.0
+License can be found in the /usr/share/common-licenses/Apache-2.0 file.
+
+The same license and copyright applies to the Debian packaging.

Added: trunk/geronimo-javamail-1.4-provider/debian/rules
===================================================================
--- trunk/geronimo-javamail-1.4-provider/debian/rules                           
(rev 0)
+++ trunk/geronimo-javamail-1.4-provider/debian/rules   2012-01-15 17:01:10 UTC 
(rev 15711)
@@ -0,0 +1,34 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+
+PACKAGE              := $(shell dpkg-parsechangelog | egrep '^Source:' | cut 
-f2 -d' ')
+VERSION              := $(shell dpkg-parsechangelog | egrep '^Version:' | sed 
's/Version: \(.*\)-.*/\1/')
+
+SVN                  := 
geronimo/javamail/tags/geronimo-javamail_1.4-$(VERSION)/geronimo-javamail_1.4_provider
+ASFREPO              := http://svn.apache.org/repos/asf/$(SVN)
+DEB_JARS             := geronimo-javamail-1.4-spec
+REQUIRED_JVM_VERSION := 1.5
+
+JAVA_HOME            := /usr/lib/jvm/default-java
+ANT_HOME             := /usr/share/ant
+DEB_ANT_BUILD_TARGET := package
+DEB_ANT_BUILDFILE    := ./debian/build.xml
+DEB_ANT_ARGS         := -DartifactVersion=$(VERSION) \
+                        -DartifactId=$(PACKAGE) \
+                        -DsourceVersion=$(REQUIRED_JVM_VERSION) \
+                        -DtargetVersion=$(REQUIRED_JVM_VERSION)
+
+get-orig-source:
+       echo "Getting version $(VERSION) from $(SVN)"
+       mkdir orig_tmp
+       cd orig_tmp && \
+               svn export -q $(ASFREPO) $(PACKAGE)-$(VERSION) && \
+               tar czf ../../$(PACKAGE)_$(VERSION).orig.tar.gz 
$(PACKAGE)-$(VERSION)
+       rm -rf orig_tmp
+
+binary-post-install/lib$(PACKAGE)-java::
+       dh_install -plib$(PACKAGE)-java build/$(PACKAGE)-$(VERSION).jar 
usr/share/java
+       dh_link -plib$(PACKAGE)-java usr/share/java/$(PACKAGE)-$(VERSION).jar 
usr/share/java/$(PACKAGE).jar
+


Property changes on: trunk/geronimo-javamail-1.4-provider/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: trunk/geronimo-javamail-1.4-provider/debian/source/format
===================================================================
--- trunk/geronimo-javamail-1.4-provider/debian/source/format                   
        (rev 0)
+++ trunk/geronimo-javamail-1.4-provider/debian/source/format   2012-01-15 
17:01:10 UTC (rev 15711)
@@ -0,0 +1 @@
+3.0 (quilt)


_______________________________________________
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to