diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..ca682be
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+*. filter=lfs diff=lfs merge=lfs -text
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..1534ba5
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+*.rpm
+*.log
+*spec-20*
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..6a29eda
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+# Makefile for source rpm: buildsys-macros
+# $Id: Makefile,v 1.1 2016/02/04 18:18:39 vip-ire Exp $
+NAME := buildsys-macros
+SPECFILE = $(firstword $(wildcard *.spec))
+
+define find-makefile-common
+for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
+endef
+
+MAKEFILE_COMMON := $(shell $(find-makefile-common))
+
+ifeq ($(MAKEFILE_COMMON),)
+# attept a checkout
+define checkout-makefile-common
+test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
+endef
+
+MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
+endif
+
+include $(MAKEFILE_COMMON)
diff --git a/README.md b/README.md
index 1e96d87..ea14ab5 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,11 @@
# buildsys-macros
-3rd Party (Maintained by Koozali) git repo for buildsys-macros smeserver
\ No newline at end of file
+3rd Party (Maintained by Koozali) git repo for buildsys-macros smeserver
+
+## Description
+
+
*This description has been generated by an LLM AI system and cannot be relied on to be fully correct.*
+*Once it has been checked, then this comment will be deleted*
+
+
+Buildsys-macros is a software package designed for Linux and Unix systems that provides a set of macros to automate the process of managing software builds. It provides a set of scripts and Makefiles to automate the building, testing, and deploying of software packages. It offers multiple target platforms and languages and provides a platform-agnostic and language-agnostic way of quickly building and deploying software packages.
diff --git a/buildsys-macros.spec b/buildsys-macros.spec
new file mode 100644
index 0000000..7ac3f52
--- /dev/null
+++ b/buildsys-macros.spec
@@ -0,0 +1,45 @@
+# $Id: buildsys-macros.spec,v 1.2 2016/07/25 03:31:22 unnilennium Exp $
+
+Name: buildsys-macros
+Summary: Macros for the Fedora Buildsystem
+# The value for version should match the version of Fedora Core.
+Version: 7
+Release: 1%{?dist}
+License: GPL
+Group: Development/Buildsystem
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+Buildarch: noarch
+Requires: rpmdevtools
+
+%description
+Macros for the Fedora Buildsystem
+
+%prep
+
+%build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+mkdir -p $RPM_BUILD_ROOT/etc/rpm/
+VERSION=%{version}
+printf %s%b "%" "rhel $VERSION\n" >> $RPM_BUILD_ROOT/etc/rpm/macros.disttag
+printf %s%b "%" "dist .el$VERSION.sme\n" >> $RPM_BUILD_ROOT/etc/rpm/macros.disttag
+printf %s%b "%" "el$VERSION 1\n" >> $RPM_BUILD_ROOT/etc/rpm/macros.disttag
+printf %s%b "%" "__arch_install_post /usr/lib/rpm/check-buildroot\n" >> $RPM_BUILD_ROOT/etc/rpm/macros.checkbuild
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root)
+/etc/rpm/macros.disttag
+/etc/rpm/macros.checkbuild
+
+%changelog
+* Wed Jul 12 2023 BogusDateBot
+- Eliminated rpmbuild "bogus date" warnings due to inconsistent weekday,
+ by assuming the date is correct and changing the weekday.
+
+* Thu Jan 24 2013 Shad L. Lords 6-1.sme
+- Initial build.
diff --git a/contriborbase b/contriborbase
new file mode 100644
index 0000000..ef36a67
--- /dev/null
+++ b/contriborbase
@@ -0,0 +1 @@
+sme10