public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/golang-github-burntsushi-toml] rawhide: Orphaned for 6+ weeks
@ 2026-06-02 23:53 Orphaned Packages Process
0 siblings, 0 replies; only message in thread
From: Orphaned Packages Process @ 2026-06-02 23:53 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/golang-github-burntsushi-toml
Branch : rawhide
Commit : a7f6705726c3496587b06ccab39d7c958d5d0b0b
Author : Orphaned Packages Process <packaging-reports@fedoraproject.org>
Date : 2026-06-02T18:53:42-05:00
Stats : +1/-636 in 10 file(s)
URL : https://src.fedoraproject.org/rpms/golang-github-burntsushi-toml/c/a7f6705726c3496587b06ccab39d7c958d5d0b0b?branch=rawhide
Log:
Orphaned for 6+ weeks
---
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 6d3c874..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,5 +0,0 @@
-/toml-0.3.1.tar.gz
-/toml-1.0.0.tar.gz
-/toml-1.2.0.tar.gz
-/toml-1.4.0.tar.gz
-/toml-1.5.0.tar.gz
diff --git a/.packit.yaml b/.packit.yaml
deleted file mode 100644
index 5ca43ae..0000000
--- a/.packit.yaml
+++ /dev/null
@@ -1,28 +0,0 @@
-specfile_path: golang-github-burntsushi-toml.spec
-
-files_to_sync:
- - golang-github-burntsushi-toml.spec
- - .packit.yaml
-
-upstream_package_name: toml
-upstream_project_url: https://github.com/BurntSushi/toml
-downstream_package_name: golang-github-burntsushi-toml
-
-upstream_tag_template: v{version}
-
-jobs:
-
-- job: pull_from_upstream
- trigger: release
- dist_git_branches:
- - fedora-rawhide
-
-- job: koji_build
- trigger: commit
- dist_git_branches:
- - fedora-rawhide
-
-- job: bodhi_update
- trigger: commit
- dist_git_branches:
- - fedora-branched
diff --git a/0001-Encode-large-floats-as-exponent-syntax.patch b/0001-Encode-large-floats-as-exponent-syntax.patch
deleted file mode 100644
index 97f7c2c..0000000
--- a/0001-Encode-large-floats-as-exponent-syntax.patch
+++ /dev/null
@@ -1,151 +0,0 @@
-From 10fb0a634a2d011906d7e61a9d218fb3b6d0ccfc Mon Sep 17 00:00:00 2001
-From: Martin Tournoij <martin@arp242.net>
-Date: Tue, 15 Apr 2025 14:40:32 +0100
-Subject: [PATCH] Encode large floats as exponent syntax (#441)
-
-Otherwise round-tripping something like 5e+22 won't work.
----
- encode.go | 15 ++++++++----
- encode_test.go | 65 +++++++++++++++++++++++++-------------------------
- 2 files changed, 43 insertions(+), 37 deletions(-)
-
-diff --git a/encode.go b/encode.go
-index ac196e7..b8eedbc 100644
---- a/encode.go
-+++ b/encode.go
-@@ -297,7 +297,7 @@ func (enc *Encoder) eElement(rv reflect.Value) {
- }
- enc.wf("inf")
- } else {
-- enc.wf(floatAddDecimal(strconv.FormatFloat(f, 'f', -1, 32)))
-+ enc.wf(floatAddDecimal(strconv.FormatFloat(f, 'g', -1, 32)))
- }
- case reflect.Float64:
- f := rv.Float()
-@@ -312,7 +312,7 @@ func (enc *Encoder) eElement(rv reflect.Value) {
- }
- enc.wf("inf")
- } else {
-- enc.wf(floatAddDecimal(strconv.FormatFloat(f, 'f', -1, 64)))
-+ enc.wf(floatAddDecimal(strconv.FormatFloat(f, 'g', -1, 64)))
- }
- case reflect.Array, reflect.Slice:
- enc.eArrayOrSliceElement(rv)
-@@ -330,10 +330,15 @@ func (enc *Encoder) eElement(rv reflect.Value) {
- // By the TOML spec, all floats must have a decimal with at least one number on
- // either side.
- func floatAddDecimal(fstr string) string {
-- if !strings.Contains(fstr, ".") {
-- return fstr + ".0"
-+ for _, c := range fstr {
-+ if c == 'e' { // Exponent syntax
-+ return fstr
-+ }
-+ if c == '.' {
-+ return fstr
-+ }
- }
-- return fstr
-+ return fstr + ".0"
- }
-
- func (enc *Encoder) writeQuoted(s string) {
-diff --git a/encode_test.go b/encode_test.go
-index 28a4127..f6afb5c 100644
---- a/encode_test.go
-+++ b/encode_test.go
-@@ -7,58 +7,59 @@ import (
- "math"
- "net"
- "os"
-+ "reflect"
- "strconv"
- "strings"
- "testing"
- "time"
- )
-
--func TestEncodeRoundTrip(t *testing.T) {
-- type Config struct {
-- Age int
-- Cats []string
-- Pi float64
-- Perfection []int
-- DOB time.Time
-- Ipaddress net.IP
-- }
-+func TestRoundtrip(t *testing.T) {
-+ type scan struct {
-+ Age int `toml:"age"`
-+ Cats []string `toml:"cats"`
-+ Pi float64 `toml:"pi"`
-+ Perfection []int `toml:"perfection"`
-+ DOB time.Time `toml:"dob"`
-+ IP net.IP `toml:"ip"`
-+ LargeFloat float64 `toml:"large_float"`
-+ }
-+
-+ doc := `
-+age = 13
-+cats = ["one", "two", "three"]
-+pi = 3.145
-+perfection = [11, 2, 3, 4]
-+dob = 2012-01-02T15:16:17Z
-+ip = "192.168.59.254"
-+large_float = 5e+22
-+`[1:]
-
-- var inputs = Config{
-+ want := scan{
- Age: 13,
- Cats: []string{"one", "two", "three"},
- Pi: 3.145,
- Perfection: []int{11, 2, 3, 4},
-- DOB: time.Now(),
-- Ipaddress: net.ParseIP("192.168.59.254"),
-+ DOB: time.Date(2012, 01, 02, 15, 16, 17, 0, time.UTC),
-+ IP: net.ParseIP("192.168.59.254"),
-+ LargeFloat: 5e+22,
- }
-
-- var (
-- firstBuffer bytes.Buffer
-- secondBuffer bytes.Buffer
-- outputs Config
-- )
-- err := NewEncoder(&firstBuffer).Encode(inputs)
-- if err != nil {
-- t.Fatal(err)
-- }
-- _, err = Decode(firstBuffer.String(), &outputs)
-+ var s scan
-+ _, err := Decode(doc, &s)
- if err != nil {
-- t.Logf("Could not decode:\n%s\n", firstBuffer.String())
- t.Fatal(err)
- }
-- err = NewEncoder(&secondBuffer).Encode(outputs)
-- if err != nil {
-- t.Fatal(err)
-+ if !reflect.DeepEqual(s, want) {
-+ t.Errorf("\nhave: %v\nwant: %v", s, want)
- }
-- if firstBuffer.String() != secondBuffer.String() {
-- t.Errorf("%s\n\nIS NOT IDENTICAL TO\n\n%s", firstBuffer.String(), secondBuffer.String())
-- }
-- out, err := Marshal(inputs)
-+
-+ out, err := Marshal(s)
- if err != nil {
- t.Fatal(err)
- }
-- if firstBuffer.String() != string(out) {
-- t.Errorf("%s\n\nIS NOT IDENTICAL TO\n\n%s", firstBuffer.String(), string(out))
-+ if string(out) != doc {
-+ t.Errorf("\nhave:\n%v\nwant:\n%v", string(out), doc)
- }
- }
-
---
-2.49.0
-
diff --git a/0002-Ensure-constant-format-strings-in-wf-calls.patch b/0002-Ensure-constant-format-strings-in-wf-calls.patch
deleted file mode 100644
index 11336b2..0000000
--- a/0002-Ensure-constant-format-strings-in-wf-calls.patch
+++ /dev/null
@@ -1,220 +0,0 @@
-From 011fa2bc64cec3bb4ec450d11984f5e87b8e158c Mon Sep 17 00:00:00 2001
-From: Martin Tournoij <martin@arp242.net>
-Date: Fri, 6 Jun 2025 17:25:13 +0100
-Subject: [PATCH] Ensure constant format strings in wf calls
-
-Fixes:
-
- ./encode.go:231:11: non-constant format string in call to (*github.com/BurntSushi/toml.Encoder).wf
- ./encode.go:233:11: non-constant format string in call to (*github.com/BurntSushi/toml.Encoder).wf
- ./encode.go:282:10: non-constant format string in call to (*github.com/BurntSushi/toml.Encoder).wf
- ./encode.go:284:10: non-constant format string in call to (*github.com/BurntSushi/toml.Encoder).wf
- ./encode.go:286:10: non-constant format string in call to (*github.com/BurntSushi/toml.Encoder).wf
- ./encode.go:300:11: non-constant format string in call to (*github.com/BurntSushi/toml.Encoder).wf
- ./encode.go:315:11: non-constant format string in call to (*github.com/BurntSushi/toml.Encoder).wf
-
-Fixes #445
----
- encode.go | 68 +++++++++++++++++++++++++++++++------------------------
- 1 file changed, 38 insertions(+), 30 deletions(-)
-
-diff --git a/encode.go b/encode.go
-index b8eedbc..bd7aa18 100644
---- a/encode.go
-+++ b/encode.go
-@@ -228,9 +228,9 @@ func (enc *Encoder) eElement(rv reflect.Value) {
- }
- switch v.Location() {
- default:
-- enc.wf(v.Format(format))
-+ enc.write(v.Format(format))
- case internal.LocalDatetime, internal.LocalDate, internal.LocalTime:
-- enc.wf(v.In(time.UTC).Format(format))
-+ enc.write(v.In(time.UTC).Format(format))
- }
- return
- case Marshaler:
-@@ -279,40 +279,40 @@ func (enc *Encoder) eElement(rv reflect.Value) {
- case reflect.String:
- enc.writeQuoted(rv.String())
- case reflect.Bool:
-- enc.wf(strconv.FormatBool(rv.Bool()))
-+ enc.write(strconv.FormatBool(rv.Bool()))
- case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
-- enc.wf(strconv.FormatInt(rv.Int(), 10))
-+ enc.write(strconv.FormatInt(rv.Int(), 10))
- case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
-- enc.wf(strconv.FormatUint(rv.Uint(), 10))
-+ enc.write(strconv.FormatUint(rv.Uint(), 10))
- case reflect.Float32:
- f := rv.Float()
- if math.IsNaN(f) {
- if math.Signbit(f) {
-- enc.wf("-")
-+ enc.write("-")
- }
-- enc.wf("nan")
-+ enc.write("nan")
- } else if math.IsInf(f, 0) {
- if math.Signbit(f) {
-- enc.wf("-")
-+ enc.write("-")
- }
-- enc.wf("inf")
-+ enc.write("inf")
- } else {
-- enc.wf(floatAddDecimal(strconv.FormatFloat(f, 'g', -1, 32)))
-+ enc.write(floatAddDecimal(strconv.FormatFloat(f, 'g', -1, 32)))
- }
- case reflect.Float64:
- f := rv.Float()
- if math.IsNaN(f) {
- if math.Signbit(f) {
-- enc.wf("-")
-+ enc.write("-")
- }
-- enc.wf("nan")
-+ enc.write("nan")
- } else if math.IsInf(f, 0) {
- if math.Signbit(f) {
-- enc.wf("-")
-+ enc.write("-")
- }
-- enc.wf("inf")
-+ enc.write("inf")
- } else {
-- enc.wf(floatAddDecimal(strconv.FormatFloat(f, 'g', -1, 64)))
-+ enc.write(floatAddDecimal(strconv.FormatFloat(f, 'g', -1, 64)))
- }
- case reflect.Array, reflect.Slice:
- enc.eArrayOrSliceElement(rv)
-@@ -342,20 +342,20 @@ func floatAddDecimal(fstr string) string {
- }
-
- func (enc *Encoder) writeQuoted(s string) {
-- enc.wf("\"%s\"", dblQuotedReplacer.Replace(s))
-+ enc.write(`"` + dblQuotedReplacer.Replace(s) + `"`)
- }
-
- func (enc *Encoder) eArrayOrSliceElement(rv reflect.Value) {
- length := rv.Len()
-- enc.wf("[")
-+ enc.write("[")
- for i := 0; i < length; i++ {
- elem := eindirect(rv.Index(i))
- enc.eElement(elem)
- if i != length-1 {
-- enc.wf(", ")
-+ enc.write(", ")
- }
- }
-- enc.wf("]")
-+ enc.write("]")
- }
-
- func (enc *Encoder) eArrayOfTables(key Key, rv reflect.Value) {
-@@ -368,7 +368,7 @@ func (enc *Encoder) eArrayOfTables(key Key, rv reflect.Value) {
- continue
- }
- enc.newline()
-- enc.wf("%s[[%s]]", enc.indentStr(key), key)
-+ enc.writef("%s[[%s]]", enc.indentStr(key), key)
- enc.newline()
- enc.eMapOrStruct(key, trv, false)
- }
-@@ -381,7 +381,7 @@ func (enc *Encoder) eTable(key Key, rv reflect.Value) {
- enc.newline()
- }
- if len(key) > 0 {
-- enc.wf("%s[%s]", enc.indentStr(key), key)
-+ enc.writef("%s[%s]", enc.indentStr(key), key)
- enc.newline()
- }
- enc.eMapOrStruct(key, rv, false)
-@@ -427,7 +427,7 @@ func (enc *Encoder) eMap(key Key, rv reflect.Value, inline bool) {
- if inline {
- enc.writeKeyValue(Key{mapKey.String()}, val, true)
- if trailC || i != len(mapKeys)-1 {
-- enc.wf(", ")
-+ enc.write(", ")
- }
- } else {
- enc.encode(key.add(mapKey.String()), val)
-@@ -436,12 +436,12 @@ func (enc *Encoder) eMap(key Key, rv reflect.Value, inline bool) {
- }
-
- if inline {
-- enc.wf("{")
-+ enc.write("{")
- }
- writeMapKeys(mapKeysDirect, len(mapKeysSub) > 0)
- writeMapKeys(mapKeysSub, false)
- if inline {
-- enc.wf("}")
-+ enc.write("}")
- }
- }
-
-@@ -539,7 +539,7 @@ func (enc *Encoder) eStruct(key Key, rv reflect.Value, inline bool) {
- if inline {
- enc.writeKeyValue(Key{keyName}, fieldVal, true)
- if fieldIndex[0] != totalFields-1 {
-- enc.wf(", ")
-+ enc.write(", ")
- }
- } else {
- enc.encode(key.add(keyName), fieldVal)
-@@ -548,14 +548,14 @@ func (enc *Encoder) eStruct(key Key, rv reflect.Value, inline bool) {
- }
-
- if inline {
-- enc.wf("{")
-+ enc.write("{")
- }
-
- l := len(fieldsDirect) + len(fieldsSub)
- writeFields(fieldsDirect, l)
- writeFields(fieldsSub, l)
- if inline {
-- enc.wf("}")
-+ enc.write("}")
- }
- }
-
-@@ -705,7 +705,7 @@ func isEmpty(rv reflect.Value) bool {
-
- func (enc *Encoder) newline() {
- if enc.hasWritten {
-- enc.wf("\n")
-+ enc.write("\n")
- }
- }
-
-@@ -727,14 +727,22 @@ func (enc *Encoder) writeKeyValue(key Key, val reflect.Value, inline bool) {
- enc.eElement(val)
- return
- }
-- enc.wf("%s%s = ", enc.indentStr(key), key.maybeQuoted(len(key)-1))
-+ enc.writef("%s%s = ", enc.indentStr(key), key.maybeQuoted(len(key)-1))
- enc.eElement(val)
- if !inline {
- enc.newline()
- }
- }
-
--func (enc *Encoder) wf(format string, v ...any) {
-+func (enc *Encoder) write(s string) {
-+ _, err := enc.w.WriteString(s)
-+ if err != nil {
-+ encPanic(err)
-+ }
-+ enc.hasWritten = true
-+}
-+
-+func (enc *Encoder) writef(format string, v ...any) {
- _, err := fmt.Fprintf(enc.w, format, v...)
- if err != nil {
- encPanic(err)
---
-2.49.0
-
diff --git a/0003-Ensure-constant-format-strings-in-runner.patch b/0003-Ensure-constant-format-strings-in-runner.patch
deleted file mode 100644
index 1e17033..0000000
--- a/0003-Ensure-constant-format-strings-in-runner.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-From: Denis Fateyev <denis@fateyev.com>
-Date: Thu, 5 Jun 2025 01:06:58 +0500
-Subject: [PATCH] Ensure constant format strings in runner
-
-Go 1.24 introduces stricter checks for format string validation.
-This commit fixes instances where non-constant format strings were
-used in calls to functions like `fmt.Errorf`, `fmt.Printf`, and similar.
-
-Changes here: replacing dynamically constructed strings passed as
-format strings with constant format strings.
----
- internal/toml-test/runner.go | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/internal/toml-test/runner.go b/internal/toml-test/runner.go
-index 666e8ed..4cc3a67 100644
---- a/internal/toml-test/runner.go
-+++ b/internal/toml-test/runner.go
-@@ -390,7 +390,7 @@ func (t Test) runInvalid(p Parser, fsys fs.FS) Test {
- err = timeoutError{t.Timeout}
- }
- if err != nil {
-- return t.fail(err.Error())
-+ return t.fail("%s", err.Error())
- }
- if !t.OutputFromStderr {
- return t.fail("Expected an error, but no error was reported.")
-@@ -417,10 +417,10 @@ func (t Test) runValid(p Parser, fsys fs.FS) Test {
- err = timeoutError{t.Timeout}
- }
- if err != nil {
-- return t.fail(err.Error())
-+ return t.fail("%s", err.Error())
- }
- if t.OutputFromStderr {
-- return t.fail(t.Output)
-+ return t.fail("%s", t.Output)
- }
- if t.Output == "" {
- // Special case: we expect an empty output here.
-@@ -446,7 +446,7 @@ func (t Test) runValid(p Parser, fsys fs.FS) Test {
- // Compare for decoder test
- want, err := t.ReadWantJSON(fsys)
- if err != nil {
-- return t.fail(err.Error())
-+ return t.fail("%s", err.Error())
- }
-
- var have any
---
-2.49.0
-
diff --git a/README.md b/README.md
deleted file mode 100644
index c3e8cd3..0000000
--- a/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# golang-github-burntsushi-toml
-
-The golang-github-burntsushi-toml package
\ No newline at end of file
diff --git a/changelog b/changelog
deleted file mode 100644
index 3193334..0000000
--- a/changelog
+++ /dev/null
@@ -1,110 +0,0 @@
-* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.1-11
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.1-10
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.1-9
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.1-8
-- Second attempt - Rebuilt for
- https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.1-7
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.1-6
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
-
-* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.1-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
-
-* Fri Jul 05 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.3.1-4
-- Add Obsoletes for old name
-
-* Wed Apr 24 21:30:18 CEST 2019 Robert-André Mauchin <zebob.m@gmail.com> - 0.3.1-3
-- Update to new macros
-
-* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.1-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
-
-* Wed Oct 31 2018 Robert-André Mauchin <zebob.m@gmail.com> - 0.3.1-1
-- Release 0.3.1
-
-* Tue Oct 23 2018 Nicolas Mailhot <nim@fedoraproject.org> - 0.3.0-4
-- redhat-rpm-config-123 triggers bugs in gosetup, remove it from Go spec files as it’s just an alias
-- https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/RWD5YATAYAFWKIDZBB7EB6N5DAO4ZKFM/
-
-* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - Forge-specific packaging variables
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
-
-* Fri Jun 08 2018 Jan Chaloupka <jchaloup@redhat.com> - 0.3.0-2
-- Upload glide.lock and glide.yaml
-
-* Sun Mar 18 2018 Jan Chaloupka <jchaloup@redhat.com> - 0.3.0-1
-- Update to 0.3.0
- resolves: #1423641
-
-* Wed Feb 28 2018 Jan Chaloupka <jchaloup@redhat.com> - 0-0.15.20140718git2ceedfe
-- Autogenerate some parts using the new macros
-
-* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.14.git2ceedfe
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
-
-* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.13.git2ceedfe
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
-
-* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.12.git2ceedfe
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
-
-* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.11.git2ceedfe
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
-
-* Tue Jan 17 2017 Jan Chaloupka <jchaloup@redhat.com> - 0-0.10.git2ceedfe
-- Polish the spec file
- related: #1247656
-
-* Tue Aug 09 2016 jchaloup <jchaloup@redhat.com> - 0-0.9.git2ceedfe
-- Enable devel and unit-test for epel7
- related: #1247656
-
-* Thu Jul 21 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.8.git2ceedfe
-- https://fedoraproject.org/wiki/Changes/golang1.7
-
-* Mon Feb 22 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.7.git2ceedfe
-- https://fedoraproject.org/wiki/Changes/golang1.6
-
-* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.6.git2ceedfe
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
-
-* Sat Sep 12 2015 jchaloup <jchaloup@redhat.com> - 0-0.5.git2ceedfe
-- Update to spec-2.1
- related: #1247656
-
-* Tue Jul 28 2015 Fridolin Pokorny <fpokorny@redhat.com> - 0-0.4.git2ceedfe
-- Update of spec file to spec-2.0
- resolves: #1247656
-
-* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.4.git2ceedfe
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
-
-* Thu Oct 23 2014 jchaloup <jchaloup@redhat.com> - 0-0.3.git2ceedfe
-- Bump to upstream 2ceedfee35ad3848e49308ab0c9a4f640cfb5fb2
-- spec file polishing to follow go draft
- related: #1120865
-
-* Mon Sep 22 2014 jchaloup <jchaloup@redhat.com> - 0-0.2.gitbd2bdf7
-- do not own golang directories
-- defattr and attr not needed
-
-* Mon Sep 22 2014 jchaloup <jchaloup@redhat.com> - 0-0.1.gitbd2bdf7
-- accomodated changes from Vincent Batts
-- gopath is in the rpm macros, and set exclusive arch too, to prevent s390 builds
-- move the buildarch noarch to the devel, since it is source only
-- preserve timestamps of source copied and as an added perk
-- the tomlv command provided in this project is useful for validating *.toml files
-- go test
-
-* Thu Jul 17 2014 Colin Walters <walters@verbum.org>
-- Initial package
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-burntsushi-toml.spec b/golang-github-burntsushi-toml.spec
deleted file mode 100644
index d940687..0000000
--- a/golang-github-burntsushi-toml.spec
+++ /dev/null
@@ -1,66 +0,0 @@
-# Generated by go2rpm 1.12.0
-%bcond_without check
-
-# https://github.com/BurntSushi/toml
-%global goipath github.com/BurntSushi/toml
-Version: 1.5.0
-
-%gometa -L -f
-
-%global common_description %{expand:
-TOML stands for Tom's Obvious, Minimal Language. This Go package provides a
-reflection interface similar to Go's standard library json and xml packages.
-This package also supports the encoding.TextUnmarshaler and
-encoding.TextMarshaler interfaces so that you can define custom data
-representations.}
-
-%global golicenses COPYING
-%global godocs README.md
-
-Name: golang-github-burntsushi-toml
-Release: %autorelease
-Summary: TOML parser for Golang with reflection
-
-License: MIT
-URL: %{gourl}
-Source: %{gosource}
-
-Patch0: 0001-Encode-large-floats-as-exponent-syntax.patch
-Patch1: 0002-Ensure-constant-format-strings-in-wf-calls.patch
-Patch2: 0003-Ensure-constant-format-strings-in-runner.patch
-
-%description %{common_description}
-
-%gopkg
-
-%prep
-%goprep -A
-%autopatch -p1
-
-%generate_buildrequires
-%go_generate_buildrequires
-
-%build
-for cmd in cmd/* ; do
- %gobuild -o %{gobuilddir}/bin/$(basename $cmd) %{goipath}/$cmd
-done
-
-%install
-%gopkginstall
-install -m 0755 -vd %{buildroot}%{_bindir}
-install -m 0755 -vp %{gobuilddir}/bin/* %{buildroot}%{_bindir}/
-
-%if %{with check}
-%check
-%gocheck
-%endif
-
-%files
-%license COPYING
-%doc _example README.md
-%{_bindir}/*
-
-%gopkgfiles
-
-%changelog
-%autochangelog
diff --git a/sources b/sources
deleted file mode 100644
index a1001c9..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-SHA512 (toml-1.5.0.tar.gz) = c1fdbf4bed4f48b0895c4fab654972b1db5d597b4c7fc3fd813064a391f1db25f73d60633e9ca6e5edce3efe5cfd347c31acc4d732ab0fb9adbd2ac749136f6c
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-02 23:53 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-02 23:53 [rpms/golang-github-burntsushi-toml] 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