From abf97d5e326031807e435e98958658e3cb4c4e377cfde8086b9fd56be333a2ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Tue, 17 Sep 2024 14:37:25 +0200 Subject: [PATCH] Initial setup for demonstration purposes only atm --- .gitmodules | 3 ++ FreeCAD | 1 + PackageHub-release/PackageHub-release.spec | 49 ++++++++++++++++++++++ README.md | 17 ++++++++ 4 files changed, 70 insertions(+) create mode 100644 .gitmodules create mode 160000 FreeCAD create mode 100644 PackageHub-release/PackageHub-release.spec create mode 100644 README.md diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..eb4ca1b --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "FreeCAD"] + path = FreeCAD + url = ../../pool/FreeCAD diff --git a/FreeCAD b/FreeCAD new file mode 160000 index 0000000..1310976 --- /dev/null +++ b/FreeCAD @@ -0,0 +1 @@ +Subproject commit 131097660bed513ed870ef3696134b08e8fceb70ffeb9b4c2a3ea18067a7ee51 diff --git a/PackageHub-release/PackageHub-release.spec b/PackageHub-release/PackageHub-release.spec new file mode 100644 index 0000000..df724c3 --- /dev/null +++ b/PackageHub-release/PackageHub-release.spec @@ -0,0 +1,49 @@ +# +# spec file for package PackageHub-release +# +# Copyright (c) 2024 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +Name: PackageHub-release +Version: +Release: 0 +Summary: +# FIXME: Select a correct license from https://github.com/openSUSE/spec-cleaner#spdx-licenses +License: +URL: +Source: +BuildRequires: + +%description + +%prep +%autosetup -p1 + +%build +%configure +%make_build + +%install +%make_install + +%check +%make_build check + +%files +%license COPYING +%doc ChangeLog README + +%changelog + diff --git a/README.md b/README.md new file mode 100644 index 0000000..cc80e3f --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ + +Adding packages from Factory pool: + + # git submodule add ../../pool/FreeCAD FreeCAD + + +Updating to current state: + + # cd FreeCAD + # git pull + # cd - + +Commiting current state: + + # git commit -a + +