[Git][java-team/libxbean-java][master] 5 commits: Removed the -java-doc package

Emmanuel Bourg (@ebourg) gitlab at salsa.debian.org
Mon Oct 28 08:48:35 GMT 2024



Emmanuel Bourg pushed to branch master at Debian Java Maintainers / libxbean-java


Commits:
573cafb7 by Emmanuel Bourg at 2024-10-28T09:41:45+01:00
Removed the -java-doc package

- - - - -
53dcb545 by Emmanuel Bourg at 2024-10-28T09:41:50+01:00
Standards-Version updated to 4.7.0

- - - - -
e0574668 by Emmanuel Bourg at 2024-10-28T09:41:58+01:00
Switch to debhelper level 13

- - - - -
6b14a835 by Emmanuel Bourg at 2024-10-28T09:46:00+01:00
Track and download the new releases from GitHub

- - - - -
1fe3abf5 by Emmanuel Bourg at 2024-10-28T09:48:19+01:00
Upload to unstable

- - - - -


8 changed files:

- debian/changelog
- − debian/compat
- debian/control
- debian/copyright
- − debian/libxbean-java-doc.doc-base
- − debian/libxbean-java-doc.install
- − debian/orig-tar.sh
- debian/watch


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,12 @@
+libxbean-java (4.5-9) unstable; urgency=medium
+
+  * Removed the -java-doc package
+  * Standards-Version updated to 4.7.0
+  * Switch to debhelper level 13
+  * Track and download the new releases from GitHub
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Mon, 28 Oct 2024 09:48:13 +0100
+
 libxbean-java (4.5-8) unstable; urgency=medium
 
   * Team upload.


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


=====================================
debian/control
=====================================
@@ -7,7 +7,7 @@ Uploaders:
  Emmanuel Bourg <ebourg at apache.org>
 Build-Depends:
  ant,
- debhelper (>= 11),
+ debhelper-compat (= 13),
  default-jdk,
  junit4,
  libasm-java (>= 5.0),
@@ -18,7 +18,6 @@ Build-Depends:
  libmaven-antrun-plugin-java,
  libmaven-bundle-plugin-java,
  libmaven-install-plugin-java,
- libmaven-javadoc-plugin-java,
  libmaven-plugin-tools-java (>= 2.8),
  libmaven-shade-plugin-java,
  libmaven3-core-java,
@@ -31,7 +30,7 @@ Build-Depends:
  libspring-core-java,
  libspring-web-java,
  maven-debian-helper (>= 2.2)
-Standards-Version: 4.2.0
+Standards-Version: 4.7.0
 Vcs-Git: https://salsa.debian.org/java-team/libxbean-java.git
 Vcs-Browser: https://salsa.debian.org/java-team/libxbean-java
 Homepage: http://geronimo.apache.org/xbean/
@@ -39,7 +38,7 @@ Homepage: http://geronimo.apache.org/xbean/
 Package: libxbean-java
 Architecture: all
 Depends: ${misc:Depends}, ${maven:Depends}, libxbean-reflect-java
-Suggests: ${maven:OptionalDepends}, libxbean-java-doc
+Suggests: ${maven:OptionalDepends}
 Description: plugin based Java application server
  The goal of XBean project is to created a plugin based server analogous to
  Eclipse being a plugin based IDE. XBean will be able to discover, download and
@@ -64,17 +63,3 @@ Description: plugin based Java application server (xbean-reflect)
  .
  This package contains the xbean-reflect module which provides very flexible
  ways to create objects and graphs of objects for DI frameworks.
-
-Package: libxbean-java-doc
-Section: doc
-Architecture: all
-Depends: ${misc:Depends}
-Description: API documentation for XBean
- The goal of XBean project is to created a plugin based server analogous to
- Eclipse being a plugin based IDE. XBean will be able to discover, download and
- install server plugins from an Internet based repository. In addition, it
- include support for multiple IoC systems, support for running with no IoC
- system, JMX without JMX code, lifecycle and class loader management, and a rock
- solid Spring integration.
- .
- This package contains the API documentation for libxbean-java


=====================================
debian/copyright
=====================================
@@ -1,6 +1,6 @@
 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: XBean
-Source: http://svn.apache.org/repos/asf/geronimo/xbean/
+Source: https://github.com/apache/geronimo-xbean
 
 Files: *
 Copyright: 2005-2015, The Apache Software Foundation


=====================================
debian/libxbean-java-doc.doc-base deleted
=====================================
@@ -1,11 +0,0 @@
-Document: libxbean-java
-Title: Programmer API for XBean
-Author: Apache Commons Lang developers
-Abstract: The goal of XBean project is to created a plugin based server analogous to
- Eclipse being a plugin based IDE. XBean will be able to discover, download and
- install server plugins from an Internet based repository.
-Section: Programming
-
-Format: HTML
-Index: /usr/share/doc/libxbean-java/api/index.html
-Files: /usr/share/doc/libxbean-java/api/*


=====================================
debian/libxbean-java-doc.install deleted
=====================================
@@ -1,2 +0,0 @@
-target/site/apidocs/*  /usr/share/doc/libxbean-java/api/
-NOTICE                 /usr/share/doc/libxbean-java/


=====================================
debian/orig-tar.sh deleted
=====================================
@@ -1,16 +0,0 @@
-#!/bin/sh -e
-
-TAR=../libxbean-java_$2.orig.tar.xz
-DIR=xbean-$2
-TAG=xbean-$2
-
-svn export http://svn.apache.org/repos/asf/geronimo/xbean/tags/$TAG $DIR
-XZ_OPT=--best tar -c -J -f $TAR $DIR
-rm -rf $DIR ../$TAG $3
-
-# move to directory 'tarballs'
-if [ -r .svn/deb-layout ]; then
-  . .svn/deb-layout
-  mv $TAR $origDir
-  echo "moved $TAR to $origDir"
-fi


=====================================
debian/watch
=====================================
@@ -1,3 +1,3 @@
-version=3
-http://svn.apache.org/repos/asf/geronimo/xbean/tags/ xbean-(.*)/ \
-  debian debian/orig-tar.sh
+version=4
+opts="mode=git" \
+https://github.com/apache/geronimo-xbean refs/tags/xbean-(.*)



View it on GitLab: https://salsa.debian.org/java-team/libxbean-java/-/compare/0cee1a6424363ba02bd86cabf5ff818351941e1b...1fe3abf5cf6c3eeee0d6c1b4ca90a2875361cd17

-- 
View it on GitLab: https://salsa.debian.org/java-team/libxbean-java/-/compare/0cee1a6424363ba02bd86cabf5ff818351941e1b...1fe3abf5cf6c3eeee0d6c1b4ca90a2875361cd17
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/20241028/fd7f340d/attachment.htm>


More information about the pkg-java-commits mailing list