summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDima Kogan <dkogan@debian.org>2023-07-17 18:40:33 +0200
committerDima Kogan <dkogan@debian.org>2023-07-17 18:40:33 +0200
commit8431ffc02c7fe7838101bebb157c37e3b4cb1d1a (patch)
treeb0dda5c3b834f726550ff365aae03281cfd8379d
Import mrbuild_1.6-1.debian.tar.xz
[dgit import tarball mrbuild 1.6-1 mrbuild_1.6-1.debian.tar.xz]
-rw-r--r--changelog46
-rw-r--r--compat1
-rw-r--r--control22
-rw-r--r--copyright31
-rw-r--r--docs1
-rw-r--r--examples1
-rw-r--r--install2
-rw-r--r--manpages1
-rwxr-xr-xrules13
-rw-r--r--source/format1
-rw-r--r--upstream/metadata4
-rw-r--r--watch2
12 files changed, 125 insertions, 0 deletions
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..1ad14a4
--- /dev/null
+++ b/changelog
@@ -0,0 +1,46 @@
+mrbuild (1.6-1) unstable; urgency=medium
+
+ * New upstream release
+ - Bug fix: RPATH logic works without Python modules
+
+ -- Dima Kogan <dkogan@debian.org> Mon, 17 Jul 2023 09:40:33 -0700
+
+mrbuild (1.5-1) unstable; urgency=medium
+
+ * mrbuild Depends:chrpath
+ * New upstream release
+ - Build rules extended to work on BSD and OSX boxes
+ - Makefile.common removed: you MUST include "Makefile.common.header"
+ and "Makefile.common.footer" explicitly
+
+ -- Dima Kogan <dkogan@debian.org> Thu, 29 Jun 2023 12:07:10 -0700
+
+mrbuild (1.2-1) unstable; urgency=medium
+
+ * New upstream release
+
+ -- Dima Kogan <dkogan@debian.org> Thu, 19 Jan 2023 21:20:52 -0800
+
+mrbuild (1.1-4) unstable; urgency=medium
+
+ * Minor debian janitor cleanup
+
+ -- Dima Kogan <dkogan@debian.org> Sat, 14 Jan 2023 14:45:36 -0800
+
+mrbuild (1.1-3) unstable; urgency=medium
+
+ * mrbuild is Multi-Arch:foreign
+
+ -- Dima Kogan <dkogan@debian.org> Sat, 14 Jan 2023 14:26:11 -0800
+
+mrbuild (1.1-2) unstable; urgency=medium
+
+ * Source-only upload to migrate to testing
+
+ -- Dima Kogan <dkogan@debian.org> Mon, 31 Oct 2022 16:30:19 -0700
+
+mrbuild (1.1-1) unstable; urgency=medium
+
+ * Initial upload to Debian (Closes: #1021158)
+
+ -- Dima Kogan <dkogan@debian.org> Mon, 03 Oct 2022 00:39:05 -0700
diff --git a/compat b/compat
new file mode 100644
index 0000000..b4de394
--- /dev/null
+++ b/compat
@@ -0,0 +1 @@
+11
diff --git a/control b/control
new file mode 100644
index 0000000..d198d4d
--- /dev/null
+++ b/control
@@ -0,0 +1,22 @@
+Source: mrbuild
+Priority: optional
+Section: devel
+Build-Depends:
+# Please do not "fix" to use debhelper-compat. I want this to remain compatible
+# with older debian-based distros
+ debhelper (>= 11)
+Maintainer: Dima Kogan <dkogan@debian.org>
+Standards-Version: 4.6.1
+Homepage: https://github.com/dkogan/mrbuild
+Vcs-Git: https://salsa.debian.org/debian/mrbuild.git
+Vcs-Browser: https://salsa.debian.org/debian/mrbuild
+
+Package: mrbuild
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends},
+ chrpath
+Multi-Arch: foreign
+Description: A simple build system
+ mrbuild is a simple build system built with GNU Make. It makes it easy to setup
+ projects providing some executables, shared libraries, Python extension modules
+ and documentation
diff --git a/copyright b/copyright
new file mode 100644
index 0000000..c3a08a3
--- /dev/null
+++ b/copyright
@@ -0,0 +1,31 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Source: https://www.github.com/dkogan/mrbuild/
+Upstream-Contact: Dima Kogan, <dima@secretsauce.net>
+Upstream-Name: mrbuild
+
+Files: *
+Copyright: 2016-2019 California Institute of Technology
+License: MIT
+
+Files: debian/*
+Copyright: 2022 Dima Kogan <dkogan@debian.org>
+License: MIT
+
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
diff --git a/docs b/docs
new file mode 100644
index 0000000..f20153b
--- /dev/null
+++ b/docs
@@ -0,0 +1 @@
+README.org
diff --git a/examples b/examples
new file mode 100644
index 0000000..86f624d
--- /dev/null
+++ b/examples
@@ -0,0 +1 @@
+build_examples
diff --git a/install b/install
new file mode 100644
index 0000000..65eae2a
--- /dev/null
+++ b/install
@@ -0,0 +1,2 @@
+Makefile.* /usr/include/mrbuild/
+bin/* /usr/bin
diff --git a/manpages b/manpages
new file mode 100644
index 0000000..6db0538
--- /dev/null
+++ b/manpages
@@ -0,0 +1 @@
+make-pod-from-help.1
diff --git a/rules b/rules
new file mode 100755
index 0000000..4e8f388
--- /dev/null
+++ b/rules
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@
+
+override_dh_auto_build: make-pod-from-help.1
+ dh_auto_build
+
+%.1: bin/%
+ pod2man --section=1 --center="mrbuild" --name=MRBUILD $< $@
+
+override_dh_auto_clean:
+ rm -f make-pod-from-help.1
diff --git a/source/format b/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/upstream/metadata b/upstream/metadata
new file mode 100644
index 0000000..a323c10
--- /dev/null
+++ b/upstream/metadata
@@ -0,0 +1,4 @@
+---
+Bug-Database: https://github.com/dkogan/mrbuild/issues
+Bug-Submit: https://github.com/dkogan/mrbuild/issues/new
+Repository-Browse: https://github.com/dkogan/mrbuild
diff --git a/watch b/watch
new file mode 100644
index 0000000..fab231b
--- /dev/null
+++ b/watch
@@ -0,0 +1,2 @@
+version=4
+https://github.com/dkogan/mrbuild/tags .*/v?(\d\S+)\.tar\.gz