summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@vyos.io>2021-07-30 10:42:26 -0500
committerDaniil Baturin <daniil@vyos.io>2021-07-30 10:43:53 -0500
commit721b295a2fddb3227a9cbe7444ca39bfe52879b1 (patch)
tree2b379768257cd315f8e2574b3f2d9499854b5ac3
parentbf07c68a909eb93f8005c87b2af90b6cccc5d334 (diff)
downloadvyos-user-utils-721b295a2fddb3227a9cbe7444ca39bfe52879b1.tar.gz
vyos-user-utils-721b295a2fddb3227a9cbe7444ca39bfe52879b1.zip
Initial import.
-rw-r--r--.gitignore4
-rw-r--r--Jenkinsfile23
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control12
-rw-r--r--debian/copyright35
-rwxr-xr-xdebian/rules4
7 files changed, 84 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..2016a9d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+debian/files
+debian/*.debhelper.log
+debian/*.substvars
+debian/vyos-user-utils
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..21a6829
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,23 @@
+// Copyright (C) 2020-2021 VyOS maintainers and contributors
+//
+// This program is free software; you can redistribute it and/or modify
+// in order to easy exprort images built to "external" world
+// it under the terms of the GNU General Public License version 2 or later as
+// published by the Free Software Foundation.
+//
+// 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/>.
+@NonCPS
+
+// Using a version specifier library, use 'current' branch. The underscore (_)
+// is not a typo! You need this underscore if the line immediately after the
+// @Library annotation is not an import statement!
+@Library('vyos-build@current')_
+
+// Start package build using library function from https://github.com/vyos/vyos-build
+buildPackage(null, null, null, true)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..86874cf
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+vyos-user-utils (1.4.0+vyos1+current) unstable; urgency=medium
+
+ * Initial version.
+
+ -- Daniil Baturin <daniil@vyos.io> Fri, 30 Jul 2021 10:31:40 -0500
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..61a7825
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,12 @@
+Source: vyos-user-utils
+Section: contrib/net
+Priority: extra
+Maintainer: VyOS Package Maintainers <maintainers@vyos.net>
+Build-Depends: debhelper (>= 5)
+Standards-Version: 3.9.1
+
+Package: vyos-user-utils
+Architecture: all
+Depends: sipcalc
+Description: VyOS metapackage
+ Installs everything required for VyOS to work
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..73744cb
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,35 @@
+This package was debianized by Daniil Baturin <daniil@baturin.org> on
+Fri, 30 Jul 2021 10:31:40 -0500
+
+It's original content from the GIT repository <http://github.com/vyos/vyos-user-utils>
+
+Upstream Author:
+
+ <maintainers@vyos.net>
+
+Copyright:
+
+ Copyright (C) 2021 VyOS maintainers and contributors
+ All Rights Reserved.
+
+License:
+
+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 2, 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.
+
+A copy of the GNU General Public License is available as
+`/usr/share/common-licenses/GPL' in the Debian GNU/Linux distribution
+or on the World Wide Web at `http://www.gnu.org/copyleft/gpl.html'.
+You can also obtain it by writing to the Free Software Foundation,
+Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+MA 02110-1301, USA.
+
+The Debian packaging is (C) 2021, Daniil Baturin <daniil@baturin.org> and
+is licensed under the GPL, see above.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@