[Git][java-team/remotetea][master] 8 commits: Build-Depends: s/default-jdk/default-jdk-headless/

Andreas Tille (@tille) gitlab at salsa.debian.org
Tue Oct 21 10:31:04 BST 2025



Andreas Tille pushed to branch master at Debian Java Maintainers / remotetea


Commits:
f27a7a52 by Andreas Tille at 2025-10-20T19:16:03+02:00
Build-Depends: s/default-jdk/default-jdk-headless/

- - - - -
fc8ba0f0 by Andreas Tille at 2025-10-20T19:16:18+02:00
Standards-Version: 4.7.2 (routine-update)

- - - - -
8fd23d42 by Andreas Tille at 2025-10-20T19:16:18+02:00
debhelper-compat 13 (routine-update)

- - - - -
67f8695b by Andreas Tille at 2025-10-20T19:16:37+02:00
Reorder sequence of d/control fields by cme (routine-update)

- - - - -
07e14951 by Andreas Tille at 2025-10-20T19:16:37+02:00
Remove trailing whitespace in debian/changelog (routine-update)

- - - - -
0a7f6c14 by Andreas Tille at 2025-10-20T20:37:56+02:00
d/rules: Remove get-orig-source target

- - - - -
16fbb5e5 by Andreas Tille at 2025-10-21T11:29:30+02:00
Use versioned copyright format URI.

Changes-By: lintian-brush
Fixes: lintian: unversioned-copyright-format-uri
See-also: https://lintian.debian.org/tags/unversioned-copyright-format-uri.html

- - - - -
784ab52a by Andreas Tille at 2025-10-21T11:30:37+02:00
d/watch: version=5

- - - - -


6 changed files:

- debian/changelog
- − debian/compat
- debian/control
- debian/copyright
- debian/rules
- debian/watch


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,17 @@
+remotetea (1.0.7-4) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Build-Depends: s/default-jdk/default-jdk-headless/
+  * Standards-Version: 4.7.2 (routine-update)
+  * debhelper-compat 13 (routine-update)
+  * Reorder sequence of d/control fields by cme (routine-update)
+  * Remove trailing whitespace in debian/changelog (routine-update)
+  * d/rules: Remove get-orig-source target
+  * Use versioned copyright format URI.
+  * d/watch: version=5
+
+ -- Andreas Tille <tille at debian.org>  Mon, 20 Oct 2025 19:13:32 +0200
+
 remotetea (1.0.7-3) unstable; urgency=medium
 
   * Package adopted by the Java Team (Closes: #770595)
@@ -14,7 +28,7 @@ remotetea (1.0.7-2.1) unstable; urgency=low
 
   - debian/patches/add-build-xml.patch: Added build.xml, replacing
     original patch, which appeared to be an auto-generated one.
-  - debian/patches/set-encoding.patch: Fix FTBFS by setting encoding on 
+  - debian/patches/set-encoding.patch: Fix FTBFS by setting encoding on
     javac and javadoc tasks.
 
     (Closes: #678380)


=====================================
debian/compat deleted
=====================================
@@ -1 +0,0 @@
-7


=====================================
debian/control
=====================================
@@ -1,17 +1,25 @@
 Source: remotetea
+Standards-Version: 4.7.2
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders:
+ Emmanuel Bourg <ebourg at apache.org>,
 Section: java
 Priority: optional
-Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
-Uploaders: Emmanuel Bourg <ebourg at apache.org>
-Build-Depends: debhelper (>= 7.0.50), javahelper, default-jdk, ant, maven-repo-helper
-Standards-Version: 3.9.1
-Vcs-Git: git://anonscm.debian.org/pkg-java/remotetea.git
-Vcs-Browser: http://anonscm.debian.org/cgit/pkg-java/remotetea.git
+Build-Depends:
+ debhelper-compat (= 13),
+ javahelper,
+ default-jdk-headless,
+ ant,
+ maven-repo-helper,
+Vcs-Browser: https://salsa.debian.org/java-team/remotetea
+Vcs-Git: https://salsa.debian.org/java-team/remotetea.git
 Homepage: http://remotetea.sourceforge.net
 
 Package: remotetea
 Architecture: all
-Depends: ${java:Depends}, ${misc:Depends}
+Depends:
+ ${java:Depends},
+ ${misc:Depends},
 Description: Sun ONC/RPC support for Java
  This package implements Sun's Open Network Computing Remote Procedure
  Call specification (see RFC 1831, RFC 1832, RFC 1833) in pure Java.


=====================================
debian/copyright
=====================================
@@ -1,4 +1,4 @@
-Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Author: Harald Albrecht <harald at plt.rwth-aachen.de>
 Debianized-By: picca frederic <picca at synchrotron-soleil.fr>
 Debianized-Date: Sat, 18 Nov 2006 18:52:07 +0100.


=====================================
debian/rules
=====================================
@@ -1,10 +1,5 @@
 #!/usr/bin/make -f
 
-PACKAGE = remotetea
-SRC_VERSION := $(shell dpkg-parsechangelog | sed -ne 's/^Version: \(\([0-9]\+\):\)\?\(.*\)-.*/\3/p')
-TARBALL = $(PACKAGE)_$(SRC_VERSION).orig.tar.gz
-.PHONY: get-orig-source
-
 export JAVA_HOME = /usr/lib/jvm/default-java
 
 %:
@@ -21,13 +16,3 @@ override_dh_auto_install:
 override_dh_auto_clean:
 	dh_auto_clean
 	mh_clean
-
-get-orig-source:
-	rm -rf get-orig-source $(TARBALL) remotetea.zip
-	mkdir get-orig-source
-	wget http://sourceforge.net/projects/remotetea/files/remotetea/$(SRC_VERSION)/remotetea-src-$(SRC_VERSION).zip/download -O remotetea.zip
-	unzip remotetea.zip -d get-orig-source
-	mv get-orig-source/remotetea get-orig-source/remotetea-$(SRC_VERSION)
-	GZIP=--best tar czf $(TARBALL) -C get-orig-source remotetea-$(SRC_VERSION)
-	rm -rf get-orig-source remotetea.zip
-	echo "  "$(TARBALL)" created; move it to the right destination to build the package"


=====================================
debian/watch
=====================================
@@ -1,2 +1,4 @@
-version=3
-http://sf.net/remotetea/remotetea-src-(.*)\.zip
+Version: 5
+
+Source: https://sf.net/@PACKAGE@/
+Matching-Pattern: @PACKAGE at -src-@ANY_VERSION@@ARCHIVE_EXT@



View it on GitLab: https://salsa.debian.org/java-team/remotetea/-/compare/655a6d4a389fe4ae452bdb6b33dc494dfc560993...784ab52ade6db477b13e468840edb5bf94e85f3c

-- 
View it on GitLab: https://salsa.debian.org/java-team/remotetea/-/compare/655a6d4a389fe4ae452bdb6b33dc494dfc560993...784ab52ade6db477b13e468840edb5bf94e85f3c
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20251021/cd0c7755/attachment.htm>


More information about the pkg-java-commits mailing list