[Git][java-team/eclipse-debian-helper][master] 4 commits: Do not return an error if bundle.properties is missing at the install phase

Emmanuel Bourg gitlab at salsa.debian.org
Mon Oct 5 11:06:39 BST 2020



Emmanuel Bourg pushed to branch master at Debian Java Maintainers / eclipse-debian-helper


Commits:
4f2e1127 by Emmanuel Bourg at 2020-10-05T12:00:48+02:00
Do not return an error if bundle.properties is missing at the install phase

- - - - -
a93ec855 by Emmanuel Bourg at 2020-10-05T12:01:12+02:00
Standards-Version updated to 4.5.0

- - - - -
89e34968 by Emmanuel Bourg at 2020-10-05T12:02:02+02:00
Switch to debhelper level 13

- - - - -
f22944ba by Emmanuel Bourg at 2020-10-05T12:05:49+02:00
Upload to unstable

- - - - -


4 changed files:

- debian/changelog
- − debian/compat
- debian/control
- src/perl/eclipse_bundles.pm


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,11 @@
+eclipse-debian-helper (1.8) unstable; urgency=medium
+
+  * Do not return an error if bundle.properties is missing at the install phase
+  * Standards-Version updated to 4.5.0
+  * Switch to debhelper level 13
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Mon, 05 Oct 2020 12:05:39 +0200
+
 eclipse-debian-helper (1.7) unstable; urgency=medium
 
   * Generate a pom.xml file for the pomless bundles


=====================================
debian/compat deleted
=====================================
@@ -1 +0,0 @@
-11


=====================================
debian/control
=====================================
@@ -3,8 +3,8 @@ Section: java
 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),
-Standards-Version: 4.4.0
+Build-Depends: debhelper-compat (= 13),
+Standards-Version: 4.5.0
 Vcs-Git: https://salsa.debian.org/java-team/eclipse-debian-helper.git
 Vcs-Browser: https://salsa.debian.org/java-team/eclipse-debian-helper
 Homepage: https://salsa.debian.org/java-team/eclipse-debian-helper


=====================================
src/perl/eclipse_bundles.pm
=====================================
@@ -65,6 +65,9 @@ sub install {
 	my $this=shift;
 
 	my $file = "debian/bundles.properties";
+	if (!-e $file) {
+		return;
+	}
 	open(my $data, '<', $file) or die "Could not open '$file' $!\n";
 	while (my $line = <$data>) {
 		# Parse the line



View it on GitLab: https://salsa.debian.org/java-team/eclipse-debian-helper/-/compare/d98ec1fd23169f8a9e804107a29c5620ee40239e...f22944ba31e6da16fe0989f6a9b9488533e35871

-- 
View it on GitLab: https://salsa.debian.org/java-team/eclipse-debian-helper/-/compare/d98ec1fd23169f8a9e804107a29c5620ee40239e...f22944ba31e6da16fe0989f6a9b9488533e35871
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/20201005/3ad790f2/attachment.html>


More information about the pkg-java-commits mailing list