[tools-nrepl-clojure] 01/01: Change libclojure from Build-Dep to Dep
Tom Marble
tmarble-guest at moszumanska.debian.org
Mon Feb 26 23:29:26 UTC 2018
This is an automated email from the git hooks/post-receive script.
tmarble-guest pushed a commit to branch master
in repository tools-nrepl-clojure.
commit 98e2b27a595cb7044373b368e29d4eaeb879c5c1
Author: Tom Marble <tmarble at info9.net>
Date: Mon Feb 26 17:29:04 2018 -0600
Change libclojure from Build-Dep to Dep
* Declare compliance with Debian Policy 4.1.3.
Signed-off-by: Tom Marble <tmarble at info9.net>
---
debian/changelog | 10 ++++
debian/control | 7 +--
pom.xml | 174 +++++++++++++++++++++++++++----------------------------
3 files changed, 100 insertions(+), 91 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 66e3787..5558544 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+tools-nrepl-clojure (0.2.12-2) unstable; urgency=medium
+
+ * Team upload.
+
+ [ Tom Marble ]
+ * Change libclojure from Build-Dep to Dep
+ * Declare compliance with Debian Policy 4.1.3.
+
+ -- Tom Marble <tmarble at info9.net> Mon, 26 Feb 2018 17:26:07 -0600
+
tools-nrepl-clojure (0.2.12-1) unstable; urgency=medium
* Initial release (Closes: #855753).
diff --git a/debian/control b/debian/control
index db96108..af4fcca 100644
--- a/debian/control
+++ b/debian/control
@@ -3,21 +3,20 @@ Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
Uploaders: Apollon Oikonomopoulos <apoikos at debian.org>
-Build-Depends: clojure (>= 1.8),
- debhelper (>= 10),
+Build-Depends: debhelper (>= 10),
default-jdk,
javahelper (>= 0.32),
libtools-logging-clojure (>= 0.2.3),
markdown,
maven-repo-helper (>= 1.5~)
-Standards-Version: 3.9.8
+Standards-Version: 4.1.3
Homepage: https://github.com/clojure/tools.nrepl
Vcs-Git: https://anonscm.debian.org/git/pkg-java/tools-nrepl-clojure.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/tools-nrepl-clojure.git
Package: libtools-nrepl-clojure
Architecture: all
-Depends: ${java:Depends}, ${misc:Depends}
+Depends: ${java:Depends}, ${misc:Depends}, libclojure-java | libclojure1.8-java
Recommends: ${java:Recommends}
Description: Clojure network REPL
tools.nrepl provides a REPL server and client, along with some common APIs of
diff --git a/pom.xml b/pom.xml
index a80fd6e..016cd0e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,88 +1,88 @@
+<?xml version='1.0' encoding='UTF-8'?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <artifactId>tools.nrepl</artifactId>
- <version>0.2.12</version>
- <name>nREPL</name>
-
- <parent>
- <groupId>org.clojure</groupId>
- <artifactId>pom.contrib</artifactId>
- <version>0.1.2</version>
- </parent>
-
- <developers>
- <developer>
- <name>Chas Emerick</name>
- <url>http://cemerick.com</url>
- <email>cemerick at snowtide.com</email>
- <timezone>-5</timezone>
- </developer>
- </developers>
-
- <scm>
- <connection>scm:git:git at github.com:clojure/tools.nrepl.git</connection>
- <developerConnection>scm:git:git at github.com:clojure/tools.nrepl.git</developerConnection>
- <url>git at github.com:clojure/tools.nrepl.git</url>
- <tag>tools.nrepl-0.2.12</tag>
- </scm>
-
- <properties>
- <clojure.version>1.2.0</clojure.version>
- <clojure.warnOnReflection>true</clojure.warnOnReflection>
- </properties>
-
- <dependencies>
- <dependency>
- <groupId>org.clojure</groupId>
- <artifactId>tools.logging</artifactId>
- <version>0.2.3</version>
- <optional>true</optional>
- </dependency>
- </dependencies>
-
- <build>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- <resource>
- <directory>src/main/clojure</directory>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <artifactId>maven-invoker-plugin</artifactId>
- <version>1.5</version>
- <configuration>
- <projectsDirectory>src/integration</projectsDirectory>
- <cloneProjectsTo>${project.build.directory}/integration</cloneProjectsTo>
- <pomIncludes>
- <pomInclude>*/pom.xml</pomInclude>
- </pomIncludes>
- <streamLogs>true</streamLogs>
- <goals><goal>clojure:test</goal></goals>
- </configuration>
- <executions>
- <execution>
- <id>integration-test</id>
- <goals>
- <goal>install</goal>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifestFile>META-INF/MANIFEST.MF</manifestFile>
- </archive>
- </configuration>
- </plugin>
- </plugins>
- </build>
-</project>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.clojure</groupId>
+ <artifactId>tools.nrepl</artifactId>
+ <version>0.2.12</version>
+ <packaging>jar</packaging>
+ <name>nREPL</name>
+ <developers>
+ <developer>
+ <name>Chas Emerick</name>
+ <url>http://cemerick.com</url>
+ <email>cemerick at snowtide.com</email>
+ <timezone>-5</timezone>
+ </developer>
+ </developers>
+ <scm>
+ <connection>scm:git:git at github.com:clojure/tools.nrepl.git</connection>
+ <developerConnection>scm:git:git at github.com:clojure/tools.nrepl.git</developerConnection>
+ <url>git at github.com:clojure/tools.nrepl.git</url>
+ <tag>tools.nrepl-0.2.12</tag>
+ </scm>
+ <properties>
+ <clojure.version>1.2.0</clojure.version>
+ <clojure.warnOnReflection>true</clojure.warnOnReflection>
+
+ <debian.hasPackageVersion/>
+
+ <debian.originalVersion>0.2.12</debian.originalVersion>
+
+ <debian.package>libtools-nrepl-clojure</debian.package>
+ </properties>
+ <dependencies>
+ <dependency>
+ <groupId>org.clojure</groupId>
+ <artifactId>tools.logging</artifactId>
+ <version>debian</version>
+ <optional>true</optional>
+ </dependency>
+ </dependencies>
+ <build>
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ <filtering>true</filtering>
+ </resource>
+ <resource>
+ <directory>src/main/clojure</directory>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <artifactId>maven-invoker-plugin</artifactId>
+ <version>1.5</version>
+ <configuration>
+ <projectsDirectory>src/integration</projectsDirectory>
+ <cloneProjectsTo>${project.build.directory}/integration</cloneProjectsTo>
+ <pomIncludes>
+ <pomInclude>*/pom.xml</pomInclude>
+ </pomIncludes>
+ <streamLogs>true</streamLogs>
+ <goals>
+ <goal>clojure:test</goal>
+ </goals>
+ </configuration>
+ <executions>
+ <execution>
+ <id>integration-test</id>
+ <goals>
+ <goal>install</goal>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestFile>META-INF/MANIFEST.MF</manifestFile>
+ </archive>
+ </configuration>
+ <version>3.0.2</version>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/tools-nrepl-clojure.git
More information about the pkg-java-commits
mailing list