Tony Mancill pushed to branch master at Debian Java Maintainers / lz4-java


Commits:
158aab8e by tony mancill at 2026-08-30T08:15:48-07:00
Migrate to github.com/yawkat/lz4-java/ as upstream

- - - - -
8bd7b7ec by tony mancill at 2026-08-30T08:28:57-07:00
Repack as +ds to exclude upstream Maven JAR

- - - - -
d735ef83 by tony mancill at 2026-08-30T08:28:57-07:00
Freshen years in d/copyright

- - - - -
75efe5f0 by tony mancill at 2026-08-30T08:30:23-07:00
New upstream version 1.11.2+ds1
- - - - -
a1e282b2 by tony mancill at 2026-08-30T08:30:23-07:00
Update upstream source from tag 'upstream/1.11.2+ds1'

Update to upstream version '1.11.2+ds1'
with Debian dir c65eb1cf6a5a6e8724fae1b685a5efcd6f7e4672
- - - - -
1fd62e38 by tony mancill at 2026-08-30T08:41:27-07:00
Drop ivyversioncorrection.patch; ivy build no longer part of upstream

- - - - -
04a9d120 by tony mancill at 2026-08-30T08:42:12-07:00
Freshen mvel-broken-includes-workaround.patch for new upstream

- - - - -
a512995b by tony mancill at 2026-08-30T08:42:25-07:00
Freshen java8-compatibility.patch

- - - - -
29823c90 by tony mancill at 2026-08-30T08:43:21-07:00
Skip unbundle-native-library.patch

- - - - -
f310728d by tony mancill at 2026-08-30T11:13:25-07:00
Update build system to use maven

- Build using maven-debian-helper
- Add no-git-versioning-extension.patch
- Add no-bnd-manifest.patch
- Add exclude-fuzz-tests.patch
- Enable Maven coordinate relocation for org.lz4:lz4-java
- Statically link arch-specific JNI against lz4
- Update Static-Built-Using
- Enable tests
- Add debian/README.source

- - - - -
5cac618b by tony mancill at 2026-08-30T13:17:36-07:00
Add debian/upstream/metadata

- - - - -
910f855e by tony mancill at 2026-08-30T13:17:36-07:00
Bump Standards-Version to 4.7.4

- - - - -
6f16fb31 by tony mancill at 2026-08-30T13:17:36-07:00
Clean up unused Build-Depends

- - - - -
d497589f by tony mancill at 2026-08-30T13:17:36-07:00
Drop liblz4-jni.lintian-overrides

- - - - -
985d3be9 by tony mancill at 2026-08-30T13:17:36-07:00
Prepare changelog for upload

- - - - -


110 changed files:

