2022-05-09 11:09:05 +00:00
|
|
|
|
#
|
|
|
|
|
# spec file for package autolink
|
|
|
|
|
#
|
2024-01-15 12:18:46 +00:00
|
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2022-05-09 11:09:05 +00:00
|
|
|
|
#
|
|
|
|
|
# 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
|
2024-01-15 12:18:46 +00:00
|
|
|
|
Version: 0.10.1
|
2022-05-09 11:09:05 +00:00
|
|
|
|
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
|
2023-10-25 18:58:19 +00:00
|
|
|
|
BuildRequires: maven-local java-devel >= 1.8
|
2022-05-09 11:09:05 +00:00
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
Java library to extract links such as URLs and email addresses from plain text.
|
|
|
|
|
It’s 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
|
|
|
|
|
|
2024-01-15 12:18:46 +00:00
|
|
|
|
%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
|
2023-10-25 18:58:19 +00:00
|
|
|
|
|
2022-05-09 11:09:05 +00:00
|
|
|
|
%build
|
2024-01-15 12:18:46 +00:00
|
|
|
|
%{mvn_build} -f -- \
|
|
|
|
|
-Dproject.build.outputTimestamp=$(date -u -d @${SOURCE_DATE_EPOCH:-$(date +%%s)} +%%Y-%%m-%%dT%%H:%%M:%%SZ) \
|
|
|
|
|
-Dsource=8
|
2022-05-09 11:09:05 +00:00
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%mvn_install
|
|
|
|
|
%fdupes %{buildroot}%{_javadocdir}
|
|
|
|
|
|
|
|
|
|
%files -f .mfiles
|
|
|
|
|
%license LICENSE
|
2022-05-09 22:34:35 +00:00
|
|
|
|
%doc {README,CHANGELOG}.md
|
2022-05-09 11:09:05 +00:00
|
|
|
|
|
|
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
|
|
|
%license LICENSE
|
|
|
|
|
|
|
|
|
|
%changelog
|