rpms/jlint/devel Makefile, 1.3, 1.4 jlint.spec, 1.11, 1.12 sources, 1.3, 1.4 .cvsignore, 1.2, 1.3 dead.package, 1.1, NONE

Jerry James (jjames) fedora-extras-commits at redhat.com
Fri Sep 21 03:28:20 UTC 2007


Author: jjames

Update of /cvs/pkgs/rpms/jlint/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv1759/devel

Modified Files:
	.cvsignore 
Added Files:
	Makefile jlint.spec sources 
Removed Files:
	dead.package 
Log Message:
* Tue Sep 18 2007 Jerry James <loganjerry at gmail.com> - 1.23-1
- Initial RPM after rescuing jlint from its orphaned state



Index: Makefile
===================================================================
RCS file: Makefile
diff -N Makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ Makefile	21 Sep 2007 03:27:47 -0000	1.4
@@ -0,0 +1,21 @@
+# Makefile for source rpm: jlint
+# $Id$
+NAME := jlint
+SPECFILE = $(firstword $(wildcard *.spec))
+
+define find-makefile-common
+for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
+endef
+
+MAKEFILE_COMMON := $(shell $(find-makefile-common))
+
+ifeq ($(MAKEFILE_COMMON),)
+# attept a checkout
+define checkout-makefile-common
+test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
+endef
+
+MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
+endif
+
+include $(MAKEFILE_COMMON)


Index: jlint.spec
===================================================================
RCS file: jlint.spec
diff -N jlint.spec
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ jlint.spec	21 Sep 2007 03:27:47 -0000	1.12
@@ -0,0 +1,39 @@
+Name:           jlint
+Version:        1.23
+Release:        1%{?dist}
+Summary:        Java program checker
+
+Group:          Development/Tools
+License:        MIT
+URL:            http://www.garret.ru/~knizhnik/lang.html
+Source:         http://www.garret.ru/~knizhnik/%{name}-%{version}.tar.gz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+%description
+Jlint will check your Java code and find bugs, inconsistencies and
+synchronization problems by doing data flow analysis and building a lock
+graph.
+
+%prep
+%setup -q -n %{name}
+
+%build
+make %{?_smp_mflags} CFLAGS="-c -DNDEBUG $RPM_OPT_FLAGS" LFLAGS="$RPM_OPT_FLAGS"
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -dm 755 $RPM_BUILD_ROOT%{_bindir}
+make install INSTALL_DIR="$RPM_BUILD_ROOT%{_bindir}"
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root,-)
+%doc ReadMe.htm *.java
+%{_bindir}/antic
+%{_bindir}/jlint
+
+%changelog
+* Tue Sep 18 2007 Jerry James <loganjerry at gmail.com> - 1.23-1
+- Initial RPM after rescuing jlint from its orphaned state


Index: sources
===================================================================
RCS file: sources
diff -N sources
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ sources	21 Sep 2007 03:27:47 -0000	1.4
@@ -0,0 +1 @@
+8da9b040c53ad9c7cd56e7eea7622fc5  jlint-1.23.tar.gz


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/jlint/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore	8 Nov 2004 04:36:59 -0000	1.2
+++ .cvsignore	21 Sep 2007 03:27:47 -0000	1.3
@@ -1 +1 @@
-jlint-1.21.tar.gz
+jlint-1.23.tar.gz


--- dead.package DELETED ---




More information about the scm-commits mailing list