Compare commits
29 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3465006df7 | ||
|
|
c25c10bfde | ||
|
|
eb39fee7b6 | ||
|
|
a0ea78a428 | ||
|
|
15ec780848 | ||
|
|
7af7194a29 | ||
|
|
c8b8b4cfbf | ||
|
|
5c6f1d1835 | ||
|
|
5a10983848 | ||
|
|
7d5c2c365d | ||
|
|
eb2ef49e9c | ||
|
|
bac6ec08ee | ||
|
|
d6f408d7e1 | ||
|
|
3e7d07fcbb | ||
|
|
4010a7a03b | ||
|
|
4e9807bb1a | ||
|
|
41acdaf6e0 | ||
|
|
15c9f8d036 | ||
|
|
cb648d36b6 | ||
|
|
44d4e7a89f | ||
|
|
b0217548f4 | ||
|
|
d0149420c9 | ||
|
|
ed408dbcf0 | ||
|
|
9eb1fe5325 | ||
|
|
5bb7f1a249 | ||
|
|
695c34e53f | ||
|
|
fcad28f7d3 | ||
|
|
74a9d77b89 | ||
|
|
5ae0f2aeb9 |
6 changed files with 1 additions and 166 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -1,3 +0,0 @@
|
|||
UMLGraph-5.2.tar.gz
|
||||
UMLGraph-5.4.tar.gz
|
||||
UMLGraph-5.6.tar.gz
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Orphaned for 6+ weeks
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
--- build.xml.sav 2012-07-23 16:12:36.605075712 +0300
|
||||
+++ build.xml 2012-07-23 16:14:05.525998247 +0300
|
||||
@@ -47,7 +47,7 @@
|
||||
<property name="groupId" value="org.umlgraph" />
|
||||
<property name="artifactId" value="UmlGraph" />
|
||||
<!-- <property name="version" value="1.0-SNAPSHOT" /> -->
|
||||
-<gitversion outputproperty="version"/>
|
||||
+<property name="version" value="1.6"/>
|
||||
|
||||
<!-- define artifacts' name, which follows the convention of Maven -->
|
||||
<property name="maven-jar" value="${dist}/lib/${artifactId}-${version}.jar" />
|
||||
@@ -76,12 +76,7 @@
|
||||
</target>
|
||||
|
||||
<target name="version">
|
||||
- <exec executable="git"
|
||||
- outputproperty="VERSION">
|
||||
- <arg value="describe"/>
|
||||
- <arg value="--abbrev=6"/>
|
||||
- <arg value="HEAD"/>
|
||||
- </exec>
|
||||
+ <property name="VERSION" value="1.6"/>
|
||||
<echo>Version is ${VERSION}</echo>
|
||||
<echo file="src/org/umlgraph/doclet/Version.java">/* Automatically generated file */
|
||||
package org.umlgraph.doclet;
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
564e01a6e97ed7587f1d98ce8ff5e72b UMLGraph-5.6.tar.gz
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<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/maven-v4_0_0.xsd">
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.umlgraph</groupId>
|
||||
<artifactId>umlgraph</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>UMLGraph</name>
|
||||
<version>5.6</version>
|
||||
<description>Declarative Drawing of UML Diagrams</description>
|
||||
<url>http://www.umlgraph.org</url>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>BSD License (original)</name>
|
||||
<url>http://www.opensource.org/licenses/bsd-license.php</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/dspinellis/UMLGraph</url>
|
||||
<connection>git://github.com/dspinellis/UMLGraph.git</connection>
|
||||
</scm>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>dspinellis</id>
|
||||
<name>Diomidis Spinellis</name>
|
||||
<email>dds@aueb.gr</email>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<dependencies/>
|
||||
|
||||
</project>
|
||||
|
|
@ -1,99 +0,0 @@
|
|||
Name: umlgraph
|
||||
Version: 5.6
|
||||
Release: 3%{?dist}
|
||||
Summary: Automated Drawing of UML Diagrams
|
||||
|
||||
Group: Development/Libraries
|
||||
License: BSD
|
||||
URL: http://umlgraph.org/
|
||||
Source0: http://umlgraph.org/UMLGraph-%{version}.tar.gz
|
||||
Source1: http://repo2.maven.org/maven2/org/umlgraph/umlgraph/%{version}/%{name}-%{version}.pom
|
||||
Patch0: fix-build.patch
|
||||
|
||||
BuildRequires: ant
|
||||
BuildRequires: graphviz
|
||||
BuildRequires: java-devel >= 1:1.6.0
|
||||
Requires: graphviz
|
||||
Requires: java
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
UMLGraph allows the declarative specification and drawing of UML class
|
||||
and sequence diagrams. The specification is done in text diagrams,
|
||||
that are then transformed into the appropriate graphical representations.
|
||||
|
||||
%package javadoc
|
||||
Group: Documentation
|
||||
Summary: Javadoc for %{name}
|
||||
Requires: jpackage-utils
|
||||
|
||||
%description javadoc
|
||||
API documentation for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -q -n UMLGraph-%{version}
|
||||
sed -i -e 's|<attribute name=\"Class-Path\" value=\"tools.jar\"/>||g' build.xml
|
||||
for f in $(find . -name "*.jar"); do
|
||||
mv $f $f.no
|
||||
done
|
||||
%patch0 -b .sav
|
||||
|
||||
%build
|
||||
ant compile test javadocs
|
||||
|
||||
%install
|
||||
# jars
|
||||
install -d -m 755 $RPM_BUILD_ROOT%{_javadir}
|
||||
install -m 644 lib/UmlGraph.jar \
|
||||
$RPM_BUILD_ROOT%{_javadir}/%{name}.jar
|
||||
|
||||
install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
|
||||
install -m 644 %{SOURCE1} $RPM_BUILD_ROOT/%{_mavenpomdir}/JPP-%{name}.pom
|
||||
%add_maven_depmap JPP-%{name}.pom %{name}.jar
|
||||
|
||||
# javadoc
|
||||
install -d -m 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
||||
rm -fr javadoc/gr/spinellis/umlgraph/doclet/*.dot
|
||||
rm -fr javadoc/org/umlgraph/doclet/*.dot
|
||||
cp -pr javadoc/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
||||
|
||||
%files
|
||||
%doc README.txt
|
||||
%{_javadir}/*
|
||||
%{_mavenpomdir}/*
|
||||
%{_mavendepmapfragdir}/*
|
||||
|
||||
%files javadoc
|
||||
%doc %{_javadocdir}/%{name}
|
||||
|
||||
%changelog
|
||||
* Mon Jul 23 2012 Alexander Kurtakov <akurtako@redhat.com> 5.6-3
|
||||
- Do not call git during build.
|
||||
|
||||
* Mon Jul 23 2012 Alexander Kurtakov <akurtako@redhat.com> 5.6-2
|
||||
- BR git.
|
||||
|
||||
* Mon Jul 23 2012 Alexander Kurtakov <akurtako@redhat.com> 5.6-1
|
||||
- New upstream release.
|
||||
|
||||
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.4-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Tue Jan 11 2011 Alexander Kurtakov <akurtako@redhat.com> 5.4-1
|
||||
- Update to upstream 5.4.
|
||||
|
||||
* Thu Oct 8 2009 Alexander Kurtakov <akurtako@redhat.com> 5.2-3
|
||||
- BR openjdk.
|
||||
|
||||
* Wed Oct 7 2009 Alexander Kurtakov <akurtako@redhat.com> 5.2-2
|
||||
- Add missing BR/R on graphviz.
|
||||
|
||||
* Thu Oct 1 2009 Alexander Kurtakov <akurtako@redhat.com> 5.2-1
|
||||
- Initial package.
|
||||
Loading…
Add table
Add a link
Reference in a new issue