uncommitted - gradle-plugin-protobuf

Ready changes

Summary

Import uploads missing from VCS:

Diff

diff --git a/.pc/.quilt_patches b/.pc/.quilt_patches
new file mode 100644
index 0000000..6857a8d
--- /dev/null
+++ b/.pc/.quilt_patches
@@ -0,0 +1 @@
+debian/patches
diff --git a/.pc/.quilt_series b/.pc/.quilt_series
new file mode 100644
index 0000000..c206706
--- /dev/null
+++ b/.pc/.quilt_series
@@ -0,0 +1 @@
+series
diff --git a/.pc/.version b/.pc/.version
new file mode 100644
index 0000000..0cfbf08
--- /dev/null
+++ b/.pc/.version
@@ -0,0 +1 @@
+2
diff --git a/.pc/01-ignore-git-plugin.patch/build.gradle b/.pc/01-ignore-git-plugin.patch/build.gradle
new file mode 100644
index 0000000..fbe52f6
--- /dev/null
+++ b/.pc/01-ignore-git-plugin.patch/build.gradle
@@ -0,0 +1,159 @@
+import org.gradle.api.artifacts.maven.MavenDeployment
+
+println """\
+Welcome to Gradle $gradle.gradleVersion - http://www.gradle.org
+Gradle home is set to: $gradle.gradleHomeDir
+Gradle user directory is set to: $gradle.gradleUserHomeDir
+
+Base directory: $projectDir
+Running script ${relativePath(buildFile)}
+"""
+
+apply plugin: 'idea'
+apply plugin: 'eclipse'
+apply plugin: 'groovy'
+apply plugin: 'maven'
+apply plugin: 'git'
+apply plugin: 'com.jfrog.bintray'
+
+apply plugin: 'signing'
+
+group = 'ws.antonov.gradle.plugins'
+version = '0.9.2'
+
+ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
+
+buildscript {
+    repositories {
+        mavenCentral()
+        jcenter()
+    }
+    dependencies {
+        classpath 'org.ajoberstar:gradle-git:0.1.0'
+        classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:0.5'
+    }
+}
+
+test {
+    //jvmArgs '-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005'
+    //debug true
+}
+
+repositories {
+    mavenCentral()
+}
+
+dependencies {
+    compile gradleApi()
+    testCompile group: 'junit', name: 'junit', version: '4.8.1'
+    compile localGroovy()
+}
+
+task wrapper(type: Wrapper) {
+    gradleVersion = '1.12'
+}
+
+project.ext.set("signing.secretKeyRingFile", new File("${System.properties['user.home']}/.gnupg/secring.gpg"))
+
+task sourcesJar(type: Jar, dependsOn:classes) {
+     classifier = 'sources'
+     from sourceSets.main.allSource
+}
+
+task groovydocJar(type: Jar, dependsOn:groovydoc) {
+     classifier = 'groovydoc'
+     from groovydoc.destinationDir
+}
+
+artifacts {
+     archives sourcesJar
+     archives groovydocJar
+}
+
+signing {
+//     required { isReleaseVersion && gradle.taskGraph.hasTask("uploadArchives") }
+     sign configurations.archives
+}
+
+uploadArchives {
+  repositories {
+    mavenDeployer {
+      beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
+      repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
+      //repository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
+        authentication(userName: System.getProperty('nexusUser'), password: System.getProperty('nexusPassword'))
+      }
+      pom.project {
+        name project.name
+        description "Gradle build plugin to handle Protocol Buffers automated code generation and compilation"
+        url "https://github.com/aantono/gradle-plugin-protobuf"
+        licenses {
+          license {
+            name "New BSD License"
+            url "http://www.opensource.org/licenses/bsd-license.php"
+          }
+        }
+        developers {
+          developer {
+            id "aantono"
+            name "Alex Antonov"
+            email "alex@antonov.ws"
+          }
+          developer {
+            id "valkolovos"
+            name "Val Kolovos"
+            email "valkolovos@yahoo.com"
+          }
+          developer {
+            id "mleinartas"
+            name "Michael Leinartas"
+            email "mleinartas@gmail.com"
+          }
+        }
+        scm {
+          connection "scm:git:git://github.com/aantono/gradle-plugin-protobuf.git"
+          developerConnection "scm:git:git@github.com:aantono/gradle-plugin-protobuf.git"
+          url "https://github.com/aantono/gradle-plugin-protobuf"
+        }
+      }
+    }
+  }
+}
+
+bintray {
+    user = System.getProperty('bintrayUser')
+    key = System.getProperty('bintrayApiKey')
+
+    configurations = ['archives'] //When uploading configuration files
+    // - OR -
+    //publications = ['mavenStuff'] //When uploading Maven-based publication files
+    // - AND/OR -
+//    filesSpec { //When uploading any arbitrary files ('filesSpec' is a standard Gradle CopySpec)
+//        from 'arbitrary-files'
+//        into 'standalone_files/level1'
+//        rename '(.+)\\.(.+)', '$1-suffix.$2'
+//    }
+    dryRun = false //Whether to run this as dry-run, without deploying
+    publish = true //If version should be auto published after an upload
+    pkg {
+        repo = 'maven'
+        //userOrg = 'myorg' //An optional organization name when the repo belongs to one of the user's orgs
+        name = 'gradle-plugin-protobuf'
+        desc = 'Gradle Plugin for Google Protocol Buffers code generation/compilation.'
+        websiteUrl = 'https://github.com/aantono/gradle-plugin-protobuf'
+        issueTrackerUrl = 'https://github.com/aantono/gradle-plugin-protobuf/issues'
+        vcsUrl = 'https://github.com/aantono/gradle-plugin-protobuf.git'
+        licenses = ['GPL-3.0']
+        labels = ['gradle', 'protobuf', 'plugin']
+        publicDownloadNumbers = true
+        attributes= ['gradle-plugin': 'protobuf:ws.antonov.gradle.plugins:gradle-plugin-protobuf'] //Optional package-level attributes
+        //Optional version descriptor
+        version {
+            name = '0.9.2' //Bintray logical version name
+            //desc = 'optional, version-specific description'
+            vcsTag = '0.9.2'
+            attributes = ['gradle-plugin': 'protobuf:ws.antonov.gradle.plugins:gradle-plugin-protobuf'] //Optional version-level attributes
+        }
+    }
+
+}
\ No newline at end of file
diff --git a/.pc/02-ignore-bintray-plugin.patch/build.gradle b/.pc/02-ignore-bintray-plugin.patch/build.gradle
new file mode 100644
index 0000000..0f64d2d
--- /dev/null
+++ b/.pc/02-ignore-bintray-plugin.patch/build.gradle
@@ -0,0 +1,158 @@
+import org.gradle.api.artifacts.maven.MavenDeployment
+
+println """\
+Welcome to Gradle $gradle.gradleVersion - http://www.gradle.org
+Gradle home is set to: $gradle.gradleHomeDir
+Gradle user directory is set to: $gradle.gradleUserHomeDir
+
+Base directory: $projectDir
+Running script ${relativePath(buildFile)}
+"""
+
+apply plugin: 'idea'
+apply plugin: 'eclipse'
+apply plugin: 'groovy'
+apply plugin: 'maven'
+apply plugin: 'com.jfrog.bintray'
+
+apply plugin: 'signing'
+
+group = 'ws.antonov.gradle.plugins'
+version = '0.9.2'
+
+ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
+
+buildscript {
+    repositories {
+        mavenCentral()
+        jcenter()
+    }
+    dependencies {
+        classpath 'org.ajoberstar:gradle-git:0.1.0'
+        classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:0.5'
+    }
+}
+
+test {
+    //jvmArgs '-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005'
+    //debug true
+}
+
+repositories {
+    mavenCentral()
+}
+
+dependencies {
+    compile gradleApi()
+    testCompile group: 'junit', name: 'junit', version: '4.8.1'
+    compile localGroovy()
+}
+
+task wrapper(type: Wrapper) {
+    gradleVersion = '1.12'
+}
+
+project.ext.set("signing.secretKeyRingFile", new File("${System.properties['user.home']}/.gnupg/secring.gpg"))
+
+task sourcesJar(type: Jar, dependsOn:classes) {
+     classifier = 'sources'
+     from sourceSets.main.allSource
+}
+
+task groovydocJar(type: Jar, dependsOn:groovydoc) {
+     classifier = 'groovydoc'
+     from groovydoc.destinationDir
+}
+
+artifacts {
+     archives sourcesJar
+     archives groovydocJar
+}
+
+signing {
+//     required { isReleaseVersion && gradle.taskGraph.hasTask("uploadArchives") }
+     sign configurations.archives
+}
+
+uploadArchives {
+  repositories {
+    mavenDeployer {
+      beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
+      repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
+      //repository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
+        authentication(userName: System.getProperty('nexusUser'), password: System.getProperty('nexusPassword'))
+      }
+      pom.project {
+        name project.name
+        description "Gradle build plugin to handle Protocol Buffers automated code generation and compilation"
+        url "https://github.com/aantono/gradle-plugin-protobuf"
+        licenses {
+          license {
+            name "New BSD License"
+            url "http://www.opensource.org/licenses/bsd-license.php"
+          }
+        }
+        developers {
+          developer {
+            id "aantono"
+            name "Alex Antonov"
+            email "alex@antonov.ws"
+          }
+          developer {
+            id "valkolovos"
+            name "Val Kolovos"
+            email "valkolovos@yahoo.com"
+          }
+          developer {
+            id "mleinartas"
+            name "Michael Leinartas"
+            email "mleinartas@gmail.com"
+          }
+        }
+        scm {
+          connection "scm:git:git://github.com/aantono/gradle-plugin-protobuf.git"
+          developerConnection "scm:git:git@github.com:aantono/gradle-plugin-protobuf.git"
+          url "https://github.com/aantono/gradle-plugin-protobuf"
+        }
+      }
+    }
+  }
+}
+
+bintray {
+    user = System.getProperty('bintrayUser')
+    key = System.getProperty('bintrayApiKey')
+
+    configurations = ['archives'] //When uploading configuration files
+    // - OR -
+    //publications = ['mavenStuff'] //When uploading Maven-based publication files
+    // - AND/OR -
+//    filesSpec { //When uploading any arbitrary files ('filesSpec' is a standard Gradle CopySpec)
+//        from 'arbitrary-files'
+//        into 'standalone_files/level1'
+//        rename '(.+)\\.(.+)', '$1-suffix.$2'
+//    }
+    dryRun = false //Whether to run this as dry-run, without deploying
+    publish = true //If version should be auto published after an upload
+    pkg {
+        repo = 'maven'
+        //userOrg = 'myorg' //An optional organization name when the repo belongs to one of the user's orgs
+        name = 'gradle-plugin-protobuf'
+        desc = 'Gradle Plugin for Google Protocol Buffers code generation/compilation.'
+        websiteUrl = 'https://github.com/aantono/gradle-plugin-protobuf'
+        issueTrackerUrl = 'https://github.com/aantono/gradle-plugin-protobuf/issues'
+        vcsUrl = 'https://github.com/aantono/gradle-plugin-protobuf.git'
+        licenses = ['GPL-3.0']
+        labels = ['gradle', 'protobuf', 'plugin']
+        publicDownloadNumbers = true
+        attributes= ['gradle-plugin': 'protobuf:ws.antonov.gradle.plugins:gradle-plugin-protobuf'] //Optional package-level attributes
+        //Optional version descriptor
+        version {
+            name = '0.9.2' //Bintray logical version name
+            //desc = 'optional, version-specific description'
+            vcsTag = '0.9.2'
+            attributes = ['gradle-plugin': 'protobuf:ws.antonov.gradle.plugins:gradle-plugin-protobuf'] //Optional version-level attributes
+        }
+    }
+
+}
diff --git a/.pc/applied-patches b/.pc/applied-patches
new file mode 100644
index 0000000..a30510d
--- /dev/null
+++ b/.pc/applied-patches
@@ -0,0 +1,2 @@
+01-ignore-git-plugin.patch
+02-ignore-bintray-plugin.patch
diff --git a/build.gradle b/build.gradle
index fbe52f6..26df928 100644
--- a/build.gradle
+++ b/build.gradle
@@ -13,8 +13,6 @@ apply plugin: 'idea'
 apply plugin: 'eclipse'
 apply plugin: 'groovy'
 apply plugin: 'maven'
-apply plugin: 'git'
-apply plugin: 'com.jfrog.bintray'
 
 apply plugin: 'signing'
 
@@ -120,6 +118,7 @@ uploadArchives {
   }
 }
 
+/*
 bintray {
     user = System.getProperty('bintrayUser')
     key = System.getProperty('bintrayApiKey')
@@ -156,4 +155,5 @@ bintray {
         }
     }
 
-}
\ No newline at end of file
+}
+*/
diff --git a/debian/changelog b/debian/changelog
index 2755cbc..623c3f5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+gradle-plugin-protobuf (0.9.2-1.1) unstable; urgency=medium
+
+  * Non maintainer upload by the Reproducible Builds team.
+  * No source change upload to rebuild on buildd with .buildinfo files.
+
+ -- Holger Levsen <holger@debian.org>  Tue, 29 Dec 2020 02:26:42 +0100
+
 gradle-plugin-protobuf (0.9.2-1) unstable; urgency=medium
 
   * Initial release. (Closes: #820777)

Debdiff

File lists identical (after any substitutions)

No differences were encountered in the control files

Run locally

More details

Full run details