[Git][java-team/jamm] Pushed new tag debian/0.4.0-2

2023-11-21 Thread Tony Mancill (@tmancill)


Tony Mancill pushed new tag debian/0.4.0-2 at Debian Java Maintainers / jamm

-- 
View it on GitLab: https://salsa.debian.org/java-team/jamm/-/tree/debian/0.4.0-2
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits


[Git][java-team/jamm][master] 7 commits: Set Rules-Requires-Root: no in debian/control

2023-11-21 Thread Tony Mancill (@tmancill)


Tony Mancill pushed to branch master at Debian Java Maintainers / jamm


Commits:
98b5b9fe by tony mancill at 2023-11-21T21:19:55-08:00
Set Rules-Requires-Root: no in debian/control

- - - - -
06458abd by tony mancill at 2023-11-21T21:21:32-08:00
Use debhelper-compat 13

- - - - -
3b9292c8 by tony mancill at 2023-11-21T21:24:57-08:00
Combine Build-Depends and Build-Depends-Indep

- - - - -
33c2fcad by tony mancill at 2023-11-21T21:25:20-08:00
Bump Standards-Version to 4.6.2

- - - - -
1f9870ca by tony mancill at 2023-11-21T21:27:20-08:00
Update debian/watch to version 4

- - - - -
cf248a61 by tony mancill at 2023-11-21T21:35:36-08:00
tweak patch description

Gbp-Dch: ignore

- - - - -
0e9f317c by tony mancill at 2023-11-21T21:35:36-08:00
Prepare changelog for upload

- - - - -


5 changed files:

- debian/changelog
- − debian/compat
- debian/control
- debian/patches/01-disable-reference-test.patch
- debian/watch


Changes:

=
debian/changelog
=
@@ -1,10 +1,19 @@
-jamm (0.4.0-2) UNRELEASED; urgency=medium
+jamm (0.4.0-2) unstable; urgency=medium
 
+  [ Vladimir Petko ]
+  * Team upload.
   * d/01-disable-reference-test.patch: disable
