[Git][java-team/libdb-je-java][master] 3 commits: Update changelog

Andreas Tille (@tille) gitlab at salsa.debian.org
Mon Feb 3 20:51:20 GMT 2025



Andreas Tille pushed to branch master at Debian Java Maintainers / libdb-je-java


Commits:
f92849a9 by Andreas Tille at 2025-02-03T21:33:29+01:00
Update changelog

- - - - -
a2daa9d5 by Andreas Tille at 2025-02-03T21:50:29+01:00
DEP5

- - - - -
2e062225 by Andreas Tille at 2025-02-03T21:51:08+01:00
Exclude files via Files-Excluded

- - - - -


5 changed files:

- − debian/README.Debian-source
- debian/changelog
- debian/copyright
- − debian/orig-tar.sh
- debian/watch


Changes:

=====================================
debian/README.Debian-source deleted
=====================================
@@ -1,13 +0,0 @@
-libdb-je-java
-=============
-
-The upstream supplied source package contains binary jar files.
-Currently no clean source distribution exists. Therefore, the upstream
-sources were modified to comply with the Debian Free Software
-Guidelines.
-
-Use the rules/get-orig-source target to create the orig.tar.gz.
-For more details on repackaging of upstream sources please see the 
-debian/orig-tar.sh file.
-
- -- Varun Hiremath <varunhiremath at gmail.com>, Sun,  4 Nov 2007 11:44:40 +0530


=====================================
debian/changelog
=====================================
@@ -1,13 +1,21 @@
 libdb-je-java (3.3.98-3) UNRELEASED; urgency=medium
 
+  * Team upload
+
+  [ Debian Janitor ]
   * Trim trailing whitespace.
   * Bump debhelper from old 10 to 13.
   * Set debhelper-compat version in Build-Depends.
   * Update Vcs-* headers from URL redirect.
   * Use canonical URL in Vcs-Git.
   * Remove unnecessary get-orig-source-target.
+  * Apply multi-arch hints. + libdb-je-java: Add Multi-Arch: foreign.
+
+  [ Andreas Tille ]
+  * d/copyright: DEP5
+  * Exclude files via Files-Excluded
 
- -- Debian Janitor <janitor at jelmer.uk>  Thu, 22 Dec 2022 03:18:16 -0000
+ -- Andreas Tille <tille at debian.org>  Mon, 03 Feb 2025 21:32:52 +0100
 
 libdb-je-java (3.3.98-2) unstable; urgency=medium
 


=====================================
debian/copyright
=====================================
@@ -1,55 +1,24 @@
-This package was debianized by Varun Hiremath <varunhiremath at gmail.com> on
-Tue, 24 Apr 2007 17:19:10 +0530.
-
-It was downloaded from
-http://www.oracle.com/technology/software/products/berkeley-db/index.html
-
-Upstream Authors: Oracle. All rights reserved.
-
-Copyright: © 2002,2007 Oracle.  All rights reserved.
-
-License:
-    Redistribution and use in source and binary forms, with or without
-    modification, are permitted provided that the following conditions
-    are met:
-    1. Redistributions of source code must retain the above copyright
-       notice, this list of conditions and the following disclaimer.
-    2. Redistributions in binary form must reproduce the above copyright
-       notice, this list of conditions and the following disclaimer in the
-       documentation and/or other materials provided with the distribution.
-    3. Redistributions in any form must be accompanied by information on
-       how to obtain complete source code for the DB software and any
-       accompanying software that uses the DB software.  The source code
-       must either be included in the distribution or be available for no
-       more than the cost of distribution plus a nominal fee, and must be
-       freely redistributable under reasonable conditions.  For an
-       executable file, complete source code means the source code for all
-       modules it contains.  It does not include source code for modules or
-       files that typically accompany the major components of the operating
-       system on which the executable file runs.
-
-    THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR
-    IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-    WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
-    NON-INFRINGEMENT, ARE DISCLAIMED.  IN NO EVENT SHALL ORACLE BE LIABLE
-    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-    CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
-    BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-    WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
-    OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
-    IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
--------
-
-The files below src/com/sleepycat/asm/ have the following
-copyright/license:
-
-ASM: a very small and fast Java bytecode manipulation framework
-
-Copyright: (c) 2000-2005 INRIA, France Telecom.  All rights reserved.
-
-License:
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: <pkg>
+Source: https://www.oracle.com/database/technologies/related/berkeleydb-downloads.html#
+Files-Excluded: */*.jar
+                */docs/*
+
+Files: *
+Copyright: 2002,2007 Oracle
+License: BSD-3-clause
+
+Files: src/com/sleepycat/asm/*
+Copyright: 2000-2005 INRIA, France Telecom.  All rights reserved.
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2007 Varun Hiremath <varunhiremath at gmail.com>
+License: GPL
+ On Debian systems you can find the full text of the GNU Public
+ License at `/usr/share/common-licenses/GPL'.
+
+License: BSD-3-clause
     Redistribution and use in source and binary forms, with or without
     modification, are permitted provided that the following conditions
     are met:
@@ -73,6 +42,3 @@ License:
     CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     THE POSSIBILITY OF SUCH DAMAGE.
-
-The Debian packaging is © 2007, Varun Hiremath <varunhiremath at gmail.com> and
-is licensed under the GPL, see `/usr/share/common-licenses/GPL'.


=====================================
debian/orig-tar.sh deleted
=====================================
@@ -1,18 +0,0 @@
-#!/bin/sh -e
-
-# $2 = version, $3 file
-TAR=$3
-DIR=libdb-je-java-$2.orig
-
-# clean up the upstream tarball
-tar -x -z -f $TAR
-mv je-$2 $DIR
-GZIP=--best tar -c -z -f $TAR --exclude '*.jar' --exclude '*/docs/*' $DIR
-rm -rf $DIR
-
-# 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,4 +1,5 @@
-version=3
-http://www.oracle.com/technetwork/database/berkeleydb/downloads/index-098622.html \
-  http://download.oracle.com/berkeley-db/je-(.*).tar.gz \
-  debian debian/orig-tar.sh
+version=4
+
+opts="repacksuffix=+dfsg,dversionmangle=auto" \
+https://www.oracle.com/database/technologies/related/berkeleydb-downloads.html \
+  http://download.oracle.com/berkeley-db/je-(.*).tar.gz



View it on GitLab: https://salsa.debian.org/java-team/libdb-je-java/-/compare/9a99fc665beb89d8755ef20cfa9109fedbfbca61...2e0622257b6e755b48cb50b166cacca9028bca5e

-- 
View it on GitLab: https://salsa.debian.org/java-team/libdb-je-java/-/compare/9a99fc665beb89d8755ef20cfa9109fedbfbca61...2e0622257b6e755b48cb50b166cacca9028bca5e
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/20250203/20b57981/attachment.htm>


More information about the pkg-java-commits mailing list