Add Debian package
This commit is contained in:
parent
0e533afb4d
commit
1df8abb7d2
|
@ -0,0 +1,5 @@
|
|||
postgresql-iban (1.0.0~git15.g0e533af-1) bookworm; urgency=medium
|
||||
|
||||
* Add Debian packaging
|
||||
|
||||
-- jordi fita mas <jordi@tandem.blog> Mon, 19 Jun 2023 08:54:47 +0000
|
|
@ -0,0 +1,22 @@
|
|||
Source: postgresql-iban
|
||||
Section: database
|
||||
Priority: optional
|
||||
Maintainer: jordi fita mas <jordi@tandem.blog>
|
||||
Build-Depends:
|
||||
debhelper-compat (= 13),
|
||||
postgresql-all (>= 217~),
|
||||
Standards-Version: 4.6.0
|
||||
Vcs-Browser: https://github.com/yorickdewid/PostgreSQL-IBAN
|
||||
Vcs-Git: https://github.com/yorickdewid/PostgreSQL-IBAN.git
|
||||
Homepage: https://github.com/yorickdewid/PostgreSQL-IBAN
|
||||
Rules-Requires-Root: no
|
||||
|
||||
Package: postgresql-15-iban
|
||||
Architecture: any
|
||||
Depends:
|
||||
${shlibs:Depends},
|
||||
${misc:Depends},
|
||||
${postgresql:Depends}
|
||||
description: IBAN type for PostgreSQL
|
||||
PostgreSQL IBAN extension that can verify International Bank Account Numbers.
|
||||
This ensures that only valid bank account numbers are stored.
|
|
@ -0,0 +1,22 @@
|
|||
Source: postgresql-iban
|
||||
Section: database
|
||||
Priority: optional
|
||||
Maintainer: jordi fita mas <jordi@tandem.blog>
|
||||
Build-Depends:
|
||||
debhelper-compat (= 13),
|
||||
postgresql-all (>= 217~),
|
||||
Standards-Version: 4.6.0
|
||||
Vcs-Browser: https://github.com/yorickdewid/PostgreSQL-IBAN
|
||||
Vcs-Git: https://github.com/yorickdewid/PostgreSQL-IBAN.git
|
||||
Homepage: https://github.com/yorickdewid/PostgreSQL-IBAN
|
||||
Rules-Requires-Root: no
|
||||
|
||||
Package: postgresql-PGVERSION-iban
|
||||
Architecture: any
|
||||
Depends:
|
||||
${shlibs:Depends},
|
||||
${misc:Depends},
|
||||
${postgresql:Depends}
|
||||
description: IBAN type for PostgreSQL
|
||||
PostgreSQL IBAN extension that can verify International Bank Account Numbers.
|
||||
This ensures that only valid bank account numbers are stored.
|
|
@ -0,0 +1,29 @@
|
|||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Source: https://github.com/yorickdewid/PostgreSQL-IBAN
|
||||
Upstream-Name: PostgreSQL-IBAN
|
||||
Upstream-Contact: yorick17@outlook.com
|
||||
|
||||
Files: *
|
||||
Copyright: 2016 Yorick de Wid
|
||||
License: GPL-3+
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
.
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
Comment:
|
||||
On Debian systems, the complete text of the GNU General Public
|
||||
License version 3 can be found in "/usr/share/common-licenses/GPL-3".
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2023 jordi fita mas
|
||||
License: GPL-3+
|
||||
This debian package is distributed under the same license as the source
|
||||
package.
|
|
@ -0,0 +1 @@
|
|||
13+
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/make -f
|
||||
|
||||
include /usr/share/postgresql-common/pgxs_debian_control.mk
|
||||
|
||||
%:
|
||||
dh $@ --with pgxs_loop
|
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
Loading…
Reference in New Issue