[Git][java-team/plume-reflection-util-java][master] Initial commit
Olek Wojnar (@olek)
gitlab at salsa.debian.org
Fri Jun 16 19:45:40 BST 2023
Olek Wojnar pushed to branch master at Debian Java Maintainers / plume-reflection-util-java
Commits:
6d4cbd04 by Olek Wojnar at 2023-06-16T14:45:06-04:00
Initial commit
- - - - -
12 changed files:
- + debian/changelog
- + debian/control
- + debian/copyright
- + debian/docs
- + debian/libplume-reflection-util-java.poms
- + debian/maven.properties
- + debian/pom.xml
- + debian/rules
- + debian/salsa-ci.yml
- + debian/source/format
- + debian/upstream/metadata
- + debian/watch
Changes:
=====================================
debian/changelog
=====================================
@@ -0,0 +1,5 @@
+plume-reflection-util-java (0.2.2+ds-1) unstable; urgency=medium
+
+ * Initial release (Closes: #1035705)
+
+ -- Olek Wojnar <olek at debian.org> Sun, 07 May 2023 20:55:22 -0400
=====================================
debian/control
=====================================
@@ -0,0 +1,24 @@
+Source: plume-reflection-util-java
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Olek Wojnar <olek at debian.org>
+Build-Depends:
+ debhelper-compat (= 13),
+ default-jdk,
+ libchecker-framework-java,
+ maven-debian-helper,
+ maven-repo-helper,
+Standards-Version: 4.6.2
+Rules-Requires-Root: no
+Vcs-Git: https://salsa.debian.org/java-team/plume-reflection-util-java.git
+Vcs-Browser: https://salsa.debian.org/java-team/plume-reflection-util-java
+Homepage: https://github.com/plume-lib/reflection-util
+
+Package: libplume-reflection-util-java
+Architecture: all
+Multi-Arch: foreign
+Depends: ${maven:Depends}, ${misc:Depends}
+Description: Utility libraries related to Java reflection
+ Various utility libraries related to Java reflection from the plume-lib
+ project.
=====================================
debian/copyright
=====================================
@@ -0,0 +1,33 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: reflection-util
+Source: https://github.com/plume-lib/reflection-util
+Files-Excluded: gradlew* gradle
+Comment: Exclude Gradle wrapper and third-party files (not needed)
+
+Files: *
+Copyright: 2018-2020 plume-lib
+ Michael Ernst <mernst at cs.washington.edu>
+License: MIT
+
+Files: debian/*
+Copyright: 2023 Olek Wojnar <olek at debian.org>
+License: MIT
+
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
=====================================
debian/docs
=====================================
@@ -0,0 +1,2 @@
+README.md
+CHANGELOG.md
=====================================
debian/libplume-reflection-util-java.poms
=====================================
@@ -0,0 +1 @@
+pom.xml --no-parent --java-lib
=====================================
debian/maven.properties
=====================================
@@ -0,0 +1,6 @@
+project.build.sourceEncoding=UTF-8
+maven.test.skip=true
+maven.compiler.release=8
+maven.compiler.verbose=true
+org.slf4j.simpleLogger.defaultLogLevel=debug
+trimStackTrace=false
=====================================
debian/pom.xml
=====================================
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.plumelib</groupId>
+ <artifactId>reflection-util</artifactId>
+ <version>0.2.2</version>
+ <name>Reflection-util</name>
+ <description>Convert among string representations of Java types.</description>
+ <url>https://github.com/plume-lib/reflection-util</url>
+ <licenses>
+ <license>
+ <name>MIT License</name>
+ <url>https://opensource.org/licenses/MIT</url>
+ </license>
+ </licenses>
+ <developers>
+ <developer>
+ <id>mernst</id>
+ <name>Michael Ernst</name>
+ <email>mernst at alum.mit.edu</email>
+ </developer>
+ </developers>
+ <scm>
+ <connection>scm:git:git at github.com:plume-lib/reflection-util.git</connection>
+ <developerConnection>scm:git:git at github.com:plume-lib/reflection-util.git</developerConnection>
+ <url>git at github.com:plume-lib/reflection-util.git</url>
+ </scm>
+ <dependencies>
+ <dependency>
+ <groupId>org.checkerframework</groupId>
+ <artifactId>checker-qual</artifactId>
+ <version>3.2.0</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.8.1</version>
+ <configuration>
+ <release>8</release>
+ <compilerArgument>-Xlint:all</compilerArgument>
+ <showWarnings>true</showWarnings>
+ <showDeprecation>true</showDeprecation>
+ </configuration>
+ <dependencies>
+ <dependency>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-java</artifactId>
+ <version>1.1.0</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>3.2.0</version>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+</project>
=====================================
debian/rules
=====================================
@@ -0,0 +1,16 @@
+#!/usr/bin/make -f
+
+# Ensure packages build with no Internet access
+export http_proxy=127.0.0.1:9
+export https_proxy=127.0.0.1:9
+
+%:
+ dh $@ --buildsystem=maven --with maven_repo_helper
+
+override_dh_auto_test:
+
+execute_before_dh_auto_configure:
+ cp debian/pom.xml pom.xml
+
+execute_before_dh_auto_clean:
+ rm -f pom.xml
=====================================
debian/salsa-ci.yml
=====================================
@@ -0,0 +1,4 @@
+---
+include:
+ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
+ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml
=====================================
debian/source/format
=====================================
@@ -0,0 +1 @@
+3.0 (quilt)
=====================================
debian/upstream/metadata
=====================================
@@ -0,0 +1,4 @@
+Bug-Database: https://github.com/plume-lib/reflection-util/issues
+Bug-Submit: https://github.com/plume-lib/reflection-util/issues/new
+Repository: https://github.com/plume-lib/reflection-util.git
+Repository-Browse: https://github.com/plume-lib/reflection-util
=====================================
debian/watch
=====================================
@@ -0,0 +1,4 @@
+version=4
+opts="repack, repacksuffix=+ds, dversionmangle=s/\+ds\d*$//" \
+ https://github.com/plume-lib/reflection-util/tags \
+ .*/tags/v?@ANY_VERSION@\.tar\.gz
View it on GitLab: https://salsa.debian.org/java-team/plume-reflection-util-java/-/commit/6d4cbd049d08df03bfad973ea4400c9b74d50d92
--
View it on GitLab: https://salsa.debian.org/java-team/plume-reflection-util-java/-/commit/6d4cbd049d08df03bfad973ea4400c9b74d50d92
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/20230616/a9e71346/attachment.htm>
More information about the pkg-java-commits
mailing list