[Groonga-commit] pgroonga/pgroonga at ab9c499 [master] package ubuntu: support Xenial

Back to archive index

Kouhei Sutou null+****@clear*****
Sat Apr 23 15:32:40 JST 2016


Kouhei Sutou	2016-04-23 15:32:40 +0900 (Sat, 23 Apr 2016)

  New Revision: ab9c49963c0b66b25135be5b57bf334373ed2c24
  https://github.com/pgroonga/pgroonga/commit/ab9c49963c0b66b25135be5b57bf334373ed2c24

  Message:
    package ubuntu: support Xenial
    
    (Maybe work.)

  Added files:
    packages/debian95/changelog
    packages/debian95/compat
    packages/debian95/control
    packages/debian95/copyright
    packages/debian95/patches/series
    packages/debian95/rules
    packages/debian95/source/format
    packages/debian95/watch
  Modified files:
    Rakefile

  Modified: Rakefile (+13 -1)
===================================================================
--- Rakefile    2016-04-18 12:18:42 +0900 (83ee931)
+++ Rakefile    2016-04-23 15:32:40 +0900 (047f1ac)
@@ -426,16 +426,28 @@ postgresql-server-dev-9.4
              "--package", package,
              "--version", version,
              "--source-archive", archive_name,
-             "--code-names", "vivid,wily",
+             "--code-names", "wily",
              "--debian-directory", "packages/debian94",
              "--pgp-sign-key", env_value("LAUNCHPAD_UPLOADER_PGP_KEY"))
       end
+
+      desc "Upload package for PostgreSQL 9.5"
+      task :postgresql95 => [archive_name] do
+        ruby("#{groonga_source_dir}/packages/ubuntu/upload.rb",
+             "--package", package,
+             "--version", version,
+             "--source-archive", archive_name,
+             "--code-names", "xenial",
+             "--debian-directory", "packages/debian95",
+             "--pgp-sign-key", env_value("LAUNCHPAD_UPLOADER_PGP_KEY"))
+      end
     end
 
     desc "Upload package"
     upload_tasks = [
       "package:ubuntu:upload:postgresql93",
       "package:ubuntu:upload:postgresql94",
+      "package:ubuntu:upload:postgresql95",
     ]
     task :upload => upload_tasks
   end

  Added: packages/debian95/changelog (+89 -0) 100644
