commit 96d8f6128a2129030c76f542d7e74b2ce576a4c9bb3d6c759bebce6a1f45f28e Author: Fridrich Strba Date: Fri Mar 8 15:57:43 2019 +0000 OBS-URL: https://build.opensuse.org/package/show/Java:packages/plexus-cipher?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/plexus-cipher-1.7.tar.gz b/plexus-cipher-1.7.tar.gz new file mode 100644 index 0000000..fbdec70 --- /dev/null +++ b/plexus-cipher-1.7.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5286d465265e2e37e1ff6c729be5bfbe2497dcc7c26084bdd533fff651e58fc9 +size 14930 diff --git a/plexus-cipher-build.xml b/plexus-cipher-build.xml new file mode 100644 index 0000000..12ba886 --- /dev/null +++ b/plexus-cipher-build.xml @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/plexus-cipher.changes b/plexus-cipher.changes new file mode 100644 index 0000000..d9b39bb --- /dev/null +++ b/plexus-cipher.changes @@ -0,0 +1,7 @@ +------------------------------------------------------------------- +Fri Mar 8 15:54:15 UTC 2019 - Fridrich Strba + +- Initial packaging of plexus-cipher 1.7 +- Generate and customize the ant build.xml file +- Generate the javax.inject.Named by grepping source files that + have the @Named annotation diff --git a/plexus-cipher.spec b/plexus-cipher.spec new file mode 100644 index 0000000..2fe1a9a --- /dev/null +++ b/plexus-cipher.spec @@ -0,0 +1,94 @@ +# +# spec file for package plexus-cipher +# +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# +# 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: plexus-cipher +Version: 1.7 +Release: 0 +Summary: Plexus Cipher: encryption/decryption Component +License: Apache-2.0 +Group: Development/Libraries/Java +URL: https://github.com/codehaus-plexus/plexus-cipher +# git clone https://github.com/sonatype/plexus-cipher.git +# cd plexus-cipher/ +# note this is version 1.7 + our patches which were incorporated by upstream maintainer +# git archive --format tar --prefix=plexus-cipher-1.7/ 0cff29e6b2e | gzip -9 > plexus-cipher-1.7.tar.gz +Source0: %{name}-%{version}.tar.gz +Source1: %{name}-build.xml +BuildRequires: fdupes ant +BuildRequires: maven-local +BuildRequires: cdi-api +BuildRequires: atinject +BuildArch: noarch + +%description +Plexus Cipher: encryption/decryption Component + +%package javadoc +Summary: Javadoc for %{name} + +%description javadoc +API documentation for %{name}. + +%prep +%setup -q +cp %{SOURCE1} build.xml + +# replace %{version}-SNAPSHOT with %{version} +%pom_xpath_replace pom:project/pom:version "%{version}" + +# fedora moved from sonatype sisu to eclipse sisu. sisu-inject-bean artifact +# doesn't exist in eclipse sisu. this artifact contains nothing but +# bundled classes from atinject, cdi-api, aopalliance and maybe others. +%pom_remove_dep org.sonatype.sisu:sisu-inject-bean +%pom_add_dep javax.inject:javax.inject:1:provided +%pom_add_dep javax.enterprise:cdi-api:1.0:provided +%pom_remove_dep junit:junit +%pom_add_dep junit:junit:3.8.2:test + +%build +mkdir -p lib +build-jar-repository -s lib cdi-api atinject + +%ant compile +# generate the META-INF/sisu/javax.inject.Named +mkdir -p target/classes/META-INF/sisu +grep -rl @Named src/main/java/ | sed 's#src/main/java/##g' | sed 's#\.java##g' | sed -s 's#/#\.#g' \ + >target/classes/META-INF/sisu/javax.inject.Named +%ant jar javadoc + +%install +# jar +install -dm 0755 %{buildroot}%{_javadir}/plexus +install -pm 0644 target/%{name}-%{version}.jar %{buildroot}%{_javadir}/plexus/%{name}.jar +# pom +install -dm 0755 %{buildroot}%{_mavenpomdir}/plexus +install -pm 0644 pom.xml %{buildroot}%{_mavenpomdir}/plexus/%{name}.pom +%add_maven_depmap plexus/%{name}.pom plexus/%{name}.jar +# javadoc +install -dm 0755 %{buildroot}%{_javadocdir}/%{name} +cp -pr target/site/apidocs/* %{buildroot}%{_javadocdir}/%{name}/ +%fdupes -s %{buildroot}%{_javadocdir} + +%files -f .mfiles +%license LICENSE.txt NOTICE.txt + +%files javadoc +%license LICENSE.txt NOTICE.txt +%{_javadocdir}/%{name} + +%changelog