[postgresql-plparrot] initial upload

Gerd Pokorra gerd at fedoraproject.org
Sun Oct 31 04:22:56 UTC 2010


commit f6fcd11faf7eea13117300d36706a9fe2a20d16d
Author: gerd <gp at zimt.uni-siegen.de>
Date:   Sun Oct 31 05:22:58 2010 +0100

    initial upload

 .gitignore               |    1 +
 postgresql-plparrot.spec |   62 ++++++++++++++++++++++++++++++++++++++++++++++
 sources                  |    1 +
 3 files changed, 64 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..b8eb423 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+plparrot-0.04.tar.gz
diff --git a/postgresql-plparrot.spec b/postgresql-plparrot.spec
new file mode 100644
index 0000000..db2145e
--- /dev/null
+++ b/postgresql-plparrot.spec
@@ -0,0 +1,62 @@
+Name:		postgresql-plparrot
+Version:	0.04
+Release:	1%{?dist}
+Summary:	A PostgreSQL procedural language for the Parrot virtual machine
+
+Group:		Applications/Databases
+License:	Artistic 2.0
+URL:		http://pl.parrot.org/
+Source0:	http://github.com/downloads/leto/plparrot/plparrot-%{version}.tar.gz
+BuildRoot:	%(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
+
+BuildRequires:	postgresql-devel
+BuildRequires:	parrot-devel
+Requires:	postgresql-contrib
+
+%description
+PL/Parrot is the Parrot Virtual Machine, embedded into the PostgreSQL
+relational database. This means that any Parrot language has the opportunity
+to become a PostgreSQL Procedural Language (PL).
+
+
+%prep
+%setup -q -n plparrot-%{version}
+
+
+%build
+# do not build parallel
+make CFLAGS="$RPM_OPT_FLAGS"
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(-,root,root,-)
+%doc LICENSE README ROADMAP CREDITS html
+%{_libdir}/pgsql/plparrot.so
+%{_datadir}/pgsql/contrib/plparrot.sql
+
+
+%changelog
+* Fri Oct 22 2010 Gerd Pokorra <gp at zimt.uni-siegen.de> 0.04-1
+- update to new upstream, which includes more licensing information
+
+* Fri Oct 22 2010 Gerd Pokorra <gp at zimt.uni-siegen.de> 0.03-4
+- changed requires from postgresql to postgresql-contrib
+
+* Tue Oct 19 2010 Gerd Pokorra <gp at zimt.uni-siegen.de> 0.03-3
+- correct typo at CFLAGS
+
+* Sun Oct 03 2010 Gerd Pokorra <gp at zimt.uni-siegen.de> 0.03-2
+- shorten BuildRequires
+- changed group
+
+* Mon Sep 13 2010 Gerd Pokorra <gp at zimt.uni-siegen.de> 0.03-1
+- initial .spec file
diff --git a/sources b/sources
index e69de29..2c46098 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+e327fe8a16a40f7d6e58064fbeed44b7  plparrot-0.04.tar.gz


More information about the scm-commits mailing list