File: 07-restore-asm-all.patch

package info (click to toggle)
asm 9.8-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 8,072 kB
  • sloc: java: 52,097; xml: 229; makefile: 13
file content (26 lines) | stat: -rw-r--r-- 684 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Description: Keep building the asm-all artifact to preserve the compatibility with older versions of ASM
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/build.gradle
+++ b/build.gradle
@@ -76,6 +76,10 @@
 // Project descriptions
 // -----------------------------------------------------------------------------
 
+project(':asm-all') {
+  description = parent.description
+}
+
 project(':asm') {
   description = parent.description
   provides = ['org.objectweb.asm', 'org.objectweb.asm.signature']
--- a/settings.gradle
+++ b/settings.gradle
@@ -29,6 +29,7 @@
 rootProject.name = 'root'
 
 include(
+  'asm-all',
   'asm',
   'asm-analysis',
   'asm-commons',