[Git][java-team/jasmin-sable][master] 9 commits: Project moved to Github - fix Homepage
Andreas Tille (@tille)
gitlab at salsa.debian.org
Tue Jan 28 17:41:06 GMT 2025
Andreas Tille pushed to branch master at Debian Java Maintainers / jasmin-sable
Commits:
b9810b4c by Andreas Tille at 2025-01-28T18:26:57+01:00
Project moved to Github - fix Homepage
- - - - -
c57a781d by Andreas Tille at 2025-01-28T18:30:21+01:00
Fix watch file
- - - - -
8d0c6a9d by Andreas Tille at 2025-01-28T18:31:59+01:00
* Build-Depends:
- Drop quilt
- s/default-jdk/default-jdk-headless/
- - - - -
f0a8a806 by Andreas Tille at 2025-01-28T18:32:13+01:00
Drop debian/dirs
- - - - -
628c0dd2 by Andreas Tille at 2025-01-28T18:32:45+01:00
Standards-Version: 4.7.0 (routine-update)
- - - - -
4e5c409d by Andreas Tille at 2025-01-28T18:32:45+01:00
debhelper-compat 13 (routine-update)
- - - - -
648668bc by Andreas Tille at 2025-01-28T18:33:41+01:00
Reorder sequence of d/control fields by cme (routine-update)
- - - - -
09e91014 by Andreas Tille at 2025-01-28T18:34:55+01:00
Do not parse d/changelog (routine-update)
- - - - -
ddf737f5 by Andreas Tille at 2025-01-28T18:40:18+01:00
d/copyright: review (thanks to lrc)
- - - - -
7 changed files:
- debian/changelog
- − debian/compat
- debian/control
- debian/copyright
- − debian/dirs
- debian/rules
- debian/watch
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,19 @@
+jasmin-sable (2.5.0-3) UNRELEASED; urgency=medium
+
+ * Team upload.
+ * Project moved to Github - fix Homepage
+ * Fix watch file
+ * Build-Depends:
+ - Drop quilt
+ - s/default-jdk/default-jdk-headless/
+ * Standards-Version: 4.7.0 (routine-update)
+ * debhelper-compat 13 (routine-update)
+ * Reorder sequence of d/control fields by cme (routine-update)
+ * Do not parse d/changelog (routine-update)
+ * d/copyright: review (thanks to lrc)
+
+ -- Andreas Tille <tille at debian.org> Tue, 28 Jan 2025 18:23:35 +0100
+
jasmin-sable (2.5.0-2) unstable; urgency=medium
* Fixed the build failure with Java 9 (Closes: #893181)
=====================================
debian/compat deleted
=====================================
@@ -1 +0,0 @@
-11
=====================================
debian/control
=====================================
@@ -1,18 +1,22 @@
Source: jasmin-sable
-Section: devel
-Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
Uploaders: Emmanuel Bourg <ebourg at apache.org>
-Build-Depends: debhelper (>= 11), quilt, ant
-Build-Depends-Indep: cup (>= 0.11a+20060608), default-jdk
-Standards-Version: 4.1.3
-Vcs-Git: https://anonscm.debian.org/git/pkg-java/jasmin-sable.git
-Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/jasmin-sable.git
-Homepage: http://jasmin.sourceforge.net/
+Section: devel
+Priority: optional
+Build-Depends: debhelper-compat (= 13),
+ ant
+Build-Depends-Indep: cup,
+ default-jdk-headless
+Standards-Version: 4.7.0
+Vcs-Browser: https://salsa.debian.org/java-team/jasmin-sable
+Vcs-Git: https://salsa.debian.org/java-team/jasmin-sable.git
+Homepage: https://github.com/Sable/jasmin
Package: jasmin-sable
Architecture: all
-Depends: default-jre | java2-runtime, cup (>= 0.11a+20060608), ${misc:Depends}
+Depends: default-jre | java2-runtime,
+ cup,
+ ${misc:Depends}
Description: Java class (.class) file assembler
Jasmin is a Java ASseMbler INterface. It takes ASCII descriptions of Java
classes, written in the Java Virtual Machine instruction set in an
=====================================
debian/copyright
=====================================
@@ -13,6 +13,20 @@ Copyright: 1996, Jonathan Meyer <meyer_jon at yahoo.com>
1996, Frank Flannery
License: LGPL-2
+Files: lib/jas/src/jas/Base64.java
+Copyright: 1998 by Kevin Kelley
+License: LGPL-2.1+
+ On Debian systems, the complete text of the GNU Lesser General
+ Public License version 2.1 can be found in
+ `/usr/share/common-licenses/LGPL-2.1'.
+
+Files: lib/jas/src/jas/CodeAttributeDecoder.java
+Copyright: 2000 Patrice Pominville and Feng Qian
+License: LGPL-2+
+ On Debian systems, the complete text of the GNU Lesser General
+ Public License version 2 can be found in
+ `/usr/share/common-licenses/LGPL-2'.
+
Files: debian/*
Copyright: 2004, Grzegorz Prokopski <gadek at debian.org>
2008-2014, Chris Lamb <lamby at debian.org>
@@ -29,10 +43,6 @@ License: LGPL-2
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
.
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- .
On Debian systems, the complete text of the GNU Lesser General
Public License can be found in `/usr/share/common-licenses/LGPL-2'.
=====================================
debian/dirs deleted
=====================================
@@ -1,2 +0,0 @@
-usr/bin
-usr/share/java
=====================================
debian/rules
=====================================
@@ -1,14 +1,14 @@
#!/usr/bin/make -f
-VERSION := $(shell dpkg-parsechangelog --show-field Version | sed 's/-[^-]*$$//')
+include /usr/share/dpkg/default.mk
%:
dh $@
override_dh_auto_build:
mkdir -p classes
- ant -Djava_cup.jar=/usr/share/java/cup.jar -Drelease.loc=lib -Djasmin.version=$(VERSION) build_parser jasmin-jar
- mv lib/jasminclasses-$(VERSION).jar lib/jasmin-sable-$(VERSION).jar
+ ant -Djava_cup.jar=/usr/share/java/cup.jar -Drelease.loc=lib -Djasmin.version=$(DEB_VERSION_UPSTREAM) build_parser jasmin-jar
+ mv lib/jasminclasses-$(DEB_VERSION_UPSTREAM).jar lib/jasmin-sable-$(DEB_VERSION_UPSTREAM).jar
override_dh_auto_clean:
dh_auto_clean
@@ -17,4 +17,4 @@ override_dh_auto_clean:
override_dh_auto_install:
dh_install -pjasmin-sable bin/jasmin /usr/bin
dh_install -pjasmin-sable lib/jasmin-sable-*.jar /usr/share/java
- dh_link -pjasmin-sable /usr/share/java/jasmin-sable-$(VERSION).jar /usr/share/java/jasmin-sable.jar
+ dh_link -pjasmin-sable /usr/share/java/jasmin-sable-$(DEB_VERSION_UPSTREAM).jar /usr/share/java/jasmin-sable.jar
=====================================
debian/watch
=====================================
@@ -1,2 +1,4 @@
-version=3
-https://github.com/Sable/jasmin/releases .*/jasmin-([\d\.]+).tar.gz
+version=4
+
+opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%@PACKAGE at -$1.tar.gz%" \
+ https://github.com/Sable/jasmin/tags .*/(jasmin-)?([\d\.]+).tar.gz
View it on GitLab: https://salsa.debian.org/java-team/jasmin-sable/-/compare/282b2a5186261507733d69ee026f872bf7a18f0d...ddf737f5d703ad8dd0ed6a42e4dd0f5d4296634b
--
View it on GitLab: https://salsa.debian.org/java-team/jasmin-sable/-/compare/282b2a5186261507733d69ee026f872bf7a18f0d...ddf737f5d703ad8dd0ed6a42e4dd0f5d4296634b
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/20250128/76decbec/attachment.htm>
More information about the pkg-java-commits
mailing list