Compare commits
13 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 5a410b4b43 | |||
| 0dad0d530f | |||
| a8f6f948d3 | |||
| 4ad7cae477 | |||
| a05b216d00 | |||
| 5641b472ea | |||
| 9b00356ce7 | |||
| b7c68194cb | |||
| f2d417dd1b | |||
| d152595eec | |||
| c37a6e36ea | |||
| ae051c2e8b | |||
| 3bb55020b6 |
4
_service
4
_service
@@ -1,9 +1,9 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="manual">
|
||||
<param name="url">https://github.com/openSUSE/obs-service-go_modules</param>
|
||||
<param name="url">https://github.com/openSUSE/obs-service-go_modules.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="exclude">.git</param>
|
||||
<param name="revision">v0.6.4</param>
|
||||
<param name="revision">v0.6.9</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/openSUSE/obs-service-go_modules</param>
|
||||
<param name="changesrevision">54cd3833dfd6475a4c643730e7a1ad84c6f678ba</param></service></servicedata>
|
||||
<param name="url">https://github.com/openSUSE/obs-service-go_modules.git</param>
|
||||
<param name="changesrevision">879512a0355c17d26029426ee1148a9b7832ef88</param></service></servicedata>
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:076aa16e3e97145baafcfcd96fd2d4b0621c1903c5d01dc4ba87f7c01975f6f5
|
||||
size 15874
|
||||
3
obs-service-go_modules-0.6.9.tar.gz
Normal file
3
obs-service-go_modules-0.6.9.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:00e249deb62e9cece37622cdeb63d7ead5c48d2f04a2abe3678076246e591c3d
|
||||
size 18032
|
||||
@@ -1,7 +1,79 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 26 18:17:16 UTC 2025 - Jeff Kowalczyk <jkowalczyk@suse.com>
|
||||
|
||||
- Update to version 0.6.9:
|
||||
* Implement go mod edit -require using _service params
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 22 04:46:05 UTC 2025 - Jeff Kowalczyk <jkowalczyk@suse.com>
|
||||
|
||||
- Update to version 0.6.8:
|
||||
* Implement go mod edit -replace using _service params refs #57
|
||||
* cmd_go_mod() use list for arg cmd and new arg subcmd refs #57
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 21 04:07:39 UTC 2025 - Jeff Kowalczyk <jkowalczyk@suse.com>
|
||||
|
||||
- Update to version 0.6.7:
|
||||
* archive_autodetect() match archive files before dir refs #66 #69 #73
|
||||
* Ensure some level of compatibility with older libarchive
|
||||
* archive_autodetect docstring add .obscpio to format list
|
||||
* Format with python black
|
||||
* Fix using go.mod of toplevel
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 18 13:34:31 UTC 2025 - Jeff Kowalczyk <jkowalczyk@suse.com>
|
||||
|
||||
- Packaging improvements:
|
||||
* Fixes boo#1241065: Update Requires: python3-libarchive-c >= 4
|
||||
adding minimum version to ensure API compatibility new function
|
||||
signature first released in python3-libarchive-c version 4.0:
|
||||
old: new_archive_read_disk(path, **kw)
|
||||
new: with new_archive_read_disk(path, flags, lookup)
|
||||
Runtime error raised:
|
||||
TypeError: new_archive_read_disk() got an unexpected keyword argument 'mtime'
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 13 17:17:38 UTC 2025 - Jeff Kowalczyk <jkowalczyk@suse.com>
|
||||
|
||||
- Update to version 0.6.6:
|
||||
* Preserve symlinks on shutil.copytree archive to tempdir refs #66
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 09 05:16:36 UTC 2025 - Jeff Kowalczyk <jkowalczyk@suse.com>
|
||||
|
||||
- Update to version 0.6.5:
|
||||
* feat: allow `archive` be name of the subdirectory
|
||||
* ignore directories containing '.git' when searching for the basename (#51)
|
||||
* doc(README): osc service disabled has been disabled
|
||||
* Make output archives more reproducible
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 8 02:08:37 UTC 2025 - Jeff Kowalczyk <jkowalczyk@suse.com>
|
||||
|
||||
- Packaging improvements:
|
||||
* _service tar_scm url use .git extension by convention
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 26 15:06:49 UTC 2025 - Jeff Kowalczyk <jkowalczyk@suse.com>
|
||||
|
||||
- Update go toolchain to Requires: golang(API) >= 1.24
|
||||
Refs boo#1240130
|
||||
* Recent go toolchain versions enforce use of the minimum
|
||||
toolchain version specified in go.mod
|
||||
* Minimum toolchain requirements are in effect for go commands as
|
||||
well as unit compilation
|
||||
* Users running a version older than specified may see error:
|
||||
go: go.mod requires go >= 1.24.1 (running go 1.22.2; GOTOOLCHAIN=local)
|
||||
* This package and others which call go toolchain commands will
|
||||
need timely updates to the latest version
|
||||
* Closes https://github.com/openSUSE/obs-service-go_modules/issues/62
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 27 04:03:11 UTC 2024 - Jeff Kowalczyk <jkowalczyk@suse.com>
|
||||
|
||||
- Update go toolchain to Requires: golang(API) >= 1.22
|
||||
Refs boo#1240130
|
||||
* Recent go toolchain versions enforce use of the minimum
|
||||
toolchain version specified in go.mod
|
||||
* Minimum toolchain requirements are in effect for go commands as
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package obs-service-go_modules
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -37,7 +37,7 @@
|
||||
%define use_test test
|
||||
%endif
|
||||
Name: obs-service-%{service}
|
||||
Version: 0.6.4
|
||||
Version: 0.6.9
|
||||
Release: 0
|
||||
Summary: An OBS source service: Download, verify and vendor Go module dependencies
|
||||
License: GPL-2.0-or-later
|
||||
@@ -45,8 +45,8 @@ Group: Development/Tools/Building
|
||||
URL: https://github.com/openSUSE/obs-service-%{service}
|
||||
Source: %{name}-%{version}.tar.gz
|
||||
BuildRequires: go-md2man
|
||||
Requires: python3-libarchive-c
|
||||
Requires: golang(API) >= 1.22
|
||||
Requires: python3-libarchive-c >= 4
|
||||
Requires: golang(API) >= 1.24
|
||||
BuildArch: noarch
|
||||
%if %{with needs_external_argparse}
|
||||
BuildRequires: %{use_python}-argparse
|
||||
|
||||
Reference in New Issue
Block a user