public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/golang-github-bugsnag] rawhide: Orphaned for 6+ weeks
@ 2026-06-26 1:51 Orphaned Packages Process
0 siblings, 0 replies; only message in thread
From: Orphaned Packages Process @ 2026-06-26 1:51 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/golang-github-bugsnag
Branch : rawhide
Commit : 597b160e9f7acb1c6b18ddec04a49a4cc02da76c
Author : Orphaned Packages Process <packaging-reports@fedoraproject.org>
Date : 2026-06-25T20:51:12-05:00
Stats : +1/-295 in 8 file(s)
URL : https://src.fedoraproject.org/rpms/golang-github-bugsnag/c/597b160e9f7acb1c6b18ddec04a49a4cc02da76c?branch=rawhide
Log:
Orphaned for 6+ weeks
---
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 539b50b..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,7 +0,0 @@
-/bugsnag-go-1.5.1.tar.gz
-/bugsnag-go-1.5.3.tar.gz
-/bugsnag-go-1.8.0.tar.gz
-/bugsnag-go-1.9.0.tar.gz
-/bugsnag-go-2.1.1.tar.gz
-/bugsnag-go-2.2.0.tar.gz
-/bugsnag-go-2.5.1.tar.gz
diff --git a/0001-Fix-format-errors.patch b/0001-Fix-format-errors.patch
deleted file mode 100644
index 2bf994c..0000000
--- a/0001-Fix-format-errors.patch
+++ /dev/null
@@ -1,91 +0,0 @@
-From 9c72b5aedcfbae63451a0ad808226456c1b39654 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Alejandro=20S=C3=A1ez?= <asm@redhat.com>
-Date: Wed, 12 Mar 2025 17:06:38 +0100
-Subject: [PATCH] Fix format errors
-
----
- bugsnag.go | 38 ++++++++++++++++++++++----------------
- v2/bugsnag.go | 2 +-
- 2 files changed, 23 insertions(+), 17 deletions(-)
-
-diff --git a/bugsnag.go b/bugsnag.go
-index 46be0c2..525fe5a 100644
---- a/bugsnag.go
-+++ b/bugsnag.go
-@@ -88,11 +88,13 @@ func Notify(err error, rawData ...interface{}) error {
- // The rawData is used to send extra information along with any
- // panics that are handled this way.
- // Usage:
--// go func() {
--// ctx := bugsnag.StartSession(context.Background())
--// defer bugsnag.AutoNotify(ctx)
--// // (possibly crashy code)
--// }()
-+//
-+// go func() {
-+// ctx := bugsnag.StartSession(context.Background())
-+// defer bugsnag.AutoNotify(ctx)
-+// // (possibly crashy code)
-+// }()
-+//
- // See also: bugsnag.Recover()
- func AutoNotify(rawData ...interface{}) {
- if err := recover(); err != nil {
-@@ -119,18 +121,22 @@ func AutoNotify(rawData ...interface{}) {
- // The rawData is used to send extra information along with
- // any panics that are handled this way
- // Usage:
--// go func() {
--// ctx := bugsnag.StartSession(context.Background())
--// defer bugsnag.Recover(ctx)
--// // (possibly crashy code)
--// }()
-+//
-+// go func() {
-+// ctx := bugsnag.StartSession(context.Background())
-+// defer bugsnag.Recover(ctx)
-+// // (possibly crashy code)
-+// }()
-+//
- // If you wish that any panics caught by the call to Recover shall affect your
- // stability score (it does not by default):
--// go func() {
--// ctx := bugsnag.StartSession(context.Background())
--// defer bugsnag.Recover(ctx, bugsnag.HandledState{Unhandled: true})
--// // (possibly crashy code)
--// }()
-+//
-+// go func() {
-+// ctx := bugsnag.StartSession(context.Background())
-+// defer bugsnag.Recover(ctx, bugsnag.HandledState{Unhandled: true})
-+// // (possibly crashy code)
-+// }()
-+//
- // See also: bugsnag.AutoNotify()
- func Recover(rawData ...interface{}) {
- if err := recover(); err != nil {
-@@ -212,7 +218,7 @@ func checkForEmptyError(err error) error {
- }
- msg := "attempted to notify Bugsnag without supplying an error. Bugsnag not notified"
- Config.Logger.Printf("ERROR: " + msg)
-- return fmt.Errorf(msg)
-+ return fmt.Errorf("%s", msg)
- }
-
- func init() {
-diff --git a/v2/bugsnag.go b/v2/bugsnag.go
-index 05d2778..72ecd7e 100644
---- a/v2/bugsnag.go
-+++ b/v2/bugsnag.go
-@@ -224,7 +224,7 @@ func checkForEmptyError(err error) error {
- }
- msg := "attempted to notify Bugsnag without supplying an error. Bugsnag not notified"
- Config.Logger.Printf("ERROR: " + msg)
-- return fmt.Errorf(msg)
-+ return fmt.Errorf("%s", msg)
- }
-
- func init() {
---
-2.48.1
-
diff --git a/0001-Skip-test.patch b/0001-Skip-test.patch
deleted file mode 100644
index 029aff8..0000000
--- a/0001-Skip-test.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 840eba628b6cbd318744f87e02fe63cfebce098b Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Alejandro=20S=C3=A1ez?= <asm@redhat.com>
-Date: Wed, 12 Mar 2025 17:15:28 +0100
-Subject: [PATCH] Skip test
-
----
- v2/sessions/integration_test.go | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/v2/sessions/integration_test.go b/v2/sessions/integration_test.go
-index f9e37ab..c154d26 100644
---- a/v2/sessions/integration_test.go
-+++ b/v2/sessions/integration_test.go
-@@ -45,6 +45,10 @@ func TestStartSession(t *testing.T) {
- t.Skip("not compatible with windows builds")
- return
- }
-+ if runtime.GOOS == "linux" {
-+ t.Skip("skipping, test breaks inside CI enviroment")
-+ return
-+ }
- sessionsStarted := 0
- mutex := sync.Mutex{}
-
---
-2.48.1
-
diff --git a/0001-Start-showing-inlined-functions-in-stack-trace.patch b/0001-Start-showing-inlined-functions-in-stack-trace.patch
deleted file mode 100644
index a33aa02..0000000
--- a/0001-Start-showing-inlined-functions-in-stack-trace.patch
+++ /dev/null
@@ -1,110 +0,0 @@
-Subject: Start showing inlined functions in stack trace
-Bug-Debian: https://bugs.debian.org/1098550
-Forwarded: https://github.com/bugsnag/bugsnag-go/pull/256
-From: Nicolas Peugnet <nicolas@club1.fr>
-
-Date: Tue, 4 Mar 2025 18:39:52 +0100
-
-This is a modified version of commit c6d59e66f3630108d84dcce59aaae871e4eb2b30
-by Daria Bialobrzeska:
-
- Start showing inlined functions in stack trace (#208)
-
- * Start showing inlined functions in stack trace
- * Fix notifier tests
- * Added change to CHANGELOG
-
-I selected only the code changes in the errors packages and also applied it
-on the version 1 of this package (which is still used by notary as of writing).
-
-This fixes the backtrace generated when using go 1.24, thus fixing the
-TestUnwrapPkgError failure.
-
-
----
- errors/error.go | 35 ++++++++++++++++++++++++-----------
- errors/stackframe.go | 4 ++++
- 2 files changed, 28 insertions(+), 11 deletions(-)
-
-diff --git a/errors/error.go b/errors/error.go
-index 3d30168..a878673 100644
---- a/errors/error.go
-+++ b/errors/error.go
-@@ -4,9 +4,10 @@ package errors
- import (
- "bytes"
- "fmt"
-- "github.com/pkg/errors"
- "reflect"
- "runtime"
-+
-+ "github.com/pkg/errors"
- )
-
- // The maximum number of stackframes on any error.
-@@ -64,7 +65,7 @@ func New(e interface{}, skip int) *Error {
- trace := e.StackTrace()
- stack := make([]uintptr, len(trace))
- for i, ptr := range trace {
-- stack[i] = uintptr(ptr) - 1
-+ stack[i] = uintptr(ptr)
- }
- return &Error{
- Err: e,
-@@ -132,20 +133,32 @@ func (err *Error) StackFrames() []StackFrame {
- if err.frames == nil {
- callers := runtime.CallersFrames(err.stack)
- err.frames = make([]StackFrame, 0, len(err.stack))
-+
- for frame, more := callers.Next(); more; frame, more = callers.Next() {
-- if frame.Func == nil {
-- // Ignore fully inlined functions
-- continue
-- }
-- pkg, name := packageAndName(frame.Func)
-- err.frames = append(err.frames, StackFrame{
-+ processedStackFrame := StackFrame{
- function: frame.Func,
- File: frame.File,
- LineNumber: frame.Line,
-- Name: name,
-- Package: pkg,
- ProgramCounter: frame.PC,
-- })
-+ }
-+
-+ frameFunc := frame.Func
-+ if frameFunc == nil {
-+ newFrameFunc := runtime.FuncForPC(frame.PC)
-+ if newFrameFunc != nil {
-+ file, line := newFrameFunc.FileLine(frame.PC)
-+ // Unwrap fully inlined functions
-+ processedStackFrame.File = file
-+ processedStackFrame.LineNumber = line
-+ processedStackFrame.function = newFrameFunc
-+ frameFunc = newFrameFunc
-+ }
-+ }
-+
-+ pkg, name := packageAndName(frameFunc)
-+ processedStackFrame.Name = name
-+ processedStackFrame.Package = pkg
-+ err.frames = append(err.frames, processedStackFrame)
- }
- }
-
-diff --git a/errors/stackframe.go b/errors/stackframe.go
-index 3d03119..163a434 100644
---- a/errors/stackframe.go
-+++ b/errors/stackframe.go
-@@ -70,6 +70,10 @@ func (frame *StackFrame) SourceLine() (string, error) {
- }
-
- func packageAndName(fn *runtime.Func) (string, string) {
-+ if fn == nil {
-+ return "", ""
-+ }
-+
- name := fn.Name()
- pkg := ""
-
diff --git a/README.md b/README.md
deleted file mode 100644
index 5344371..0000000
--- a/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# golang-github-bugsnag
-
-The golang-github-bugsnag package
\ No newline at end of file
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..5204a84
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Orphaned for 6+ weeks
diff --git a/golang-github-bugsnag.spec b/golang-github-bugsnag.spec
deleted file mode 100644
index cfbd2c6..0000000
--- a/golang-github-bugsnag.spec
+++ /dev/null
@@ -1,56 +0,0 @@
-# Generated by go2rpm 1.9.0
-%bcond_without check
-%global debug_package %{nil}
-
-# https://github.com/bugsnag/bugsnag-go
-%global goipath github.com/bugsnag/bugsnag-go
-Version: 2.5.1
-
-%gometa -f
-
-
-%global goaltipaths github.com/bugsnag/bugsnag-go/v2
-
-%global common_description %{expand:
-Automatic panic monitoring for Go and Go web frameworks, like negroni, gin, and
-revel.}
-
-%global golicenses LICENSE.txt
-%global godocs examples CHANGELOG.md CONTRIBUTING.md README.md
-
-Name: %{goname}
-Release: %autorelease
-Summary: Automatic panic monitoring for Go and Go web frameworks
-
-License: MIT
-URL: %{gourl}
-Source: %{gosource}
-
-Patch01: 0001-Fix-format-errors.patch
-Patch02: 0001-Skip-test.patch
-Patch03: 0001-Start-showing-inlined-functions-in-stack-trace.patch
-
-%description %{common_description}
-
-%gopkg
-
-%prep
-%goprep
-%autopatch -p1
-
-%generate_buildrequires
-%go_generate_buildrequires
-
-%install
-%gopkginstall
-
-%if %{with check}
-%check
-%gocheck -d . -d github.com/bugsnag/bugsnag-go/gin -d github.com/bugsnag/bugsnag-go/martini -d github.com/bugsnag/bugsnag-go/negroni
-%endif
-
-
-%gopkgfiles
-
-%changelog
-%autochangelog
diff --git a/sources b/sources
deleted file mode 100644
index 28a55cf..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-SHA512 (bugsnag-go-2.5.1.tar.gz) = bade73df3423a7256628324a4fbbcbae7f62caece023872bc35808fd48e869ae0d843aeb28c1610fb5e2946ea93f6506b2e304c24d25029499ddc4edac998e79
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-26 1:51 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-26 1:51 [rpms/golang-github-bugsnag] rawhide: Orphaned for 6+ weeks Orphaned Packages Process
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox