rpms/bytelist/devel Makefile, 1.2, 1.3 bytelist.spec, 1.9, 1.10 import.log, NONE, 1.1 sources, 1.5, 1.6 .cvsignore, 1.4, 1.5 dead.package, 1.1, NONE

Victor G. Vasilyev victorv at fedoraproject.org
Thu Feb 11 09:58:20 UTC 2010


Author: victorv

Update of /cvs/pkgs/rpms/bytelist/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv16510/devel

Modified Files:
	.cvsignore 
Added Files:
	Makefile bytelist.spec import.log sources 
Removed Files:
	dead.package 
Log Message:
https://bugzilla.redhat.com/show_bug.cgi?id=560169



Index: Makefile
===================================================================
RCS file: Makefile
diff -N Makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ Makefile	11 Feb 2010 09:58:19 -0000	1.3
@@ -0,0 +1,21 @@
+# Makefile for source rpm: bytelist
+# $Id$
+NAME := bytelist
+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: bytelist.spec
===================================================================
RCS file: bytelist.spec
diff -N bytelist.spec
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ bytelist.spec	11 Feb 2010 09:58:19 -0000	1.10
@@ -0,0 +1,101 @@
+%global  git_commit 61655c8
+%global cluster jruby
+
+# Prevent brp-java-repack-jars from being run.
+%define __jar_repack %{nil}
+
+Name:           bytelist
+Version:        1.0.3
+Release:        2%{?dist}
+Summary:        A java library for lists of bytes
+
+Group:          Development/Libraries
+License:        CPL or GPLv2+ or LGPLv2+
+URL:            http://github.com/%{cluster}/%{name}
+Source0:        %{url}/tarball/%{version}/%{cluster}-%{name}-%{git_commit}.tar.gz
+
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:      noarch
+
+BuildRequires:  ant
+BuildRequires:  ant-junit
+BuildRequires:  java-devel
+BuildRequires:  jcodings
+BuildRequires:  jpackage-utils
+BuildRequires:  junit
+
+Requires:       java
+Requires:       jcodings
+Requires:       jpackage-utils
+
+
+%description
+A small java library for manipulating lists of bytes.
+
+
+%prep
+%setup -q -n %{cluster}-%{name}-%{git_commit}
+
+find -name '*.class' -exec rm -f '{}' \;
+find -name '*.jar' -exec rm -f '{}' \;
+
+
+%build
+echo "See %{url} for more info about the %{name} project." > README.txt
+
+export CLASSPATH=$(build-classpath junit jcodings)
+%__mkdir_p lib
+%ant
+
+
+%install
+%__rm -rf %{buildroot}
+%__mkdir_p %{buildroot}%{_javadir}
+
+%__cp -p lib/%{name}-1.0.1.jar %{buildroot}%{_javadir}/%{name}-%{version}.jar
+pushd %{buildroot}%{_javadir}/
+  %__ln_s %{name}-%{version}.jar %{name}.jar
+popd
+
+
+%check
+export CLASSPATH=$(build-classpath junit jcodings)
+%ant test
+
+
+%clean
+%__rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%{_javadir}/*
+%doc README.txt
+
+%changelog
+* Tue Feb 09 2010 Victor G. Vasilyev <victor.vasilyev at sun.com> - 1.0.3-2
+- Fix the clean up code in the prep section
+- Fix typo
+- Save changelog
+
+* Thu Jan 28 2010 Victor G. Vasilyev <victor.vasilyev at sun.com> - 1.0.3-1
+- 1.0.3
+- Remove gcj bits
+- New URL
+- Use macros in all sections of the spec
+- Add README.txt generated on the fly
+
+* Mon Feb 23 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.0.1-0.2.svn9177
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Sun Feb 15 2009 Conrad Meyer <konrad at tylerc.org> - 1.0.1-0.1.svn9177
+- Bump to SVN HEAD.
+
+* Sun Feb 15 2009 Conrad Meyer <konrad at tylerc.org> - 1.0-1
+- Bump to 1.0 release.
+
+* Tue Apr 22 2008 Conrad Meyer <konrad at tylerc.org> - 0.1-0.2.svn6558
+- Do not include version in jar filename.
+- Run tests in check section.
+
+* Tue Apr 22 2008 Conrad Meyer <konrad at tylerc.org> - 0.1-0.1.svn6558
+- Initial RPM.


--- NEW FILE import.log ---
bytelist-1_0_3-2_fc13:HEAD:bytelist-1.0.3-2.fc13.src.rpm:1265882137


Index: sources
===================================================================
RCS file: sources
diff -N sources
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ sources	11 Feb 2010 09:58:19 -0000	1.6
@@ -0,0 +1 @@
+46eb78de8a09934821fb0600f22b9853  jruby-bytelist-61655c8.tar.gz


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/bytelist/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- .cvsignore	15 Feb 2009 23:08:56 -0000	1.4
+++ .cvsignore	11 Feb 2010 09:58:19 -0000	1.5
@@ -1 +1 @@
-bytelist-svn9177.tar.bz2
+jruby-bytelist-61655c8.tar.gz


--- dead.package DELETED ---



More information about the scm-commits mailing list