-testIgnoreNonStrongReferences, that fails due to the optimisation of
+testIgnoreNonStrongReferences, which fails due to the optimisation of
 ReferenceQueue<> in Java 21 (Closes: #1053026).
 
- -- Vladimir Petko   Wed, 22 Nov 2023 13:45:48 
+1300
+  [ tony mancill ]
+  * Set Rules-Requires-Root: no in debian/control
+  * Use debhelper-compat 13
+  * Combine Build-Depends and Build-Depends-Indep
+  * Bump Standards-Version to 4.6.2
+  * Update debian/watch to version 4
+
+ -- tony mancill   Tue, 21 Nov 2023 21:27:26 -0800
 
 jamm (0.4.0-1) unstable; urgency=medium
 


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


=
debian/control
=
@@ -5,17 +5,17 @@ Maintainer: Debian Java Maintainers 
,
 Build-Depends:
- debhelper (>= 12),
+ debhelper-compat (= 13),
  default-jdk,
- maven-debian-helper (>= 2.1),
-Build-Depends-Indep:
  default-jdk-doc,
  junit4 (>= 4.11),
  libmaven-javadoc-plugin-java,
-Standards-Version: 4.4.0
+ maven-debian-helper (>= 2.1),
+Standards-Version: 4.6.2
 Vcs-Git: https://salsa.debian.org/java-team/jamm.git
 Vcs-Browser: https://salsa.debian.org/java-team/jamm
 Homepage: https://github.com/jbellis/jamm/
+Rules-Requires-Root: no
 
 Package: libjamm-java
 Architecture: all


=
debian/patches/01-disable-reference-test.patch
=
@@ -1,4 +1,4 @@
-Description: Disable testIgnoreNonStrongReferences test upstream supports Java 
21
+Description: Disable testIgnoreNonStrongReferences test until upstream 
supports Java 21
  Upstream does not support Java 21. This patch disables the test that fails
  due to optimisations of the memory usage in ReferenceQueue<> in Java 21.
 Author: Vladimir Petko 


=
debian/watch
=
@@ -1,3 +1,3 @@
-version=3
+version=4
 opts="repack,compression=xz" \
 https://github.com/jbellis/jamm/tags .*/(?:.*?)([\d\.]+)\.tar\.gz



View it on GitLab: 
https://salsa.debian.org/java-team/jamm/-/compare/bd4150b3731c1db7bfb2d357fa6a430d4b1ce4f9...0e9f317c776ce70fa829fd2e3cd0123b857bc8fd

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/jamm/-/compare/bd4150b3731c1db7bfb2d357fa6a430d4b1ce4f9...0e9f317c776ce70fa829fd2e3cd0123b857bc8fd
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits


[Git][java-team/jamm][master] 3 commits: disable testIgnoreNonStrongReferences until upstream supports Java 21

2023-11-21 Thread Tony Mancill (@tmancill)


Tony Mancill pushed to branch master at Debian Java Maintainers / jamm


Commits:
45b2841e by Vladimir Petko at 2023-11-22T13:44:00+13:00
disable testIgnoreNonStrongReferences until upstream supports Java 21

- - - - -
f9da3891 by Vladimir Petko at 2023-11-22T13:46:55+13:00
changelog

- - - - -
bd4150b3 by Tony Mancill at 2023-11-22T05:07:26+00:00
Merge branch master into master

Resolve Java 21 FTBFS

See merge request java-team/jamm!2
- - - - -


3 changed files:

- debian/changelog
- + debian/patches/01-disable-reference-test.patch
- + debian/patches/series


Changes:

=
debian/changelog
=
@@ -1,3 +1,11 @@
+jamm (0.4.0-2) UNRELEASED; urgency=medium
+
+  * d/01-disable-reference-test.patch: disable
+testIgnoreNonStrongReferences, that fails due to the optimisation of
+ReferenceQueue<> in Java 21 (Closes: #1053026).
+
+ -- Vladimir Petko   Wed, 22 Nov 2023 13:45:48 
+1300
+
 jamm (0.4.0-1) unstable; urgency=medium
 
   * New upstream version 0.4.0


=
debian/patches/01-disable-reference-test.patch
=
@@ -0,0 +1,17 @@
+Description: Disable testIgnoreNonStrongReferences test upstream supports Java 
21
+ Upstream does not support Java 21. This patch disables the test that fails
+ due to optimisations of the memory usage in ReferenceQueue<> in Java 21.
+Author: Vladimir Petko 
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1053026
+Forwarded: not-needed
+Last-Update: 2023-11-22
+--- a/test/org/github/jamm/MemoryMeterTest.java
 b/test/org/github/jamm/MemoryMeterTest.java
+@@ -135,7 +135,6 @@
+ assertEquals(meter.measure(withString) + meter.measure(1), 
meter.measureDeep(withString));
+ }
+ 
+-@Test
+ public void testIgnoreNonStrongReferences() throws InterruptedException {
+ // The Reference fields 'next' and 'discovered' are used by 
'ReferenceQueue' instances and are not part of what
+ // we want to measure. The 'queue' field is either a singleton 
'ReferenceQueue.NULL' or a provided queue that user hold a reference to.


=
debian/patches/series
=
@@ -0,0 +1 @@
+01-disable-reference-test.patch



View it on GitLab: 
https://salsa.debian.org/java-team/jamm/-/compare/3b3fe18656d1f3fa27c2b13f78f7b090e4d473bf...bd4150b3731c1db7bfb2d357fa6a430d4b1ce4f9

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/jamm/-/compare/3b3fe18656d1f3fa27c2b13f78f7b090e4d473bf...bd4150b3731c1db7bfb2d357fa6a430d4b1ce4f9
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits


[Git][java-team/libpostgresql-jdbc-java] Pushed new tag upstream/42.7.0

2023-11-21 Thread Christoph Berg (@myon)


Christoph Berg pushed new tag upstream/42.7.0 at Debian Java Maintainers / 
libpostgresql-jdbc-java

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/libpostgresql-jdbc-java/-/tree/upstream/42.7.0
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits


[Git][java-team/libpostgresql-jdbc-java] Pushed new tag debian/42.7.0-1

2023-11-21 Thread Christoph Berg (@myon)


Christoph Berg pushed new tag debian/42.7.0-1 at Debian Java Maintainers / 
libpostgresql-jdbc-java

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/libpostgresql-jdbc-java/-/tree/debian/42.7.0-1
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits


[Git][java-team/libpostgresql-jdbc-java][master] 3 commits: New upstream version 42.7.0

2023-11-21 Thread Christoph Berg (@myon)


Christoph Berg pushed to branch master at Debian Java Maintainers / 
libpostgresql-jdbc-java


Commits:
fe521aac by Christoph Berg at 2023-11-21T10:31:48+01:00
New upstream version 42.7.0
- - - - -
e5bd8dbc by Christoph Berg at 2023-11-21T10:31:50+01:00
Update upstream source from tag upstream/42.7.0

Update to upstream version 42.7.0
with Debian dir 15f073b1ac4e94c086782f09165df4a3967d
- - - - -
e1a1e4e5 by Christoph Berg at 2023-11-21T09:36:13+00:00
New upstream version 42.7.0.

- - - - -


30 changed files:

- debian/changelog
- debian/patches/missing-test-deps
- pom.xml
- src/main/java/org/postgresql/PGProperty.java
- src/main/java/org/postgresql/core/Parser.java
- src/main/java/org/postgresql/core/SqlCommandType.java
- src/main/java/org/postgresql/core/v3/ConnectionFactoryImpl.java
- src/main/java/org/postgresql/core/v3/QueryExecutorImpl.java
- src/main/java/org/postgresql/core/v3/SimpleParameterList.java
- src/main/java/org/postgresql/core/v3/adaptivefetch/AdaptiveFetchCache.java
- src/main/java/org/postgresql/core/v3/replication/V3PGReplicationStream.java
- src/main/java/org/postgresql/ds/common/BaseDataSource.java
- src/main/java/org/postgresql/geometric/PGpoint.java
- src/main/java/org/postgresql/jdbc/BatchResultHandler.java
- src/main/java/org/postgresql/jdbc/PgDatabaseMetaData.java
- src/main/java/org/postgresql/jdbc/PgResultSet.java
- src/main/java/org/postgresql/jdbc/PgStatement.java
- src/main/java/org/postgresql/jdbc/ResultWrapper.java
- src/main/java/org/postgresql/jdbc/TypeInfoCache.java
- src/main/java/org/postgresql/util/DriverInfo.java
- + src/main/java/org/postgresql/util/NumberParser.java
- src/main/java/org/postgresql/xa/PGXAConnection.java
- src/main/resources/META-INF/MANIFEST.MF
- src/test/java/org/postgresql/core/ParserTest.java
- src/test/java/org/postgresql/jdbc/BitFieldTest.java
- src/test/java/org/postgresql/test/TestUtil.java
- src/test/java/org/postgresql/test/jdbc2/ArrayTest.java
- src/test/java/org/postgresql/test/jdbc2/DatabaseMetaDataTest.java
- + 
src/test/java/org/postgresql/test/jdbc2/DatabaseMetaDataTransactionIsolationTest.java
- + src/test/java/org/postgresql/test/jdbc2/PreparedStatementWithSetTest.java


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/java-team/libpostgresql-jdbc-java/-/compare/b8a5630ec6713f8c73afda3d534d5501c1644a8b...e1a1e4e54e7a9a7e086beb4bc1e407e74afb76e8

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/libpostgresql-jdbc-java/-/compare/b8a5630ec6713f8c73afda3d534d5501c1644a8b...e1a1e4e54e7a9a7e086beb4bc1e407e74afb76e8
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits


[Git][java-team/libpostgresql-jdbc-java][upstream] New upstream version 42.7.0

2023-11-21 Thread Christoph Berg (@myon)


Christoph Berg pushed to branch upstream at Debian Java Maintainers / 
libpostgresql-jdbc-java


Commits:
fe521aac by Christoph Berg at 2023-11-21T10:31:48+01:00
New upstream version 42.7.0
- - - - -


30 changed files:

- pom.xml
- src/main/java/org/postgresql/PGProperty.java
- src/main/java/org/postgresql/core/Parser.java
- src/main/java/org/postgresql/core/SqlCommandType.java
- src/main/java/org/postgresql/core/v3/ConnectionFactoryImpl.java
- src/main/java/org/postgresql/core/v3/QueryExecutorImpl.java
- src/main/java/org/postgresql/core/v3/SimpleParameterList.java
- src/main/java/org/postgresql/core/v3/adaptivefetch/AdaptiveFetchCache.java
- src/main/java/org/postgresql/core/v3/replication/V3PGReplicationStream.java
- src/main/java/org/postgresql/ds/common/BaseDataSource.java
- src/main/java/org/postgresql/geometric/PGpoint.java
- src/main/java/org/postgresql/jdbc/BatchResultHandler.java
- src/main/java/org/postgresql/jdbc/PgDatabaseMetaData.java
- src/main/java/org/postgresql/jdbc/PgResultSet.java
- src/main/java/org/postgresql/jdbc/PgStatement.java
- src/main/java/org/postgresql/jdbc/ResultWrapper.java
- src/main/java/org/postgresql/jdbc/TypeInfoCache.java
- src/main/java/org/postgresql/util/DriverInfo.java
- + src/main/java/org/postgresql/util/NumberParser.java
- src/main/java/org/postgresql/xa/PGXAConnection.java
- src/main/resources/META-INF/MANIFEST.MF
- src/test/java/org/postgresql/core/ParserTest.java
- src/test/java/org/postgresql/jdbc/BitFieldTest.java
- src/test/java/org/postgresql/test/TestUtil.java
- src/test/java/org/postgresql/test/jdbc2/ArrayTest.java
- src/test/java/org/postgresql/test/jdbc2/DatabaseMetaDataTest.java
- + 
src/test/java/org/postgresql/test/jdbc2/DatabaseMetaDataTransactionIsolationTest.java
- + src/test/java/org/postgresql/test/jdbc2/PreparedStatementWithSetTest.java
- src/test/java/org/postgresql/test/jdbc2/RefCursorFetchTest.java
- src/test/java/org/postgresql/test/jdbc2/StatementTest.java


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/java-team/libpostgresql-jdbc-java/-/commit/fe521aac1c68e67c59ec665988f2618a968e007b

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/libpostgresql-jdbc-java/-/commit/fe521aac1c68e67c59ec665988f2618a968e007b
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits


[Git][java-team/libpostgresql-jdbc-java][pristine-tar] pristine-tar data for libpgjava_42.7.0.orig.tar.gz

2023-11-21 Thread Christoph Berg (@myon)


Christoph Berg pushed to branch pristine-tar at Debian Java Maintainers / 
libpostgresql-jdbc-java


Commits:
4ef7b69e by Christoph Berg at 2023-11-21T10:31:50+01:00
pristine-tar data for libpgjava_42.7.0.orig.tar.gz

- - - - -


2 changed files:

- + libpgjava_42.7.0.orig.tar.gz.delta
- + libpgjava_42.7.0.orig.tar.gz.id


Changes:

=
libpgjava_42.7.0.orig.tar.gz.delta
=
Binary files /dev/null and b/libpgjava_42.7.0.orig.tar.gz.delta differ


=
libpgjava_42.7.0.orig.tar.gz.id
=
@@ -0,0 +1 @@
+bf70339393204ee5afe511b531db859a0d1a1298



View it on GitLab: 
https://salsa.debian.org/java-team/libpostgresql-jdbc-java/-/commit/4ef7b69e1e522a4bd4422753708747a1eea9a0c9

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/libpostgresql-jdbc-java/-/commit/4ef7b69e1e522a4bd4422753708747a1eea9a0c9
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits


[Git][java-team/jxplorer] Pushed new tag debian/3.3.2+dfsg-7

2023-11-21 Thread Emmanuel Bourg (@ebourg)


Emmanuel Bourg pushed new tag debian/3.3.2+dfsg-7 at Debian Java Maintainers / 
jxplorer

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/jxplorer/-/tree/debian/3.3.2+dfsg-7
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits