till pushed to javasqlite (el5). "2015-04-13: Retired orphaned package, because it was orphaned for more than six weeks. (..more)"

notifications at fedoraproject.org notifications at fedoraproject.org
Mon Apr 13 15:50:52 UTC 2015


>From cb7de6f5441e0e99aac562cb249642d3db8a8dc4 Mon Sep 17 00:00:00 2001
From: Till Maas <opensource at till.name>
Date: Mon, 13 Apr 2015 17:50:38 +0200
Subject: 2015-04-13: Retired orphaned package, because it was orphaned for
 more than six weeks. Reference: https://fedorahosted.org/epel/ticket/7


diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 4321aa8..0000000
--- a/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-javasqlite-20090430.tar.gz
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..b634127
--- /dev/null
+++ b/dead.package
@@ -0,0 +1,3 @@
+2015-04-13: Retired orphaned package, because it was orphaned for more than six weeks.
+Reference: https://fedorahosted.org/epel/ticket/7
+
diff --git a/javasqlite-20090430-jnipath.patch b/javasqlite-20090430-jnipath.patch
deleted file mode 100644
index 7e1f7e7..0000000
--- a/javasqlite-20090430-jnipath.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -up javasqlite-20090430/SQLite/Database.java~ javasqlite-20090430/SQLite/Database.java
---- javasqlite-20090430/SQLite/Database.java~	2009-04-08 11:53:00.000000000 +0300
-+++ javasqlite-20090430/SQLite/Database.java	2009-05-01 00:59:29.000000000 +0300
-@@ -868,7 +868,7 @@ public class Database {
- 	try {
- 	    String path = System.getProperty("SQLite.library.path");
- 	    if (path == null || path.length() == 0) {
--		System.loadLibrary("sqlite_jni");
-+		System.load("@JNIPATH@/" + System.mapLibraryName("sqlite_jni"));
- 	    } else {
- 		try {
- 		    java.lang.reflect.Method mapLibraryName;
diff --git a/javasqlite.spec b/javasqlite.spec
deleted file mode 100644
index a7352ff..0000000
--- a/javasqlite.spec
+++ /dev/null
@@ -1,156 +0,0 @@
-Name:           javasqlite
-Version:        20090430
-Release:        1%{?dist}.1
-Summary:        SQLite Java Wrapper/JDBC Driver
-
-Group:          Development/Libraries
-License:        BSD
-URL:            http://www.ch-werner.de/javasqlite/
-Source0:        http://www.ch-werner.de/javasqlite/%{name}-%{version}.tar.gz
-# jnipath: Fedora specific, no need to send upstream.
-Patch0:         %{name}-20090430-jnipath.patch
-BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-
-BuildRequires:  sqlite-devel
-# Not pulled in by EL 5.3 sqlite-devel
-BuildRequires:  pkgconfig
-BuildRequires:  java-devel = 1:1.6.0
-BuildRequires:  java-devel = 1.4.2
-BuildRequires:  java-javadoc
-Requires:       jre
-
-%description
-javasqlite is a Java wrapper including a basic JDBC driver for the
-SQLite database engine. It is designed using JNI to interface to the
-SQLite API.
-
-%package        javadoc
-Summary:        API documentation for %{name}
-Group:          Documentation
-Requires:       java-javadoc
-
-%description    javadoc
-API documentation for %{name}.
-
-
-%prep
-%setup -q
-sed -e 's|@JNIPATH@|%{_libdir}/%{name}|' %{PATCH0} | patch -p1
-sed -i -e 's/\r//g' doc/ajhowto.txt
-f=ChangeLog ; iconv -f iso-8859-1 -t utf-8 $f > $f.utf8 ; mv $f.utf8 $f
-
-
-%build
-
-origpath="$PATH"
-# Note that --enable-load-extension has security concerns, see configure --help
-common_flags="
-    --with-jardir=%{_libdir}/%{name}
-    --libdir=%{_libdir}/%{name}
-"
-
-# Pass #1: JDBC 3 driver and common files with 1.4.2
-export PATH="%{_jvmdir}/java-1.4.2/bin:$origpath" # bug 460761
-%configure $common_flags --with-jdk=%{_jvmdir}/java-1.4.2
-make sqlite.jar JAVAC_FLAGS="-source 1.4" # Java build not parallel clean
-
-# Pass #2: JDBC 4 driver and the rest with 1.6.0
-export PATH="%{_jvmdir}/java-1.6.0/bin:$origpath" # bug 460761 (to be sure)
-%configure $common_flags --with-jdk=%{_jvmdir}/java-1.6.0
-make # Java build not parallel clean
-
-# Add JDBC 3 classes
-jar uf sqlite.jar SQLite/JDBC2x/*.class
-
-make javadoc JAVADOCLINK=%{_javadocdir}/java
-
-
-%install
-rm -rf $RPM_BUILD_ROOT
-make install DESTDIR=$RPM_BUILD_ROOT
-rm -f $RPM_BUILD_ROOT%{_libdir}/%{name}/libsqlite_jni.la
-install -dm 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}
-cp -pR doc/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}
-
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-
-%check
-origpath="$PATH"
-for javaver in 1.4.2 1.6.0 ; do
-    jdir=%{_jvmdir}/java-$javaver/bin
-    export PATH="$jdir:$origpath" # bug 460761
-    # test2 is for SQLite 2.x, which we don't support
-    make JAVA_RUN="$jdir/java" JAVAC="$jdir/javac" test
-    # test3 uses zeroblob which is available in sqlite 3.4+
-    if pkg-config --atleast-version 3.4 sqlite3 ; then
-       make JAVA_RUN="$jdir/java" JAVAC="$jdir/javac" test3
-    fi
-done
-
-
-%files
-%defattr(-,root,root,-)
-%doc ChangeLog license.terms
-%dir %{_libdir}/%{name}/
-%{_libdir}/%{name}/sqlite.jar
-%{_libdir}/%{name}/libsqlite_jni.so
-
-%files javadoc
-%defattr(-,root,root,-)
-%{_javadocdir}/%{name}
-
-
-%changelog
-* Fri May  1 2009 Ville Skyttä <ville.skytta at iki.fi> - 20090430-1.1
-- Update to 20090430.
-- Don't use parallel make, Java build doesn't appear parallel clean.
-- Run more tests during build if built with SQLite 3.4+.
-- Improve description.
-
-* Sun Nov 30 2008 Ville Skyttä <ville.skytta at iki.fi> - 20081006-2.1
-- Own the /usr/lib*/javasqlite dir (#473609).
-
-* Tue Oct  7 2008 Ville Skyttä <ville.skytta at iki.fi> - 20081006-1.1
-- 20081006; all upstreamable patches applied upstream.
-
-* Sat Sep  6 2008 Ville Skyttä <ville.skytta at iki.fi> - 20080420-1.1
-- Include JDBC 3 (Java 1.4.x, 1.5.x) drivers.
-- Work around build setup issues #460761 and #460783.
-- Patch to output error message if loading the lib from a specified
-  SQLite.library.path fails.
-- Patch test suite to exit with non-zero status on failures.
-
-* Tue Apr 22 2008 Ville Skyttä <ville.skytta at iki.fi> - 20080420-1
-- 20080420; all upstreamable patches applied upstream.
-
-* Thu Apr  3 2008 Ville Skyttä <ville.skytta at iki.fi> - 20080401-2
-- First Fedora build.
-
-* Wed Apr  2 2008 Ville Skyttä <ville.skytta at iki.fi> - 20080401-1
-- Update to 20080401.
-- Patch to install *.so as an unversioned module.
-- Patch to fix parallel make (#439941, Colin Walters).
-- Build with "-source 5" instead of "-source 5.0" (#439941, Colin Walters).
-- Use %%{_jvmdir} instead of %%{_prefix}/lib/jvm.
-
-* Thu Mar 20 2008 Ville Skyttä <ville.skytta at iki.fi> - 20080315-1
-- 20080315; classpath, lib64, and getboolean patches applied upstream.
-- Install to %%{_libdir}/%%{name} per current Fedora packaging guidelines.
-- Patch to appease recent libtool.
-- Patch to honor $RPM_OPT_FLAGS.
-
-* Sat Nov 10 2007 Ville Skyttä <ville.skytta at iki.fi> - 20070915-0.2
-- Build with -source 5.0.
-- More classpath fixes.
-
-* Tue Sep 18 2007 Ville Skyttä <ville.skytta at iki.fi> - 20070915-0.1
-- 20070915.
-- Disable parallel build, doesn't work.
-- Patch to fix build and test suite classpath.
-- Patch to add support for ResultSet.getBoolean().
-
-* Fri Sep 14 2007 Ville Skyttä <ville.skytta at iki.fi> - 20070914-0.1
-- First build.
diff --git a/sources b/sources
deleted file mode 100644
index a336c06..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-fe17f7a5154cef4dbc5e5829b5c9682a  javasqlite-20090430.tar.gz
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/javasqlite.git/commit/?h=el5&id=cb7de6f5441e0e99aac562cb249642d3db8a8dc4


More information about the scm-commits mailing list