Codebase list libcommons-net-java / 80edf59
[svn-inject] Applying Debian modifications to trunk Ludovic Claude 14 years ago
14 changed file(s) with 229 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 Manifest-Version: 1.0
1 Archiver-Version: Plexus Archiver
2 Implementation-Title: Commons Net
3 Implementation-Vendor: The Apache Software Foundation
4 Implementation-Vendor-Id: org.apache
5 Implementation-Version: @version@
6 Specification-Title: Commons Net
7 Specification-Vendor: The Apache Software Foundation
8 Specification-Version: @version@
9 X-Compile-Source-JDK: 1.5
10 X-Compile-Target-JDK: 1.5
11 Export-Package: org.apache.commons.net.finger;version="@version@",
12 org.apache.commons.net.echo;version="@version@",
13 org.apache.commons.net.ntp;version="@version@",
14 org.apache.commons.net.io;version="@version@",
15 org.apache.commons.net.discard;version="@version@",
16 org.apache.commons.net.ftp;version="@version@",
17 org.apache.commons.net.smtp;version="@version@",
18 org.apache.commons.net;version="@version@",
19 org.apache.commons.net.pop3;version="@version@",
20 org.apache.commons.net.util;version="@version@",
21 org.apache.commons.net.telnet;version="@version@",
22 org.apache.commons.net.whois;version="@version@",
23 org.apache.commons.net.chargen;version="@version@",
24 org.apache.commons.net.nntp;version="@version@",
25 org.apache.commons.net.bsd;version="@version@",
26 org.apache.commons.net.time;version="@version@",
27 org.apache.commons.net.daytime;version="@version@",
28 org.apache.commons.net.ftp.parser;version="@version@",
29 org.apache.commons.net.tftp;version="@version@"
30 Tool: Bnd-0.0.238
31 Bundle-Name: Commons Net
32 Bundle-Vendor: The Apache Software Foundation
33 Bundle-Version: @version@
34 Bnd-LastModified: @lastmodified@
35 Bundle-ManifestVersion: 2
36 Bundle-License: http://www.apache.org/licenses/LICENSE-@version@.txt
37 Bundle-Description: A collection of network utilities and protocol imp
38 lementations.
39 Import-Package: javax.net,
40 javax.net.ssl,org.apache.commons.net;version="@version@",
41 org.apache.commons.net.bsd;version="@version@",
42 org.apache.commons.net.chargen;version="@version@",
43 org.apache.commons.net.daytime;version="@version@",
44 org.apache.commons.net.discard;version="@version@",
45 org.apache.commons.net.echo;version="@version@",
46 org.apache.commons.net.finger;version="@version@",
47 org.apache.commons.net.ftp;version="@version@",
48 org.apache.commons.net.ftp.parser;version="@version@",
49 org.apache.commons.net.io;version="@version@",
50 org.apache.commons.net.nntp;version="@version@",
51 org.apache.commons.net.ntp;version="@version@",
52 org.apache.commons.net.pop3;version="@version@",
53 org.apache.commons.net.smtp;version="@version@",
54 org.apache.commons.net.telnet;version="@version@",
55 org.apache.commons.net.tftp;version="@version@",
56 org.apache.commons.net.time;version="@version@",
57 org.apache.commons.net.util;version="@version@",
58 org.apache.commons.net.whois;version="@version@"
59 Bundle-SymbolicName: org.apache.commons.net
60 Bundle-DocURL: http://commons.apache.org/net/
61
0 libcommons-net2-java for Debian
1 ------------------------------
2
3 Commons Net has switch its build process to Maven, but I'm not using Maven
4 here as some components of Maven rely on this library.
5
6 debian/MANIFEST.MF has been extracted from the official commons-net.jar and
7 it may need to be updated for new releases.
8
9 -- Ludovic Claude <ludovic.claude@laposte.net> Thu, 30 Apr 2009 12:05:34 +0100
10
0 javadoc.dir=build/docs/api
1 maven.test.skip=true
2 build.javaVersion=1.5
3
0 libcommons-net2-java (2.0-0ubuntu1~ppa13) jaunty; urgency=low
1
2 * Initial release, split from libcommons-net-java as this is
3 a major version change with API incompatibilities
4
5 -- Ludovic Claude <ludovic.claude@laposte.net> Thu, 30 Apr 2009 12:05:34 +0100
6
0 Source: libcommons-net2-java
1 Section: java
2 Priority: optional
3 Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
4 Uploaders: Ludovic Claude <ludovic.claude@laposte.net>
5 Build-Depends: debhelper (>= 6), cdbs, default-jdk
6 Build-Depends-Indep: ant, ant-optional, maven-ant-helper (>> 4), maven-repo-helper, classpath-doc
7 Standards-Version: 3.8.1
8 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libcommons-net-java
9 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libcommons-net-java/
10 Homepage: http://commons.apache.org/net/
11
12 Package: libcommons-net2-java
13 Architecture: all
14 Depends: ${misc:Depends}
15 Suggests: libcommons-net-java-doc
16 Description: internet protocol suite Java library
17 This is an Internet protocol suite Java library originally developed by
18 ORO, Inc. This version supports Finger, Whois, TFTP, Telnet, POP3, FTP,
19 NNTP, SMTP, and some miscellaneous protocols like Time and Echo as well
20 as BSD R command support. The purpose of the library is to provide
21 fundamental protocol access, not higher-level abstractions. Therefore,
22 some of the design violates object-oriented design principles. Our
23 philosophy is to make the global functionality of a protocal accesible
24 (e.g., TFTP send file and receive file) when possible, but also provide
25 access to the fundamental protocols where applicable so that the
26 programmer may construct his own custom implementations (e.g, the TFTP
27 packet classes and the TFTP packet send and receive methods are
28 exposed). NetComponents was originally a commercial product, but after
29 ORO dissolved, it was continued to be made available for those who
30 found it useful. However, no updates have been made since version
31 1.3.8, released in 1998. Now that certain contract obligations have
32 expired, it is possible to make the source code freely available under
33 the Apache Software License.
34 .
35 This is a part of the Apache Jakarta Project.
36
37 Package: libcommons-net2-java-doc
38 Section: doc
39 Architecture: all
40 Depends: ${misc:Depends}, classpath-doc
41 Suggests: libcommons-net-java
42 Description: internet protocol suite Java library
43 This is an Internet protocol suite Java library originally developed by
44 ORO, Inc. This version supports Finger, Whois, TFTP, Telnet, POP3, FTP,
45 NNTP, SMTP, and some miscellaneous protocols like Time and Echo as well
46 as BSD R command support. The purpose of the library is to provide
47 fundamental protocol access, not higher-level abstractions. Therefore,
48 some of the design violates object-oriented design principles. Our
49 philosophy is to make the global functionality of a protocal accesible
50 (e.g., TFTP send file and receive file) when possible, but also provide
51 access to the fundamental protocols where applicable so that the
52 programmer may construct his own custom implementations (e.g, the TFTP
53 packet classes and the TFTP packet send and receive methods are
54 exposed). NetComponents was originally a commercial product, but after
55 ORO dissolved, it was continued to be made available for those who
56 found it useful. However, no updates have been made since version
57 1.3.8, released in 1998. Now that certain contract obligations have
58 expired, it is possible to make the source code freely available under
59 the Apache Software License.
60 .
61 This is a part of the Apache Jakarta Project.
62 .
63 This package contains the API documentation for libcommons-net-java.
0 This package was debianized by Arnaud Vandyck <avdyk@debian.org> on
1 Tue, 11 May 2004 17:01:26 +0100.
2
3 It was downloaded from http://jakarta.apache.org/commons/net/
4
5 Upstream Authors: Jeffrey D. Brekke <Jeff.Brekke@qg.com>, Steve Cohen
6 <scohen@apache.org>, Bruno D'Avanzo
7 <bruno.davanzo@hp.com>, Daniel F. Savarese <dfs ->
8 apache.org>, Tapan Karecha <tapan@india.hp.com>,
9 Winston Ojeda <Winston.Ojeda@qg.com>
10
11 Copyright: (C) 1997-2009 The Apache Software Foundation
12
13 Licensed under the Apache License, Version 2.0 (the "License");
14 you may not use this file except in compliance with the License.
15 You may obtain a copy of the License at
16
17 http://www.apache.org/licenses/LICENSE-2.0
18
19 Unless required by applicable law or agreed to in writing, software
20 distributed under the License is distributed on an "AS IS" BASIS,
21 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 See the License for the specific language governing permissions and
23 limitations under the License.
24
25 The full text of the license can be found in
26 '/usr/share/common-licenses/Apache-2.0'.
27
0 NOTICE.txt
1
0 Document: libcommons-net2-java
1 Title: Programmer API for Commons Net
2 Author: Apache Commons Net developers
3 Abstract: Jakarta Commons Net implements the client side of many basic
4 Internet protocols.
5 Section: Programming
6
7 Format: HTML
8 Index: /usr/share/doc/libcommons-net2-java-doc/api/index.html
9 Files: /usr/share/doc/libcommons-net2-java-doc/api/*
0 pom.xml --no-parent
0 commons-net commons-net jar s/2\..+/2.x/
1 junit junit jar s/3\..*/3.x/
0 #!/usr/bin/make -f
1
2 # Uncomment this to turn on verbose mode.
3 #export DH_VERBOSE=1
4
5 # This is the debhelper compatibility version to use.
6 #export DH_COMPAT=6
7
8 include /usr/share/cdbs/1/rules/debhelper.mk
9 include /usr/share/cdbs/1/class/ant.mk
10
11 PACKAGE := $(DEB_SOURCE_PACKAGE)
12 VERSION := $(DEB_UPSTREAM_VERSION)
13 JAVA_HOME := /usr/lib/jvm/default-java
14 DEB_JARS := ant-nodeps
15 DEB_ANT_BUILD_TARGET := package javadoc
16 DEB_ANT_BUILDFILE := /usr/share/maven-ant-helper/maven-build.xml
17 DEB_ANT_ARGS := -Dbasedir=$(realpath .) -Dpackage=$(PACKAGE) -Dbin.package=$(PACKAGE) -Dversion=$(VERSION)
18 LAST_MODIFIED := $(shell date +%s%N | cut -c -13)
19
20 makebuilddir/lib$(PACKAGE)-java::
21 install -d src/main/resources/META-INF
22 cat debian/MANIFEST.MF | sed 's/@version@/$(VERSION)/g' | sed 's/@lastmodified@/$(LAST_MODIFIED)/' > src/main/resources/META-INF/MANIFEST.MF
23
24 binary-post-install/$(PACKAGE)::
25 mh_installpoms -p$(PACKAGE)
26 mh_installjar -p$(PACKAGE) -l --usj-name=commons-net2 pom.xml build/commons-net-$(VERSION).jar
27
28 clean::
29 -rm -rf debian/tmp
30
31 get-orig-source:
32 -uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename
33
0 version=2
1 http://www.apache.org/dist/jakarta/commons/net/source/commons-net-([0-9\.]*)-src\.tar\.gz debian uupdate