Skip to content
GitLab
Explore
Sign in
Register
Commits on Source
3
disable timestamps from javadoc
· bb7f4666
Hans-Christoph Steiner
authored
Dec 10, 2019
bb7f4666
install icon for Groovy Console
· 7e807efb
Hans-Christoph Steiner
authored
Dec 10, 2019
7e807efb
update debian/changelog for upload
· e051c1dd
Hans-Christoph Steiner
authored
Dec 10, 2019
e051c1dd
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
e051c1dd
groovy (2.4.17-4) unstable; urgency=medium
* Team upload.
* disable timestamps from javadoc
* install icon for Groovy Console
-- Hans-Christoph Steiner <hans@eds.org> Tue, 10 Dec 2019 12:06:21 +0100
groovy (2.4.17-3) unstable; urgency=medium
[ tony mancill ]
...
...
debian/groovy.install
View file @
e051c1dd
subprojects
/
groovy
-
console
/
src
/
main
/
resources
/
groovy
/
ui
/
ConsoleIcon
.
png
/
usr
/
share
/
icons
/
hicolor
/
48
x48
/
apps
/
target
/
distributions
/
bin
/
groovy
-*/
bin
/
grape
/
usr
/
share
/
groovy
/
bin
target
/
distributions
/
bin
/
groovy
-*/
bin
/
groovy
/
usr
/
share
/
groovy
/
bin
target
/
distributions
/
bin
/
groovy
-*/
bin
/
groovyConsole
/
usr
/
share
/
groovy
/
bin
...
...
debian/groovyConsole.desktop
View file @
e051c1dd
[Desktop Entry]
Name=Groovy Console
Icon=ConsoleIcon
Type=Application
Exec=/usr/bin/groovyConsole
Terminal=false
...
...
debian/patches/00_reproducible_timestamp.patch
View file @
e051c1dd
...
...
@@ -9,3 +9,30 @@
ext.propertiesFilter = [
beginToken: '#',
--- a/gradle/docs.gradle
+++ b/gradle/docs.gradle
@@ -197,6 +197,7 @@
if (JavaVersion.current().isJava7Compatible()) {
javadocAll.options.source = '1.7'
+ javadocAll.options.noTimestamp()
}
if (JavaVersion.current().isJava8Compatible()) {
@@ -204,6 +205,7 @@
tasks.withType(Javadoc) {
// disable the crazy super-strict doclint tool in Java 8
options.addStringOption('Xdoclint:none', '-quiet')
+ options.noTimestamp()
}
}
}
--- a/subprojects/groovy-nio/build.gradle
+++ b/subprojects/groovy-nio/build.gradle
@@ -36,5 +36,6 @@
}
tasks.withType(Javadoc) {
options.source = "1.7"
+ options.noTimestamp()
}