summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--base-files.pkg/control1
-rwxr-xr-xbuild2
-rw-r--r--changelog9
-rw-r--r--control4
-rwxr-xr-xrelease13
5 files changed, 26 insertions, 3 deletions
diff --git a/base-files.pkg/control b/base-files.pkg/control
index 75734f7..a6bf143 100644
--- a/base-files.pkg/control
+++ b/base-files.pkg/control
@@ -1,5 +1,6 @@
Architecture: any
Platform: any
+Section: share
Essential: yes
Description: Base system files
This package provides the basic filesystem hierarchy, configuration files, and
diff --git a/build b/build
index 4643a11..ad6ffdc 100755
--- a/build
+++ b/build
@@ -3,7 +3,7 @@
include ../macros.$(OPK_HOST_ARCH_KERNEL).mk
# Derivatives should probably append their version to the ProteanOS version,
-# e.g. "1.0.0~2.0.0" (for a version 2.0 distribution based on ProteanOS 1.0).
+# e.g. "1.0.0+2.0.0" (for a version 2.0 distribution based on ProteanOS 1.0).
version = $$(printf '%s\n' '$(OPK_SOURCE_VERSION)' | \
sed 's|\(^[0-9][0-9]*\.[0-9][0-9]*\).*$$|\1|')
diff --git a/changelog b/changelog
index 51fb5c5..4f45aad 100644
--- a/changelog
+++ b/changelog
@@ -1,9 +1,16 @@
+base-files (1.0.4) trunk
+
+ * Put package in section "share".
+ * Update Maintainer and add Homepage.
+
+ -- Patrick McDermott <patrick.mcdermott@libiquity.com> Wed, 13 Jan 2021 09:23:18 -0500
+
base-files (1.0.3) trunk
* Provide /etc/os-release.
* Make base-files Essential.
- -- "P. J. McDermott" <pj@pehjota.net> Sat, 20 Sep 2014 08:08:14 -0400
+ -- "P. J. McDermott" <pj@pehjota.net> Mon, 22 Sep 2014 21:23:42 -0400
base-files (1.0.2) trunk
diff --git a/control b/control
index 709cac7..cf363d1 100644
--- a/control
+++ b/control
@@ -1 +1,3 @@
-Maintainer: "P. J. McDermott" <pj@pehjota.net>
+Maintainer: Patrick McDermott <patrick.mcdermott@libiquity.com>
+Build-Depends: opkbuild (>= 4.2.0)
+Homepage: http://www.proteanos.com/
diff --git a/release b/release
new file mode 100755
index 0000000..871cb4a
--- /dev/null
+++ b/release
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+set -eu
+
+read src ver <<-EOF
+ $(sed '1s/^\(.*\) (\(.*\)) .*$/\1 \2/; q;' changelog)
+ EOF
+
+sed '/^ -- .* /{ s/^\( -- .* \).*$/\1'"$(LC_ALL='POSIX' date \
+ '+%a, %d %b %Y %H:%M:%S %z')"'/; :l; n; b l; };' changelog >changelog~
+mv changelog~ changelog
+git commit -m "changelog: Release ${src} ${ver}" -- changelog
+git tag "${src}/${ver}" HEAD