aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-04-10 18:46:13 -0400
committerB. Stack <bgstack15@gmail.com>2023-04-10 18:46:13 -0400
commit2eb435b5630161f85886cd3e365b2f51d1861806 (patch)
tree4a2c3a03cbfeada6d44bbf85c8cf55b679b11602
parentimprove the req for glibc-locale-source (diff)
downloadlocale-en_BS-2eb435b5630161f85886cd3e365b2f51d1861806.tar.gz
locale-en_BS-2eb435b5630161f85886cd3e365b2f51d1861806.tar.bz2
locale-en_BS-2eb435b5630161f85886cd3e365b2f51d1861806.zip
v1.2 includes seconds in default date invocation
-rw-r--r--debian/_service28
-rw-r--r--debian/changelog6
-rw-r--r--debian/locale-en-bs.dsc2
-rw-r--r--en_BS8
-rw-r--r--files-for-versioning.txt5
-rw-r--r--locale-en_BS.spec7
6 files changed, 49 insertions, 7 deletions
diff --git a/debian/_service b/debian/_service
new file mode 100644
index 0000000..4be3123
--- /dev/null
+++ b/debian/_service
@@ -0,0 +1,28 @@
+<services>
+ <service name="tar_scm">
+ <param name="scm">git</param>
+ <param name="url">https://bgstack15.ddns.net/cgit/locale-en_BS</param>
+ <param name="subdir">debian</param>
+ <param name="filename">debian</param>
+ <param name="revision">master</param>
+ <param name="version">_none_</param>
+ </service>
+ <service name="recompress">
+ <param name="file">*.tar</param>
+ <param name="compression">xz</param>
+ </service>
+ <service name="tar_scm">
+ <param name="scm">git</param>
+ <param name="url">https://bgstack15.ddns.net/cgit/locale-en_BS</param>
+ <param name="revision">master</param>
+ <param name="version">_none_</param>
+ </service>
+ <service name="recompress">
+ <param name="file">*.tar</param>
+ <param name="compression">gz</param>
+ </service>
+ <service name="extract_file">
+ <param name="archive">*.tar.xz</param>
+ <param name="files">*/*.dsc</param>
+ </service>
+</services>
diff --git a/debian/changelog b/debian/changelog
index 765e4be..0965bb7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+locale-en-bs (0.0.2-1) obs; urgency=low
+
+ * New release: fix default `date` format to include seconds
+
+ -- B. Stack <bgstack15@gmail.com> Mon, 10 Apr 2023 18:43:10 -0400
+
locale-en-bs (0.0.1-1) obs; urgency=low
* Initial release. Closes: packages-want#15
diff --git a/debian/locale-en-bs.dsc b/debian/locale-en-bs.dsc
index a8d4404..7f2cada 100644
--- a/debian/locale-en-bs.dsc
+++ b/debian/locale-en-bs.dsc
@@ -2,7 +2,7 @@ Format: 3.0 (quilt)
Source: locale-en-bs
Binary: locale-en-bs
Architecture: all
-Version: 0.0.1-1
+Version: 0.0.2-1
Maintainer: B. Stack <bgstack15@gmail.com>
Homepage: https://bgstack15.ddns.net/
Standards-Version: 4.5.0
diff --git a/en_BS b/en_BS
index f92d6c9..ddae58e 100644
--- a/en_BS
+++ b/en_BS
@@ -21,8 +21,8 @@ tel ""
fax ""
language "American English"
territory "Stackrpms, United States"
-revision "1.1"
-date "2022-03-05"
+revision "1.2"
+date "2023-04-10"
category "i18n:2012";LC_IDENTIFICATION
category "i18n:2012";LC_CTYPE
@@ -85,7 +85,7 @@ mon "January";/
"November";/
"December"
% Appropriate date and time representation (%c)
-d_t_fmt "%Y-%m-%d %a %R %Z"
+d_t_fmt "%Y-%m-%d %a %r %Z"
%
% Appropriate date representation (%x)
d_fmt "%Y-%m-%d"
@@ -100,7 +100,7 @@ t_fmt_ampm "%H:%M:%S"
% different from d_t_fmt for historical reasons and has been different
% since 2000 when date_fmt was added as a GNU extension. At the end
% of 2018 it was adjusted to use 12H time (bug 24046) instead of 24H.
-date_fmt "%Y-%m-%d %a %R %Z"
+date_fmt "%Y-%m-%d %a %r %Z"
%
% Strings for AM/PM
%
diff --git a/files-for-versioning.txt b/files-for-versioning.txt
new file mode 100644
index 0000000..020ff41
--- /dev/null
+++ b/files-for-versioning.txt
@@ -0,0 +1,5 @@
+debian/_service
+debian/changelog
+debian/locale-en-bs.dsc
+en_BS
+locale-en_BS.spec
diff --git a/locale-en_BS.spec b/locale-en_BS.spec
index 1b57016..f30e101 100644
--- a/locale-en_BS.spec
+++ b/locale-en_BS.spec
@@ -13,8 +13,8 @@
%endif
Name: locale-%{_locale}
-Version: 0.0.1
-Release: 2
+Version: 0.0.2
+Release: 1
Summary: English locale for Stackrpms
License: GPLv3+
URL: https://bgstack15.ddns.net/
@@ -54,6 +54,9 @@ fi
%{_localesdir}/%{_locale}
%changelog
+* Mon Apr 10 2023 B. Stack <bgstack15@gmail.com> - 0.0.2-1
+- New release
+
* Mon Mar 28 2022 B. Stack <bgstack15@gmail.com> - 0.0.1-2
- Add dep glibc-locale-source
bgstack15