Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
Normalize the permissions of the files in bsh.tar.gz to make the build reproducible
· 35d773c6
Emmanuel Bourg
authored
Sep 09, 2019
35d773c6
Standards-Version updated to 4.4.0
· 3301a336
Emmanuel Bourg
authored
Sep 09, 2019
3301a336
Use salsa.debian.org Vcs-* URLs
· 8b0296c4
Emmanuel Bourg
authored
Sep 09, 2019
8b0296c4
No longer run the tests if the nocheck build option is specified
· 41e0d092
Emmanuel Bourg
authored
Sep 09, 2019
41e0d092
Upload to unstable
· 8332f335
Emmanuel Bourg
authored
Sep 09, 2019
8332f335
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
8332f335
bsh (2.0b4-20) unstable; urgency=medium
* Normalize the permissions of the files in bsh.tar.gz to make
the build reproducible
* No longer run the tests if the nocheck build option is specified
* Standards-Version updated to 4.4.0
* Use salsa.debian.org Vcs-* URLs
-- Emmanuel Bourg <ebourg@apache.org> Mon, 09 Sep 2019 14:30:36 +0200
bsh (2.0b4-19) unstable; urgency=medium
* Fixed the build failure with Java 9 (Closes: #875340)
...
...
debian/control
View file @
8332f335
...
...
@@ -14,9 +14,9 @@ Build-Depends:
libservlet3.1-java,
libservlet3.1-java-doc,
maven-repo-helper
Standards-Version: 4.
1.1
Vcs-Git: https://
anonscm
.debian.org/
git/pkg-java
/bsh.git
Vcs-Browser: https://
anonscm
.debian.org/
cgit/pkg-java/bsh.git
Standards-Version: 4.
4.0
Vcs-Git: https://
salsa
.debian.org/
java-team
/bsh.git
Vcs-Browser: https://
salsa
.debian.org/
java-team/bsh
Homepage: http://www.beanshell.org
Package: bsh
...
...
debian/rules
View file @
8332f335
...
...
@@ -11,7 +11,9 @@ override_dh_auto_build:
dh_auto_build -- javadoc jarall -Dcompile.debug=true
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
dh_auto_build -- test
endif
override_dh_auto_install:
mh_installpoms -plibbsh-java
...
...
@@ -22,7 +24,8 @@ override_dh_auto_install:
mkdir -p debian/bsh-src/usr/src/bsh-src
tar --exclude debian --exclude classes --exclude dist --exclude api \
--clamp-mtime --mtime="@$(SOURCE_DATE_EPOCH)" \
-zcf debian/bsh-src/usr/src/bsh-src/bsh.tar.gz *
--mode='u+rw,g+rw,a+X' \
-zcf debian/bsh-src/usr/src/bsh-src/bsh.tar.gz *
get-orig-source:
-uscan --download-current-version --force-download --rename --repack
...
...