===================================================================
--- /dev/null
+++ packages/debian95/changelog    2016-04-23 15:32:40 +0900 (99265d6)
@@ -0,0 +1,89 @@
+pgroonga (1.0.6-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Kouhei Sutou <kou �� clear-code.com>  Fri, 15 Apr 2016 00:00:00 +0900
+
+pgroonga (1.0.5-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Kouhei Sutou <kou �� clear-code.com>  Tue, 01 Mar 2016 00:00:00 +0900
+
+pgroonga (1.0.4-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Kouhei Sutou <kou �� clear-code.com>  Tue, 01 Mar 2016 00:00:00 +0900
+
+pgroonga (1.0.3-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Kouhei Sutou <kou �� clear-code.com>  Mon, 29 Feb 2016 00:00:00 +0900
+
+pgroonga (1.0.2-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Kouhei Sutou <kou �� clear-code.com>  Tue, 09 Feb 2016 00:00:00 +0900
+
+pgroonga (1.0.1-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Kouhei Sutou <kou �� clear-code.com>  Tue, 29 Dec 2015 00:00:00 +0900
+
+pgroonga (1.0.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Kouhei Sutou <kou �� clear-code.com>  Thu, 29 Oct 2015 00:00:00 +0900
+
+pgroonga (0.9.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Kouhei Sutou <kou �� clear-code.com>  Tue, 29 Sep 2015 00:00:00 +0900
+
+pgroonga (0.8.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Kouhei Sutou <kou �� clear-code.com>  Tue, 01 Sep 2015 00:00:00 +0900
+
+pgroonga (0.7.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Kouhei Sutou <kou �� clear-code.com>  Fri, 10 Jul 2015 00:00:00 +0900
+
+pgroonga (0.6.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Kouhei Sutou <kou �� clear-code.com>  Fri, 29 May 2015 00:00:00 +0900
+
+pgroonga (0.5.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Kouhei Sutou <kou �� clear-code.com>  Wed, 29 Apr 2015 00:00:00 +0900
+
+pgroonga (0.4.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Kouhei Sutou <kou �� clear-code.com>  Sun, 29 Mar 2015 00:00:00 +0900
+
+pgroonga (0.3.0-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Kouhei Sutou <kou �� clear-code.com>  Mon, 09 Feb 2015 11:48:41 +0900
+
+pgroonga (0.2.0-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Kouhei Sutou <kou �� clear-code.com>  Thu, 29 Jan 2015 00:00:00 +0900

  Added: packages/debian95/compat (+1 -0) 100644
===================================================================
--- /dev/null
+++ packages/debian95/compat    2016-04-23 15:32:40 +0900 (ec63514)
@@ -0,0 +1 @@
+9

  Added: packages/debian95/control (+22 -0) 100644
===================================================================
--- /dev/null
+++ packages/debian95/control    2016-04-23 15:32:40 +0900 (ba3be2f)
@@ -0,0 +1,22 @@
+Source: pgroonga
+Section: database
+Priority: optional
+Maintainer: PGroonga Project <packages �� groonga.org>
+Build-Depends:
+  debhelper (>= 9),
+  pkg-config,
+  libgroonga-dev,
+  postgresql-server-dev-9.5
+Standards-Version: 3.9.8
+Homepage: http://pgroonga.github.io/
+
+Package: postgresql-9.5-pgroonga
+Architecture: any
+Depends:
+  ${misc:Depends},
+  ${shlibs:Depends},
+  libgroonga0,
+  postgresql-9.5
+Description: Fast full-text search plugin for PostgreSQL based on Groonga
+ PGroonga is a PostgreSQL plugin. It provides fast full-text search feature.
+ It is based on Groonga full-text search engine.

  Added: packages/debian95/copyright (+35 -0) 100644
===================================================================
--- /dev/null
+++ packages/debian95/copyright    2016-04-23 15:32:40 +0900 (0ca4f9e)
@@ -0,0 +1,35 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Contact: Kouhei Sutou <kou****@clear*****>
+Source: http://packages.groonga.org/source/pgroonga/
+
+Files: *
+Copyright: 2015 Kouhei Sutou <kou �� clear-code.com>
+License: PostgreSQL
+
+Files: pgroonga.c
+       pgroonga.h
+       pgroonga_types.c
+       pgroonga--*.sql
+Copyright: 2015 Kouhei Sutou <kou �� clear-code.com>
+           2010 Itagaki Takahiro
+           2009-2010, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
+           1996-2010, The PostgreSQL Global Development Group
+           1994, The Regents of the University of California
+License: PostgreSQL
+
+License: PostgreSQL
+ Permission to use, copy, modify, and distribute this software and
+ its documentation for any purpose, without fee, and without a written
+ agreement is hereby granted, provided that the above copyright notice and
+ this paragraph and the following two paragraphs appear in all copies.
+ .
+ IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE TO ANY PARTY FOR DIRECT,
+ INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST
+ PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
+ IF THE COPYRIGHT HOLDERS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ THE COPYRIGHT HOLDERS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
+ BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS,
+ AND THE COPYRIGHT HOLDERS HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE,
+ SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.

  Added: packages/debian95/patches/series (+0 -0) 100644
===================================================================
--- /dev/null
+++ packages/debian95/patches/series    2016-04-23 15:32:40 +0900 (e69de29)

  Added: packages/debian95/rules (+13 -0) 100755
===================================================================
--- /dev/null
+++ packages/debian95/rules    2016-04-23 15:32:40 +0900 (633c7d4)
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+# -*- makefile-gmake -*-
+#
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+# This has to be exported to make some magic below work.
+export DH_OPTIONS
+
+%:
+	dh $@
+
+# disable 'make check'.
+override_dh_auto_test:

  Added: packages/debian95/source/format (+1 -0) 100644
===================================================================
--- /dev/null
+++ packages/debian95/source/format    2016-04-23 15:32:40 +0900 (163aaf8)
@@ -0,0 +1 @@
+3.0 (quilt)

  Added: packages/debian95/watch (+2 -0) 100644
===================================================================
--- /dev/null
+++ packages/debian95/watch    2016-04-23 15:32:40 +0900 (3de5752)
@@ -0,0 +1,2 @@
+version=3
+http://packages.groonga.org/source/pgroonga/pgroonga-(.+).tar.gz
-------------- next part --------------
HTML����������������������������...
Télécharger 



More information about the Groonga-commit mailing list
Back to archive index