Antonio Rojas pushed to branch main at Arch Linux / Packaging / Packages / 
java-commons-lang


Commits:
02c98f9a by Antonio Rojas at 2023-12-26T10:37:18+01:00
upgpkg: 3.14.0-1: Update to 3.14.0

- - - - -


3 changed files:

- .SRCINFO
- PKGBUILD
- − java-commons-lang-3.10_improve-reproducibility-of-generated-JARs.patch


Changes:

=====================================
.SRCINFO
=====================================
@@ -1,20 +1,18 @@
 pkgbase = java-commons-lang
        pkgdesc = A host of helper utilities for the java.lang API
-       pkgver = 3.13.0
-       pkgrel = 2
+       pkgver = 3.14.0
+       pkgrel = 1
        url = https://commons.apache.org/proper/commons-lang/
        arch = any
        license = APACHE
-       makedepends = java-environment=17
+       makedepends = java-environment
        makedepends = maven
        depends = java-runtime-headless
-       source = 
https://archive.apache.org/dist/commons/lang/source/commons-lang3-3.13.0-src.tar.gz
-       source = 
https://archive.apache.org/dist/commons/lang/source/commons-lang3-3.13.0-src.tar.gz.asc
-       source = skip-broken-locales.patch
+       source = 
https://archive.apache.org/dist/commons/lang/source/commons-lang3-3.14.0-src.tar.gz
+       source = 
https://archive.apache.org/dist/commons/lang/source/commons-lang3-3.14.0-src.tar.gz.asc
        validpgpkeys = B6E73D84EA4FCC47166087253FAAD2CD5ECBB314
        validpgpkeys = 2DB4F1EF0FA761ECC4EA935C86FDC7E2A11262CB
-       sha512sums = 
6fca0ce86aea84458021360bac3f6775135a1a5c1826194921e2d4ead7c12f6ac560e7c3fc240112f862aaee24be8754c37dd867f45e9449cde4a388018d8691
+       sha512sums = 
1ee4176c3588c11594a79f416a1f34b063cddb10c2124a37640fee48e5d8135091573002b6bf1eda5a60a324c1125665dadc93f9bfda32c9270c35113b6e1bea
        sha512sums = SKIP
-       sha512sums = 
38d5f2ed62af26e0d456719d2a8a6de144deec00d1c1e9b2bb89fcc4579e16254d2c298b61be3b52f95bce6a6d512ba33f6108dd6ffa4795397def6ea59df5d8
 
 pkgname = java-commons-lang


=====================================
PKGBUILD
=====================================
@@ -1,27 +1,21 @@
-# Maintainer: Jonas Witschel <[email protected]>
+# Maintainer:
+# Contributor: Jonas Witschel <[email protected]>
+
 pkgname=java-commons-lang
-pkgver=3.13.0
-pkgrel=2
-_java=17
+pkgver=3.14.0
+pkgrel=1
 pkgdesc='A host of helper utilities for the java.lang API'
 arch=('any')
 url='https://commons.apache.org/proper/commons-lang/'
 license=('APACHE')
 depends=('java-runtime-headless')
-makedepends=("java-environment=${_java}" 'maven')
-source=("https://archive.apache.org/dist/commons/lang/source/commons-lang3-$pkgver-src.tar.gz"{,.asc}
-               "skip-broken-locales.patch")
-sha512sums=('6fca0ce86aea84458021360bac3f6775135a1a5c1826194921e2d4ead7c12f6ac560e7c3fc240112f862aaee24be8754c37dd867f45e9449cde4a388018d8691'
-            'SKIP'
-            
'38d5f2ed62af26e0d456719d2a8a6de144deec00d1c1e9b2bb89fcc4579e16254d2c298b61be3b52f95bce6a6d512ba33f6108dd6ffa4795397def6ea59df5d8')
+makedepends=('java-environment' 'maven')
+source=("https://archive.apache.org/dist/commons/lang/source/commons-lang3-$pkgver-src.tar.gz"{,.asc})
+sha512sums=('1ee4176c3588c11594a79f416a1f34b063cddb10c2124a37640fee48e5d8135091573002b6bf1eda5a60a324c1125665dadc93f9bfda32c9270c35113b6e1bea'
+            'SKIP')
 validpgpkeys=('B6E73D84EA4FCC47166087253FAAD2CD5ECBB314'  # Rob Tompkins 
<[email protected]>
               '2DB4F1EF0FA761ECC4EA935C86FDC7E2A11262CB') # Gary David Gregory 
(Code signing key) <[email protected]>
 
-prepare() {
-       cd "commons-lang3-$pkgver-src"
-       patch -Np1 < '../skip-broken-locales.patch'
-}
-
 build() {
        cd "commons-lang3-$pkgver-src"
 


=====================================
java-commons-lang-3.10_improve-reproducibility-of-generated-JARs.patch deleted
=====================================
@@ -1,41 +0,0 @@
-From a23d83d6c5c88bd685ab3cbf171fde245484ae6d Mon Sep 17 00:00:00 2001
-From: Jonas Witschel <[email protected]>
-Date: Tue, 7 Jul 2020 15:54:25 +0200
-Subject: [PATCH] Improve reproducibility of generated JARs
-
-maven-bundle-plugin adds a couple of extra manifest headers like
-"Bnd-LastModified" recording information about the build. This makes it harder
-to reproduce the JAR bit by bit on a different machine. The documented way to
-remove these is the "-noextraheaders: true" instruction.
-
-Even after applying this instruction, the ordering of the "Include-Resource"
-header appears to be file system dependent. Remove this header as well to allow
-for reproducible builds.
----
- pom.xml | 10 ++++++++++
- 1 file changed, 10 insertions(+)
-
-diff --git a/pom.xml b/pom.xml
-index 99a6a791e..0e53e3a78 100644
---- a/pom.xml
-+++ b/pom.xml
-@@ -772,6 +772,16 @@
-           
<excludeFilterFile>${basedir}/spotbugs-exclude-filter.xml</excludeFilterFile>
-         </configuration>
-       </plugin>
-+      <plugin>
-+        <groupId>org.apache.felix</groupId>
-+        <artifactId>maven-bundle-plugin</artifactId>
-+        <configuration>
-+          <instructions>
-+            <_noextraheaders>true</_noextraheaders>
-+            <_removeheaders>Include-Resource</_removeheaders>
-+          </instructions>
-+        </configuration>
-+      </plugin>
-     </plugins>
- 
-   </build>
--- 
-2.27.0
-



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/java-commons-lang/-/commit/02c98f9a3880609ea4933cf4192f7da8813e42bd

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/java-commons-lang/-/commit/02c98f9a3880609ea4933cf4192f7da8813e42bd
You're receiving this email because of your account on gitlab.archlinux.org.


Reply via email to