Files
autolink/autolink.spec
Fridrich Strba d75038fe3f Accepting request 1138413 from home:urbic:branches:Java:packages
- Update to v0.10.1
  * Changed
    + Bump maven plugin versions
- Update to v0.10.0
  * Changed
    + Stop URLs at '`' characters too, same as < and >
    + Build and test on Java 11
- Reproducible builds: use SOURCE_DATE_EPOCH for timestamp

OBS-URL: https://build.opensuse.org/request/show/1138413
OBS-URL: https://build.opensuse.org/package/show/Java:packages/autolink?expand=0&rev=4
2024-01-15 12:18:46 +00:00

66 lines
2.0 KiB
RPMSpec
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#
# spec file for package autolink
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: autolink
Version: 0.10.1
Release: 0
Summary: Java library to extract links from plain text
License: MIT
Group: Development/Libraries/Java
URL: https://github.com/robinst/%{name}-java
Source: %{url}/archive/refs/tags/%{name}-%{version}.tar.gz
BuildRequires: fdupes
BuildRequires: maven-local java-devel >= 1.8
BuildArch: noarch
%description
Java library to extract links such as URLs and email addresses from plain text.
Its smart about where a link ends, such as with trailing punctuation.
%package javadoc
Summary: API documentation for %{name}
Group: Documentation/HTML
%description javadoc
API documentation for %{name}.
%prep
%autosetup -n %{name}-java-%{name}-%{version}
%pom_remove_plugin :nexus-staging-maven-plugin
%pom_xpath_set 'pom:plugin[pom:artifactId="maven-compiler-plugin"]/pom:configuration/pom:source' 8
%pom_xpath_set 'pom:plugin[pom:artifactId="maven-compiler-plugin"]/pom:configuration/pom:target' 8
%build
%{mvn_build} -f -- \
-Dproject.build.outputTimestamp=$(date -u -d @${SOURCE_DATE_EPOCH:-$(date +%%s)} +%%Y-%%m-%%dT%%H:%%M:%%SZ) \
-Dsource=8
%install
%mvn_install
%fdupes %{buildroot}%{_javadocdir}
%files -f .mfiles
%license LICENSE
%doc {README,CHANGELOG}.md
%files javadoc -f .mfiles-javadoc
%license LICENSE
%changelog