- + .clinerules/coding.md
- + .editorconfig
- + .github/renovate.json
- + .github/workflows/build-all-and-publish.yml
- + .github/workflows/docs.yml
- + .github/workflows/test.yml
- .gitignore
- + .mvn/extensions.xml
- + .mvn/maven-git-versioning-extension.xml
- + .mvn/wrapper/maven-wrapper.properties
- − .travis.yml
- README.md
- − build.xml
- + debian/README.source
- debian/changelog
- debian/control
- debian/copyright
- debian/liblz4-java.poms
- − debian/liblz4-jni.lintian-overrides
- + debian/maven.ignoreRules
- + debian/maven.rules
- + debian/patches/exclude-fuzz-tests.patch
- − debian/patches/ivyversioncorrection.patch
- debian/patches/java8-compatibility.patch
- debian/patches/mvel-broken-includes-workaround.patch
- + debian/patches/no-bnd-manifest.patch
- + debian/patches/no-git-versioning-extension.patch
- debian/patches/series
- debian/rules
- + debian/upstream/metadata
- debian/watch
- + docs/_redirects
- + docs/common.css
- + docs/header-javadoc.html.jinja
- + docs/header.html.jinja
- + docs/index.html.jinja
- + docs/javadoc.css
- + docs/justfile
- + docs/markdown.css
- − ivy-pure-java.xml
- − ivy.xml
- lz4-java.bnd
- − lz4-pure-java.bnd
- + mvnw
- + mvnw.cmd
- + pom.xml
- + scripts/fuzz_runner.py
- − src/build/pom-pure-java.template
- − src/build/pom.template
- src/build/source_templates/compress.template
- src/build/source_templates/compress_hc.template
- src/build/source_templates/compressor.template
- src/build/source_templates/compressor_hc.template
- src/build/source_templates/decompress.template
- src/build/source_templates/decompressor.template
- src/build/source_templates/xxhash32.template
- src/build/source_templates/xxhash32_hash.template
- src/build/source_templates/xxhash64.template
- src/build/source_templates/xxhash64_hash.template
- src/build/source_templates/xxhash64_streaming.template
- src/java-unsafe/net/jpountz/lz4/LZ4UnsafeUtils.java
- src/java-unsafe/net/jpountz/util/UnsafeUtils.java
- + src/java/net/jpountz/lz4/AbstractLZ4JNIFastResetCompressor.java
- src/java/net/jpountz/lz4/LZ4BlockInputStream.java
- src/java/net/jpountz/lz4/LZ4BlockOutputStream.java
- src/java/net/jpountz/lz4/LZ4ByteBufferUtils.java
- src/java/net/jpountz/lz4/LZ4Compressor.java
- src/java/net/jpountz/lz4/LZ4CompressorWithLength.java
- src/java/net/jpountz/lz4/LZ4Constants.java
- src/java/net/jpountz/lz4/LZ4DecompressorWithLength.java
- src/java/net/jpountz/lz4/LZ4Factory.java
- src/java/net/jpountz/lz4/LZ4FastDecompressor.java
- src/java/net/jpountz/lz4/LZ4FrameInputStream.java
- src/java/net/jpountz/lz4/LZ4FrameOutputStream.java
- src/java/net/jpountz/lz4/LZ4JNI.java
- src/java/net/jpountz/lz4/LZ4JNIFastDecompressor.java
- + src/java/net/jpountz/lz4/LZ4JNIFastResetCompressor.java
- + src/java/net/jpountz/lz4/LZ4JNIHCFastResetCompressor.java
- src/java/net/jpountz/lz4/LZ4SafeDecompressor.java
- src/java/net/jpountz/lz4/LZ4SafeUtils.java
- src/java/net/jpountz/lz4/LZ4Utils.java
- src/java/net/jpountz/util/ByteBufferUtils.java
- src/java/net/jpountz/util/Native.java
- src/java/net/jpountz/util/SafeUtils.java
- src/java/net/jpountz/util/Utils.java
- src/java/net/jpountz/util/package.html
- src/java/net/jpountz/xxhash/StreamingXXHash32JNI.java
- src/java/net/jpountz/xxhash/StreamingXXHash64JNI.java
- src/java/net/jpountz/xxhash/XXHash32.java
- src/java/net/jpountz/xxhash/XXHash32JNI.java
- src/java/net/jpountz/xxhash/XXHash64.java
- src/java/net/jpountz/xxhash/XXHash64JNI.java
- src/java/net/jpountz/xxhash/XXHashFactory.java
- src/jni/net_jpountz_lz4_LZ4JNI.c
- src/jni/net_jpountz_xxhash_XXHashJNI.c
- + src/test/net/jpountz/fuzz/LZ4CompressorTest.java
- + src/test/net/jpountz/fuzz/LZ4DecompressorTest.java
- + src/test/net/jpountz/fuzz/XXHash32Test.java
- + src/test/net/jpountz/fuzz/XXHash64Test.java
- src/test/net/jpountz/lz4/AbstractLZ4Test.java
- src/test/net/jpountz/lz4/Instances.java
- src/test/net/jpountz/lz4/LZ4BlockStreamingTest.java
- src/test/net/jpountz/lz4/LZ4FactoryTest.java
- + src/test/net/jpountz/lz4/LZ4FastResetTest.java
- src/test/net/jpountz/lz4/LZ4FrameIOStreamTest.java
- src/test/net/jpountz/lz4/LZ4Test.java
- + src/test/net/jpountz/lz4/OutOfBoundsTest.java
- + src/test/net/jpountz/lz4/UtilsTest.java
- src/test/net/jpountz/xxhash/XXHash32Test.java
- src/test/net/jpountz/xxhash/XXHash64Test.java


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/java-team/lz4-java/-/compare/cfa35263d05451ff547dc60a9975847cabba219b...985d3be9d4896a07d869a6cb405e5f9c845d71bb

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/lz4-java/-/compare/cfa35263d05451ff547dc60a9975847cabba219b...985d3be9d4896a07d869a6cb405e5f9c845d71bb
You're receiving this email because of your account on salsa.debian.org. Manage 
all notifications: https://salsa.debian.org/-/profile/notifications | Help: 
https://salsa.debian.org/help


_______________________________________________
pkg-java-commits mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to